Compare commits

...

17 Commits

Author SHA1 Message Date
hotyue
3f73825972 chore(release): bump version to v4.0.8 全面部署专业化 UI 与全网节点扩容 2026-05-06 06:13:57 +00:00
hotyue
56b655af2d feat(ui): 优化全局提示文案并脱除过度拟人化,在多端高光时刻增设 GitHub Star 引流按钮
1. core/install & master/install_master: 底部新增 OSC 8 终端超链接引流
2. core/tg_report & master/tg_master: 底部常驻跳转 GitHub 的内联键盘按钮
3. docs: 更新 README 注入顶部 Star 引导文案,并追加 @Bryan2333 贡献者致谢
2026-05-06 06:11:44 +00:00
github-actions[bot]
70d940584e chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-06] 2026-05-06 05:50:59 +00:00
github-actions[bot]
0cdb4f8d3f chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-05] 2026-05-05 05:36:04 +00:00
github-actions[bot]
67be930060 chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-04] 2026-05-04 05:57:46 +00:00
hotyue
be82242ed1 feat(data): 新增美洲及欧洲主流数据中心节点,全面覆盖爱荷华、弗吉尼亚、法尔肯施泰因等机房重镇 (closes #43) 2026-05-03 11:31:47 +00:00
github-actions[bot]
67d6e35d9f chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-03] 2026-05-03 05:52:04 +00:00
hotyue
f34e697016 fix(install): 对齐双端部署脚本的网络波动兜底版本锚点 (Agent v4.0.6 / Master v4.0.7) 2026-05-03 02:22:03 +00:00
hotyue
56cfbb5485 chore(core): 删除已废弃的 tg_daemon.sh 长轮询脚本,全面对齐 Webhook 架构 2026-05-03 02:20:19 +00:00
github-actions[bot]
d40b7928d0 chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-02] 2026-05-02 05:30:24 +00:00
github-actions[bot]
ac2f8b0a1c chore(data): 🤖 自动机兵:刷新 4000 条绝对坐标指纹库 2026-05-01 06:30:32 +00:00
github-actions[bot]
caf7589b89 chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-05-01] 2026-05-01 06:09:27 +00:00
hotyue
ebada9f455 fix(install): 优化 Arch Linux 依赖安装逻辑,采用 -S --needed 避免部分更新导致系统损坏 (closes #42)
Thanks to @Bryan2333 for the pacman flag optimization and security improvements.
2026-05-01 03:38:17 +00:00
hotyue
d2dc1a20c3 Merge pull request #42 from Bryan2333/main
Change pacman install to use --needed flag
2026-05-01 11:31:13 +08:00
BryanLiang
d115f01d4a Fix pacman command to use '-S' instead of '-Sy' 2026-04-30 23:26:49 +08:00
BryanLiang
b1dc0ab79d Change pacman install to use --needed flag 2026-04-30 23:23:56 +08:00
github-actions[bot]
c147843d39 chore(data): 🤖 自动机兵:同步全战区热点词库与活体新闻流 [2026-04-30] 2026-04-30 05:51:59 +00:00
66 changed files with 6327 additions and 5566 deletions

View File

@@ -5,6 +5,7 @@
![License](https://img.shields.io/github/license/hotyue/IP-Sentinel)
> **一个极度轻量、零感知、支持中枢遥控的 VPS IP 自动化养护与区域纠偏引擎。**
> **💡 提示:如果本项目提升了您的节点稳定性,请点击右上角点亮 🌟 Star您的支持是我们持续研发和维护指纹库的核心动力。**
📢 官方战术交流频道: 🛰️ [IP-Sentinel Matrix](https://t.me/IP_Sentinel_Matrix)

View File

@@ -29,7 +29,7 @@ CONFIG_FILE="${INSTALL_DIR}/config.conf"
# [修复] 增加 -L 与双栈容灾 (-4),解决纯 V6 或 V6 优先机器连接 GitHub Raw 易超时的问题
TARGET_VERSION=$( (curl -sL -m 5 "${REPO_RAW_URL}/version.txt" || curl -4 -sL -m 5 "${REPO_RAW_URL}/version.txt") 2>/dev/null | grep "^AGENT_VERSION=" | cut -d'=' -f2 | tr -d '[:space:]')
# 🛡️ 兜底防线:如果网络波动拉取失败,启用内置的安全兜底版本
TARGET_VERSION=${TARGET_VERSION:-"4.0.0"}
TARGET_VERSION=${TARGET_VERSION:-"4.0.6"}
# 轻量级版本号比对函数 (例如: version_lt "3.3.1" "3.4.0" 返回 true)
version_lt() {
@@ -84,8 +84,8 @@ if [ ${#MISSING_CMDS[@]} -gt 0 ]; then
service crond start >/dev/null 2>&1
elif command -v pacman >/dev/null 2>&1; then
# Arch Linux 系列
pacman -Sy --noconfirm curl jq cronie procps-ng python openssl >/dev/null 2>&1
# Arch Linux 系列 (采用 --needed 防重复,剥离 -y 防部分升级炸系统)
pacman -S --needed --noconfirm curl jq cronie procps-ng python openssl >/dev/null 2>&1
mkdir -p /root/.cache/crontab 2>/dev/null
systemctl enable cronie >/dev/null 2>&1 && systemctl start cronie >/dev/null 2>&1
@@ -96,7 +96,8 @@ if [ ${#MISSING_CMDS[@]} -gt 0 ]; then
echo -e " Debian/Ubuntu: \033[36mapt-get update && apt-get install -y --no-install-recommends curl jq cron procps python3 openssl\033[0m"
echo -e " CentOS/RHEL: \033[36myum install -y curl jq cronie procps-ng python3 openssl\033[0m"
echo -e " Alpine Linux: \033[36mapk add --no-cache curl jq cronie procps python3 bash openssl\033[0m"
echo -e " Arch Linux: \033[36mpacman -Sy curl jq cronie procps-ng python openssl\033[0m"
# Arch 用户,如果出问题,应该用 -Syu 进行全系统安全更新
echo -e " Arch Linux: \033[36mpacman -Syu --needed curl jq cronie procps-ng python openssl\033[0m"
exit 1
fi
@@ -1039,9 +1040,15 @@ if [ "$UPGRADE_MODE" == "false" ]; then
AGENT_COUNT=$(curl -s -m 3 "https://ip-sentinel-count.samanthaestime296.workers.dev/ping/agent" || echo "")
if [ -n "$AGENT_COUNT" ] && [[ "$AGENT_COUNT" =~ ^[0-9]+$ ]]; then
echo -e "\033[32m✅ 感谢您成为全球第 ${AGENT_COUNT} 名 IP-Sentinel 哨兵\033[0m"
echo -e "\033[32m✅ 感谢您成为全球第 ${AGENT_COUNT} 名 IP-Sentinel 节点维护者\033[0m"
else
echo -e "\033[32m✅ 感谢您加入 IP-Sentinel 哨兵阵列\033[0m"
echo -e "\033[32m✅ 感谢您部署 IP-Sentinel\033[0m"
fi
echo -e "\n"
fi
# ================== [新增: 安装成功高光时刻 Star 引导] ==================
echo -e "\n========================================================"
echo -e "⭐ \033[33m开源不易如果 IP-Sentinel 提升了您的节点稳定性,请赐予我们一枚星标!\033[0m"
echo -e "💡 \033[32m您的每一颗 Star 都是我们持续对抗风控、维护更新指纹库的核心动力。\033[0m"
echo -e "👉 \033[36m\033[4m\033]8;;https://github.com/hotyue/IP-Sentinel\033\\[点击此处直达 GitHub 仓库点亮 Star 🌟]\033]8;;\033\\\033[0m"
echo -e "========================================================\n"

View File

@@ -1,78 +0,0 @@
#!/bin/bash
# ==========================================================
# 脚本名称: tg_daemon.sh (Telegram 互动监听守护进程 - 动态锚点版)
# 核心功能: 极低功耗长轮询监听、节点溯源、版本继承
# ==========================================================
INSTALL_DIR="/opt/ip_sentinel"
CONFIG_FILE="${INSTALL_DIR}/config.conf"
OFFSET_FILE="/tmp/ip_sentinel_tg_offset.txt"
# 1. 环境自检
[ ! -f "$CONFIG_FILE" ] && exit 1
source "$CONFIG_FILE"
# 如果没有配置 TG 机器人,则安静退出守护进程
[ -z "$TG_TOKEN" ] || [ -z "$CHAT_ID" ] && exit 0
# [核心: 动态版本锚点与防撞甲身份载入]
LOCAL_VER="${AGENT_VERSION:-未知}"
IP_HASH=$(echo "${PUBLIC_IP:-127.0.0.1}" | md5sum | cut -c 1-4 | tr 'a-z' 'A-Z')
NODE_NAME="$(hostname | cut -c 1-10)-${IP_HASH}"
# 2. 初始化消息偏移量 (Offset) 记录文件,防止重启后重复处理老消息
OFFSET=0
[ -f "$OFFSET_FILE" ] && OFFSET=$(cat "$OFFSET_FILE")
# 发送消息的快捷工具函数
send_msg() {
curl -s -X POST "https://api.telegram.org/bot${TG_TOKEN}/sendMessage" \
-d "chat_id=$CHAT_ID" -d "text=$1" -d "parse_mode=Markdown" > /dev/null
}
# 3. 核心守护循环 (无限长轮询监听)
# timeout=30 表示如果没有新消息,连接会挂起 30 秒才断开重连,极大地降低了系统资源消耗
while true; do
UPDATES=$(curl -s "https://api.telegram.org/bot${TG_TOKEN}/getUpdates?offset=${OFFSET}&timeout=30")
# 使用 jq 检查是否有新消息返回
COUNT=$(echo "$UPDATES" | jq -r '.result | length' 2>/dev/null)
if [[ "$COUNT" =~ ^[0-9]+$ ]] && [ "$COUNT" -gt 0 ]; then
for (( i=0; i<$COUNT; i++ )); do
UPDATE_ID=$(echo "$UPDATES" | jq -r ".result[$i].update_id")
MSG_CHAT_ID=$(echo "$UPDATES" | jq -r ".result[$i].message.chat.id")
MSG_TEXT=$(echo "$UPDATES" | jq -r ".result[$i].message.text")
# 【安全防御】严格权限验证:只响应你部署时填入的 Chat ID无视陌生人消息
if [ "$MSG_CHAT_ID" == "$CHAT_ID" ]; then
case "$MSG_TEXT" in
"/run")
send_msg "🚀 **[${NODE_NAME}]** 正在后台触发 IP 养护任务 (v${LOCAL_VER})..."
# 使用 nohup 另起后台独立进程运行,防止阻塞当前监听器的循环
nohup bash "${INSTALL_DIR}/core/mod_google.sh" >/dev/null 2>&1 &
;;
"/log")
LOG_DATA=$(tail -n 15 "${INSTALL_DIR}/logs/sentinel.log")
send_msg "📄 **[${NODE_NAME}] 实时日志 (v${LOCAL_VER}):**%0A\`\`\`log%0A${LOG_DATA}%0A\`\`\`"
;;
"/report")
# 触发生成一次战报
bash "${INSTALL_DIR}/core/tg_report.sh"
;;
"/help"|"/start")
HELP_MSG="🛡️ **IP-Sentinel 边缘控制台**%0A📍 节点: \`${NODE_NAME}\`%0A🔖 版本: \`v${LOCAL_VER}\`%0A%0A/run - 立刻执行一次养护%0A/log - 抓取最新运行日志%0A/report - 手动生成统计简报"
send_msg "$HELP_MSG"
;;
esac
fi
# 记录处理完毕的 message ID下次请求从新的 ID 开始获取
OFFSET=$((UPDATE_ID + 1))
echo "$OFFSET" > "$OFFSET_FILE"
done
fi
# 基础安全延时,防止极端网络情况下的死循环吃光 CPU
sleep 2
done

View File

@@ -208,29 +208,33 @@ MSG="$MSG
if [ -n "$REMOTE_VER" ] && [ "$REMOTE_VER" != "$LOCAL_VER" ]; then
MSG="$MSG
最新官方版本: \`v${REMOTE_VER}\` (✨有新版)
💡 *司令部提示:检测到新版装甲,请长官登录节点执行平滑热更新!*"
💡 *系统提示:检测到新版引擎,建议通过控制台执行 OTA 热更新!*"
elif [ -n "$REMOTE_VER" ] && [ "$REMOTE_VER" == "$LOCAL_VER" ]; then
MSG="$MSG
最新官方版本: \`v${REMOTE_VER}\` (✅已是最新)
💡 *哨兵正在后台默默守护您的资产。*"
💡 *IP-Sentinel 持续为您守护节点。若本项目对您有帮助,欢迎前往 GitHub 赐予 🌟*"
else
# 抓取失败兜底
MSG="$MSG
💡 *哨兵正在后台默默守护您的资产。*"
💡 *IP-Sentinel 持续为您守护节点。若本项目对您有帮助,欢迎前往 GitHub 赐予 🌟*"
fi
# 5. 调用 API 推送 (接入安全网关,挂载交互式控制台按钮)
# 5. 调用 API 推送 (接入安全网关,挂载控制台按钮与 GitHub 引流)
JSON_PAYLOAD=$(jq -n \
--arg cid "$CHAT_ID" \
--arg txt "$MSG" \
--arg cb "manage:${NODE_NAME}" \
--arg repo_url "https://github.com/hotyue/IP-Sentinel" \
'{
chat_id: $cid,
text: $txt,
parse_mode: "Markdown",
disable_web_page_preview: true,
reply_markup: {
inline_keyboard: [[{text: "⚙️ 调出该节点控制台", callback_data: $cb}]]
inline_keyboard: [
[{"text": "⚙️ 调出该节点控制台", "callback_data": $cb}],
[{"text": "🌟 前往 GitHub 仓库点亮星标", "url": $repo_url}]
]
}
}')

View File

@@ -1,3 +1,73 @@
vera wang 2026 met gala
power outage
milton fire
gws name change
mike wells
eta aquarids meteor shower
f1 news
sony playstation lawsuit
teams
jarred vanderbilt
kane cornes
peter daicos
chris phelan
diana, princess of wales
wesfarmers
anz class action lawsuit outcome
negative gearing
christian horner
craig silvey
nepal vs oman
shane flanagan
james hopes
budget
teacher
nick foot
the rookie the bandit
deine mariner
nate caddy
cairns post
rba
nyt strands hints
product recall
sharks vs tigers
siosifa talakai
sydney vs melbourne
brodie grundy
nba jayson tatum
australia world athletics relays record
kimi antonelli miami penalty
mitchell freeway crash
roosters vs broncos
bondi beach
tai tuivasa
ufc
auckland fc vs melbourne city fc
quillan salkilld
austin reaves
carlton vs st kilda
fijian drua vs highlanders
tasmania may temperature records
colorectal cancer
bulldogs vs cowboys
the sheep detectives
dolphins vs storm
airline
gta6
mike conley
home battery rebate
nba playoff bracket
rudy gobert
sam burgess
archibald prize 2026 finalists
kyle sandilands broadcasting return
dp world tour
alperen şengün
paramedic stabbed
marwan rahiki
weather perth
david allan coe
la lakers
jarome luai png chiefs
gauche
keith urban daughter instagram unfollow
@@ -12,7 +82,6 @@ prince harry working royal
retirement
rebate
denver nuggets
rudy gobert
driver's license
nuggets
jessica biel justin timberlake ultimatum
@@ -75,7 +144,6 @@ real salt lake vs inter miami
pope francis
camera
anzac
teams
kids news
bonds
hung cao
@@ -130,71 +198,3 @@ afc cup
mars rover
bayern vs vfb stuttgart
bom radar
sydney weather
melbourne weather
brisbane weather
adelaide weather
myGov login
news.com.au
abc news
nrl ladder
afl scores
afl fixture
matildas
sam kerr
bunnings opening hours
coles catalogue
woolies specials
qantas
virgin australia
jetstar flights
commbank
asx 200
sydney morning herald
the age
ticketek
ticketmaster
opal card top up
myki top up
translink timetable
transperth journey planner
adelaide metro
adelaide 500
adelaide crows
port adelaide
penrith panthers
brisbane broncos
collingwood fc
sydney swans
west coast eagles
fremantle dockers
canberra raiders
mcg events
optus stadium
the gabba
state of origin
australian open
melbourne cup
masterchef australia
mafs australia
petrol prices near me
australia post tracking
service nsw login
vicroads
queensland health
medicare
ato
jb hi-fi
kmart
amazon.com.au
vivid sydney
mona hobart
dark mofo
floriade canberra
rottnest island ferry
sydney airport arrivals
rba interest rate
nsw school holidays
qld school holidays
wa school holidays
m4 traffic updates

View File

@@ -1,3 +1,71 @@
vancouver news
bc hydro
paul mccartney
salman khan
dario amodei
randy jackson health
cape breton hiker search
angelina jolie
meteor shower 2026
national emergency alert system test
mitch marner
daisy edgar jones
jackson lacombe
nepal vs oman
naz reid
christopher nolan
jelly roll
明天的天氣
lakers vs okc
julius randle
mamata banerjee
aaj tak
star wars
oil
내일 날씨
johnston canyon
aaj tak live
mats zuccarello
paris jackson
atlas - cruz azul
cruz azul
jake paul
lafc vs san diego fc
micheal jackson
aziz ansari
downtown toronto power outage today
matt damon
seattle mariners
fraud
margot robbie
steve erceg
hacks
jabari smith jr.
ringo starr
patton oswalt
pavel talankin oscar
bmo marathon
jack della maddalena
b
adam scott
canada immigration news
bruce cassidy
nugent hopkins
nhl playoff bracket
nepal vs uae
dostal
vasily podkolzin
nh
lebron james
carter hart
rachel kerr missing
lena dunham
utah
kailer yamamoto
deandre ayton
clayton keller
jack white
keanu reeves
danielle smith
workday
jermaine jackson
@@ -11,17 +79,14 @@ whl
shea theodore
nikola jokić
mark stone
naz reid
cameron johnson
dea
dylan guenther
jamal murray
euphoria cast
mlb bo bichette
明天的天氣
edmonton news
radko gudas
oil
jeffrey viel
boat
joel quenneville
@@ -35,7 +100,6 @@ peyton krebs
elena rybakina
shane doan
ja'kobe walter
mitch marner
radio-canada
golf
hurricanes vs senators
@@ -134,67 +198,3 @@ toronto gas prices
président
mets vs cubs
matt fitzpatrick
sénateurs hurricanes
senators vs hurricanes
man utd
spurs
evan mobley
chelsea vs man united
atlético madrid vs real sociedad
roma vs atalanta
cf montreal
jakob poeltl
ukraine
contrôle routier québec
bachelorette 2026
lens toulouse
arber xhekaj
leylah fernandez
anthropic
paige wwe
inter cagliari
carrie ann inaba
syria
highway hotline sk
real betis vs braga
vincent bolloré
europa conference league
resident alien
battlefield 6
aston villa vs bologna
nottm forest vs porto
soccer
lamour est dans le pré
luis suárez
listeria
strc
bayern
arda güler
aleksandar pavlović
kooora
yalla kora
ina garten
jordan goodwin
jerami grant
jimmy snuggerud
clav
bts
zach galifianakis
billy crystal
club américa vs nashville
allison williams
CBC News
Canada.ca
Toronto Weather
NHL Scores
Amazon.ca
Air Canada
Service Canada
CRA login
Rogers
Bell Internet
Tim Hortons
Indigo
Canadian Tire
Walmart Canada
Toronto Raptors

View File

@@ -1,5 +1,73 @@
swr aktuell baden-württemberg
novo nordisk
daimler truck
we
angelina jolie
westfalia rhynern
rosenheim24
oliver zipse
eisheiligen 2026
finanztrends
wetter lübeck
gracie abrams
dolly parton
connor storrie
wetter
wetter bamberg
wetter kassel
venus
newcastle-krankheit
wetter ulm
wetter erlangen
west bengal election 2026
gamestop
american water works company
tesla roadster
bengal election 2026
arnold schwarzenegger
star wars tag
united states army
republikanische partei
omr 2026
rezession
franz wagner
la galaxy whitecaps
kuba
frankreich
wetter mannheim
spacex
hurricanes flyers
audi in der formel 1
hornissen
lindsey vonn
spirit airlines
bruins sabres
mammoth golden knights
chiemgau24
usa donald trump
rentenbescheid24
goodbye deutschland marie heidtke
vinicius junior
gntm wer ist raus heute
atlassian aktie
vietnam
haben bäckereien am 1 mai geöffnet
1 mai veranstaltungen in der nähe
warum ist der 1 mai ein feiertag
brenntag
tagesspiegel
wild stars
maifeiertag
stefan hartung
mckinsey & company
the taste promi wer ist raus
fc bayern münchen champions league
danny ramirez
claudia major
peter wohlleben
heizungsgesetz
jerome powell
joko & klaas gegen prosieben
swr aktuell baden-württemberg
rettungshubschrauber
lebensmittelwarnung.de
julia ruhs
@@ -97,7 +165,6 @@ sara gündogan
krankenversicherung
jan-lennard struff
bryan lasme
republikanische partei
thailand
robin gosens
maremma
@@ -131,70 +198,3 @@ paris-sg lyon
arte live
dominik kohr
dumbledores geheimnisse
kampf der realitystars
kerner
tennessee
billy idol
kfc uerdingen
bastian pastewka
gnabry
lok leipzig heute live ticker
true lies wahre lügen
челси манчестер юнайтед
nurburgring
fortnite server status
süperlig
ronaldinho
esther schweins let's dance
michael jackson film 2026
oliver pocher
die queen film
milano
straße von hormus
motsi mabuse
rayo vallecano
harry meghan
irland
betis sevilla
vermisste person
konferenz league
garda
judith hoersch
jörg pilawa
strasbourg
real madrid vs bayern
kicker
mbappe
flashscore
sport1
vini jr
bet365
kompany
jude bellingham
upamecano
gute zeiten, schlechte zeiten
inflation
fog warning
wetter bochum
wetter aachen
wetter bonn
onet
protest
jamie dornan
heizöl
champions league
uefa champions league
keytruda
péter magyar
psg
hechingen
şampiyonlar ligi
tschernobyl 1986
amazon video
paris saint-germain
dietrich grönemeyer
fränkische schweiz
scarlett johansson
jeff bezos
dan brown
паспорт громадянина україни для виїзду за кордон

View File

@@ -1,9 +1,62 @@
2026
bad bunny
spurs - timberwolves
anthony edwards
blake lively
heidi klum
santiago segura
knicks - 76ers
robinho
ashley graham
pogacar
wetter
dinero en efectivo
itv
gene hackman
carrera f1 miami
heraldo de aragon
alberto durán cornada
tiempo zaragoza
tiempo valencia
g20
luis zahera
despido laboral
shakira
weather
renfe
alianza lima - cd moquegua
eleccion bellea del foc alicante
nba hoy
meteocat
noticiastrabajo
meme vito quiles begoña gomez
rockets - lakers
sports
sorteo once
juana acosta
raptors - cavaliers
magic - pistons
raul ruiz torero
dia
precio de la luz
fútbol
pension
formula 1
hacienda
precio de la luz hoy
metro madrid
vivienda en españa
tiempo en zaragoza
euribor hoy
austin reaves
estafa
lakers vs rockets
cienciano - atlético mineiro
anthropic
prórroga alquileres congreso
sorteo bonoloto
el tiempo hoy
aemet valencia
weather
aemet
tiempo
huelga gasolineras
@@ -17,15 +70,12 @@ el tiempo en granada
spencer jones
encuesta
lili pink
meteocat
trail blazers - spurs
clasificacion segunda
20minutos
internacional de bogotá - boyacá chicó
el tiempo en valencia
lakers vs rockets
fluminense - chapecoense
rockets - lakers
heraldo de aragón
víctor muñoz villanueva
de tapas por españa
@@ -148,49 +198,3 @@ st. pauli köln
iphone 18
st. pauli - colonia
nico paz
lionel messi
armengol
pau víctor
braga fc
fiorentina vs crystal palace
morante hoy
iago aspas
aston villa
real betis vs braga
ministerio de sanidad
az - shakhtar
arsenal
tiktok
harry kane
sudan
lunin
airef
tiempo de juego
fc bayern
militao
bellingham
supervivientes
jalen green
rockstar games
bam adebayo
china
suns - trail blazers
euromillones
ldu quito - mirassol
davion mitchell
universitario - coquimbo unido
El País
Marca
RTVE Noticias
La Liga
Real Madrid
Barcelona FC
Tiempo Madrid
Renfe
Iberia
Amazon España
El Corte Inglés
Hacienda
Mercadona
YouTube Música
Entradas Cine

View File

@@ -1,5 +1,68 @@
artemis ii
6 mai
gouverneur de la banque de france
saints de glace 2026
meteo le mans
chaine meteo
gap
jaylin williams
meteo toulon
éliminé koh lanta
5 mai
bath rugby
robinho
gladiator 2
patrick antonelli
meteo 15 jours
meteo france
weather
football psg bayern munich
jours fériés mai 2026
rudy giuliani
jour ferie mai
maries au premier regard episode 11
bali
coupe du monde de vtt
meteo calais
météo france
easyjet
centre presse aveyron
vladimir poutine
wetter
marathon biarritz
hassan du maroc
corse matin
invités léa salamé quelle époque
charlene wittstock
lionel messi
association sportive de saint-étienne
stellantis
groupe adp
romain gavras
livret a
pékin express 2026 candidats
autobus
moyen-orient
cyril féraud
bill ackman
teknival
madonna
le pal
brocante 1er mai
la depeche du midi
smic
2026
steven spielberg
maud bregeon
gendarmerie
chelsea football club
annulations vols prix kérosène
lafc deportivo toluca
meteo caen
playoff nba
shannon elizabeth
sandrine rousseau
brent
bernard cazeneuve
vignoble
forest automobile
@@ -135,66 +198,3 @@ adil rami
castres toulouse
angel
stéphane bern
anne claire coudray
pmu résultat
laury thilleman et paul mirabel
quinté du jour
euromillions 17 avril 2026
uson
guillaume meurice
pmu
grenoble oyonnax
bagarre
programme télé
tchernobyl
géraldine maillet
biot
racing
liga europa
tv ce soir
programme tv de ce soir
brad pitt
aston villa
michael olise
robert ménard
match ce soir
sporting
ester exposito
bellingham
iptv
militao
jeff goldblum
lunin
kiev
julien royal
viktor orbán
aqababe
nhl
suns trail blazers
bam adebayo
davion mitchell
l
santos recoleta football club
atletico madrid
tf1
uefa champions league
camille cerf
giorgi mamardashvili
streaming football
atlético madryt fc barcelona
miss france
rts
leonardo balerdi
yann barthes
alain delon
loto du 13 avril 2026
juan arbeláez
hbo
katy perry justin trudeau
tondela gil vicente
le rugbynistère
epstein
kino
horoscope du 13 avril 2026
golf masters augusta 2026
boursorama bourse

View File

@@ -1,3 +1,69 @@
麥美恩
金建希
航空
袁偉豪
thunder vs lakers
etv
雷霆 對 湖人
活塞 對 騎士
八達通
兵工廠 對 馬德里競技
龍蟠苑
飛驒山
澳元
草 蜢
kktix
spurs vs timberwolves
安東尼·愛德華茲
艾佛頓 對 曼城
何君堯
失業
世界盃2026
周殷廷
鹹田灣
投資
漢坦病毒
急性內耳迷路炎
地獄占星師
灣仔
cavaliers vs raptors
charlie puth
兵工廠 對 富勒姆
趙雅芝
coleman wong
jayson tatum
celtics vs 76ers
osasuna vs barcelona
塞爾提克 對 76人
香港人
伊朗
咖啡
c羅
raptors vs cavaliers
lakers
湖人
nba playoffs
nba live
高淑樺
暴龍 對 騎士
黃澤林
lck
黎智英
草蜢演唱會
timberwolves vs nuggets
走私
76ers vs celtics
周嘉洛
莊子璇
深圳地鐵
奧斯汀·里夫斯
國際珍奶日香港
天仁茗茶
伊朗海軍
居屋
湖人 對 火箭
陳柏宇
lakers vs rockets
異環兌換碼
洪金宝
梁嘉莹
@@ -132,69 +198,3 @@ tottenham vs brighton
epl
司機
补贴
華富邨
零售
藍莓
商湯科技
周國豐
啟點
歐聯
神戶勝利船
潘宏彬
姚正菁
木乃伊
ios 26
李克寧木乃伊
田啟文
曼寧加
arsenal
ucl
歐洲聯賽冠軍盃
arsenal vs sporting
bayern vs real madrid
real madrid
皇馬
拜仁慕尼黑 對 皇家馬德里
claude
補貼
nba 直播
航空公司
向華強
李嘉欣
typhoon
nba
nba線上看
nba直播
全民國家安全教育日
運輸署
liverpool vs psg
barcelona
歐冠
馬德里競技 對 巴塞隆納
利物浦 對 巴黎聖日耳曼
hkjc
馬會
航空
2035
man united vs leeds
曼聯 對 里茲聯
prediction market
預測市場
polymarket
巴基斯坦
sndk
楊何蓓茵
樂珈嘉
姜濤
日經平均指數
飲茶
上市公司
daniel caesar
中年好聲音4
香港天文台
煤氣
livenation
政府
香港天文台天氣預報
MTR 港鐵路線圖
OpenRice 附近美食

View File

@@ -1,3 +1,73 @@
渋野日向子
コンサドーレ
コンサドーレ札幌
栃木sc
秋山翔吾
大分トリニータ
藤枝myfc
大阪桐蔭高等学校
鹿児島ユナイテッド
j2
変死体
ミニストップ
ゴゴスマ
韓国 ホルムズ 海峡
バンテリンドーム
松本光平
クーリエ・ジャポン
タイアニ ライン デルス
阿智村
オリックス・バファローズ
無印
kpmg
トランテックス
31
jin
スタバ
ゴンチャ
travis japan
ウォニョン
dena 対 広島
菅沼菜々
カターレ富山
北九州 対 大分
山形 対 栃木sc
平良海馬
海上自衛隊
ベナビデス
weリーグ
田中健
ミステリーウェイ
石川遼
西野七瀬
堀田真由
横浜fc 対 相模原
イラストやメーカー
薬局
g大阪 対 神戸
オコエ瑠偉
川崎
湘南 対 栃木c
バルミューダ
hikakin
東京
近畿大学
小樽
田園都市線
常磐線
東京スカイツリー
みずほ銀行 ゴールデンウィーク
力士
秋元杏月
四国電力
佐久間宣行
和田 まあ や
浅田 美代子
バトオペ2
千葉県
慶應義塾大学
パンチ
ぶ いす ぽ 活動 休止
ベガルタ仙台
サンフレッチェ広島
相模原 対 栃木c
@@ -6,7 +76,6 @@
福島圭音
神宮球場
オスナ ヤクルト
藤枝myfc
浦和 対 川崎f
村上宗隆
ゴー イントゥ スカイ
@@ -129,72 +198,3 @@ ngày trái đất
リーグアン
伊勢谷友介
bayern vs vfb stuttgart
chelsea vs man united
唐田えりか
102回目のプロポーズ
デゼルビ
アトレティコ 対 ソシエダ
チェルシー 対 マンu
スパーズ
清春
ディエゴ・ゴメス
ps5
ハイウェイ の 堕 天使 興行 収入
カブス 対 メッツ
dazn
サッスオーロ 対 コモ
杉咲花
町田 対 アル・イテハド
家計
週末旅の極意
北斗の拳
qvc
小芝風花
中井亜美
afc u20女子アジアカップ
ネオジオ
uefaヨーロッパリーグ
加藤史帆
志田未来
伊藤英明
島田麻央
al-nassr vs al-ettifaq
arsenal
レアル・マドリード
バイエルン
abema
real madrid
lucknow super giants vs royal challengers bengaluru standings
bayern vs real madrid
給付
wowow
小泉進次郎
政権
ミキティ
今日のドジャースの結果
新名神高速道路
わたせせいぞう
ピーチ航空
アレックス・ベシア
リバプール
champions league
アトレティコ 対 バルセロナ
オープンワールド
atlético madrid vs barcelona
松田好花
リコール
man united vs leeds
白鵬翔
日本アカデミー賞 最優秀助演男優賞
マンu 対 リーズ u
サンディスク 株価
らじるらじる
マクドナルド
ロシア
広島市
ゲイブル・スティーブソン
日本維新の会
新 日本 繊維
高見沢 俊彦
不登校
後期高齢者医療制度

View File

@@ -1,3 +1,73 @@
박지원
울산항
에이 비엘 바이오
하하
삼성물산
풍력 발전
지수
수익률
라이언 와이스
사우디아라비아
nc 대 ssg
경북대학교
한화 대 kia
롯데 대 kt
키움 대 삼성
두산 대 lg
대학
여객선
고우림
안젤리나 졸리
안성재
토요타 rav4
황희찬
g7
항공 승무원
스트레티지
대한전선
나승엽
인플루언서
이재욱
삼성바이오로직스
스마일게이트
강민호
mls
장도연
이재명 정부
예방 접종
통장
lafc
소송
울산 대 포항
fc 서울 대 김천상무
차명석
붉은사막
소라와 진경
멕시코 축구 국가 대표팀
한화시스템
윤영경
월세
오타니 쇼헤이
이서진
굴리엘모 비카리오
재건축
나솔
재판
라이엇
진소리
아빠하고 나하고
mlb
박진만
중고
롯데 자이언츠
강동원
혁신도시
제로페이
체이스 인피니티
주스 아저씨
권민규
변요한
이유 비
변호사 시험
금보유고
이상화
@@ -20,7 +90,6 @@
효성중공업
최홍라
uae vs oman
mlb
부정승차
박하나
일본인
@@ -129,31 +198,3 @@ bundesliga
fotmob
윤아
김영인
манчестер сити арсенал
케이뱅크
날씨
환율
손흥민
토트넘 경기 일정
넷플릭스
국민은행
네이버웹툰
로또 당첨번호
쿠팡
KBO 리그
프로야구 순위
아이폰 15
챗gpt
인스타그램
유튜브 밴스드
이강인
김민재
LCK 일정
T1
페이커
무빙
카카오톡 PC버전
당근마켓
배달의민족
올리브영
메이플스토리

View File

@@ -1,3 +1,72 @@
mykad
honda city
sspn
cimb group holdings berhad
谢伊·吉尔杰斯-亚历山大
recoleta fc vs santos fc standings
teams
ucl final 2026
雷霆 - 湖人
final ucl
nubhan
economy
johor darul ta'zim
world championship snooker final
安东尼·爱德华兹
hantavirus infections cruise ship
undang luak sungai ujong
peluru berpandu
nepal vs oman
马刺 - 森林狼
central bank of malaysia
trisha
rudy giuliani
taiping
go live
perkahwinan
malaysia marathon
results.eci.gov.in 2026
dean wade
mom
jeram toi
haji
earthquake
leverkusen vs rb leipzig
凯尔特人 - 76人
tiong king sing
gaji mei 2026
palmeiras vs santos
奥萨苏纳 - 巴塞罗那
inter miami vs orlando city
lebron james
uae opec exit analysis
grab cross border taxi
menteri besar negeri sembilan
malaysia badminton thomas cup
nba live
猛龙 - 骑士
flower moon
ek din movie review
火箭 - 湖人
macbook
china
global sumud flotilla 2.0
nepal vs uae
森林狼 - 掘金
robotaxi
76人 - 凯尔特人
selamat hari buruh 2026
f1 schedule
lakers vs houston rockets
amira othman
lakers vs houston rockets match player stats
federal reserve interest rates
adidas
mohamad hasan
austin reaves
lafc vs toluca
lakers
湖人 - 火箭
marissa dania hakim
oma vs nep
ppv
@@ -23,7 +92,6 @@ court
bella astillah
today wordle hints
ezi ray 01
lakers
uae vs oman
rekod dunia
mayat

View File

@@ -1,6 +1,74 @@
trending video
recoleta fc vs santos fc standings
ig
2026 uae eid al adha
thunder vs lakers
adams oshiomhole
pistons vs cavaliers
jamb news
2027 social security cola
10th nigeria national assembly
spurs vs timberwolves
moniepoint
knicks vs 76ers
atenas cordoba vs argentino junin
ypiranga fc rs vs ituano fc sp
birthday wishes
apple iphone 18 pro max
hantavirus infections cruise ship
ben ayade
desmond elliot
joint admissions and matriculation board
nrc
raptors vs cavaliers
f
cavaliers vs raptors
hantavirus
ol vs rennes
35th fighter wing
vinícius júnior
espanyol vs real madrid standings
liverpool news
nigeria news
40k armageddon box
palmeiras vs santos
celtics vs 76ers
inter miami vs orlando city
arsenal vs fulham premier league
alabama redistricting
barca news
barcelona news
rockets vs lakers
magic vs pistons
twitch tv
leke abejide
mallorca
living wage
noah okafor
remi tinubu
imperfect women
bbc.hausa
ekiti
china
timberwolves vs nuggets
76ers vs celtics
knicks vs hawks
hawks vs knicks
spotify
labour day
asake new album
lakers
lakers vs rockets
pistons vs magic
orlando city vs new england
ibukun awosika
xiaomi 17t anatel listing
sporting fc
alvarez
asake
arsenal vs psg
william ruto
spurs vs trail blazers
celtics vs 76ers
ahsoka tano replacement star wars
san lorenzo vs santos
the devil wears prada 2
@@ -10,8 +78,6 @@ gta 5
top scorer in champions league
nuggets vs timberwolves
suns vs thunder
magic vs pistons
ig
bybit
jack grealish
sanwo olu
@@ -20,7 +86,6 @@ man u fc
live score today
tinubu
lagos weather
nigeria news
super eagles
naira exchange rate
davido

View File

@@ -1,10 +1,76 @@
stagflatie
adyen
weer groningen
weer utrecht
weerbericht
andes virus
stranger things
ziggo
priscilla wildeman
tanner horner
peter bosz
blue ivy
ryan reynolds
accijns
bevrijdingsdag
walvis
iptv
mark carney
prime video
roma - fiorentina
georginio wijnaldum
intercepted
ulster
rudy giuliani
weer rotterdam
weather
benzine en diesel
witsnuitdolfijn
farioli
ongeval
grand prix formule 1 van miami 2026
formule 1
uitslagen eredivisie
ontsnapte zebra
miami f1
shakira
rave
daghoroscoop
weeronline
wetter
isack hadjar
vakantiegeld aow netto
shivon zilis
china
buienradar
politie zandvoort
nl alert
oekraïne
jade kops erehaag
onweer
corinthians - peñarol
john de bever
lance stroll
mafs
nexperia
hypersonische raket
eindhoven
f1 kalender
lakers vs rockets
bultrug timmy
b&b vol liefde
vakantiegeld
martijn van der vorm rotterdam
ismaël baouf
ea sports fc 26
bauke mollema
xrp nieuws
kaaba
mathieu van der poel
een miljard
p2000
james comey
helena bonham carter
bultrug timmy
george russell
openbaar vervoer
wayne mardle
@@ -23,7 +89,6 @@ emma heesters
luik-bastenaken-luik
luilakken koningsdag
rusland
shakira
car rental
112 leiden
taxi
@@ -133,63 +198,3 @@ pogoń szczecin lech poznań
stand premier league
bulgarije
chelsea - man utd
atlético madrid - real sociedad
xavi simons
ayase ueda
roma - atalanta
rtv noord
paraguay
sergio herman
fed
keuken kampioen
legia warszawa zagłębie lubin
ripple
voorzitter fed
bahamas
overtreding
almere city
real betis
sean connery
l1 nieuws
ronaldinho
demi de boer
bondgenoten
frank masmeijer
real betis - braga
ethereum
aston villa - bologna
manuel neuer
neuer
olise
mbappe
sporting
live tv
bayern munchen
arda güler
ziggo
arda guler
netflix
frenkie de jong
kanye west
vandaag inside
at5
veroordeling
verenigde staten
alec baldwin
anna paulowna
şampiyonlar ligi
NOS Nieuws
Buienradar
Rijksoverheid
Albert Heijn
Funda
Marktplaats
KLM
Ziggo
ING Bank
Eredivisie
Amsterdam Weer
Bol.com
Treinkaartjes NS
PostNL
Pathé

View File

@@ -1,9 +1,77 @@
housing and development board
dress code
micron technology
thunder vs lakers
pistons vs cavaliers
阿森纳 - 马德里竞技
马来西亚
hydrogen
shell
kartik sharma
dario amodei
keppel infrastructure trust
toto jackpot singapore
anthony edwards
dbs bank
补贴
ticketmaster
spurs vs timberwolves
knicks vs 76ers
新加坡博彩公司
kerala election results
toto
ndtv live
oneindia tamil
us-iran news
results.eci.gov.in 2026
tamilnadu election result date 2026
tamil nadu election results
dinamalar
tamil nadu election results date 2026
san diego fc vs lafc
citigroup
spirit airlines flights
thomson-east coast line
inter miami vs orlando city
mothers day
jet bridge
mls
celtics vs 76ers
james seah
8视界新闻
lebron james
jpmorgan chase
singapore airlines ultra-long routes
drunk driving
kwek leng beng
raptors vs cavaliers
rockets vs lakers
magic vs pistons
warren buffett
lawrence wong may day speech
paynow
cold war 1994
expo event
timberwolves vs nuggets
76ers vs celtics
gardens by the bay
weather forecast
universal studios singapore
nba scores
lorna hajdini
cancer
lakers
dbs earnings
lafc vs toluca
cyclist
lakers vs rockets
jerome powell
white house correspondents' dinner
oman vs nepal
primary 1
mapletree industrial trust
spurs vs trail blazers
knicks vs hawks
celtics vs 76ers
snake
marriage
san lorenzo vs santos
@@ -15,17 +83,13 @@ jeanette aw
jisoo
nuggets vs timberwolves
suns vs thunder
magic vs pistons
drug
jimmy kimmel
erika kirk
elon musk
hokkaido earthquake today
rockets vs lakers
labour day
angela palmares
76ers vs celtics
nba scores
chernobyl disaster
tengah garden residences
torino vs inter
@@ -61,13 +125,11 @@ raghav chadha
darren wang
mukesh choudhary
danish malewar
tamil nadu election results
allah ghazanfar
peregrine falcon
airasia flight
arrest
hao mart singapore
kartik sharma
real salt lake vs inter miami
pistons vs magic
krisflyer
@@ -96,7 +158,6 @@ gamba osaka vs avispa fukuoka
honor 600 pro
china shipyards oil tanker orders
coe
lebron james
real madrid vs alavés
brighton vs chelsea
nitish rana
@@ -137,64 +198,3 @@ tinie tempah
wrexham vs stoke city
sassuolo vs como
the straits times
india women vs south africa women
beef season 2
loyang valley
world cup 2026
afc champions league
hormuz
malacca strait
kkr vs gt
aston villa vs bologna
mumbai indians vs punjab kings standings
al sadd vs vissel kobe
amd share price
opus 4.7
pete hegseth
naman dhir
yen singapore dollar
mayank rawat
dji pocket 4
real madrid
al-nassr vs al-ettifaq
bayern vs real madrid
arsenal vs sporting
lucknow super giants vs royal challengers bengaluru standings
is claude down
claude
allbirds
red sea
rcb vs lsg
retirement
asia flights delays cancellations
suns vs trail blazers
johnny somali
bam adebayo
zhang linghe pursuit of jade
roman gofman
cruz azul vs lafc
ocbc
santos vs recoleta
atlético madrid vs barcelona
ipl schedule
liverpool vs psg
iran blockade strait of hormuz
kartik tyagi
carlos alcaraz
propertylimbrothers
byeon woo-seok
mahathir mohamad
csk vs kkr
man united vs leeds
cbse class 10 result 2026 date
euphoria season 3
srh vs rr
tamil new year 2026
low de wei
pope
flexar
microsoft outlook
new rolex 2026
medical classification
blasphemy law
big bang coachella 2026

View File

@@ -1,3 +1,73 @@
宋成文
teams
軍 公教
廣達
高國豪老婆
周子 瑜
光寶科
asml
新莊淹水
金凱德
台玻
九合一選舉
頎邦
五月天
諾和諾德
星宇航空
瑞軒
0050 成分 股
亞馬遜 公司
行政專機
漢他病毒怎麼傳染
封鎖
博通
2388
陳光復
華倫·巴菲特
許常德
英特爾
00923
friday
中華民國國防部
林維恩
劉宇寧
2 奈 米 製程
淡江大橋何時通車
天母
陳盈潔
林襄
李芸
夾子園火災
黃路梓茵
五十嵐淳子
日春木瓜牛奶
總統
古林睿煬
槍決
dazn
陳芋汐
福特汽車
洋基
黃 國昌
高速鐵路
lck
og anunoby
白沙 屯 媽祖
playstation
星巴克買一送一
psy
70歲換駕照
台灣
email
林逸欣
張宇
任天堂
記憶體
ive
k spark 高雄
斑斑
粿 粿 判決書
蔡沁瑜
十銓科技
邱軍
股東會紀念品
@@ -13,7 +83,6 @@ spencer jones
山本由伸
陳德修
國巨
台玻
俠 盜 獵 車手 vi
晶豪科
無限城
@@ -99,7 +168,6 @@ cpbl
中華職棒
中職
黃甘霖
軍 公教
6147
earth day
陳哲遠
@@ -130,42 +198,3 @@ justin bieber 演唱會
tottenham vs brighton
長野縣
交通安全
朋友收集夢想生活
麥克傑克森
王濛
騎士 對 暴龍
熱刺 對 布萊頓
iem rio 2026
garret anderson
墓乃伊
曹格
claude design
柯文哲
金剛
荷 姆 茲 海峽
東北 季風
斯圖加特公開賽
歐聯
菡生婦幼診所
台鐵訂票
飛機
東光路
货币
amd
航空母艦
axti
Yahoo奇摩
天氣
蝦皮購物
PChome
Momo購物網
Mobile01
Dcard
巴哈姆特
中時電子報
聯合新聞網
台灣高鐵
台鐵時刻表
中華電信
統一發票
勞動部

View File

@@ -1,3 +1,71 @@
connections today
henry cavill
scottish sun
the boys season 5 finale
bolton news
recoleta fc vs santos fc standings
latest news
pizza
postcode lottery
daredevil born again
ryan reynolds
bbc radio 4
steam controllers
man utd news
connections nyt
wren kitchens
emmerdale spoilers
time
bb
ukraine russia war
kerala election result
starbucks
star wars day
who won the snooker last night
daily record
sports
eswatini
mcdonald's
election commission of india
funeral director
restaurant
southampton marathon 2026
jet2.com
lewis hamilton ferrari 2026 season
ipswich town football
on
nationwide building society
savings
nursery school
nba scores
katie price
lebron james
anne boleyn
beyond paradise kris marshall
nba schedule
superyacht sinking mike lynch
rockets vs lakers
ricky saints
treasury
inoue vs nakatani
mark allen snooker delay
accuweather
severn trent water
yorkshire water
met office weather
rangers f.c.
anglian water
edinburgh weather
united utilities
council tax
christian horner
lafc vs toluca
lakers vs houston rockets match player stats
snooker scores
snooker
housing market
bankruptcy
gina carano
weather birmingham
bbc nees
ella langley
@@ -11,9 +79,7 @@ spurs vs trail blazers
alexey mordashov
good morning
mortgage rates
wren kitchens
horoscope
nba scores
nhl scores
nuggets vs timberwolves
liverpool weather
@@ -24,7 +90,6 @@ wordle hint
everton f.c.
dvla
snooker results
sports
delivery
ronnie o'sullivan
janet cleverly councillor reprimanded
@@ -41,7 +106,6 @@ paul merson
is scarlett moffatt pregnant
man city fixtures
scarlets vs bulls
bankruptcy
monaco fc
jaqueline cristian
stock market
@@ -134,67 +198,3 @@ pl
frank lampard everton
nottingham forest fixtures
everton manager
dragons vs bulls
suede
lahore
wrestlemania 2026
giants vs rhinos
glenrothan
york knights vs leopards
tim sherwood
redditch
ccfc
europa conference league
bromley fc
paul merton
chris wood
istanbul
turkey
lucy watson
thiago silva
bednarek
jan bednarek
vincent kompany
mbappe
luis suarez sporting
madrid fc
andriy lunin
what did bec say to rachel mafs
yalla kora
geovany quenda
sporting cp
pavlovic
talktalk
arne slot drops mohamed salah
suns vs trail blazers
italian
used cars
mlb
roman
johnny somali
windows update
davion mitchell
hbo max
bolton wanderers
barca vs atletico
kemi badenoch
warren zaïre-emery
barca
samuel west
barcelona fc
lamine yamal
hbomax
noah okafor
casemiro
talksport
lazio
leeds united fixtures
bruno fernandes
afc champions league
meteor
carlos queiroz
travel warning
tori amos
cloud
reading
rolls-royce smr

View File

@@ -1,3 +1,71 @@
caro claire burke
oregon state baseball
iphone 16 pro
yosemite national park
meg stalter
popeyes chicken wraps permanent menu
walt frazier
samsung stock
heather watson
los angeles angels
chris brown
nathan lane
jaafar jackson met gala 2026
rachel zegler
amanda bynes
house of the dragon season 3
sf weather
ariana grande met gala
jackson lacombe
aeromexico
nbc
suvendu adhikari
trisha
seattle weather
putin
melissa joan hart
eenadu
gavin mckenna
mortgage loan rates today
floyd mayweather
wsl
whitecaps - la galaxy
air jordan 11 space jam
julio cesar chavez
budapest
usyk
dmitry bivol
jai opetaia
ebay acquisition
henry winkler
will anderson jr
themba gorimbo
yoel romero
alex hoppe
junior tafa
colby thicknesse
jacob malkoun
nick kurtz
kailer yamamoto
alex jones
cps energy
ssi
e
hail
michael jackson movie biopic
houston weather
katarzyna kawa
usd to yen
michael jackson net worth
utah hockey
mitch marner
hawaii news now
spacex rocket launch
jack eichel
apple iphone 18 pro max
lena dunham
vegas knights
skip bayless
acura
qatar airways
charles barkley
@@ -130,71 +198,3 @@ mets - cubs
alexander manninger
santos vs fluminense
disclosure day
tobias myers
vladimir putin
knicks game
ben rice
prem
timberwolves vs nuggets
cody bellinger
nik khamenia
real sociedad
nurburgring crash
atlético madrid - real sociedad
ruke orhorhoro
radar
the weather channel
kttc
luke gulbranson
kttc weather
comcast data breach settlement
tornado watch
moisés ballesteros
mets game today
giancarlo stanton
real betis
prosecution of daniel duggan
liv morgan
mikey williams
indiana fever sophie cunningham baptism
gregory donnell morgan jr
why are the sirens going off
leylah fernandez
strasbourg vs mainz
michael olise
ريال مدريد
dazn
paramount
univision
jude bellingham
sam antonacci
real madrid
bayern
arda güler
los angeles dodgers
vandenberg launch schedule
ryan dunn
alex vesia
ken jennings
ucla baseball
padres standings
mets vs dodgers match player stats
bo bichette
jorge polanco
psg
barca
vix
fcb
barcelona schedule
tarjeta roja
a knight of the seven kingdoms season 2
charlotte flair
usa network
natalie sago
carlos queiroz
carlos batista
katie boulter
levante - getafe
levante vs getafe
mcilroy green jacket presentation
man united vs leeds

View File

@@ -1,3 +1,73 @@
dông
tập đoàn vingroup
cảnh sát
giải vđqg nhật bản
tuyên án
gyokeres
nguyễn thị kim tiến
học
bảo hiểm xã hội
thi sinh thi tốt nghiệp thpt
ngân hàng
đội tuyển bóng đá u 17 quốc gia yemen
giải bóng đá vô địch thế giới
kylie jenner
thời tiết cực đoan
vietnam airlines
xét tuyển đại học
matheus cunha
heidi klum
khóa sim
huấn luyện viên
chu châu
vụ án tây ninh
xác thực
lê khanh
doanh thu phim trùm sò
máy bay
lũ quét
ngộ độc
nvl
iphone 18 pro max
샌디에이고 fc 대 엘에이 fc
clb san diego đấu với lafc
tổng công ty khoáng sản tkv
xe
hà giang
bia
trọng tài
thu nhập cá nhân
phương oanh
thiếu tướng quân đội nhân dân việt nam
lịch nghỉ 2 9
dân việt
rockets vs lakers
tesla
giá vàng the giới
mỹ iran
ninh dương lan ngọc
thủy tiên
xabi alonso
mason mount
dự án
huỳnh hiểu minh
nhiệt độ tphcm
venezuela
vinhomes
học bổng
giáo sư
denver nuggets
dog
efootball
free fire
quang minh và hồng đào
giá gas
lakers vs rockets
đua xe đạp
đô la mỹ
hoài linh
chess
đường cao tốc
giáp
nguyễn đình bắc
avispa đấu với sanfrecce
@@ -128,64 +198,3 @@ twitch
psg đấu với lyon
ligue 1
trận đấu ngoại hạng anh
chelsea đấu với man utd
atlético madrid đấu với real sociedad
roma đấu với atalanta
epl
iem rio 2026
tot
tập đoàn gelex
đường ray
inter
inter đấu với cagliari
sassuolo vs como
david alaba
claude design
fenerbahçe đấu với rizespor
como
como vs
thẻ đỏ
porto vs
crystal palace
porto
uefa europa conference
betis đấu với braga
real betis vs braga
aston villa đấu với bologna
fiorentina đấu với crystal palace
c2
cup c2
thể thao
arda güler
aleksandar pavlović
ars
90
real
real madrid
xoi
luong sơn
fpt
phan văn giang
nhà ở xã hội
club america
giàu
đỗ mỹ linh
sun group
hưng yên
nvl
américa đấu với nashville
VnExpress
Zing News
Thời tiết Hà Nội
Giá vàng hôm nay
Shopee VN
Tiki
Vietjet Air
Vietnam Airlines
Bóng đá trực tuyến
Lịch thi đấu Euro
Xổ số miền Bắc
Grab Vietnam
VTV Go
Học tiếng Anh
Du lịch Đà Lạt

View File

@@ -166,6 +166,36 @@
"name": "Frankfurt (法兰克福)"
}
]
},
{
"id": "SN",
"name": "Saxony (萨克森州)",
"cities": [
{
"id": "Falkenstein",
"name": "Falkenstein (法尔肯施泰因)"
}
]
},
{
"id": "BY",
"name": "Bavaria (巴伐利亚州)",
"cities": [
{
"id": "Nuremberg",
"name": "Nuremberg (纽伦堡)"
}
]
},
{
"id": "BE",
"name": "Berlin (柏林州)",
"cities": [
{
"id": "Berlin",
"name": "Berlin (柏林)"
}
]
}
]
},
@@ -318,6 +348,76 @@
"name": "Houston (休斯顿)"
}
]
},
{
"id": "IA",
"name": "Iowa (爱荷华州)",
"cities": [
{
"id": "Council_Bluffs",
"name": "Council Bluffs (康瑟尔布拉夫斯)"
}
]
},
{
"id": "VA",
"name": "Virginia (弗吉尼亚州)",
"cities": [
{
"id": "Ashburn",
"name": "Ashburn (阿什本)"
}
]
},
{
"id": "OH",
"name": "Ohio (俄亥俄州)",
"cities": [
{
"id": "Columbus",
"name": "Columbus (哥伦布)"
}
]
},
{
"id": "NY",
"name": "New York (纽约州)",
"cities": [
{
"id": "New_York",
"name": "New York (纽约)"
}
]
},
{
"id": "FL",
"name": "Florida (佛罗里达州)",
"cities": [
{
"id": "Miami",
"name": "Miami (迈阿密)"
}
]
},
{
"id": "NJ",
"name": "New Jersey (新泽西州)",
"cities": [
{
"id": "Newark",
"name": "Newark (纽瓦克)"
}
]
},
{
"id": "GA",
"name": "Georgia (佐治亚州)",
"cities": [
{
"id": "Atlanta",
"name": "Atlanta (亚特兰大)"
}
]
}
]
},

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.abc.net.au/news/2026-04-29/what-should-schools-do-about-ai-deepfakes-friends-school-hobart/106619686",
"https://www.abc.net.au/news/2026-04-29/monthly-inflation-surges-in-march-australia/106619740",
"https://www.bom.gov.au/",
"https://www.abc.net.au/news/2026-04-29/afl-pushes-ahead-with-draft-changes-and-not-everyone-is-happy/106621516",
"https://www.abc.net.au/news/2026-04-29/inflation-details-may-give-rba-pause-on-interest-rates/106620164",
"https://www.abc.net.au/news/2026-04-29/gina-rinehart-gifts-plane-to-pauline-hanson-one-nation/106620808",
"https://www.abc.net.au/news/2026-05-06/man-fighting-removal-to-nauru-loses-high-court-challenge/106646446",
"https://www.abc.net.au/news/2026-05-06/wagga-river-camp-resident-ask-for-open-mind-after-baby-death/106648194",
"https://www.abc.net.au/news/2026-05-06/tim-pictons-alleged-attacker-avoids-jail-over-separate-charge/106648008",
"https://www.abc.net.au/news/2026-05-06/adelaide-36ers-coach-mike-wells-quits/106648724",
"https://www.abc.net.au/news/2026-05-06/womens-state-of-origin-game-two-team-lists/106648716",
"https://www.abc.net.au/news/2026-05-06/commercial-fishing-ban-in-gulf-st-vincent-extends/106647212",
"https://www.realestate.com.au/",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-04-29/plane-crashes-at-parafield-airport-north-of-adelaide/106621632",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-04-29/toddler-death-northern-beaches-hospital-public-ownership/106620104",
"https://www.abc.net.au/news/2026-04-29/qld-man-charged-hate-speech-laws-not-guilty-pleas/106619998",
"https://www.abc.net.au/news/2026-04-29/qld-cfmeu-inquiry-ravbar-lazy-alleged-threats-bruce-highway/106620854",
"https://www.abc.net.au/news/2026-04-29/knife-produced-mental-health-patient-not-found-act-police/106619254",
"https://www.abc.net.au/news/2026-04-29/chilcare-group-g8-to-close-10-per-cent-of-centres/106620512",
"https://www.abc.net.au/news/2026-04-29/keith-lees-court-cold-case-committal-hearing-sunshine-coast/106619782",
"https://www.abc.net.au/news/2026-05-06/brisbane-river-zip-line-proposal/106647348",
"https://www.abc.net.au/news/2026-05-06/freshwater-turtles-thriving-near-broken-hill-outback-lake/106584786",
"https://www.seek.com.au/",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-04-29/ancient-platypus-fossils-with-teeth-found-outback-sa/106616134",
"https://www.bunnings.com.au/",
"https://www.woolworths.com.au/",
"https://www.abc.net.au/news/2026-04-29/nsw-state-of-origin-womens-queensland-maroons/106621490",
"https://www.abc.net.au/news/2026-04-29/mlb-australia-travis-bazzana-makes-cleveland-guardians-debut/106620048",
"https://www.coles.com.au/",
"https://www.commbank.com.au/"
"https://www.abc.net.au/news/2026-05-06/ses-hq-wyong-central-coast-destroyed-by-fire/106647498",
"https://www.abc.net.au/news/2026-05-06/child-protection-workers-lose-their-jobs-five-year-old-girl-nt/106647714",
"https://www.abc.net.au/news/2026-05-06/jury-retires-greyhound-bruce-highway-bus-crash-trial-townsville/106642338",
"https://www.abc.net.au/news/2026-05-06/inland-rail-cancellation-reactions/106646490",
"https://www.bunnings.com.au/",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-05-06/keysborough-secondary-college-teacher-principal-stabbing/106648548",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-05-06/influencers-reveal-what-life-is-like-on-hantavirus-cruise/106646542",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-05-06/concerns-about-victorian-road-repairs-despite-budget-funding/106445376",
"https://www.bom.gov.au/",
"https://www.woolworths.com.au/",
"https://my.gov.au/"
],
"static_urls": [
"https://my.gov.au/",

View File

@@ -8,30 +8,30 @@
},
"trust_module": {
"white_urls": [
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-04-29/plane-crashes-at-parafield-airport-north-of-adelaide/106621632",
"https://www.abc.net.au/news/2026-04-29/chilcare-group-g8-to-close-10-per-cent-of-centres/106620512",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-04-29/what-should-schools-do-about-ai-deepfakes-friends-school-hobart/106619686",
"https://www.amazon.com.au/",
"https://www.seek.com.au/",
"https://www.abc.net.au/news/2026-04-29/ancient-platypus-fossils-with-teeth-found-outback-sa/106616134",
"https://www.abc.net.au/news/2026-04-29/mlb-australia-travis-bazzana-makes-cleveland-guardians-debut/106620048",
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-04-29/afl-pushes-ahead-with-draft-changes-and-not-everyone-is-happy/106621516",
"https://www.woolworths.com.au/",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-04-29/nsw-state-of-origin-womens-queensland-maroons/106621490",
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-04-29/qld-man-charged-hate-speech-laws-not-guilty-pleas/106619998",
"https://www.abc.net.au/news/2026-04-29/toddler-death-northern-beaches-hospital-public-ownership/106620104",
"https://www.abc.net.au/news/2026-04-29/monthly-inflation-surges-in-march-australia/106619740",
"https://www.abc.net.au/news/2026-04-29/inflation-details-may-give-rba-pause-on-interest-rates/106620164",
"https://www.bom.gov.au/",
"https://www.abc.net.au/news/2026-04-29/knife-produced-mental-health-patient-not-found-act-police/106619254",
"https://www.abc.net.au/news/2026-04-29/gina-rinehart-gifts-plane-to-pauline-hanson-one-nation/106620808",
"https://www.abc.net.au/news/2026-04-29/qld-cfmeu-inquiry-ravbar-lazy-alleged-threats-bruce-highway/106620854",
"https://www.abc.net.au/news/2026-04-29/keith-lees-court-cold-case-committal-hearing-sunshine-coast/106619782",
"https://www.abc.net.au/news/2026-05-06/tim-pictons-alleged-attacker-avoids-jail-over-separate-charge/106648008",
"https://www.abc.net.au/news/2026-05-06/commercial-fishing-ban-in-gulf-st-vincent-extends/106647212",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-05-06/adelaide-36ers-coach-mike-wells-quits/106648724",
"https://www.abc.net.au/news/2026-05-06/keysborough-secondary-college-teacher-principal-stabbing/106648548",
"https://www.seek.com.au/",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-05-06/womens-state-of-origin-game-two-team-lists/106648716",
"https://www.abc.net.au/news/2026-05-06/jury-retires-greyhound-bruce-highway-bus-crash-trial-townsville/106642338",
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-05-06/child-protection-workers-lose-their-jobs-five-year-old-girl-nt/106647714",
"https://www.ato.gov.au/",
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-05-06/inland-rail-cancellation-reactions/106646490",
"https://www.abc.net.au/news/2026-05-06/freshwater-turtles-thriving-near-broken-hill-outback-lake/106584786",
"https://www.abc.net.au/news/2026-05-06/influencers-reveal-what-life-is-like-on-hantavirus-cruise/106646542",
"https://www.abc.net.au/news/2026-05-06/man-fighting-removal-to-nauru-loses-high-court-challenge/106646446",
"https://www.abc.net.au/news/2026-05-06/ses-hq-wyong-central-coast-destroyed-by-fire/106647498",
"https://www.abc.net.au/news/2026-05-06/wagga-river-camp-resident-ask-for-open-mind-after-baby-death/106648194",
"https://www.abc.net.au/news/2026-05-06/brisbane-river-zip-line-proposal/106647348",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-05-06/concerns-about-victorian-road-repairs-despite-budget-funding/106445376",
"https://www.woolworths.com.au/",
"https://www.bunnings.com.au/"
],
"static_urls": [

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.abc.net.au/news/2026-04-29/nsw-state-of-origin-womens-queensland-maroons/106621490",
"https://www.bunnings.com.au/",
"https://www.abc.net.au/news/2026-04-29/keith-lees-court-cold-case-committal-hearing-sunshine-coast/106619782",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-04-29/gina-rinehart-gifts-plane-to-pauline-hanson-one-nation/106620808",
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-04-29/plane-crashes-at-parafield-airport-north-of-adelaide/106621632",
"https://www.abc.net.au/news/2026-04-29/monthly-inflation-surges-in-march-australia/106619740",
"https://www.abc.net.au/news/2026-04-29/afl-pushes-ahead-with-draft-changes-and-not-everyone-is-happy/106621516",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-04-29/what-should-schools-do-about-ai-deepfakes-friends-school-hobart/106619686",
"https://www.abc.net.au/news/2026-04-29/inflation-details-may-give-rba-pause-on-interest-rates/106620164",
"https://www.abc.net.au/news/2026-04-29/knife-produced-mental-health-patient-not-found-act-police/106619254",
"https://www.coles.com.au/",
"https://www.ato.gov.au/",
"https://www.bom.gov.au/",
"https://www.abc.net.au/news/2026-04-29/ancient-platypus-fossils-with-teeth-found-outback-sa/106616134",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-05-06/concerns-about-victorian-road-repairs-despite-budget-funding/106445376",
"https://www.woolworths.com.au/",
"https://www.abc.net.au/news/2026-04-29/toddler-death-northern-beaches-hospital-public-ownership/106620104",
"https://www.abc.net.au/news/2026-04-29/qld-man-charged-hate-speech-laws-not-guilty-pleas/106619998",
"https://www.abc.net.au/news/2026-04-29/mlb-australia-travis-bazzana-makes-cleveland-guardians-debut/106620048",
"https://www.abc.net.au/news/2026-04-29/qld-cfmeu-inquiry-ravbar-lazy-alleged-threats-bruce-highway/106620854",
"https://www.seek.com.au/",
"https://www.abc.net.au/news/2026-04-29/chilcare-group-g8-to-close-10-per-cent-of-centres/106620512"
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-05-06/commercial-fishing-ban-in-gulf-st-vincent-extends/106647212",
"https://www.abc.net.au/news/2026-05-06/brisbane-river-zip-line-proposal/106647348",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-05-06/inland-rail-cancellation-reactions/106646490",
"https://www.abc.net.au/news/2026-05-06/wagga-river-camp-resident-ask-for-open-mind-after-baby-death/106648194",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-05-06/tim-pictons-alleged-attacker-avoids-jail-over-separate-charge/106648008",
"https://www.abc.net.au/news/2026-05-06/freshwater-turtles-thriving-near-broken-hill-outback-lake/106584786",
"https://www.abc.net.au/news/2026-05-06/adelaide-36ers-coach-mike-wells-quits/106648724",
"https://www.abc.net.au/news/2026-05-06/influencers-reveal-what-life-is-like-on-hantavirus-cruise/106646542",
"https://www.abc.net.au/news/2026-05-06/jury-retires-greyhound-bruce-highway-bus-crash-trial-townsville/106642338",
"https://www.abc.net.au/news/2026-05-06/ses-hq-wyong-central-coast-destroyed-by-fire/106647498",
"https://www.abc.net.au/news/2026-05-06/keysborough-secondary-college-teacher-principal-stabbing/106648548",
"https://www.abc.net.au/news/2026-05-06/womens-state-of-origin-game-two-team-lists/106648716",
"https://www.bunnings.com.au/",
"https://www.bom.gov.au/",
"https://www.realestate.com.au/",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-05-06/man-fighting-removal-to-nauru-loses-high-court-challenge/106646446",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-05-06/child-protection-workers-lose-their-jobs-five-year-old-girl-nt/106647714"
],
"static_urls": [
"https://my.gov.au/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-05-06/freshwater-turtles-thriving-near-broken-hill-outback-lake/106584786",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-04-29/mlb-australia-travis-bazzana-makes-cleveland-guardians-debut/106620048",
"https://www.abc.net.au/news/2026-04-29/chilcare-group-g8-to-close-10-per-cent-of-centres/106620512",
"https://www.seek.com.au/",
"https://www.commbank.com.au/",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-04-29/qld-man-charged-hate-speech-laws-not-guilty-pleas/106619998",
"https://www.abc.net.au/news/2026-04-29/toddler-death-northern-beaches-hospital-public-ownership/106620104",
"https://www.abc.net.au/news/2026-04-29/keith-lees-court-cold-case-committal-hearing-sunshine-coast/106619782",
"https://www.abc.net.au/news/2026-04-29/what-should-schools-do-about-ai-deepfakes-friends-school-hobart/106619686",
"https://www.abc.net.au/news/2026-04-29/qld-cfmeu-inquiry-ravbar-lazy-alleged-threats-bruce-highway/106620854",
"https://www.abc.net.au/news/2026-05-06/tim-pictons-alleged-attacker-avoids-jail-over-separate-charge/106648008",
"https://www.bom.gov.au/",
"https://www.abc.net.au/news/2026-04-29/ancient-platypus-fossils-with-teeth-found-outback-sa/106616134",
"https://www.abc.net.au/news/2026-05-06/adelaide-36ers-coach-mike-wells-quits/106648724",
"https://www.abc.net.au/news/2026-05-06/womens-state-of-origin-game-two-team-lists/106648716",
"https://www.abc.net.au/news/2026-05-06/jury-retires-greyhound-bruce-highway-bus-crash-trial-townsville/106642338",
"https://www.commbank.com.au/",
"https://www.bunnings.com.au/",
"https://www.abc.net.au/news/2026-04-29/inflation-details-may-give-rba-pause-on-interest-rates/106620164",
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-05-06/inland-rail-cancellation-reactions/106646490",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-04-29/plane-crashes-at-parafield-airport-north-of-adelaide/106621632",
"https://www.abc.net.au/news/2026-04-29/nsw-state-of-origin-womens-queensland-maroons/106621490",
"https://www.woolworths.com.au/",
"https://www.abc.net.au/news/2026-04-29/knife-produced-mental-health-patient-not-found-act-police/106619254",
"https://www.abc.net.au/news/2026-04-29/afl-pushes-ahead-with-draft-changes-and-not-everyone-is-happy/106621516",
"https://www.abc.net.au/news/2026-04-29/gina-rinehart-gifts-plane-to-pauline-hanson-one-nation/106620808",
"https://www.abc.net.au/news/2026-04-29/monthly-inflation-surges-in-march-australia/106619740"
"https://www.abc.net.au/news/2026-05-06/child-protection-workers-lose-their-jobs-five-year-old-girl-nt/106647714",
"https://www.abc.net.au/news/2026-05-06/ses-hq-wyong-central-coast-destroyed-by-fire/106647498",
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-05-06/concerns-about-victorian-road-repairs-despite-budget-funding/106445376",
"https://www.abc.net.au/news/2026-05-06/brisbane-river-zip-line-proposal/106647348",
"https://www.abc.net.au/news/2026-05-06/influencers-reveal-what-life-is-like-on-hantavirus-cruise/106646542",
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-05-06/man-fighting-removal-to-nauru-loses-high-court-challenge/106646446",
"https://www.abc.net.au/news/2026-05-06/keysborough-secondary-college-teacher-principal-stabbing/106648548",
"https://www.abc.net.au/news/2026-05-06/wagga-river-camp-resident-ask-for-open-mind-after-baby-death/106648194",
"https://www.abc.net.au/news/2026-05-06/commercial-fishing-ban-in-gulf-st-vincent-extends/106647212",
"https://www.seek.com.au/",
"https://www.ato.gov.au/"
],
"static_urls": [
"https://my.gov.au/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.abc.net.au/news/2026-04-29/mlb-australia-travis-bazzana-makes-cleveland-guardians-debut/106620048",
"https://www.abc.net.au/news/2026-04-29/ancient-platypus-fossils-with-teeth-found-outback-sa/106616134",
"https://www.amazon.com.au/",
"https://www.abc.net.au/news/2026-04-29/gina-rinehart-gifts-plane-to-pauline-hanson-one-nation/106620808",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-04-29/chilcare-group-g8-to-close-10-per-cent-of-centres/106620512",
"https://www.abc.net.au/news/2026-05-06/jury-retires-greyhound-bruce-highway-bus-crash-trial-townsville/106642338",
"https://www.abc.net.au/news/2026-05-06/concerns-about-victorian-road-repairs-despite-budget-funding/106445376",
"https://www.abc.net.au/news/2026-05-06/influencers-reveal-what-life-is-like-on-hantavirus-cruise/106646542",
"https://www.ato.gov.au/",
"https://www.abc.net.au/news/2026-04-29/what-should-schools-do-about-ai-deepfakes-friends-school-hobart/106619686",
"https://www.amazon.com.au/",
"https://www.bom.gov.au/",
"https://www.abc.net.au/news/2026-04-29/knife-produced-mental-health-patient-not-found-act-police/106619254",
"https://www.abc.net.au/news/2026-04-29/monthly-inflation-surges-in-march-australia/106619740",
"https://www.abc.net.au/news/2026-04-29/qld-cfmeu-inquiry-ravbar-lazy-alleged-threats-bruce-highway/106620854",
"https://www.woolworths.com.au/",
"https://www.abc.net.au/news/2026-04-29/keith-lees-court-cold-case-committal-hearing-sunshine-coast/106619782",
"https://www.abc.net.au/news/2026-04-29/toddler-death-northern-beaches-hospital-public-ownership/106620104",
"https://www.abc.net.au/news/2026-04-29/plane-crashes-at-parafield-airport-north-of-adelaide/106621632",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-05-06/adelaide-36ers-coach-mike-wells-quits/106648724",
"https://www.abc.net.au/news/2026-05-06/ses-hq-wyong-central-coast-destroyed-by-fire/106647498",
"https://www.abc.net.au/news/2026-05-06/womens-state-of-origin-game-two-team-lists/106648716",
"https://www.bunnings.com.au/",
"https://www.abc.net.au/news/2026-05-06/wagga-river-camp-resident-ask-for-open-mind-after-baby-death/106648194",
"https://www.seek.com.au/",
"https://www.commbank.com.au/",
"https://www.abc.net.au/news/2026-05-06/freshwater-turtles-thriving-near-broken-hill-outback-lake/106584786",
"https://www.abc.net.au/news/2026-05-06/keysborough-secondary-college-teacher-principal-stabbing/106648548",
"https://www.abc.net.au/news/2026-05-06/child-protection-workers-lose-their-jobs-five-year-old-girl-nt/106647714",
"https://www.coles.com.au/",
"https://www.abc.net.au/news/2026-04-29/qld-man-charged-hate-speech-laws-not-guilty-pleas/106619998",
"https://www.abc.net.au/news/2026-05-06/inland-rail-cancellation-reactions/106646490",
"https://www.realestate.com.au/",
"https://www.abc.net.au/news/2026-04-29/inflation-details-may-give-rba-pause-on-interest-rates/106620164",
"https://www.abc.net.au/news/2026-04-29/afl-pushes-ahead-with-draft-changes-and-not-everyone-is-happy/106621516",
"https://www.abc.net.au/news/2026-04-29/nsw-state-of-origin-womens-queensland-maroons/106621490"
"https://www.abc.net.au/news/2026-05-06/man-fighting-removal-to-nauru-loses-high-court-challenge/106646446",
"https://www.abc.net.au/news/2026-05-06/tim-pictons-alleged-attacker-avoids-jail-over-separate-charge/106648008",
"https://www.woolworths.com.au/",
"https://my.gov.au/",
"https://www.abc.net.au/news/2026-05-06/commercial-fishing-ban-in-gulf-st-vincent-extends/106647212",
"https://www.abc.net.au/news/2026-05-06/brisbane-river-zip-line-proposal/106647348"
],
"static_urls": [
"https://my.gov.au/",

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.cbc.ca/news/world/san-francisco-oakland-airport-name-legal-case-9.7180726?cmp=rss",
"https://www.cbc.ca/news/canada/manitoba/wolseley-hole-fix-repairs-9.7180881?cmp=rss",
"https://www.cbc.ca/news/world/us-intelligence-agencies-trump-iran-war-9.7180533?cmp=rss",
"https://www.cbc.ca/news/canada/calgary/frances-widdowson-university-of-lethbridge-9.7180156?cmp=rss",
"https://www.cbc.ca/news/politics/carney-poilievre-carney-update-deficit-analysis-9.7180486?cmp=rss",
"https://www.cbc.ca/news/canada/british-columbia/pentiction-councillor-trial-9.7180534?cmp=rss",
"https://www.td.com/",
"https://www.cbc.ca/news/politics/mail-searches-seu-9.7180828?cmp=rss",
"https://www.cbc.ca/news/world/trump-ballroom-justice-dept-federal-court-motion-9.7180270?cmp=rss",
"https://www.cbc.ca/news/canada/calgary/janet-brown-poll-ucp-danielle-smith-road-ahead-9.7177527?cmp=rss",
"https://www.theweathernetwork.com/ca",
"https://www.amazon.ca/",
"https://www.cbc.ca/news/world/livestory/king-charles-us-state-visit-9.7178240?cmp=rss",
"https://www.canadapost-postescanada.ca/",
"https://www.cbc.ca/news/entertainment/trump-kimmel-melania-expectant-widow-9.7179036?cmp=rss",
"https://www.cbc.ca/news/world/ukraine-russia-refinery-attack-oil-prices-9.7180258?cmp=rss",
"https://www.utoronto.ca/",
"https://www.cbc.ca/player/play/9.7180775?cmp=rss",
"https://www.cbc.ca/news/canada/saskatchewan/tow-truck-driver-rescues-moose-trapped-in-ice-9.7180811?cmp=rss",
"https://www.cra-arc.gc.ca/",
"https://www.rbcroyalbank.com/",
"https://www.cbc.ca/news/world/russia-internet-vpn-9.7188353?cmp=rss",
"https://www.cbc.ca/news/politics/former-governors-general-expense-account-9.7188412?cmp=rss",
"https://www.cbc.ca/news/canada/ottawa/alto-rail-ottawa-montreal-route-property-map-9.7188144?cmp=rss",
"https://www.canada.ca/en.html",
"https://www.cbc.ca/news/world/comey-indictment-blanche-shells-9.7180391?cmp=rss"
"https://www.cbc.ca/news/entertainment/tracker-leaving-vancouver-california-tax-credit-9.7188156?cmp=rss",
"https://www.cbc.ca/radio/asithappens/wisconsin-emt-heart-attack-9.7188630?cmp=rss",
"https://www.cbc.ca/news/world/rubio-hegseth-iran-strait-hormuz-blockade-9.7188754?cmp=rss",
"https://www.cbc.ca/news/politics/louse-arbour-governor-general-carney-analysis-9.7188709?cmp=rss",
"https://www.cbc.ca/news/world/assault-charge-white-house-correspondents-dinner-suspect-9.7188774?cmp=rss",
"https://www.rbcroyalbank.com/",
"https://www.theweathernetwork.com/ca",
"https://www.cbc.ca/news/business/telecommunications-workers-restrictions-artificial-intelligence-9.7189209?cmp=rss",
"https://www.amazon.ca/",
"https://www.cbc.ca/sports/hockey/pwhl/pwhl-playoffs-montreal-victoire-minnesota-frost-may5-9.7188085?cmp=rss",
"https://www.canadapost-postescanada.ca/",
"https://www.cbc.ca/news/indigenous/red-dress-day-vigil-parliament-hill-9.7188743?cmp=rss",
"https://www.cbc.ca/news/canada/canada-c17-fleet-us-sustainment-services-9.7188694?cmp=rss",
"https://www.utoronto.ca/",
"https://www.cra-arc.gc.ca/",
"https://www.cbc.ca/news/canada/british-columbia/vancouver-bc-hot-weather-records-9.7188997?cmp=rss",
"https://www.td.com/",
"https://www.cbc.ca/news/health/hantavirus-human-transmission-9.7188555?cmp=rss",
"https://www.cbc.ca/news/canada/edmonton/elections-alberta-voter-data-centurion-project-ndp-ucp-9.7189167?cmp=rss"
],
"static_urls": [
"https://www.canada.ca/en.html",

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.cbc.ca/news/canada/british-columbia/pentiction-councillor-trial-9.7180534?cmp=rss",
"https://www.cbc.ca/news/entertainment/trump-kimmel-melania-expectant-widow-9.7179036?cmp=rss",
"https://www.cbc.ca/news/world/comey-indictment-blanche-shells-9.7180391?cmp=rss",
"https://www.cbc.ca/news/world/san-francisco-oakland-airport-name-legal-case-9.7180726?cmp=rss",
"https://www.cra-arc.gc.ca/",
"https://www.cbc.ca/news/politics/mail-searches-seu-9.7180828?cmp=rss",
"https://www.cbc.ca/news/politics/carney-poilievre-carney-update-deficit-analysis-9.7180486?cmp=rss",
"https://www.cbc.ca/news/canada/calgary/janet-brown-poll-ucp-danielle-smith-road-ahead-9.7177527?cmp=rss",
"https://www.canadapost-postescanada.ca/",
"https://www.cbc.ca/news/canada/calgary/frances-widdowson-university-of-lethbridge-9.7180156?cmp=rss",
"https://www.cbc.ca/news/world/livestory/king-charles-us-state-visit-9.7178240?cmp=rss",
"https://www.cbc.ca/player/play/9.7180775?cmp=rss",
"https://www.cbc.ca/news/world/trump-ballroom-justice-dept-federal-court-motion-9.7180270?cmp=rss",
"https://www.cbc.ca/news/canada/saskatchewan/tow-truck-driver-rescues-moose-trapped-in-ice-9.7180811?cmp=rss",
"https://www.rbcroyalbank.com/",
"https://www.td.com/",
"https://www.utoronto.ca/",
"https://www.cbc.ca/news/canada/manitoba/wolseley-hole-fix-repairs-9.7180881?cmp=rss",
"https://www.amazon.ca/",
"https://www.cbc.ca/news/world/ukraine-russia-refinery-attack-oil-prices-9.7180258?cmp=rss",
"https://www.canada.ca/en.html",
"https://www.cbc.ca/news/world/us-intelligence-agencies-trump-iran-war-9.7180533?cmp=rss",
"https://www.theweathernetwork.com/ca"
"https://www.cbc.ca/news/indigenous/red-dress-day-vigil-parliament-hill-9.7188743?cmp=rss",
"https://www.cbc.ca/news/politics/former-governors-general-expense-account-9.7188412?cmp=rss",
"https://www.cbc.ca/news/entertainment/tracker-leaving-vancouver-california-tax-credit-9.7188156?cmp=rss",
"https://www.canadapost-postescanada.ca/",
"https://www.utoronto.ca/",
"https://www.cbc.ca/news/world/russia-internet-vpn-9.7188353?cmp=rss",
"https://www.cbc.ca/news/politics/louse-arbour-governor-general-carney-analysis-9.7188709?cmp=rss",
"https://www.cbc.ca/news/health/hantavirus-human-transmission-9.7188555?cmp=rss",
"https://www.cbc.ca/radio/asithappens/wisconsin-emt-heart-attack-9.7188630?cmp=rss",
"https://www.rbcroyalbank.com/",
"https://www.theweathernetwork.com/ca",
"https://www.cbc.ca/news/canada/british-columbia/vancouver-bc-hot-weather-records-9.7188997?cmp=rss",
"https://www.cbc.ca/news/business/telecommunications-workers-restrictions-artificial-intelligence-9.7189209?cmp=rss",
"https://www.cbc.ca/news/world/rubio-hegseth-iran-strait-hormuz-blockade-9.7188754?cmp=rss",
"https://www.cbc.ca/news/canada/edmonton/elections-alberta-voter-data-centurion-project-ndp-ucp-9.7189167?cmp=rss",
"https://www.cbc.ca/news/world/assault-charge-white-house-correspondents-dinner-suspect-9.7188774?cmp=rss",
"https://www.cbc.ca/news/canada/ottawa/alto-rail-ottawa-montreal-route-property-map-9.7188144?cmp=rss",
"https://www.td.com/",
"https://www.cbc.ca/sports/hockey/pwhl/pwhl-playoffs-montreal-victoire-minnesota-frost-may5-9.7188085?cmp=rss",
"https://www.cbc.ca/news/canada/canada-c17-fleet-us-sustainment-services-9.7188694?cmp=rss"
],
"static_urls": [
"https://www.canada.ca/en.html",

View File

@@ -0,0 +1,50 @@
{
"region_name": "Germany - Berlin",
"google_module": {
"base_lat": 52.52,
"base_lon": 13.405,
"lang_params": "hl=de-DE&gl=DE",
"valid_url_suffix": "de"
},
"trust_module": {
"white_urls": [
"https://www.tagesschau.de/inland/spahn-fraktionschef-union-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/unicredit-commerzbank-uebernahme-rekordgewinn-100.html",
"https://www.arbeitsagentur.de/",
"https://www.tagesschau.de/ukraine-kriegsverlauf-gady-100.html",
"https://www.stepstone.de/",
"https://www.tagesschau.de/ausland/europa/meta-alterskontrolle-eu-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/deutsche-post-dhl-hauptversammlung-100.html",
"https://www.edeka.de/",
"https://www.tagesschau.de/ausland/europa/rumaenien-misstrauensvotum-parlament-100.html",
"https://www.bundesregierung.de/",
"https://www.tagesschau.de/investigativ/ndr/grauer-star-behandlung-kosten-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/mietwucher-berlin-100.html",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-dax-dow-geldanlage-128.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/urlaub-nachzahlungen-kerosinpreise-100.html",
"https://www.tagesschau.de/wirtschaft/konjunktur/wein-krise-deutschland-100.html",
"https://www.tagesschau.de/inland/innenpolitik/ein-jahr-koalition-reaktionen-100.html",
"https://www.tagesschau.de/ausland/amerika/project-freedom-usa-hormus-iran-100.html",
"https://www.tagesschau.de/ausland/amerika/wahlkreise-zuschnitt-usa-100.html",
"https://www.sparkasse.de/",
"https://www.tagesschau.de/ausland/europa/ukraine-russland-waffenruhe-100.html",
"https://www.amazon.de/",
"https://www.rewe.de/",
"https://www.obi.de/",
"https://www.immobilienscout24.de/",
"https://www.dwd.de/"
],
"static_urls": [
"https://www.bundesregierung.de/",
"https://www.arbeitsagentur.de/",
"https://www.dwd.de/",
"https://www.sparkasse.de/",
"https://www.stepstone.de/",
"https://www.immobilienscout24.de/",
"https://www.rewe.de/",
"https://www.edeka.de/",
"https://www.amazon.de/",
"https://www.obi.de/"
]
}
}

View File

@@ -0,0 +1,50 @@
{
"region_name": "Germany - Bavaria (Nuremberg)",
"google_module": {
"base_lat": 49.4521,
"base_lon": 11.0767,
"lang_params": "hl=de-DE&gl=DE",
"valid_url_suffix": "de"
},
"trust_module": {
"white_urls": [
"https://www.edeka.de/",
"https://www.sparkasse.de/",
"https://www.tagesschau.de/ausland/amerika/wahlkreise-zuschnitt-usa-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/mietwucher-berlin-100.html",
"https://www.tagesschau.de/ausland/amerika/project-freedom-usa-hormus-iran-100.html",
"https://www.tagesschau.de/inland/spahn-fraktionschef-union-100.html",
"https://www.tagesschau.de/ausland/europa/ukraine-russland-waffenruhe-100.html",
"https://www.amazon.de/",
"https://www.immobilienscout24.de/",
"https://www.tagesschau.de/investigativ/ndr/grauer-star-behandlung-kosten-100.html",
"https://www.tagesschau.de/ukraine-kriegsverlauf-gady-100.html",
"https://www.tagesschau.de/ausland/europa/meta-alterskontrolle-eu-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/deutsche-post-dhl-hauptversammlung-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/urlaub-nachzahlungen-kerosinpreise-100.html",
"https://www.tagesschau.de/inland/innenpolitik/ein-jahr-koalition-reaktionen-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/unicredit-commerzbank-uebernahme-rekordgewinn-100.html",
"https://www.stepstone.de/",
"https://www.dwd.de/",
"https://www.tagesschau.de/wirtschaft/konjunktur/wein-krise-deutschland-100.html",
"https://www.rewe.de/",
"https://www.obi.de/",
"https://www.bundesregierung.de/",
"https://www.tagesschau.de/ausland/europa/rumaenien-misstrauensvotum-parlament-100.html",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-dax-dow-geldanlage-128.html",
"https://www.arbeitsagentur.de/"
],
"static_urls": [
"https://www.bundesregierung.de/",
"https://www.arbeitsagentur.de/",
"https://www.dwd.de/",
"https://www.sparkasse.de/",
"https://www.stepstone.de/",
"https://www.immobilienscout24.de/",
"https://www.rewe.de/",
"https://www.edeka.de/",
"https://www.amazon.de/",
"https://www.obi.de/"
]
}
}

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.tagesschau.de/inland/unionsklausur-102.html",
"https://www.tagesschau.de/wirtschaft/finanzen/marktbericht-schwerpunkt-oel-100.html",
"https://www.bundesregierung.de/",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-134.html",
"https://www.tagesschau.de/ausland/europa/grossbritannien-starmer-untersuchung-mandelson-100.html",
"https://www.arbeitsagentur.de/",
"https://www.tagesschau.de/wirtschaft/verbraucher/pkv-gkv-wechsel-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/bmw-lackiererei-industriejobs-100.html",
"https://www.tagesschau.de/ausland/amerika/trump-kritik-merz-iran-100.html",
"https://www.sparkasse.de/",
"https://www.bahn.de/",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-dax-dow-geldanlage-126.html",
"https://www.tagesschau.de/inland/innenpolitik/zuckersteuer-134.html",
"https://www.spiegel.de/",
"https://www.tagesschau.de/inland/gesellschaft/15min-podcast-zuckerabgabe-pedo-hunter-erdbeeren-100.html",
"https://www.tagesschau.de/inland/gesellschaft/geburten-rueckgang-100.html",
"https://www.tagesschau.de/ausland/europa/rumaenien-misstrauensvotum-parlament-100.html",
"https://www.ebay.de/",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-dax-dow-geldanlage-128.html",
"https://www.tagesschau.de/ausland/europa/meta-alterskontrolle-eu-100.html",
"https://www.tagesschau.de/inland/spahn-fraktionschef-union-100.html",
"https://www.tagesschau.de/ausland/europa/ukraine-russland-waffenruhe-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/urlaub-nachzahlungen-kerosinpreise-100.html",
"https://www.tagesschau.de/investigativ/ndr/grauer-star-behandlung-kosten-100.html",
"https://www.tagesschau.de/inland/innenpolitik/ein-jahr-koalition-reaktionen-100.html",
"https://www.bundesregierung.de/",
"https://www.tum.de/",
"https://www.tagesschau.de/ausland/amerika/project-freedom-usa-hormus-iran-100.html",
"https://www.amazon.de/",
"https://www.tagesschau.de/inland/innenpolitik/bundeshaushalt-klingbeil-neuverschuldung-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/e-autos-deutschland-haeufig-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/aldi-sued-stellenabbau-sortiment-100.html",
"https://www.tagesschau.de/investigativ/report-mainz/iran-volksbank-100.html",
"https://www.tum.de/"
"https://www.tagesschau.de/wirtschaft/unternehmen/unicredit-commerzbank-uebernahme-rekordgewinn-100.html",
"https://www.spiegel.de/",
"https://www.tagesschau.de/ausland/amerika/wahlkreise-zuschnitt-usa-100.html",
"https://www.tagesschau.de/wirtschaft/konjunktur/wein-krise-deutschland-100.html",
"https://www.bahn.de/",
"https://www.tagesschau.de/wirtschaft/verbraucher/mietwucher-berlin-100.html",
"https://www.arbeitsagentur.de/",
"https://www.tagesschau.de/ukraine-kriegsverlauf-gady-100.html",
"https://www.sparkasse.de/",
"https://www.tagesschau.de/wirtschaft/unternehmen/deutsche-post-dhl-hauptversammlung-100.html"
],
"static_urls": [
"https://www.bundesregierung.de/",

View File

@@ -0,0 +1,50 @@
{
"region_name": "Germany - Saxony (Falkenstein)",
"google_module": {
"base_lat": 50.4779,
"base_lon": 12.3713,
"lang_params": "hl=de-DE&gl=DE",
"valid_url_suffix": "de"
},
"trust_module": {
"white_urls": [
"https://www.dwd.de/",
"https://www.bundesregierung.de/",
"https://www.sparkasse.de/",
"https://www.tagesschau.de/ausland/amerika/project-freedom-usa-hormus-iran-100.html",
"https://www.amazon.de/",
"https://www.tagesschau.de/wirtschaft/unternehmen/deutsche-post-dhl-hauptversammlung-100.html",
"https://www.tagesschau.de/inland/spahn-fraktionschef-union-100.html",
"https://www.tagesschau.de/wirtschaft/finanzen/marktberichte/marktbericht-dax-dow-geldanlage-128.html",
"https://www.tagesschau.de/ausland/europa/rumaenien-misstrauensvotum-parlament-100.html",
"https://www.tagesschau.de/wirtschaft/verbraucher/mietwucher-berlin-100.html",
"https://www.tagesschau.de/ausland/europa/meta-alterskontrolle-eu-100.html",
"https://www.tagesschau.de/wirtschaft/unternehmen/unicredit-commerzbank-uebernahme-rekordgewinn-100.html",
"https://www.tagesschau.de/inland/innenpolitik/ein-jahr-koalition-reaktionen-100.html",
"https://www.rewe.de/",
"https://www.tagesschau.de/ausland/europa/ukraine-russland-waffenruhe-100.html",
"https://www.tagesschau.de/ausland/amerika/wahlkreise-zuschnitt-usa-100.html",
"https://www.obi.de/",
"https://www.arbeitsagentur.de/",
"https://www.edeka.de/",
"https://www.tagesschau.de/wirtschaft/verbraucher/urlaub-nachzahlungen-kerosinpreise-100.html",
"https://www.tagesschau.de/investigativ/ndr/grauer-star-behandlung-kosten-100.html",
"https://www.tagesschau.de/ukraine-kriegsverlauf-gady-100.html",
"https://www.tagesschau.de/wirtschaft/konjunktur/wein-krise-deutschland-100.html",
"https://www.immobilienscout24.de/",
"https://www.stepstone.de/"
],
"static_urls": [
"https://www.bundesregierung.de/",
"https://www.arbeitsagentur.de/",
"https://www.dwd.de/",
"https://www.sparkasse.de/",
"https://www.stepstone.de/",
"https://www.immobilienscout24.de/",
"https://www.rewe.de/",
"https://www.edeka.de/",
"https://www.amazon.de/",
"https://www.obi.de/"
]
}
}

View File

@@ -8,28 +8,28 @@
},
"trust_module": {
"white_urls": [
"https://elpais.com/elviajero/viajes-paco-nadal/2026-04-27/los-atractivos-de-finistere-el-final-de-la-tierra-a-la-francesa.html",
"https://elpais.com/cultura/2026-04-29/como-edwyn-collins-sobrevivio-a-dos-derrames-cerebrales-volvio-a-la-musica-y-ahora-se-retira-con-honores.html",
"https://www.zara.com/es/",
"https://www.elcorteingles.es/",
"https://elpais.com/deportes/futbol/2026-04-28/psg-y-bayern-ponen-el-centro-del-futbol-mundial-en-paris.html",
"https://elpais.com/gente/2026-04-28/shakira-recuerda-su-episodio-mas-dificil-en-una-carta-una-manana-me-desperte-siendo-una-mujer-diferente-con-otra-vida.html",
"https://administracion.gob.es/",
"https://elpais.com/smoda/placeres/2026-04-23/las-creadoras-de-yo-siempre-a-veces-la-serie-sobre-ser-madre-soltera-la-precariedad-lo-esta-marcando-todo-la-gente-se-ve-desbordada.html",
"https://elpais.com/clima-y-medio-ambiente/2026-04-28/la-ue-acuerda-normas-comunes-para-proteger-a-perros-y-gatos-de-abusos-y-practicas-comerciales-crueles.html",
"https://elpais.com/tecnologia/tu-tecnologia/2026-04-24/merece-la-pena-pagar-por-almacenamiento-extra-en-la-nube-para-tu-movil.html",
"https://www.amazon.es/",
"https://elpais.com/salud-y-bienestar/2026-05-05/gabriel-rabinovich-bioquimico-mi-sueno-es-no-tener-que-decirle-a-ningun-paciente-que-no-hay-nada-que-hacer.html",
"https://elpais.com/espana/madrid/2026-05-05/una-hora-de-tregua-politica-en-madrid-por-el-aniversario-de-la-muerte-de-tierno-galvan-hagamos-un-ejercicio-de-concordia.html",
"https://elpais.com/icon/2026-05-06/aitor-ruibal-no-compro-lo-de-no-me-mojo-porque-soy-futbolista-no-te-mojas-porque-no-quieres-lios.html",
"https://elpais.com/salud-y-bienestar/2026-05-06/bitacora-del-mv-hondius-de-ushuaia-a-canarias-diario-de-a-bordo-de-un-brote-de-hantavirus.html",
"https://elpais.com/sociedad/2026-05-06/que-esto-no-salga-en-los-periodicos-la-iglesia-pide-perdon-a-la-victima-que-denuncio-al-obispo-de-cadiz-y-le-exige-silencio.html",
"https://www.santander.es/",
"https://elpais.com/economia/2026-04-29/el-bce-pide-a-la-banca-planes-de-contingencia-ante-el-nuevo-modelo-de-ia-de-anthropic.html",
"https://elpais.com/icon/2026-04-29/salir-con-hombres-que-no-van-a-terapia-me-parece-peligroso-la-brecha-de-genero-que-hace-que-ellas-cuiden-mas-de-su-salud-mental.html",
"https://www.renfe.com/",
"https://elpais.com/deportes/tenis/2026-04-28/baptiste-despide-de-madrid-a-la-campeona-sabalenka.html",
"https://elpais.com/escaparate/tecnologia/2026-04-29/robots-limpiapiscinas.html",
"https://elpais.com/sociedad/2026-04-28/la-eurocamara-urge-a-la-comision-que-proponga-tipificar-la-violacion-con-el-consentimiento-como-eje-en-toda-la-ue.html",
"https://elpais.com/cultura/2026-04-28/un-viaje-de-seis-anos-y-40-idiomas-el-fenomeno-irene-vallejo-encuentra-su-colofon-global-en-el-mundo-arabe.html",
"https://www.zara.com/es/",
"https://elpais.com/deportes/2026-05-05/jon-rahm-y-el-circuito-europeo-firman-la-paz.html",
"https://elpais.com/deportes/futbol/2026-05-06/bayern-y-psg-alcanzan-una-cumbre-insolita-en-la-champions.html",
"https://www.elcorteingles.es/",
"https://elpais.com/economia/negocios/2026-05-03/a-la-caza-del-teletrabajador-tramposo-estas-son-las-herramientas-que-usan-las-empresas-para-detectar-a-los-impostores.html",
"https://elpais.com/videos/2026-05-04/videos-de-ajedrez-korchmar-un-desconocido-inmortal-ucranio.html",
"https://elpais.com/tecnologia/2026-05-05/fin-del-misterio-la-caja-sorpresa-escondia-el-coche-de-siempre-y-el-del-futuro.html",
"https://www.agenciatributaria.es/",
"https://elpais.com/cultura/2026-04-29/el-colapso-anunciado-del-convento-de-cuenca-de-campos-que-expolio-el-magnate-william-randolph-hearst-el-problema-central-es-la-espana-vacia.html",
"https://elpais.com/opinion/2026-04-29/yo-a-tu-edad.html"
"https://www.renfe.com/",
"https://elpais.com/opinion/2026-05-05/hermana-y-maestra.html",
"https://cincodias.elpais.com/companias/2026-05-06/las-electricas-rechazan-los-expedientes-sancionadores-a-las-nucleares-alegando-que-cumplian-las-normas-del-csn.html",
"https://elpais.com/ciencia/2026-05-05/en-memoria-del-tigre-del-genoma-doctor-j-c-venter-1947-2026.html",
"https://www.amazon.es/",
"https://elpais.com/sociedad/2026-05-06/sira-rego-vamos-a-ser-el-primer-pais-del-mundo-que-elimine-por-ley-el-uso-del-falso-sindrome-de-alienacion-parental.html",
"https://elpais.com/gastronomia/el-comidista/2026-05-05/marineras-la-receta-de-la-tapa-mas-redonda-de-espana.html",
"https://administracion.gob.es/"
],
"static_urls": [
"https://administracion.gob.es/",

View File

@@ -8,28 +8,28 @@
},
"trust_module": {
"white_urls": [
"https://www.credit-agricole.fr/",
"https://www.france24.com/fr/%C3%A9missions/info-ou-intox/20260428-tirs-au-gala-de-la-presse-cole-allen-encart%C3%A9-au-parti-d%C3%A9mocrate-et-proche-des-stars",
"https://www.france24.com/fr/afrique/20260428-senegal-une-reforme-du-code-electoral-ouvre-la-voie-%C3%A0-ousmane-sonko-pour-la-pr%C3%A9sidentielle-de-2029",
"https://www.sncf.com/",
"https://www.france24.com/fr/europe/20260428-le-futur-premier-ministre-hongrois-peter-magyar-propose-une-rencontre-a-volodymyr-zelensky-ukraine",
"https://www.france24.com/fr/vid%C3%A9o/20260428-mali-premi%C3%A8re-apparition-d-assimi-go%C3%AFta-apr%C3%A8s-les-attaques",
"https://www.france24.com/fr/am%C3%A9riques/20260428-nouvelle-inculpation-pour-l-ex-directeur-du-fbi-james-comey-b%C3%AAte-noire-de-donald-trump",
"https://www.france24.com/fr/vid%C3%A9o/20260428-d%C3%A9troit-d-ormuz-les-n%C3%A9gociations-dans-l-impasse",
"https://www.france24.com/fr/europe/20260429-vagues-de-chaleur-fonte-des-glaces-europe-cumule-situations-climatiques-extremes-rapport-copernicus",
"https://www.france24.com/fr/moyen-orient/20260429-moyen-orient-en-direct-donald-trump-etats-unis-ont-vaincu-militairement-iran-liban-pete-hegseth-israel",
"https://www.cdiscount.com/",
"https://www.france24.com/fr/vid%C3%A9o/20260428-intelligence-artificielle-taylor-swift-veut-faire-de-sa-voix-une-marque-d%C3%A9pos%C3%A9e",
"https://www.sorbonne-universite.fr/",
"https://www.impots.gouv.fr/",
"https://www.france24.com/fr/vid%C3%A9o/20260428-mali-assimi-go%C3%AFta-a-re%C3%A7u-l-ambassadeur-de-russie-selon-la-pr%C3%A9sidence-qui-publie-des-photos",
"https://www.france24.com/fr/%C3%A9missions/le-d%C3%A9bat/20260428-mali-le-pouvoir-peut-il-basculer",
"https://www.france24.com/fr/vid%C3%A9o/20260428-attaques-au-mali-qui-est-iyad-ag-ghali-%C3%A0-la-t%C3%AAte-du-jnim",
"https://www.france24.com/fr/%C3%A9missions/sports/20260506-ligue-des-champions-arsenal-finale-premi%C3%A8re-fois-depuis-2006",
"https://www.france24.com/fr/europe/20260505-trump-attaque-nouveau-pape-l%C3%A9on-xiv-qui-lui-r%C3%A9pond-par-message-de-paix",
"https://www.amazon.fr/",
"https://www.france24.com/fr/sports/20260428-mondial-2026-fifa-joueurs-couvrant-bouche-pendant-altercation-recevront-carton-rouge-racisme",
"https://www.france24.com/fr/%C3%A9missions/dans-la-presse/20260429-visit-rwanda-sous-les-crampons-la-guerre",
"https://www.impots.gouv.fr/",
"https://www.france24.com/fr/vid%C3%A9o/20260505-br%C3%A9sil-un-petit-avion-s-%C3%A9crase-contre-un-immeuble-faisant-trois-morts",
"https://www.credit-agricole.fr/",
"https://www.service-public.fr/",
"https://www.france24.com/fr/am%C3%A9riques/20260428-ambassadrice-ukraine-n-a-pas-vol%C3%A9-de-bouteilles-d-alcool-lors-de-la-tentative-d-attentat-contre-trump"
"https://www.france24.com/fr/%C3%A9missions/dans-la-presse/20260506-biennale-de-venise-l-obsc%C3%A9nit%C3%A9-de-l-art-apolitique",
"https://www.france24.com/fr/vid%C3%A9o/20260505-alg%C3%A9rie-christophe-gleizes-renonce-%C3%A0-son-pourvoi-en-cassation-pour-une-possible-gr%C3%A2ce",
"https://www.france24.com/fr/%C3%A9missions/info-ou-intox/20260505-iran-emirats-arabes-unis-regain-de-tensions-et-d-intox",
"https://www.france24.com/fr/vid%C3%A9o/20260505-france-des-lyc%C3%A9ens-pr%C3%A9parent-un-bac-option-drones-une-premi%C3%A8re-qui-int%C3%A9resse-l-arm%C3%A9e",
"https://www.sncf.com/",
"https://www.france24.com/fr/%C3%A9missions/le-d%C3%A9bat/20260505-iran-%C3%A9tats-unis-la-tr%C3%AAve-tient-elle",
"https://www.france24.com/fr/france/20260505-rima-hassan-jeanluc-m%C3%A9lenchon-main-dans-la-main-sur-un-yacht",
"https://www.france24.com/fr/sports/20260506-ligue-des-champions-michael-olise-gaucher-providentiel-bayern-munich",
"https://www.france24.com/fr/vid%C3%A9o/20260505-arm%C3%A9nie-emmanuel-macron-interpr%C3%A8te-la-boh%C3%A8me-avec-le-premier-ministre",
"https://www.france24.com/fr/%C3%A9co-tech/20260505-rencontre-paris-ministres-g7-parlent-commerce-droits-douane-etats-unis-union-europeenne-industrie-minerais",
"https://www.france24.com/fr/%C3%A9missions/journal-de-l-afrique/20260505-tchad-l-attaque-d-une-base-militaire-attribu%C3%A9e-au-groupe-djihadiste-boko-haram",
"https://www.france24.com/fr/sports/20260505-prix-marc-vivien-foe-trois-finalistes-2026",
"https://www.france24.com/fr/info-en-continu/20260506-bouteilles-fruits-et-l%C3%A9gumes-emball%C3%A9s-le-plastique-toujours-omnipr%C3%A9sent-en-grandes-surfaces"
],
"static_urls": [
"https://www.service-public.fr/",

View File

@@ -8,28 +8,28 @@
},
"trust_module": {
"white_urls": [
"https://hk.news.yahoo.com/%E5%8F%B2%E4%B8%8A%E9%A0%AD-%E9%81%AD-%E5%90%84%E5%9C%8B%E5%95%9F%E5%8B%95%E5%8C%96%E7%9F%B3%E7%87%83%E6%96%99%E6%B7%98%E6%B1%B0%E8%AB%87%E5%88%A4-070503576.html",
"https://www.hku.hk/",
"https://hk.news.yahoo.com/%E4%BB%A5%E9%91%91%E8%AD%89%E7%A7%91%E5%AD%B8%E6%BF%80%E7%99%BC%E5%A5%BD%E5%A5%87%E5%BF%83-%E5%B0%8F%E5%AD%B8%E6%A0%A1%E9%95%B7-%E7%A7%91%E5%AD%B8%E4%B8%8D%E6%87%89%E5%8F%AA%E6%98%AF%E5%85%AC%E5%BC%8F%E5%AE%9A%E5%BE%8B%E5%A0%86%E7%96%8A-200000584.html",
"https://hk.news.yahoo.com/%E5%B0%96%E6%B2%99%E5%92%80%E9%85%92%E5%BA%97%E8%81%9A%E6%9C%83%E8%AE%8A%E8%A1%9D%E7%AA%81-%E5%85%A7%E5%9C%B0%E5%A5%B3%E5%A4%A7%E9%A6%AC%E7%94%B7%E4%BA%92%E6%AF%86-%E5%90%8C%E9%81%AD%E6%8B%98%E6%8D%95%E9%80%81%E9%99%A2-034529792.html",
"https://www.police.gov.hk/",
"https://hk.news.yahoo.com/%E7%B2%89%E5%B6%BA%E7%B9%9E%E9%81%93%E6%9D%B1%E6%AE%B5%E5%91%A8%E6%97%A5%E9%80%9A%E8%BB%8A-%E8%81%AF%E5%92%8C%E5%A2%9F%E5%87%BA%E5%B8%82%E5%8D%80%E6%96%99%E5%BF%AB10%E5%88%86%E9%90%98-051625454.html",
"https://hk.news.yahoo.com/%E6%99%A8%E6%97%A9%E6%96%B0%E8%81%9E%E9%87%8D%E9%BB%9E-%E7%99%BD%E5%AE%AE%E8%A8%98%E8%80%85%E6%99%9A%E5%AE%B4%E6%A7%8D%E6%93%8A%E6%A1%88%E7%96%91%E7%8A%AF%E8%89%BE%E5%80%AB%E6%8F%90%E5%A0%82-%E8%8B%B1%E7%8E%8B%E6%9F%A5%E7%90%86%E6%96%AF%E4%B8%89%E4%B8%96%E6%8A%B5%E7%BE%8E%E5%B1%95%E9%96%8B%E5%9C%8B%E4%BA%8B%E8%A8%AA%E5%95%8F-232023524.html",
"https://hk.news.yahoo.com/%E6%88%B0%E7%88%AD%E8%A1%9D%E6%93%8A-%E6%AD%90%E5%85%83%E5%8D%80%E6%B6%88%E8%B2%BB%E8%80%85%E9%80%9A%E8%86%A8%E9%A0%90%E6%9C%9F%E5%A2%9E%E8%87%B34-140502453.html",
"https://hk.news.yahoo.com/%E4%B8%83%E5%9C%B0%E8%81%AF%E6%89%8B%E6%89%93%E6%93%8A%E5%85%92%E7%AB%A5%E8%89%B2%E6%83%85%E7%89%A9%E5%93%81%E7%BD%AA%E8%A1%8C-%E6%8B%98326%E4%BA%BA-9%E6%B8%AF%E4%BA%BA%E8%A2%AB%E6%8D%95-28%E6%AD%B2%E6%BC%A2%E5%8F%A6%E6%B6%89%E5%A4%9A%E6%AC%A1%E9%9D%9E%E7%A6%AE%E7%94%B7%E7%AB%A5-200000224.html",
"https://www.hktvmall.com/",
"https://www.mtr.com.hk/",
"https://hk.news.yahoo.com/%E7%AB%8B%E6%B3%95%E6%9C%83%E4%B8%89%E8%AE%80%E9%80%9A%E9%81%8E2026%E5%B9%B4%E6%92%A5%E6%AC%BE%E6%A2%9D%E4%BE%8B%E8%8D%89%E6%A1%88-050626506.html",
"https://hk.news.yahoo.com/google%E9%80%BE600%E5%93%A1%E5%B7%A5%E8%81%AF%E5%90%8D%E4%BF%A1%E8%87%B4ceo-%E7%B1%B2%E6%8B%92%E7%B5%95%E6%A9%9F%E5%AF%86%E8%BB%8D%E4%BA%8Bai%E5%90%88%E7%B4%84-062003403.html",
"https://hk.news.yahoo.com/%E5%A0%B1%E5%91%8A-%E5%8C%97%E9%9F%93%E7%96%AB%E6%83%85%E6%9C%9F%E9%96%93%E8%99%95%E6%B1%BA%E4%BA%BA%E6%95%B8%E9%A3%86%E5%8D%87-%E5%A4%9A%E5%9B%A0%E6%94%B6%E7%9C%8B%E5%8D%97%E9%9F%93%E6%88%B2%E5%8A%87%E7%AD%89-143501157.html",
"https://hk.news.yahoo.com/%E7%BE%A9%E5%A4%A7%E5%88%A9%E7%B8%BD%E7%90%86-%E7%A9%A9%E5%AE%9A%E7%89%A9%E5%83%B9%E6%98%AF%E9%A6%96%E8%A6%81%E4%BB%BB%E5%8B%99-182002977.html",
"https://hk.news.yahoo.com/%E4%BA%9E%E8%82%A1%E6%99%AE%E9%81%8D%E6%94%B6%E9%BB%91-095001022.html",
"https://hk.news.yahoo.com/%E8%A8%98%E5%8D%94%E6%99%9A%E5%AE%B4%E9%A9%9A%E6%A7%8D%E6%93%8A-%E7%99%BD%E5%AE%AE%E6%AD%B8%E5%92%8E%E5%B7%A6%E7%BF%BC%E4%BB%87%E6%81%A8%E5%B4%87%E6%8B%9C-230505725.html",
"https://hk.news.yahoo.com/%E5%AE%8F%E9%81%93%E9%96%A3%E6%A5%AD%E4%B8%BB%E4%BD%943%E4%B8%8A%E6%A8%93%E5%90%8D%E9%A1%8D-%E7%A7%9F%E5%AE%A2-%E9%BB%9E%E8%A7%A3%E6%94%BF%E5%BA%9C%E5%B9%AB%E5%94%94%E5%88%B0-200000487.html",
"https://www.hko.gov.hk/",
"https://hk.news.yahoo.com/%E7%99%BD%E5%AE%AE-%E5%B7%9D%E6%99%AE%E8%88%87%E5%9C%8B%E5%AE%89%E9%AB%98%E5%B1%A4%E5%95%86%E8%A8%8E%E4%BC%8A%E6%9C%97%E6%9C%80%E6%96%B0%E6%8F%90%E8%AD%B0-230504137.html",
"https://www.hsbc.com.hk/",
"https://www.gov.hk/"
"https://hk.news.yahoo.com/%E4%B8%AD%E5%9C%8B%E7%85%99%E7%81%AB%E5%B7%A5%E5%BB%A0%E7%88%86%E7%82%B8-%E9%87%8021%E6%AD%BB61%E5%82%B7-030502985.html",
"https://hk.news.yahoo.com/%E5%BB%89%E7%BD%B2%E6%8B%98%E6%89%BF%E8%BE%A6%E5%95%86%E6%9D%B1%E4%B8%BB%E5%8F%8A%E6%B3%95%E5%9C%98%E4%B8%BB%E5%B8%AD%E7%AD%897%E4%BA%BA-%E6%B6%89%E8%B2%AA%E6%B1%A1%E5%9C%96%E5%A5%AA%E5%A4%A7%E7%B6%AD%E4%BF%AE%E5%B7%A5%E7%A8%8B-%E8%98%87%E6%95%AC%E8%8F%AF%E5%A0%B1%E9%81%93-050523997.html",
"https://hk.news.yahoo.com/%E7%89%9B%E6%B1%A0%E7%81%A3%E6%8E%83%E7%AE%A1%E7%AC%8F%E8%AA%98%E8%9A%8A%E5%99%A8%E6%8C%87%E6%95%B8%E9%AB%98%E6%96%BC10-%E9%A3%9F%E7%92%B0%E7%BD%B2-4%E6%9C%88%E5%B9%B3%E5%9D%87%E6%B0%A3%E6%BA%AB%E9%9B%A8%E9%87%8F%E9%AB%98-200000496.html",
"https://hk.news.yahoo.com/%E5%8D%B0%E5%B0%BC%E9%A6%96%E5%AD%A3%E7%B6%93%E6%BF%9F%E5%B9%B4%E5%A2%9E5-6-%E5%84%AA%E6%96%BC%E6%94%BF%E5%BA%9C%E9%A0%90%E6%9C%9F-053502708.html",
"https://yahoo-news.com.hk/BBCChineseNews/41570/?yptr=yahoo",
"https://www.gov.hk/",
"https://hk.news.yahoo.com/%E7%BE%8E%E6%93%8A%E6%B2%89%E4%BC%8A%E6%9C%97%E8%88%B9%E9%9A%BB-%E4%B8%AD%E6%9D%B1%E6%88%B0%E7%88%AD%E6%9C%80%E6%96%B0%E7%99%BC%E5%B1%95-%E6%AC%A1%E7%9C%8B-043503677.html",
"https://hk.news.yahoo.com/%E4%B8%AD%E6%9D%B1%E6%88%B0%E7%88%AD%E5%8D%87%E6%BA%AB-%E6%BE%B3%E6%B4%B2%E8%A8%AD10%E5%84%84%E5%85%AC%E5%8D%87%E7%87%83%E6%96%99%E5%84%B2%E5%82%99%E6%87%89%E5%B0%8D-032002052.html",
"https://hk.news.yahoo.com/%E4%BC%8A%E6%9C%97%E5%90%A6%E8%AA%8D%E5%87%BA%E5%8B%95%E9%A3%9B%E5%BD%88%E5%92%8C%E7%84%A1%E4%BA%BA%E6%A9%9F%E6%94%BB%E6%93%8A%E9%98%BF%E8%81%AF-215001317.html",
"https://www.police.gov.hk/",
"https://hk.news.yahoo.com/%E8%87%AA%E7%94%B1%E8%A8%88%E7%95%AB%E6%89%8D%E5%95%9F%E5%8B%95-%E5%A4%A9-%E5%B7%9D%E6%99%AE%E5%AE%A3%E5%B8%83%E6%9A%AB%E5%81%9C%E8%8D%B7%E8%8E%AB%E8%8C%B2%E6%B5%B7%E5%B3%BD%E8%AD%B7%E8%88%AA%E8%A1%8C%E5%8B%95-002005854.html",
"https://www.hko.gov.hk/",
"https://hk.news.yahoo.com/%E8%90%8A%E6%AF%94%E9%8C%AB%E6%B1%BD%E8%BB%8A%E6%92%9E%E4%BA%BA%E6%A1%882%E6%AD%BB20%E5%A4%9A%E5%82%B7-%E5%BE%B7%E5%9C%8B%E7%95%B6%E5%B1%80%E5%B1%95%E9%96%8B%E8%AA%BF%E6%9F%A5-003501152.html",
"https://www.mtr.com.hk/",
"https://hk.news.yahoo.com/%E6%B3%B0%E5%9C%8B%E6%89%B9%E5%87%86%E8%88%89%E5%82%B5122%E5%84%84%E7%BE%8E%E5%85%83-%E5%9B%A0%E6%87%89%E4%B8%AD%E6%9D%B1%E5%8D%B1%E6%A9%9F%E8%A1%9D%E6%93%8A-080501492.html",
"https://hk.news.yahoo.com/%E9%A6%99%E6%B8%AF%E5%AE%B6%E5%BA%AD%E5%B9%B8%E7%A6%8F%E6%8C%87%E6%95%B86-09%E5%88%86-%E8%BC%83%E5%85%A9%E5%B9%B4%E5%89%8D%E5%9B%9E%E5%8D%87-52%E8%90%AC%E4%BA%BA%E8%99%95-%E5%AE%B6%E5%85%A7%E5%AD%A4%E5%B3%B6-200000517.html",
"https://hk.news.yahoo.com/%E7%BE%85%E9%A6%AC%E5%B0%BC%E4%BA%9E%E8%A6%AA%E6%AD%90%E7%9B%9F%E7%B8%BD%E7%90%86-%E9%81%AD%E4%B8%8D%E4%BF%A1%E4%BB%BB%E6%A1%88%E7%BD%B7%E9%BB%9C-130502524.html",
"https://hk.news.yahoo.com/%E7%B4%85%E7%A3%A14%E8%BB%8A%E4%B8%B2%E7%87%92%E6%B3%A2%E5%8F%8A1%E8%BB%8A-%E5%8D%97%E4%BA%9E%E9%90%B5%E9%A8%8E%E5%A3%AB%E8%AE%8A%E3%80%8C%E4%B8%89%E6%96%87%E6%B2%BB%E3%80%8D-1%E5%8F%B8%E6%A9%9F%E6%B6%89%E9%85%92%E9%A7%95%E8%A2%AB%E6%8D%95-010953947.html",
"https://www.hktvmall.com/",
"https://hk.news.yahoo.com/%E4%BF%84%E7%83%8F%E7%9B%B8%E7%B9%BC%E5%96%AE%E6%96%B9%E9%9D%A2%E5%AE%A3%E5%B8%83%E5%85%A9%E5%A4%A9%E5%81%9C%E7%81%AB-055003888.html"
],
"static_urls": [
"https://www.gov.hk/",

View File

@@ -8,22 +8,22 @@
},
"trust_module": {
"white_urls": [
"https://www.rakuten.co.jp/",
"https://news.yahoo.co.jp/pickup/6578089?source=rss",
"https://www.mhlw.go.jp/",
"https://www.japan.go.jp/",
"https://news.yahoo.co.jp/pickup/6578103?source=rss",
"https://www.smbc.co.jp/",
"https://www.jreast.co.jp/",
"https://news.yahoo.co.jp/pickup/6578098?source=rss",
"https://www.u-tokyo.ac.jp/",
"https://www.amazon.co.jp/",
"https://news.yahoo.co.jp/pickup/6578095?source=rss",
"https://news.yahoo.co.jp/pickup/6578102?source=rss",
"https://www.yahoo.co.jp/",
"https://news.yahoo.co.jp/pickup/6578100?source=rss",
"https://news.yahoo.co.jp/pickup/6578096?source=rss",
"https://news.yahoo.co.jp/pickup/6578097?source=rss"
"https://www.amazon.co.jp/",
"https://www.u-tokyo.ac.jp/",
"https://news.yahoo.co.jp/pickup/6579009?source=rss",
"https://www.jreast.co.jp/",
"https://news.yahoo.co.jp/pickup/6579008?source=rss",
"https://www.rakuten.co.jp/",
"https://news.yahoo.co.jp/pickup/6578993?source=rss",
"https://www.mhlw.go.jp/",
"https://news.yahoo.co.jp/pickup/6578991?source=rss",
"https://news.yahoo.co.jp/pickup/6578987?source=rss",
"https://news.yahoo.co.jp/pickup/6578996?source=rss",
"https://news.yahoo.co.jp/pickup/6578997?source=rss",
"https://www.smbc.co.jp/",
"https://news.yahoo.co.jp/pickup/6579007?source=rss",
"https://www.japan.go.jp/"
],
"static_urls": [
"https://www.japan.go.jp/",

View File

@@ -8,19 +8,19 @@
},
"trust_module": {
"white_urls": [
"https://www.daum.net/",
"https://www.hometax.go.kr/",
"https://www.yonhapnewstv.co.kr/news/AKR202604291353261Wk",
"https://www.yonhapnewstv.co.kr/news/MYH20260429124522Cfz",
"https://www.coupang.com/",
"https://www.yonhapnewstv.co.kr/news/MYH20260429141826Oex",
"https://www.naver.com/",
"https://www.yonhapnewstv.co.kr/news/AKR202605061413403Cy",
"https://www.snu.ac.kr/",
"https://www.korea.kr/",
"https://www.kakao.com/",
"https://www.yonhapnewstv.co.kr/news/MYH20260429120255UuE",
"https://www.yonhapnewstv.co.kr/news/MYH20260506144518ZSk",
"https://www.kbstar.com/",
"https://www.yonhapnewstv.co.kr/news/MYH20260429133604Bz4",
"https://www.naver.com/"
"https://www.yonhapnewstv.co.kr/news/AKR20260506120317oou",
"https://www.yonhapnewstv.co.kr/news/MYH20260506114454137",
"https://www.korea.kr/",
"https://www.hometax.go.kr/",
"https://www.daum.net/",
"https://www.coupang.com/",
"https://www.yonhapnewstv.co.kr/news/MYH20260506120430SB5",
"https://www.kakao.com/"
],
"static_urls": [
"https://www.korea.kr/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.maybank2u.com.my/",
"https://news.google.com/rss/articles/CBMiwgFBVV95cUxOTmMtWWdXTEJDYUdUZ2twUnNKMXI1SUt3MW9QbEpqSndobHhEMDZ1N3hiU1VyQ1Jta00yREdiaEV1a3N3dTZqQy1ZS0pVNUY0VTRRRllObzcwWlRxM2ZyWFJka212N2ttbEZTZEJBTXd4bjFuaExaX29pVG1YWkhtOG9DZC1BQUx6QmJrY1dCZlRJNTFTcFBDeENlU0dBSDh4Y1NjUG02S0F6Y1ZYWFA2dFlZLVVEOTdfcS1fTXNUc0d6d9IBxwFBVV95cUxQTFZMSlB2cFp3ODB5dk00X3ZJRXNmRW9ZMm0wRkVHeWNob1g4cTF0TG45eVBCdG41NUFuY29EMVBkYUd2MmR0aDhtWE1GMFowdlBEOWY4YVFYZ3NJcHVlbDltZTVkZTI2SUgzbDVDQ3QwLWE5QUEtNDNRb18tSHZvQUs4ZV9mU0VKWWl6Y3Y1aVZreExEd09BTklkTVVONDExcUZwQy1ZN3FaUDFKWWhMLXJjXzg1ODZoeldfZzBsbUtrNXh3OTdj?oc=5",
"https://um.edu.my/",
"https://www.lazada.com.my/",
"https://www.cimbclicks.com.my/",
"https://news.google.com/rss/articles/CBMi0AFBVV95cUxPdlpkV3RuSklKeG1aVmRLcUdkaWE4akxEOGsySE4tdy1TZjZ3VGtjNV94UDdrR3hOVEFiSVF6MnJXbHpSSkNFZGlwc2t5N21GVXlpRGM5Y2d5VC1UUmJDdkpzakNzSWMtanhfQW9xMnZISUVuVVozSzY5OWQ2aEJoMExVcW9neExaTVA2MTFyZ2xKOXVtS3dqMkZ5ZWRjUHdlMEhkbzFqN0pia01sN2tKMWd1TzcwS0tudkZNMFdreWRvNEJvZ2NyVUlrUFVuQndW?oc=5",
"https://www.hasil.gov.my/",
"https://news.google.com/rss/articles/CBMiywFBVV95cUxQdlVReUVqQ2dKLV9wZUNQcTVlUXU1a0lFeHMzUlVydXdXcDl2VTk4STNNcFBWUXVUUUxtMWl2NUFxSlpaYkh5bjRvbWJidkZpMWY2ekdoR0FMc2NXVURRaWItYjVXM182SzhjWlNyLUZoelhMTHFhVlFiZWRYczdfWWtocnBhX3gxcFpYU0VfeXVkNG5DNzBpNF9QNHczZXVrYjJJR1BFbHRLMS1oUjVEZlFRZDNDVkkxS3MtZHVxNlF4dGJ6RlB4SFFCa9IB0AFBVV95cUxPWHAxTkNoRjRLNE5UcVF1TGRpa3ZzNTczSy11Qmg0WUxqcGhxemV1a3lCOXFQeVlxX1o1dDlpZG04bkpfU0o0N3RMR1pVWDV0RlpRQ2RESnZSOTdlQ0hfdlV0YTFXaW9ENHVncDM1bTV3b0x2aFBzTWtnM0xPeTBtcEFTcXNIMGhwai1tMlVDNGNJSzVtOTJraGpxTFdJZ0JpS2VTN3phOFFKUEZWVlB0X3RTeHRETDJUUTdQOFpZLXhHUEJxMnJHZ3p4c05Oazho?oc=5",
"https://news.google.com/rss/articles/CBMie0FVX3lxTE5pdmg2UHVXM3BueUhNbi1lUC15bTRTdkw3Q09wTU9WSlN3TXZqM1cwdVp4b0VTMEZYYlhJUDg0ZWF1RU1waDdtQk9GUURTRmJwMmRybTdLd1Q0UlNaU29ZTmpQd3ZBSXhJUjEtLW02OU03UW5nS0hpOEVhVQ?oc=5",
"https://www.pos.com.my/",
"https://news.google.com/rss/articles/CBMinAFBVV95cUxNckxKeWNrV2ZRQVBNRGd0bWd5Zy1NNWZDZ0FQY3RGVUlNdExVV3NLTFJmWm5pdExJMjB2dmNYVG5YbzRZTEhVZi11bS1odEw4bDhscmZfMURVVWw5LUkxa2JMQU5KZ2JjdHdaTVN6UGxpa0wteUlEeFVWNGM2X09LUnlOclBmMEJ4ejZrSXREcGlISm1KMEZ3bk9uYWQ?oc=5",
"https://news.google.com/rss/articles/CBMiUEFVX3lxTE0tVFZDUEtnd09DSGh0WGdXbUlGdVpqYmpmMk9Ob2RHWGFoXzRxX3Y2bFlNdWsyNXh1WEwtaWVtdHBsQ2ExS1d5VjZNSFBRdTJL?oc=5",
"https://www.kwsp.gov.my/",
"https://www.thestar.com.my/",
"https://news.google.com/rss/articles/CBMi4wFBVV95cUxNSXZxOEFHTXBlR2QxV3hwNjN4YTRwQ19VRTJlaV8tRDVLQzRydkM2eGZlRmJoZW9HUTZPRmZxV1RBM0NpZnFTWHRsNXpBLVRrSmlzVzRDUTdvVXlRT1M0N2tHWXFTRk1aZTF3Q01yZUloWVZ5WU5PbGZaTjNoZ3FRWFNzcDlsMDZpcDhCSnNLdlZKWGxxT0lVWHY2bDNXb1hVS1ZGbFlSdDNwLTBzY1VORnp0MGVyZ0tjeWcwMnlPSFM0WnczT2pHekhNQ1JaS1p6Uk9uQlQzMUdJamRyYUlmRUktVdIB6AFBVV95cUxQZ3QwS180Wi1lak5paDdXMEtBbXR1aDV3bUxOdEJITGc5ZzE4bmlzcXNTdHdHeDljM0Q0VkxDZTl5bS1JaUtwckhEUlVORzZJeHBGRmJFNGJZMlQwYklORVRaR0VibE5CeExyMFhDRHJhZjlBVDJFZkQxcE92WkJub0NYX3IxVi1iX3VzT3ZHeUx1MXpuUy1xNFBYbm90cE9tSWpjejI2cVIwYlBWLTR1bnFsbC1jeDJKMFJuSWZ4aVdVaXFYUlRad1F0V0Vkc1RmdktoSDk0a1l0UHMtbTBzdGhBTlk2WlVz?oc=5",
"https://www.malaysia.gov.my/",
"https://news.google.com/rss/articles/CBMiowFBVV95cUxPNDFQaHRVRmtoRGk1aWk1OXpJYTM1Ml9WTHQwLUhRSmNDRGlEUnNXZlVMYU5Ra2dkNmlXN3dISDNpRnc4Zy1PVklmRHZRUkc0aWVIR25IVEhpcjNxOU5YcXo4UlBuN0E3SlV2MWFERU1CbVJFYTd5cXJNVWwyT3paMy1DRzV0aTZnQUZNenl0U1BQSTVKMHVXeXdjRFBXLXJvX1Iw?oc=5",
"https://news.google.com/rss/articles/CBMizwFBVV95cUxQTDhpR0pXNGZKWi0tRG1ORzFMem1zRC1fVWpuMU1ORlVDc3BkQmZsV01udnhTaHotV1JzYmlSQ1dHcFpUNl9idFdRbTBMSXI0bjlLVXJKM0lVUWdBYVpkekw5UjlKRmd6QThMaXJHZ0JXSFBRYVUyVmltcnBzSFgzTlpJZF9mNTdiYTNzVmtPQ25nSnpLUEY3eXR1UVZfRFJwQmRGb1pVZjNodU42NU5TRHNlSXF6Y2ZHbW5tdVBIMEVQOVJXemRuV01PbFQ5czA?oc=5",
"https://news.google.com/rss/articles/CBMi1AFBVV95cUxORzJqY2MzQjJVZHlhQ2hDLWxPbWpKVGdoeTIzMzBvMXQ5cTl3WWo4WERnMS13YXRjbkR0UnFCeDVBVkFDOUxsX283UDFBR0VUeVFycUFEM2VzdmQ5RDQ3T1NGa0c1YnZYNkRVZXhpSUxZQ1p1SGJzZnJ1NDF4OUhodW9mWDFZYmJzTGZtUklCTXNEdmVXQmRKV29KZ1JNQS05b1kwY29MTGJVLUg3OHdOcFF3R2wtZDk4a3RwY0dvTVB0SmJ1TkphZ2hLekVNVGFfWFBPOdIB2gFBVV95cUxNQVMzSmJvM1RyMDN5ZjJZUDFsWGNTT0xyOGFwWC14NGY5WE8wT1FIRWNvNm10OXpnS1V0Q0hINW8xa0JMSnZ0Wkc2cUgxdzQ4NjMwMW9reVJHQXJSQmFuaWROeWFsSVVtYkxVUjBNamMxMmFBNHlPQi1LSmZuSm0tXzhnYmtGc1JFUjJ2MVVRYmxONnhKa1Y3NkR0U0VTN1VjR0FsOC1VSFYtQkhNcHZnUU5GZzJpZ2o4RlJMUjF0b2xpeW82aTdIZF9nOUVySEZKYy1CQkpRamo4Zw?oc=5",
"https://news.google.com/rss/articles/CBMitAFBVV95cUxPVWtrMmVHOFg4dVktZHN5bTdjUkprY1Y3eVluam1IOWFlMFdaM202NGJvT0lRUnI0V3lSOHE0a3o0YWJfMk16aTItWGY3YWh4OHYzTVQzdS1sYXNQT2trX08zRjhlb1ktRzRIYklSaGdvY3dFZGxhY3hDZ3lfRDJhVm5CNFFhX2lQblF2S1VNNmRKWGk2RGR3bUpaeGFlYWF6RC1rN19LbVc5Z0Jtb0RYbUpyVUjSAboBQVVfeXFMTVVoZlphNERoX2VSWGtBQVdFVTFGblBpWUhUSmxWdExIOVJoVm85YXZjaFc4cVdCaTNEY2NUT3ktV0tzNU5DODdQR2RBLWRvZWRMV0xoUENFaHhka3BUVzNmbnlIaUNqcEx6Zmo5enY2dS1FMU1DYlFwTmlOMFNzbzZVU0JhVFRoazB2S3l2Y01qbk5tbWE2amxfNmk0N1djRUM5a2YyZllmVGs4cnRMWGNvckhYeEUyTnhR?oc=5",
"https://news.google.com/rss/articles/CBMimwFBVV95cUxNZDhBR1ZmaGEzSDlNLXdCWEdweVVRTkpNS0tIVUVDWTZHYl9abVlXU0JaeXBCZXlocWRGTUJhb3ZnNTZzZ05CdXJyc1VIZzRvTk40SFJ3U3g0Z0d1VFpCZFlvclo0QzNXaXZnUFhiQzNxdUxiR0xtYjRQTVU0MW0tS0xHMm5sbWJMYTYtb1Y1OEFLaEx0NW1aa1ZQYw?oc=5",
"https://news.google.com/rss/articles/CBMiyAFBVV95cUxNSmZsZW91OE5iVmc5SnJ3WUtKdG9vQUJCRzB4dzg3clhON0FxeV9ILXZyaXFZVTZDcXFvR2F3Ynkyd0ZXbmkxTnctWDZGdkRWb3ZxaXd2N3pQY3hPNXBXTzdVSmJPMWkzX0ZSR2Z1WldkRWJUYVdwZ2pWRk1mRXl5RzI4aVExdXA4VlUxZEZrNXFwNnkteHUxa1hfR2JIT2NoU21vSTdoUmlid3ZreFBIVDQwbDNSZENUazFpYzdwUE9oTDJaY3hUdA?oc=5",
"https://news.google.com/rss/articles/CBMi2gFBVV95cUxOZHp1UzNJNThraERQeEg3ZTRIX19sMDRhS2gxZmhMQUZmN0JIX1FQUlZ4RlZkNGFFTmJvOVBHQXZXVndmNDNFUzlNdG1ZY2VQYWxxRTlLbTdHcUNJb2w2OExFWm44emIzNURWQTlXSjZ1WEpJald5RGNTQWxOS0U4MnZ5cW9HbVdhdmRLLV9DNWRsYTBtVUk2d3NBb2h5UVNWbWlYVnJra2pIdmNCZ3hWMW9mSFJxTkNQeTBXUDkwX0JLNnZjMUVNSXd4RmdINW5Ba2ZUS0lON1VHUQ?oc=5",
"https://shopee.com.my/",
"https://news.google.com/rss/articles/CBMisgFBVV95cUxQenlTMUZOanBIeGZTNGp3bWJQd0p1X3dVUUdMaGVJMl9OVGhKZHZxQlhkNXkxVlNlLWlLWS05cU1FMmNTLUFicFlRWTNqUlBTVXNfLTYzSENXMDYxdkNKRnlSclFjSnJjM2xIYlBJTzVSSW5ibXh2bFJnNE05LU1uYTBVVjdRdXVnNGdrbjZDY1JPZC05OV9xTWliLVhLV3czZU5NbEdwai0wTm8zbk1ieXFR?oc=5"
"https://news.google.com/rss/articles/CBMixwFBVV95cUxNMEZHa1pQejFZZkdYMDdHWnUwR1JWX096OEJrSXV0NTNmM3NPRmtOd1dlZ1JnUjhzc2kxLUhRTkwyaGNlczFnYkNMNFpsYzk5dU95bEZxb1B2U2NRdElWMUgxRWM5MmhYQkRCMnZQc2s1aVRsSTZKODkwVkNaSWE5c0NTNjJvRmtpUkZ4Y0NqNVFManBGWVVJQ1BaZnlRQlpWU05PQ21uWWstUFNqazdzakdoem1XYk1FTHZKYVBjekt2NkhFaU93?oc=5",
"https://news.google.com/rss/articles/CBMiwgFBVV95cUxNT19xeGhodmNYNGF0dG4wNS1XYlhOanZRU290WTl0bjY0Z0Q5UmI3ZXlPbE5rc0xuZ0dTVEV4NUd1VVNpb1NNckQ1VVNLU2o1WTRQTGtZZ2IwV25ub2FCeE91TGxzaXlxcjVoeF9yTmR6ZnZvM0RYVk1MdGxHcEZlQzdURHJBMzVDTWVhMWNfU2hqU1RfWUxERjk2dUlUSWl6ekhpSDl1QjFhNEdIYmxweTkxNHVxbHhaRkZ2cUh5N1ZMQQ?oc=5",
"https://www.maybank2u.com.my/",
"https://news.google.com/rss/articles/CBMifEFVX3lxTE84djc0U2xCQnNEX2lkY3JNXzc4VkRTaW1OUGs1S0d1bTQ1U0hXdDlrZHV0ZVNydmVkMTJqWVB2ajl0aTB0N2phWFhOU3I0WERRR0w3MEVwc2VfNzlLRGZkSVNsQjlHMEtFRW51MjVDaVB0eTZNdTJRYkxLNmU?oc=5",
"https://www.lazada.com.my/",
"https://www.malaysia.gov.my/",
"https://news.google.com/rss/articles/CBMi7gFBVV95cUxPbFFXSWdnNW1jTGFGcVhCczFyLUZ6amNjQUFiUy1OdUEzRUgtVTVheEl5a3dlQ1psSTZwbmZGTU1OWnlENVpucDZEbTRhOUhSRVBBb21MZXhYM3Y2V1FEM0tzUUtxQ0ZVM3hxVUpNWEQ4RjE0b1V0dmFlQlYxUHJ4MURWVlF2R1E2VDdUSGNfUE5HSGc2RjVQcmVkdDBhSW9ZR3Q3Wm1vTWs5eTZha2ptdmRlUGF6SFYweFRMMlVZOU9ETV9MNmFaZzZVcDJiZFFrS3dBVXV5b2h5Sm1FdnhFWG12Y1BEbUU2UF9EcjhR0gHzAUFVX3lxTFBfUUpOT1RWQXNBcHJzYXlqMWZqZmFJZkVrZzdmb0t4N3hKUVFfNWstSVI2bVgyYkd6N09LbmpSdS13QWZkTGVENWloUXUzanpkTEtDMlp4ZWFoT2IxZzFwV29BbkpTOFkxcHhYMDJTVTMtX2ZvWEpjQzFuaThuOWVBVkJ5Z05HMFA4WU03UDNLYWtkclRaTGZxMlREdlFxREc5VnFIeEVNZmtMVTk4eFFnUndQTDBWUFIxYjlvMGJWa2NCVm10SjdWTWhBUkdpZVJJeEpRRnNxQ2xLSUxLTGhsQjhZeVRQX2lMSTY1bVY1V3FsOA?oc=5",
"https://news.google.com/rss/articles/CBMitAFBVV95cUxNZ2lhN0hQbElyZFNXXzVkb2FSdU5ad0ZLcDhUazFyNHMycHV6cUVZVjVicThZem9FeVhoMzNTYU93WmlsRDNmWjlrMHRqQVA1cUQ3TVNwTEV6aFlXWGltdjhFNnV3Rk9FV2dJcFl6cTZZMDVhN2xsVUV1YlZ3TlBCMGhPLW4yYzJRdVZwMndoTTVFUDgzRDNlYWd6bVJUUWEtZFVSQzBxdnM5dkJ0QjdIa3VORlQ?oc=5",
"https://news.google.com/rss/articles/CBMixgFBVV95cUxPWUtMUi1kYkRtdnVwdEt0YjFQWWxQTldhVGhGa3N1MVZpSnExVkRuZzllMzdxaHJHWHlqUWtzN2NwUlNLOUZqeVpNMURvaTZvX0tla09qNU5aT1BXekVrdmktUkJMMWJpd2oyQjV2d2pISkdUb21rS3dEaWt4cHIxbHJTbktlTGNhYS1jdUhIdTNFY1U2NjY4aFJQWUlxLXlyaURMdHV6dFJSYndfMm9QaWFGWWRIWlhwaVdRcVV0cmlZc2NYUmc?oc=5",
"https://news.google.com/rss/articles/CBMilAFBVV95cUxPQUdQbDJ3T2o5OW9PTjhDUktLWVV1ZWFiNFpnRUxXdjUxcTdQbkREbmxQLUZjTnVsMDdaRThlRnYxYV9zVGVYRTNWb1dBYlRGVlY0TUs1dDZkSzgwMGhZZHVDM1BKVkN4Vjk1ek1GQ2ZLTEdpNEo0cEc2ZFd2R2drWDNWZnZvQWJLZTY0XzZYM0NleGVJ?oc=5",
"https://news.google.com/rss/articles/CBMi-wFBVV95cUxPalE0dHo4aWNDWi1feklPaDQyVE1EN1Zzd0lVVE1nMUN4Rm5UZlNvX0FBSVZSeVpJRnk4cWltX09ERDhDdUxyX1VVZ0d4QzI2bWRQUndTRTUzRDVudkhRZTl6YjNCSkFnV1IxWHhKMzlJSHNiU1FITGlOVnVPTGtmUXlSS2VxdEY4ZkNUQzhmandIczJnRHc3dWhoc0F3Y0FhamVmMmJqbFlTeUh4R2poMDNoS2JPMnJIaVdBSGFPd294NUtMQnV2MnV2YTlDOXVvcXMzSTkzOEhxdWV0YVgwS1FOM0FwR25iQWM3dTRhR2JqMGJlcGRuSzZUYw?oc=5",
"https://news.google.com/rss/articles/CBMi3AFBVV95cUxOb19TdVhmSFgxcTh2dUFfUGdvYkRseVo2dWowWGlmamlRalFycDNRaVZvMGlVU09DbHBNdENGbmhjVTBEN2E2OE1YSFd0Qnl2Y2lhaHYwQ0JkMER5bHhqWDdWbVpfTlJjVlZZZjhKYm04cWJET0xsUXM0bS05MmdKY00xVzJraGNScERpOTYxZmlJWnlKbUluVmxuYl9wZG1ZcTNwS2NnN1BBdjNsQ252X2V4VzNaUUZMdWFVNzY1Q2RPWXJhRUUtM1lFQnFuY1QzeHBvSzBlNk9mdGNF0gHiAUFVX3lxTE1GVlZ5MHZyaUxMNjhQXzBfZ1NGME5aWlMxWVZuZS0xeUI1aGRtbzZsQ1p2eFlZRHpaRFFPMU1yWV9PUVM3aVdYNnlPdGZJajk4Q1AxRlYzX09FT1BNS2oxYndNWWlLYnpja2dOWWlQTlQ5Tk5oeWxRTm0zbDFXSlFCRF9HV2VvNUJEdERnYWZTRVNZeHBoMHk2UGxTcklQbmVIVTNzTk1HQVVlOVlQbzA4LVIxdHFrM0lkTWI5VEhNcTc3U1RhQlQ0WFJUY2xVWUtsM0ViYTlVbVlzdVlyN0h1UHc?oc=5",
"https://news.google.com/rss/articles/CBMiugFBVV95cUxQTGFveWRZYTg0RWdWYlVQTEMyV0ZsZE1wZEJnTkZaQ2sxN2tJZVdmSjVVSTV3emY0VG54bk8wUTI1c1Q2cE5nRkFSS2ZsU3NRSGxYMTdYNVhMNzN5VUxIWS1JNXc3LXpoWmszOEFsdXVCcjZ6U19YXzlfTUtlUFdGUFJmTUJfUG1TZmVESjRqUV9ZVEZjZGJtZFhMMVlsVkJLTl9jRmQyZ2c0NHFlYWhMU0FQRHUtR0ptbHc?oc=5",
"https://um.edu.my/",
"https://www.pos.com.my/",
"https://news.google.com/rss/articles/CBMirwFBVV95cUxPTUZLV1d4elRUWTgxZHEtY1NyUTBpbFMxNDVmbGFwd3RiS3ZWQnpkb3NMRU1kM0ZXWnVFYml6bG5Nb2RMNm1JUGd5bDFNTXdIMXZiVGktbVZQLTg1anQ2Q0IzazVyZVhSSnF4V2VGZHYzVUl6UjhVT011TTYycUwxSzZQWjVBNVRieGVWeGdFdnlsaDk5aGtyRVd6ZVlnS1lSdUlFdktGVFVxZXR5QnBv0gG0AUFVX3lxTE43RUM3ZG9aaEFLNGRjOEU2VkhmMzhtcUwwUXJiT0F3d2ltV0VzSTZnRVJwaVBrYTkxRHF2aXRWSHlLd3BPVGlEQ205dEdmTjJaQ0NXTTVpODd5SEdOTVhHWm9NRHZBcHNIVlg3dDRldHBUZ0tZLVVta0ZOaVVuaWd3UHFKMTdnQWhnLUtmR2pLMVNFd2JfU0dsVDB0ZE9yUG1FZ09seG5JTGlCWGlSdTdRNktpQQ?oc=5",
"https://news.google.com/rss/articles/CBMi7wFBVV95cUxNT1lSSHUyOEVtWTVGMEVPRWxWc0UwTTdldmtVM1h1Z1RSTFMza2FuOXc3c0NLU3BydlBHV0tnbGNNNUxJdFZYLWlRdDJDMkd4N3FlQWRXdGo3UEN3c1VuWkNTeW95a2hYWlRzNGRvUVdCekRLWDFaR29pakQ5T2xzTlc2aXZwOUxKU0JMMEg4MjAwdW1XTnEzTkFhblkyLVJuYjk2XzBUT3BwZU1rTDdLc1ptRmlBZUFsS05IbzdSWTdnYnh6UEJCdy0zemM5Q0J5NXVud0pCWFRDWWdnWFRqSFd3dGpVZTk3bWFrSk1tQQ?oc=5",
"https://news.google.com/rss/articles/CBMi8wFBVV95cUxOclJVVEJMVGItdzlGdlhXR0hBbjEwb3gyb0ZJVVhoWm5qV3pRRVFmcm1tSjBqcFlCZkNEQktMUFBZbU5sTnV1MnU4bmItSVhJNTdNcFI2c0tPZk40VTk0dVVTVHNyRGtmMlc0cXdCcjdaOFBxWlAzbDB1UWtSMHhoUUZWWVpfYkZQWElTRVZYQ3hFeHd1Z2puT2pDSTVBT1A5M2Y4YVF3UHY2NlJzV21NVHgzQ0JNZk95NGpZRnBOWkNzZ2l1aHJkS2hBTmtsTFBvRnFCSk1ieVVTejRnRERsTy1IbWdEaXJWV01IQzZnUFFjT1k?oc=5",
"https://www.thestar.com.my/",
"https://www.hasil.gov.my/",
"https://www.kwsp.gov.my/",
"https://news.google.com/rss/articles/CBMiYkFVX3lxTE9YcW9JZ1U4UG52RC1XVGQ3eWtVdHA2R1BPNmNRYkVMOExHZndINm5vTWkzNzZwZW9DUVBfZlZJVklESVNMU2tlLVpPZ0p6QVZCQlFjamduQ2toS3NUVFVaaGhR?oc=5",
"https://news.google.com/rss/articles/CBMiigFBVV95cUxNTHNYT1d6SkdVVGI0M1I1REQ2S09WaFNMYlNSQzNxYktVUDVZc3hYWklkakk3RUVlZjlGQVR5M2ppLS1Pd3NrUWRhSXkyNGpXRFZBVjIxTk5rU2ZiaGRTazI3WXEzYlowSGpka0NDS3hYYkV3VU5QTzBfdlUyZEJoMHUzejltYXlyZ0HSAYYBQVVfeXFMUG5lLVJFSHVNdnJqS2x5dTFCYk1yT2hhZDVCSWJJbHpzakxqNTAwTGpsX3lESE1MN1BrMjFoODJnNkNESk9qT1dXWUFpbXQ2OVBSRFVfTU5XOG8tNXNTdVBWMEUwR1dKLWFlSF9xOXhWX0pidGxkMEFZZ1c2QVI0enY2QW03TkE?oc=5"
],
"static_urls": [
"https://www.malaysia.gov.my/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://punchng.com/wbank-commits-8-2bn-to-africas-power-supply/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.nairaland.com/",
"https://www.konga.com/",
"https://punchng.com/33-ambassadors-secure-agrement-32-pending-fg/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.airtel.com.ng/",
"https://www.firstbanknigeria.com/",
"https://punchng.com/six-arrested-after-attack-on-kano-phone-market/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/three-jailed-97-years-for-abduction-in-ekiti/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/oau-announces-three-week-break-after-students-transport-protest-2/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/firms-return-to-profit-despite-policy-shifts-report/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/wafcon-postponement-frustrating-nnadozie/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.jumia.com.ng/",
"https://www.mtn.ng/",
"https://punchng.com/naseni-empowers-2000-kano-households/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/naca-unveils-technical-team-for-aids-control-in-anambra/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/court-frees-ex-hos-oyo-ita-in-n570m-money-laundering-case/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/epl-clubs-battle-for-dele-bashiru/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/portable-challenges-davido-zlatan-after-carter-efe-defeat/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/nigerian-passport-climbs-global-ranking-slips-in-visa-free-access/?utm_source=rss.punchng.com&utm_medium=web",
"https://guardian.ng/",
"https://punchng.com/fashola-honours-insurance-exco-at-book-launch/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/efcc-chair-urges-ai-adoption-in-corruption-fight/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.punchng.com/",
"https://punchng.com/east-africa-attracts-4-1bn-investment-amid-reforms/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.gtbank.com/",
"https://punchng.com/n1m-wage-useless-if-naira-remains-weak-ajaero/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.vanguardngr.com/",
"https://punchng.com/osimhen-to-arsenal-odumodu-vows-to-buy-emirates-season-ticket/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/im-yet-to-get-flying-eagles-job-maikaba/?utm_source=rss.punchng.com&utm_medium=web"
"https://www.airtel.com.ng/",
"https://www.mtn.ng/",
"https://punchng.com/edun-charges-nigerian-boxers-ahead-ghana-bout/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/akpom-joins-ipswich-permanently/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/adeshina-bags-texas-tech-student-athlete-award/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.konga.com/",
"https://www.punchng.com/",
"https://punchng.com/fintech-oversubscribes-debut-cp-raises-n6-89bn/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.nairaland.com/",
"https://punchng.com/iran-creates-authority-to-control-strait-of-hormuz/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/11th-nass-senate-blocks-ex-govs-uzodimma-from-principal-offices/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.firstbanknigeria.com/",
"https://punchng.com/unity-cup-chelle-rates-3sc-midfielder-ayobami/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/gunners-end-lookmans-ucl-dream/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.gtbank.com/",
"https://punchng.com/egbunike-backs-ogazi-for-more-records/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/oyebanji-labels-oyebode-football-tourney-talent-pipeline/?utm_source=rss.punchng.com&utm_medium=web",
"https://punchng.com/leverkusen-coach-hails-tellas-quality/?utm_source=rss.punchng.com&utm_medium=web",
"https://www.jumia.com.ng/"
],
"static_urls": [
"https://www.jumia.com.ng/",

View File

@@ -8,28 +8,28 @@
},
"trust_module": {
"white_urls": [
"https://nos.nl/l/2612356",
"https://nos.nl/l/2612359",
"https://www.belastingdienst.nl/",
"https://nos.nl/l/2612325",
"https://www.buienradar.nl/",
"https://nos.nl/l/2612330",
"https://www.rijksoverheid.nl/",
"https://nos.nl/l/2612347",
"https://nos.nl/l/2612317",
"https://nos.nl/l/2612357",
"https://nos.nl/l/2613239",
"https://www.ing.nl/",
"https://nos.nl/l/2612346",
"https://nos.nl/l/2612324",
"https://www.ns.nl/",
"https://nos.nl/l/2612335",
"https://nos.nl/l/2612358",
"https://nos.nl/l/2612343",
"https://nos.nl/l/2612332",
"https://nos.nl/l/2612354",
"https://nos.nl/l/2612338",
"https://nos.nl/l/2613252",
"https://nos.nl/l/2613279",
"https://www.bol.com/",
"https://www.marktplaats.nl/"
"https://nos.nl/l/2613278",
"https://nos.nl/l/2613237",
"https://nos.nl/l/2613274",
"https://nos.nl/l/2613263",
"https://nos.nl/l/2613276",
"https://www.rijksoverheid.nl/",
"https://www.marktplaats.nl/",
"https://www.buienradar.nl/",
"https://nos.nl/l/2613270",
"https://nos.nl/l/2613232",
"https://nos.nl/l/2613261",
"https://nos.nl/l/2613243",
"https://nos.nl/l/2613233",
"https://www.ns.nl/",
"https://nos.nl/l/2613272",
"https://nos.nl/l/2613275"
],
"static_urls": [
"https://www.rijksoverheid.nl/",

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.channelnewsasia.com/business/it-group-sopra-steria-posts-32-organic-rise-in-first-quarter-revenue-6088326",
"https://www.iras.gov.sg/",
"https://www.channelnewsasia.com/sustainability/tropical-forest-loss-eases-in-2025-record-high-report-shows-6088141",
"https://www.channelnewsasia.com/singapore/baggage-handling-luggage-toss-changi-airport-sats-apologises-video-6088016",
"https://www.channelnewsasia.com/singapore/paynow-nickname-feature-removed-banks-abs-jun-6-6088091",
"https://www.channelnewsasia.com/business/white-house-drafts-guidance-bypass-anthropics-risk-flag-new-ai-models-axios-reports-6088041",
"https://www.channelnewsasia.com/singapore/police-close-sph-media-inflated-circulation-numbers-probe-investigation-no-further-action-6088211",
"https://www.channelnewsasia.com/east-asia/new-zealand-officials-reject-statue-remembering-japans-sex-slaves-6088281",
"https://www.channelnewsasia.com/world/oil-prices-rise-us-extend-iran-ports-blockade-6087926",
"https://www.dbs.com.sg/",
"https://www.channelnewsasia.com/sport/iranian-fa-chief-says-fifa-guarantees-over-irgc-respect-essential-world-cup-trip-6102951",
"https://www.cpf.gov.sg/",
"https://www.nus.edu.sg/",
"https://www.channelnewsasia.com/east-asia/robots-baggage-handling-japan-tokyo-haneda-airport-6087891",
"https://www.channelnewsasia.com/business/south-korea-exports-seen-rising-sharply-again-in-april-chip-boom-reuters-poll-6088296",
"https://www.channelnewsasia.com/entertainment/charlene-choi-wedding-elvis-lam-6087961",
"https://www.channelnewsasia.com/entertainment/hong-kong-louis-koo-jessica-hsuan-first-duet-kiss-in-music-video-6088186",
"https://www.gov.sg/",
"https://www.channelnewsasia.com/east-asia/us-allies-release-joint-statement-supporting-panamas-sovereignty-6087651",
"https://www.channelnewsasia.com/sport/crunch-time-capitals-after-latest-loss-dampens-playoffs-hopes-6103226",
"https://www.singpass.gov.sg/",
"https://www.channelnewsasia.com/entertainment/singaporeans-amazon-prime-video-beast-games-6087921",
"https://www.fairprice.com.sg/",
"https://www.channelnewsasia.com/entertainment/rb-choudary-death-car-crash-6102861",
"https://www.channelnewsasia.com/world/australia-says-13-citizens-linked-alleged-members-returning-syria-6103061",
"https://www.channelnewsasia.com/entertainment/d23-asia-fan-event-singapore-2027-6102856",
"https://www.channelnewsasia.com/asia/aung-san-suu-kyi-asean-access-6103056",
"https://www.channelnewsasia.com/singapore/singapore-airlines-sia-a350-900-airbus-first-business-class-seats-delayed-6102836",
"https://www.channelnewsasia.com/singapore/malaysian-bank-harvesting-handler-4-million-100-bank-accounts-jail-6103041",
"https://www.shopee.sg/",
"https://www.channelnewsasia.com/brand-studio/tackling-breast-cancer-gap-in-southeast-asia-6078596"
"https://www.fairprice.com.sg/",
"https://www.nus.edu.sg/",
"https://www.channelnewsasia.com/sport/australias-smith-confident-liv-will-go-after-saudi-pull-out-6102746",
"https://www.channelnewsasia.com/sport/casemiro-backs-carrick-permanent-man-united-managers-job-6102886",
"https://www.channelnewsasia.com/singapore/ai-in-schools-age-appropriate-focus-learning-not-shortcuts-desmond-lee-6103101",
"https://www.channelnewsasia.com/singapore/maid-jail-married-man-bigamy-batam-6102821",
"https://www.iras.gov.sg/",
"https://www.channelnewsasia.com/asia/cambodia-prime-minister-cousin-hun-owns-huione-scam-6103106",
"https://www.channelnewsasia.com/business/infineon-lifts-2026-outlook-ai-demand-boosts-growth-prospects-6103256",
"https://www.dbs.com.sg/",
"https://www.channelnewsasia.com/entertainment/bts-in-mexico-arirang-2026-6102721"
],
"static_urls": [
"https://www.gov.sg/",

View File

@@ -8,30 +8,30 @@
},
"trust_module": {
"white_urls": [
"https://news.google.com/rss/articles/CBMiZ0FVX3lxTFBJQ1pKeHNvaGVpcTlTVnRnejJfZE81YW5EUnltV1Y2TktiQ1Nta3dHMmVkQkNaVnV4b2ZRVFhIV3c5U1R4RWNENXBzbzZxbjhKdVowWHV5QWNjdFRndk9zaGhncFVsRTQ?oc=5",
"https://news.google.com/rss/articles/CBMiU0FVX3lxTE1LSzVpMTZjLTJrMzVBNDd5UHlGLU0wMU1RYW56SU13cXdtc0RELUNUM2pHb3FScWN4VGhlZ3NmeDI1Szl4Y3RYalU3Y1l5WUJwRFk40gFYQVVfeXFMT1BzM2ZDeHltMnNvUzFvdk5INzJwRTI1X2pReVhSa2w2dHVDZUhuVm13Q2FKOGFjQllpT1Y2dFF0VEJJSzl2eXlBV1E5WVBpUVFCa3MzYk51Rg?oc=5",
"https://news.google.com/rss/articles/CBMiXkFVX3lxTE03elBISEhWSzBQcFNhcUZCMlItUVg5T0JOU0hhZlNTUkZBOUo3SjdWOWEwUnlobngzc0VYMXp6UnJRdC0zazZjOVQwMHE0ck9mazFsTW9pQ0RsaFA4OUHSAWhBVV95cUxPdnlKUEEydWliQ3pXbDVQcUtMNTU2dHlXYUcyaWRkTVVjbnYybVV5Q1BCTzRDRjgwektQUVhZU0lFWEw0U1Z5RENsTUljRHVnanFLbUtNM0VaeEs2U1dYdTROR3pPWjlPMw?oc=5",
"https://news.google.com/rss/articles/CBMiVkFVX3lxTE12cTFwWVBCbmRQUFJwNFFnaTkzOEV0dDRDVXlYclQ0TUJFRnF6N0gzYkNacEFDTHVRTUM5U0NJYmk3d3JlZlQ4dGs0czVCWFc5WXkyajJn?oc=5",
"https://news.google.com/rss/articles/CBMiX0FVX3lxTE00RHhRdGxaWEdtYzBNWHA1XzN6TUthYUNOSTZhY1R5Q2dnZ3l2V3ZaQWpGU0VkbGlvTEh3TkVyMWtUMV9HbkJ1dmE1N3pUYU9GRW5JR01CQXlTMjQxTlJr?oc=5",
"https://news.google.com/rss/articles/CBMiUEFVX3lxTE5kVWhLRWNRc1FmNnRWV1ZDTE1vYmpTTVpBUm9TSmxESkJNc2dwSXJITjVjb25MSG9VanlTNXFvTEF6TVdZNWZmVmZZcXNSQVJo0gFWQVVfeXFMTXBYcmtzRDZWZjNlSkx1Tl8xWUhPUmR5Ul83Y2lhZ0RBZTFyNUdTdE1rV3c4R1ZMNWRXTFBsVnpQa0xYVGN3QWlSanpkWWZOR2gyZUdyU1E?oc=5",
"https://news.google.com/rss/articles/CBMiUEFVX3lxTE9lV3pNRVdjZTZwanFaTzFkTkYxWGNiVWw3eFk5MllYWFZKWmIySWlqMEN3VzZFUEJCU1A2Ql9vaE1udHkyR1ZkVHFaN19YdzNM0gFWQVVfeXFMTnlUZll0TWdQUEpBa1k4X1hlb3FSd2hmdmN5V0FBSGctb2lDY3NCb0ktanlKQkZ4RmZvR20zbmFwTlhwQXluc1ktazJDT2thTmh4a0pOdWc?oc=5",
"https://news.google.com/rss/articles/CBMiiANBVV95cUxOOWRvdXRJam5UWE5XODhZeXFsdTFrQk0wRE4zLWYxVXg1VWlXeTZxOXB6aE9BdUExVzJPR3BsZ1IzcFdlYi10WmMteUNUZGJhNkpydVBzQkZ6MFUyaVIzaEhpZzVWWWN1VWpfUnAxbWY4WnRtOVFxcE40Q1BRVFZMYVNaUkR6SnZSa1NfS1JjWlRnbE9XcVN2MzZERWJjaHE0RVFYMDRGNWhqQUJJME5Sc2ZucHRVVng5T21QTnNadlhYb1JuOXFUVDNiYTY1WTZLUWFBeVdEbFZFVnI5UU04ZXpMVnBYN1ZsSTROOFJRektobFJVdVhvTXhjbHVQLXc4aF8wRUw2blFkOWVPZ3BKSlNwcHBOM0VFZlZwZVZVT0tWeUVrRkh4ZTBLQ2V1RVhlandmcXY3SGIxVVBCTjZJUE9tY0toMG1mSXV2QjFCcm53U0NIeUhTUFMtZUloai1VZUZUanBkOWxfb3dfVDdHZW0wb05GTHlUX1JDVm5YalU3b085VklHRw?oc=5",
"https://news.google.com/rss/articles/CBMiXkFVX3lxTE9ENzFFTS1hQjY2Q2N0Y21TLVVQN3pfaWlpU29KOUxOS0hJekR4ZmVNTlBuVWxNWUhGRGs5aW1QcE5ZNGpBNEJVMF9ES3JqRjhkaU1keGpZb1pNeHBZSlHSAWhBVV95cUxOcndtdzNmR2J5RHBmMmVRbDFROU96MHhNeHN2MzdMNEJsSVZNX3Jpa0VkaDIzaG1wWjM4a0JyNlAybXpkUG9FZGp2dGxfdDJrUC1RbFB6NzhXMFc3aDlCczR3Vno3UzFMNA?oc=5",
"https://news.google.com/rss/articles/CBMiU0FVX3lxTE45Y0hITVNnX0laYl9xdmdvcUZWTVNoZXBzVzZYNWtrMmlxaHpHOHlCSEpKY1o2OXFZVE0zWElBVWpnRnVSWnFxeGsybmQ5NmR5NzFz?oc=5",
"https://www.pchome.com.tw/",
"https://news.google.com/rss/articles/CBMiZEFVX3lxTFBoTzZJOVh3T2VNa3JuNWNWZGk4YzdTQ19UUm5qREVIYklTYVQzQnV0OHB3b2xpWmVpRTRiZXdIZG9qckM0bTZ2aGhMcGZGVVdUcWQ5LWxvSTVDc290bU5vZk14OUXSAWpBVV95cUxNTk9FNDlsb0RUSkVzTkszRnhWbjVGNG92ajdLRm9BQlF1a3VFY3FSWG4zQ0dUSVJCZzcyS2lyYS1lbWdTNzZwUDNiZHdHTzdIZEpCWGwzRTFRTkNKRi1neVNaSnJ0UTV3VThB?oc=5",
"https://www.ntu.edu.tw/",
"https://www.gov.tw/",
"https://www.momoshop.com.tw/",
"https://www.thsrc.com.tw/",
"https://news.google.com/rss/articles/CBMi2AJBVV95cUxObjlHcnQwZ3JzWnpLVEEtVjliSTBrTjljZU1oZkNET2Zoc0Q3cFlZN1BxMGVpQUwwSWgtSFF5eDRDWHVuRHVmVjMtUWloZlpiVm1nMjJnbjJpUU55ZU04dC1wZFlmeC04eXVWaHpJU3RtdTRjVkhhaDFPMldDZjl2NDlUR1VLX2dudXpOdTNKVHpkSmpZcGNXdVg0cHFrUlc3b05jUWZVR2h1QWVQOHhrb3FpTFVLNndVU1ZuRDhZTlBCeUxPcWktM3EtQ25vSWt2S1BublZsT05WNTFTS0lrUzdvZUhGREprcW4zXzdoRDlHTzg1cnFVelZ2ZWtOaFZuSEI4dlM2a21ocjhJU3Zwd3FKdTlhZVc3dTh5LUdqNDE1NzhPSjM1SFp1dEZQSzBYRnFuOEZqekJ3QWJCN3JTTENVY25IR1RkbjVTUkw1NjkxNkNfZjkwdg?oc=5",
"https://news.google.com/rss/articles/CBMiTkFVX3lxTFBKNXFmNWZJbFRBMFpDSEl4b0ZGLWE1bmZ0ZG5qZ0FaZzlDeDY1QTZZRGV0ejd3cUtiUEUxUW1TTTk0eTFRVWJtX2dwQlRuZ9IBakFVX3lxTE1vd1NtY0FRSy16ZVVxdkllb0VzcE9UWVNFQ0VXSnRFcmFfUlk1SmlZUWlLblhwRmdpc3BncVRBTHVoSXRTOWJXZEZYcVVLZWZhMDBMV0dNQjR0TUlVRHpfXzVCb25EblI3aFE?oc=5",
"https://news.google.com/rss/articles/CBMiX0FVX3lxTE9HQnlhb0h4OEhTMmpxV1VtMXcyMmk5ZVVWZXZwYXh0dGRKWUR6dXMyU3RCcmJEcVFOUzNwMnlIa25jaUJ4Slp1SjQ1UXB1Y3FHWVR6dlRYeWdxUW9zMjJJ0gFkQVVfeXFMTVROck1hbVFzSjIwWndLcXBuYmZ5UXZ6M09UT2IxcUhHdUdUMWhWbWJpcTFjREZXd1dxcGRuTEJ1QkxES0pNYzJXZ01vQWNnSzB5RXVWZnpPS3lnLTJUS0sydG9iaw?oc=5",
"https://news.google.com/rss/articles/CBMiS0FVX3lxTE9uWm1hTDZTTm9tYkg4WjFudTlxVURTOEFMQ2FxMXZUT2R3ZmFWZVpmTGpyRVRYNndYbnZSMUs1VzQyTUhmQVlYd3BIdw?oc=5",
"https://news.google.com/rss/articles/CBMiZkFVX3lxTE54UjUydzRTaVVxOUNBSGh6TTA0elc2VmdpU2lWSDdlWDdKRVpkYlFXeXNXR1JKd29fdzdBWEwxRVRGNXJSS0NBSXFZazhqcWVadUJCRXFWZ1VNYkNVOEpucmNCd0NSUdIBa0FVX3lxTFBDaUdKVktqRzdwVk9hbjByejB6WWFYaklfMVhsV1ZhWkpDWVF6LWNlRWt0UGNZY3M2ZzVHQXpGYnNFeVMtT3BsU1ZqeDQ5MTlOdjlLS3J3UXEyN0lKR0Z2aF9FcVp4WF83NE5J?oc=5",
"https://www.cathaybk.com.tw/",
"https://news.google.com/rss/articles/CBMirwJBVV95cUxPcDN5SFo1U240N1h5RFZwMUYtMXNjLUxrRGJpUFdBcU5LeldQaVQ5b3kyamhLY2lXbTdmTl8wdEJEVjctazZtMnhvMFpaQzZMT0Q0cE5wLW1BaUhBTEhnQ19yLXg2NjhBTzY3V3pCT2VsUGlzQjRKMlRuODJYOXdhYlBrN2RTWVhWLVBUVktmaGkxS0NzMUtfdS11cmkyclVfSjFRWGVqMFhXeGZfWjRIZ2lVNXdjcm9hYW1aRDkxblp4aFFIMk9yVU43X05vWlMyTjl6bjNJejNvTHRaTVdmZ1lrUi1wS3VoLTQ1VERCZnhWTFp4d3IwV0gxX050MS1iUFJWZ2d3VlRjcVhsMHIwM1pXTURoQ2dRTlJ1Ry01WlpLOWFqY0lCdFlMNXlkUHM?oc=5",
"https://www.dcard.tw/",
"https://news.google.com/rss/articles/CBMi6gNBVV95cUxPMThyWDl6MWlueF8yUnFYWkF0d0xPYlMyNC1rakFHUE9yUFhOcnc1YUtXUXFxdlNYRU1odzEwc0tQZmFtUEhxbVhHZWRKMHBBXy04WFk5OFJXZUw5dFpVU2tiVWZNeVc3QnpHMWlJaTFKQkNqOWZMV3V0eTVGRHZKV0ZLZl9DekE3cjdvTU1vQVdPN3RGdlJBS0Z4c3Yyb3EyU3dXSVRhWTd0cmFmeEgyUjViOTVrSEhSX29DcHhER1FFbTV0OWM1ZDczR1B5Slp1RzlLS2xqZ3EzQ3E5cUZRemxOTWJkRFR6S1U5STBRbHZNSlU4NHZicDFIbWc2Q2V2RlhzNjkxN19WWFJLcklISDRDcjd2TU94aWV1Z3JLZzcwT2h1THlGNzgwdnEyQkt0X29KMURSZ0VzaUNlSEJvZURtSGRQSmJvei1XUmRSVlRPa3R2RFAzWmZBYXNTdndIYktPbDh4ZVdwUHZfam9scFBKTF94ZkJPaHBSdENkYXQ2RTEteGtvYjN3blZOamE3VDhRZUlqRkVvY0wzV24yems1Nk1DazhFQnlUOEx1UVFCeGViTTM0M3RqU3NONDRQY05MSUxvaE9VSUFyekdBek9rTS0tUDN0WDFJQmxsOTBqWlZVZ2tXUVhB?oc=5",
"https://news.google.com/rss/articles/CBMiW0FVX3lxTE9UVEhMMGpES0xXYTdMdFJ1RV82UTRwemVQV0lSUG5oN1hVZTVZZEZWbm9hY3JscjRRS29lT1NrUzBPYzFwdkIzQ0Uzd2dYQmd4WE4wZ0VOTUdETEk?oc=5",
"https://www.post.gov.tw/",
"https://www.momoshop.com.tw/",
"https://www.gov.tw/",
"https://news.google.com/rss/articles/CBMi1gJBVV95cUxONEF4cnpSaUtfLUFzTm13SGZicVVoOHhGUGZ2dnNaVFVWWjMwWFoxelpMclhJa2JCanN6Q0JhVTQyR3JYZzY1WVpTR1B6el9OTzlpNllOYnNSN0RKNFltRjJsTVZvLTdfcDItU3J0ZE01M0w0c2ZZRWNETzdhOTZhcjdid3FLMUk2d0pRN3pXeGtPc2NGTkQwenBlcHpMR2I4cC1jVHhxSnppSTljSkI4Vm1kVEFDZV82eWFyZklCVTJ2TS1kM2VHYlpUMWNmbDNTRTRmZEt3dTFSNmxHU0E5dGtHZS1DYjFPZFZILW9mSXY2d2J1dHJWdEV1R282TWNRNzFsSmdjTk1MY1A5aUtiWi1wTkEzZUNPYlA0RVg0b19NRnc0b1lKUGJuSVFybDRRQlhPTGVYWnlzVmhKV2pXV2RVakVzR0NCdFdFbG1zWFNtY2Y2ZGc?oc=5",
"https://www.thsrc.com.tw/",
"https://news.google.com/rss/articles/CBMiW0FVX3lxTE5XVVpkMnVBOTd2bUEyUDZIOXQ0NXpCT3dTM1h1dVhKY3dvcDFNTjc0TmJxeWhsaTZxMFBhY2pfVVVGeDJvbWFtbTltcm5UYXNyZEI1RXctc3NYdzA?oc=5",
"https://news.google.com/rss/articles/CBMi3gJBVV95cUxNS0dTcWdoVkJUdGQySXZFSzI2OUFBak16ZFFfYXhoQVhvcFZKeTF2c1QxOFdheGZ4eXBGbVpidW5TZXJwcDBjSzVtOVNBMUw3UURMMUppQ00za3JfSGI4U3BoSWYwYlRDNnNtOWJneVo0N2YyS3JDdDZ0c1F4Y1NVMlhaajJfTG12eWtHNVN3WGJnSGRNVDE2WlpzbDRWNTV5bFNjUGpVY0ZqU3oyOFkzYVVUcXRJdDhLTjRPdFhDVkE0aVh3YklEaGlnY240RGRiazVmcG9ET3hRUXplSjY2TFJSMFVOOUNjcEVmdkExUFJpcVhIOHphOWZkanNhZWlOaENWMFJ3OFFqLVJDdzkyNUhYZWZyajIwWUNpcmU0dkQxbk1TcGZCTjY3dGVaVDFXZldZX19VTzJzeVVZT09oRVYtQkhSM1h2Zm9NWFdrRzdjN25OZEJnTmhiLTB2Zw?oc=5",
"https://news.google.com/rss/articles/CBMiUEFVX3lxTE93V1hqX1VvUXp4b2J1TXlFeHFYWXdOd3hpaDI4Rms4Tnp5YkhzZ2pWVXVJN29peGM4dWk4QktKZU41R1Vab1V4RUpIeDFaeUFu0gFWQVVfeXFMUGM5bTFPQ2I5Um4yU3dwV2NnWXBSMWtkRTI1dVNPNno1SWtGOHM1Z3oyaVVaRE9yeHZIQTY2NEZOa2V1emdBcWpHWTZQVEJmU3VQWWNqbWc?oc=5",
"https://news.google.com/rss/articles/CBMi3AJBVV95cUxQU1BIU1RZUWEzcUVZQVJWaEtYSVRZeWdibVlEaUZhY1ZVZGtiMGdFZXIyWTM2cUgxazZ2UWcwQ1Bnd2JVbmVJaEk4cXptb1docVZfTVdOclRrWHNtR1FIZ3NSZ1hSTk1GcFV2bEtMbG1sc3ZqTjV6ZkREamk0UVZBNmFtZ3RURlhoOUFESk9ZMEtNZk9sMjQ0NmY2eTNTUy1hdlBoa3lyNW9IaVBmRGZhMUM3dGZoVjExaUlrUGxiZ3Q1SVM5TnhqdnZBcVFfWGFqNnJhX3hScDRhcFRaQTdDYWZCWjlpWEZCMmtvWmt4a19MaUxaR0kxMllKRERReTMtYzNadXpLZEl4dTdvMmE5bnYwRmZDbF9WUXg5ZVVTSXNtSUpvS1d6VEVjdHBwSFVNSlJrRVp6THlTeW5mX1hNQUpTYnd0ZGYyVm82MzVaUHVXdVEySm02em9ESjE?oc=5",
"https://news.google.com/rss/articles/CBMisgJBVV95cUxPSlRhdXVBOTI2X2YycE9IYUN2eGtmS2RzSkFRU2pZV01SVlg4c25Jejc3YzY1R1h1UnhFenUwTm80NW1MSTVjUGU1ZkFpWTd6aEEweF92bFozeW9kLWFhekFxVTAxamlZenl5anowdHRLTjlHcC1fV0NrUmN3eXRmZ21Zb056SVF6MzlNSEJyQ1JWekNoNVhLaGIwXzZ1V1kyY0NOdEJfWGw4ZEJzSVc2SmU5NDNtSXgxWWExRkJzZXVka0gxT2FadkRCMVpuNWtUQTFHSmNmYWdOSlh5T0N5WEFDR0lTYWtDdzJsd2NxSTR6dmVfNkdRUFFrN0FldXVzeGZtbGdIU3g3YWZCN0JkNzdmRy1LelVvblY1ZC14dWhuYmdoNk9RNndQSlU0UURucFE?oc=5",
"https://news.google.com/rss/articles/CBMiW0FVX3lxTE1SWTVMS2lwUzRBalZQTXQyVkg2dC1mbWZ5NV9GQnJvY0txOWR3cEJCdVZBZGJTeHRQSHZxYVd4bFJaN1JTTzhMTEdqZVpIdGpUYUx6bzBpaF9OQVnSAWBBVV95cUxNR05Md05fdkFTMGpXdDlRZEZWNTJiQ1BlM2FtYm1lQUVCZDdwSW5lN0gyNjA2TzRNOThzMTQ3WUtWZnhvWDhtbFI3MkpYWFJ1Z2dJV3dSbnphUExUWDFsRWo?oc=5",
"https://www.ntu.edu.tw/",
"https://news.google.com/rss/articles/CBMiTkFVX3lxTE5uRTJ0eFQyVXo3b3dVZE9iQjJZazdTV0UwYVktd0xoQkY2MmNEVDE0cWpJcWVMNTlNeEg2dUZFaDFLWUE0OFNGTXBrVk9wZw?oc=5",
"https://tw.yahoo.com/",
"https://news.google.com/rss/articles/CBMigAJBVV95cUxQRWo0XzR4MkRyemV4NFhjcGJIRm5EamRPeklqeXR0NFJBQ09CWHVKLWtzRFJ2X3l0VFFwTjlxTFloSHVBRTMxS0ViM29fbHl2dXljaHRfdlBwVHlBQ29EcEZ6TkthOG9GclJjblY0YnJmWTh6TzZSUnNrclJPbXpuNy0yczAzbjJaeHhJMVM3ZEdReWN3TURzb2VtSklDZDg2QUhhSVE0VnZGd1RuclRWOW9LZUR0aXpNdjJ1clBGQnhlZ1psOU44eVprVXB6bTBFYjdncHEwQXpfbHd6dFlVZmNVYlp0S0hSbFN2aGFYQ0FCMFdVYTBRWFlibzlNUmJu?oc=5",
"https://www.post.gov.tw/"
"https://news.google.com/rss/articles/CBMiuAFBVV95cUxOY0ZSWHJ6aTBDLXVYYlltSXktdktWaHAxM2hJUW1OSDJtWF9xdDBjVVJaalZ2NS1uWDN1V3RmNjJMay1yNHFmUldrTU9fYlptbVlmbmlaOW5HY09sZHhwOFFrel9lc0l2MFlFeE9aSlVtVnJuaWtrcUhQM25Xdmc0ckJSZVYzQ2ZDdGlkVnNzTnAwZVlqeXEwUjJDT0xWNXUtUXVQZFRKN2FpWjlZeEN4bTNiSk92c3lF?oc=5",
"https://news.google.com/rss/articles/CBMi4AJBVV95cUxNZHlMYzRTRm80UmM4QlJLaGVLRi1IbkRwdkgyX1NVLThfX09GV0xTbEV2QzkySXFPUHF0LXpXU3lWazY1QWtYZ3ZucnctZDdwcUNCQXV3UmFYWHJ3aldGajQ0YUdvaGh3Y1hTdmN3SzAzQTN2NFp4dXlaVmVzc0hzQmhiekxpWHAxb2tBNi02bFRrZDcyQjFGWk9hYVlLaHF3a190QlVIMHc4bWMtcm5NSW5DTDI5RkExVDFiMGl5cTUybWJBN2trREt4Ty1WUFl4T1JuSy1oaDBIU0tjQ3oyZ0pFNWFPckRkdDdOTVAzb0dzbUhhRENnY08tZ2RiWGZoUkhCdElHWDlkaExjVV8xeFJ5SmVpQVBaZFMwZzQzZ1lYWHNveHJmODYtbFczcFh4Z2VONlVDRlcxOHhoc3hGZG8yd2NrdTc5SGRaWWc4X0hGTXNPa2dWT21HUUxHNDEx?oc=5"
],
"static_urls": [
"https://www.gov.tw/",

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.bbc.com/news/articles/c62r8lzgnk2o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.co.uk/news/10628994?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c4g0zwxl3k0o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cj4pxyklw1jo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/football/articles/c202rgdlqxqo?at_medium=RSS&at_campaign=rss",
"https://www.postoffice.co.uk/",
"https://www.bbc.com/sport/golf/articles/c78q5v8y939o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c8jvl3x19v9o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/ce8p020r1y8o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c759z9w7z3yo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/clyp5rr0lm6o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cz72eye5zzeo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c893xj41zwdo?at_medium=RSS&at_campaign=rss",
"https://www.nhs.uk/",
"https://www.ox.ac.uk/",
"https://www.bbc.com/news/articles/cp3p5l0nyevo?at_medium=RSS&at_campaign=rss",
"https://www.barclays.co.uk/",
"https://www.bbc.com/news/articles/cze25j9p1k7o?at_medium=RSS&at_campaign=rss",
"https://www.gov.uk/",
"https://www.bbc.com/news/articles/c202652vvnjo?at_medium=RSS&at_campaign=rss",
"https://www.ebay.co.uk/",
"https://www.nationalrail.co.uk/",
"https://www.bbc.com/news/articles/c87qglyjr44o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.co.uk/sounds/play/p0ngrsbh?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/ce8j8xxzzjko?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c78kl05en7po?at_medium=RSS&at_campaign=rss",
"https://www.postoffice.co.uk/",
"https://www.bbc.com/news/articles/cdjpdzvzy41o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/ce8pypvjx1ko?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cy82p2x86qzo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/clype7ededzo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/rugby-union/articles/ckgpn3pdzr7o?at_medium=RSS&at_campaign=rss",
"https://www.ox.ac.uk/",
"https://www.bbc.com/sport/football/articles/cjep34l5qd7o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cy82x9wve2xo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.co.uk/sounds/play/p0njf7kr?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/tennis/articles/cx21klez7ppo?at_medium=RSS&at_campaign=rss",
"https://www.gov.uk/",
"https://www.barclays.co.uk/",
"https://www.amazon.co.uk/",
"https://www.bbc.com/news/articles/c5yx8lj4652o?at_medium=RSS&at_campaign=rss"
"https://www.nationalrail.co.uk/",
"https://www.bbc.com/news/articles/c707k90lplno?at_medium=RSS&at_campaign=rss"
],
"static_urls": [
"https://www.gov.uk/",

View File

@@ -8,29 +8,29 @@
},
"trust_module": {
"white_urls": [
"https://www.bbc.com/news/articles/ce8j8xxzzjko?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/football/articles/c202rgdlqxqo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cj4pxyklw1jo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.co.uk/sounds/play/p0ngrsbh?at_medium=RSS&at_campaign=rss",
"https://www.nhs.uk/",
"https://www.bbc.com/news/articles/ce8p020r1y8o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c4g0zwxl3k0o?at_medium=RSS&at_campaign=rss",
"https://www.nationalrail.co.uk/",
"https://www.bbc.com/news/articles/c5yx8lj4652o?at_medium=RSS&at_campaign=rss",
"https://www.amazon.co.uk/",
"https://www.bbc.com/news/articles/cdjpdzvzy41o?at_medium=RSS&at_campaign=rss",
"https://www.postoffice.co.uk/",
"https://www.bbc.com/news/articles/c78kl05en7po?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c87qglyjr44o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.co.uk/news/10628994?at_medium=RSS&at_campaign=rss",
"https://www.gov.uk/",
"https://www.barclays.co.uk/",
"https://www.bbc.com/news/articles/c8jvl3x19v9o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c759z9w7z3yo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/clype7ededzo?at_medium=RSS&at_campaign=rss",
"https://www.nationalrail.co.uk/",
"https://www.bbc.com/news/articles/clyp5rr0lm6o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/rugby-union/articles/ckgpn3pdzr7o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cy82p2x86qzo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/tennis/articles/cx21klez7ppo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c893xj41zwdo?at_medium=RSS&at_campaign=rss",
"https://www.ebay.co.uk/",
"https://www.bbc.com/news/articles/c62r8lzgnk2o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/golf/articles/c78q5v8y939o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cze25j9p1k7o?at_medium=RSS&at_campaign=rss",
"https://www.amazon.co.uk/",
"https://www.barclays.co.uk/",
"https://www.bbc.com/news/articles/c707k90lplno?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/ce8pypvjx1ko?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/sport/football/articles/cjep34l5qd7o?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/cy82x9wve2xo?at_medium=RSS&at_campaign=rss",
"https://www.bbc.com/news/articles/c202652vvnjo?at_medium=RSS&at_campaign=rss",
"https://www.gov.uk/",
"https://www.nhs.uk/",
"https://www.bbc.com/news/articles/cz72eye5zzeo?at_medium=RSS&at_campaign=rss",
"https://www.ox.ac.uk/",
"https://www.bbc.com/news/articles/cp3p5l0nyevo?at_medium=RSS&at_campaign=rss"
"https://www.bbc.co.uk/sounds/play/p0njf7kr?at_medium=RSS&at_campaign=rss"
],
"static_urls": [
"https://www.gov.uk/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.usa.gov/",
"https://www.amazon.com/",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.cdc.gov/",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.bankofamerica.com/",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.usps.com/",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.irs.gov/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.chase.com/",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.harvard.edu/",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.walmart.com/"
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cdc.gov/",
"https://www.amazon.com/",
"https://www.chase.com/",
"https://www.usa.gov/",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.bankofamerica.com/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.target.com/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.usps.com/",
"https://www.walmart.com/",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.irs.gov/",
"https://www.usps.com/",
"https://www.cdc.gov/",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.usa.gov/",
"https://www.walmart.com/",
"https://www.bankofamerica.com/",
"https://www.chase.com/",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.amazon.com/",
"https://www.target.com/",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.bankofamerica.com/",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.amazon.com/",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cdc.gov/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.chase.com/",
"https://www.walmart.com/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.harvard.edu/",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer"
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.irs.gov/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.usps.com/"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - Florida (Miami)",
"google_module": {
"base_lat": 25.7617,
"base_lon": -80.1918,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.amazon.com/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.irs.gov/",
"https://www.zillow.com/",
"https://www.indeed.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.walmart.com/",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.usa.gov/",
"https://www.homedepot.com/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.weather.gov/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.chase.com/"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - Georgia (Atlanta)",
"google_module": {
"base_lat": 33.749,
"base_lon": -84.388,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.weather.gov/",
"https://www.amazon.com/",
"https://www.homedepot.com/",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.usa.gov/",
"https://www.target.com/",
"https://www.walmart.com/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.zillow.com/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.irs.gov/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - Iowa (Council Bluffs)",
"google_module": {
"base_lat": 41.2619,
"base_lon": -95.8608,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.indeed.com/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.usa.gov/",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.weather.gov/",
"https://www.irs.gov/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.homedepot.com/",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.bankofamerica.com/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.harvard.edu/",
"https://www.target.com/",
"https://www.chase.com/",
"https://www.irs.gov/",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.amazon.com/",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.cdc.gov/",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.usa.gov/",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.usps.com/",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn"
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.harvard.edu/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.usa.gov/",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cdc.gov/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.target.com/",
"https://www.irs.gov/",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.bankofamerica.com/"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.usa.gov/",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.irs.gov/",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.harvard.edu/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.irs.gov/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.bankofamerica.com/",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.usps.com/",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cdc.gov/",
"https://www.target.com/",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.chase.com/",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.walmart.com/",
"https://www.amazon.com/",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html"
"https://www.chase.com/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.usa.gov/"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - New Jersey (Newark)",
"google_module": {
"base_lat": 40.7357,
"base_lon": -74.1724,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.usa.gov/",
"https://www.weather.gov/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.chase.com/",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.indeed.com/",
"https://www.irs.gov/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.zillow.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.homedepot.com/"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.harvard.edu/",
"https://www.chase.com/",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.walmart.com/",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.bankofamerica.com/",
"https://www.usps.com/",
"https://www.target.com/",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.cdc.gov/",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.usa.gov/",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cdc.gov/",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.irs.gov/",
"https://www.amazon.com/"
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.bankofamerica.com/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.harvard.edu/",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.usps.com/",
"https://www.amazon.com/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.target.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - New York",
"google_module": {
"base_lat": 40.7128,
"base_lon": -74.006,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.chase.com/",
"https://www.target.com/",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.walmart.com/",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.amazon.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.usa.gov/",
"https://www.weather.gov/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.indeed.com/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.zillow.com/",
"https://www.irs.gov/",
"https://www.homedepot.com/"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - Ohio (Columbus)",
"google_module": {
"base_lat": 39.9612,
"base_lon": -83.0007,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.walmart.com/",
"https://www.usa.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.target.com/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.homedepot.com/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.amazon.com/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.indeed.com/",
"https://www.irs.gov/",
"https://www.zillow.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.chase.com/",
"https://www.bankofamerica.com/",
"https://www.usps.com/",
"https://www.target.com/",
"https://www.cdc.gov/",
"https://www.amazon.com/",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.irs.gov/",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.irs.gov/",
"https://www.walmart.com/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.usa.gov/",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.harvard.edu/",
"https://www.usa.gov/"
"https://www.usps.com/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cdc.gov/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.bankofamerica.com/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.amazon.com/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.target.com/",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.chase.com/",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.dallasnews.com/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.nytimes.com/",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.target.com/",
"https://www.foxnews.com/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.texas.gov/",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.bankofamerica.com/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.foxnews.com/"
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.chase.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.nytimes.com/",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.amazon.com/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.bankofamerica.com/"
],
"static_urls": [
"https://www.texas.gov/",

View File

@@ -8,26 +8,26 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.nasa.gov/",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.houstontx.gov/",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.rice.edu/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.mdanderson.org/",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.houstonchronicle.com/",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.houstontx.gov/"
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.nasa.gov/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html"
],
"static_urls": [
"https://www.houstontx.gov/",

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.usps.com/",
"https://www.usa.gov/",
"https://www.cdc.gov/",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.chase.com/",
"https://www.bankofamerica.com/",
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.amazon.com/",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.harvard.edu/",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.harvard.edu/",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.bankofamerica.com/",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cdc.gov/",
"https://www.amazon.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.walmart.com/"
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -0,0 +1,50 @@
{
"region_name": "United States - Virginia (Ashburn)",
"google_module": {
"base_lat": 39.0438,
"base_lon": -77.4874,
"lang_params": "hl=en-US&gl=US",
"valid_url_suffix": "com"
},
"trust_module": {
"white_urls": [
"https://www.chase.com/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.homedepot.com/",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.irs.gov/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.indeed.com/",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.weather.gov/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.usa.gov/",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.amazon.com/"
],
"static_urls": [
"https://www.usa.gov/",
"https://www.irs.gov/",
"https://www.weather.gov/",
"https://www.chase.com/",
"https://www.indeed.com/",
"https://www.zillow.com/",
"https://www.walmart.com/",
"https://www.target.com/",
"https://www.amazon.com/",
"https://www.homedepot.com/"
]
}
}

View File

@@ -8,31 +8,31 @@
},
"trust_module": {
"white_urls": [
"https://www.npr.org/2026/04/28/nx-s1-5802343/reflecting-pool-resurfacing-blue-trump",
"https://www.amazon.com/",
"https://www.cnn.com/2023/04/18/politics/schumer-senate-feinstein-vote-cardin/index.html",
"https://www.usps.com/",
"https://www.bankofamerica.com/",
"https://www.cnn.com/cnn-underscored/money/how-to-file-taxes?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/style/article/marilyn-minter-artist-elder-sex/index.html",
"https://www.cnn.com/videos/politics/2023/04/18/jake-tapper-dominion-lawsuit-settlement-fox-news-statement-lead-vpx.cnn",
"https://www.cdc.gov/",
"https://www.cnn.com/travel/article/southwest-airlines-flight-delays/index.html",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/cnn-underscored/reviews/best-bidets?iid=CNNUnderscoredHPcontainer",
"https://www.npr.org/2026/04/28/nx-s1-5802968/education-secretary-linda-mcmahon-senate-hearing",
"https://www.cnn.com/2023/04/18/entertainment/jake-gyllenhaal-jamie-lee-curtis-pandemic-living/index.html",
"https://www.target.com/",
"https://www.cnn.com/videos/us/2023/04/18/pizza-guy-trips-perp-moos-cprog-orig-bdk.cnn",
"https://www.irs.gov/",
"https://www.npr.org/2026/04/28/nx-s1-5802997/fcc-abc-license-renewal-melania-trump-jimmy-kimmel",
"https://www.cnn.com/2023/04/18/media/fox-dominion-settlement/index.html",
"https://www.walmart.com/",
"https://www.usa.gov/",
"https://www.cnn.com/2023/04/17/entertainment/jamie-foxx-remains-hospitalized/index.html",
"https://www.harvard.edu/",
"https://www.cnn.com/2023/04/18/tech/lina-khan-ai-warning/index.html",
"https://www.cnn.com/cnn-underscored/deals/wayfair-way-day-2023-04-17?iid=CNNUnderscoredHPcontainer",
"https://www.chase.com/"
"https://www.cdc.gov/",
"https://www.cnn.com/europe/live-news/russia-ukraine-war-news-04-18-23/index.html",
"https://www.target.com/",
"https://www.cnn.com/cnn-underscored/fashion/mens-spring-fashion-style-guide?iid=CNNUnderscoredHPcontainer",
"https://www.amazon.com/",
"https://www.cnn.com/videos/travel/2023/04/18/century-old-shipwrecks-lake-superior-discovery-contd-orig-zt.cnn",
"https://www.cnn.com/cnn-underscored/travel/amazon-travel-products?iid=CNNUnderscoredHPcontainer",
"https://www.cnn.com/2023/04/18/politics/fulton-county-trump-fake-electors/index.html",
"https://www.cnn.com/2023/04/18/us/kansas-city-ralph-yarl-shooting-tuesday/index.html",
"https://www.cnn.com/audio/podcasts/the-assignment/episodes/42a2f0e2-066a-4675-82ff-afe2016a0bb5",
"https://www.bankofamerica.com/",
"https://www.irs.gov/",
"https://www.cnn.com/2023/04/18/sport/damar-hamlin-cleared-to-train-nfl-spt-intl/index.html",
"https://www.cnn.com/2023/04/18/politics/mccarthy-biden-debt-ceiling/index.html",
"https://www.cnn.com/videos/travel/2023/03/17/pilot-lands-on-dubai-helipad-cprog-orig-aw-ao.cnn",
"https://www.cnn.com/videos/tech/2023/04/18/apple-store-mumbai-india-ceo-tim-cook-vedika-sud-ovn-biz-ldn-vpx.cnn",
"https://www.cnn.com/business/live-news/fox-news-dominion-trial-04-18-23/h_8d51e3ae2714edaa0dace837305d03b8",
"https://www.usa.gov/",
"https://www.usps.com/",
"https://www.chase.com/",
"https://www.walmart.com/",
"https://www.cnn.com/2023/04/17/business/mcdonalds-burgers/index.html",
"https://www.cnn.com/2023/04/18/health/teen-misuse-adhd-meds-wellness/index.html"
],
"static_urls": [
"https://www.usa.gov/",

View File

@@ -8,28 +8,28 @@
},
"trust_module": {
"white_urls": [
"https://vnexpress.net/csgt-tai-xe-khong-co-loi-khi-huc-vang-nguoi-di-xe-may-5068180.html",
"https://vnexpress.net/thu-tuong-yeu-cau-khong-de-thieu-dien-tang-mua-tu-lao-va-trung-quoc-5068211.html",
"https://shopee.vn/",
"https://vnexpress.net/gia-mot-oto-o-my-mua-duoc-4-xe-dien-trung-quoc-5068089.html",
"https://tiki.vn/",
"https://vnexpress.net/san-bay-thanh-son-duoc-de-xuat-phuc-vu-ca-dan-su-va-quoc-phong-5068098.html",
"https://vnexpress.net/psg-nhan-hai-diem-9-truoc-bayern-5068087.html",
"https://vnu.edu.vn/",
"https://vnexpress.net/tuong-dau-xuong-khop-hoa-suy-gian-tinh-mach-5068267.html",
"https://vnexpress.net/phat-hien-su-that-ve-ba-dua-con-qua-anh-vo-gui-nguoi-la-5070373.html",
"https://chinhphu.vn/",
"https://vnexpress.net/tp-hcm-khoi-cong-trung-tam-hanh-chinh-30-000-ty-dong-va-cai-tao-ben-nha-rong-5068191.html",
"https://vnexpress.net/lpbank-thanh-lap-ngan-hang-con-tai-trung-tam-tai-chinh-vifc-5068261.html",
"https://shopee.vn/",
"https://vnexpress.net/iran-tuyen-bo-du-an-tu-do-cua-my-da-that-bai-5070469.html",
"https://dichvucong.gov.vn/",
"https://vnexpress.net/wuling-macaron-xe-dien-ti-hon-gia-tu-269-trieu-dong-5068141.html",
"https://vnexpress.net/do-vui-trac-nghiem-chinh-ta-tieng-viet-tu-nao-viet-dung-chinh-ta-sup-hay-xup-5068126.html",
"https://vnexpress.net/giai-phap-quang-cao-facebook-khau-tru-10-vat-tu-aka-media-5066627.html",
"https://vnexpress.net/the-kho-voi-tong-thong-mexico-trong-cuoc-chien-chong-ma-tuy-cua-my-5067950.html",
"https://vnexpress.net/cuoc-song-binh-yen-cua-nghe-si-duc-khue-5069086.html",
"https://vnexpress.net/sut-lun-tai-thu-do-mexico-nhin-tu-khong-gian-5070546.html",
"https://vnexpress.net/co-hoi-kiem-tien-o-dau-trong-quy-2-5070566.html",
"https://vnexpress.net/sao-dep-nhat-trung-quoc-gay-sot-voi-phim-chu-de-ngoai-tinh-5070451.html",
"https://vnexpress.net/cong-chua-tay-ban-nha-lai-tiem-kich-f-5-5070438.html",
"https://tiki.vn/",
"https://vnexpress.net/khoet-chop-co-tu-cung-ngan-ung-thu-5070403.html",
"https://vnexpress.net/tvs-ronin-moto-an-do-gia-73-trieu-dong-5070422.html",
"https://vnexpress.net/khoanh-khac-may-bay-lao-vao-chung-cu-o-brazil-5070413.html",
"https://vnexpress.net/",
"https://vnexpress.net/chao-em-nguoi-co-the-khien-ngay-binh-thuong-tro-nen-y-nghia-5068245.html",
"https://vnexpress.net/kinh-te-lien-vung-tao-trien-vong-cho-bat-dong-san-phan-thiet-5068189.html",
"https://www.vietcombank.com.vn/",
"https://vnexpress.net/dien-bien-kho-luong-sau-tuan-hai-vong-bang-giai-bong-ro-tre-vnexpress-5068182.html"
"https://vnexpress.net/hang-loat-video-bao-luc-hoc-duong-gay-rung-dong-nhat-ban-5069717.html",
"https://vnexpress.net/hau-ve-phan-luoi-nha-va-nhan-the-do-khien-thai-lan-thua-o-u17-chau-a-5070517.html",
"https://vnexpress.net/thu-do-dau-tien-tren-the-gioi-cam-quang-cao-thit-de-bao-ve-khi-hau-5070425.html",
"https://vnexpress.net/viet-cho-thieu-nhi-so-nhat-la-sa-da-dao-ly-5070345.html",
"https://vnexpress.net/viet-nam-dua-radar-uav-va-khi-tai-hien-dai-toi-trien-lam-quoc-phong-tho-nhi-ky-5070411.html",
"https://www.vietcombank.com.vn/"
],
"static_urls": [
"https://chinhphu.vn/",

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@ REPO_RAW_URL="https://raw.githubusercontent.com/hotyue/IP-Sentinel/main"
TARGET_VERSION=$( (curl -sL -m 5 "${REPO_RAW_URL}/version.txt" || curl -4 -sL -m 5 "${REPO_RAW_URL}/version.txt") 2>/dev/null | grep "^MASTER_VERSION=" | cut -d'=' -f2 | tr -d '[:space:]')
# 🛡️ 兜底防线:如果网络波动拉取失败,启用内置的最新兜底版本
TARGET_VERSION=${TARGET_VERSION:-"4.0.0"}
TARGET_VERSION=${TARGET_VERSION:-"4.0.7"}
MASTER_DIR="/opt/ip_sentinel_master"
DB_FILE="${MASTER_DIR}/sentinel.db"
@@ -380,9 +380,15 @@ if [ "$UPGRADE_MODE" == "false" ]; then
MASTER_COUNT=$(curl -s -m 3 "https://ip-sentinel-count.samanthaestime296.workers.dev/ping/master" || echo "")
if [ -n "$MASTER_COUNT" ] && [[ "$MASTER_COUNT" =~ ^[0-9]+$ ]]; then
echo -e "\033[32m✅ 感谢您成为全球第 ${MASTER_COUNT} 名 IP-Sentinel 指挥官\033[0m"
echo -e "\033[32m✅ 感谢您成为全球第 ${MASTER_COUNT} 名 IP-Sentinel 中枢管理者\033[0m"
else
echo -e "\033[32m✅ 感谢您建立 IP-Sentinel 司令部\033[0m"
echo -e "\033[32m✅ 感谢您部署 IP-Sentinel 控制中枢\033[0m"
fi
echo -e "\n"
fi
# ================== [新增: 安装成功高光时刻 Star 引导] ==================
echo -e "\n========================================================"
echo -e "⭐ \033[33m开源不易如果 IP-Sentinel 极大简化了您的多节点管理,请赐予我们一枚星标!\033[0m"
echo -e "💡 \033[32m您的每一颗 Star 都是我们持续迭代架构、开发 Web 视窗化控制台的动力源泉。\033[0m"
echo -e "👉 \033[36m\033[4m\033]8;;https://github.com/hotyue/IP-Sentinel\033\\[点击此处直达 GitHub 仓库点亮 Star 🌟]\033]8;;\033\\\033[0m"
echo -e "========================================================\n"

View File

@@ -284,20 +284,20 @@ while true; do
# 仅当非官方网关 且 开启了中枢 OTA 权限时,才渲染升级按钮
if [ "$IS_OFFICIAL_GATEWAY" != "true" ] && [ "${ENABLE_MASTER_OTA:-false}" == "true" ]; then
BTN_MASTER_OTA="[{\"text\":\"🆙 升级司令部至 v${REMOTE_VER}\",\"callback_data\":\"master_ota_confirm\"}],"
BTN_MASTER_OTA="[{\"text\":\"🆙 升级控制中枢至 v${REMOTE_VER}\",\"callback_data\":\"master_ota_confirm\"}],"
fi
fi
NODE_COUNT=$(db_exec "SELECT COUNT(*) FROM nodes WHERE chat_id='$CHAT_ID';")
[ -z "$NODE_COUNT" ] && NODE_COUNT=0
# L0 扁平化重构:将司令部升级按钮动态置于最顶层
# L0 扁平化重构:升级按钮置顶,底部追加带有 url 属性的 GitHub 引流按钮
if [ "$IS_OFFICIAL_GATEWAY" != "true" ]; then
BTNS="[${BTN_MASTER_OTA}[{\"text\":\"🌍 进入全球战区雷达 (管理节点)\",\"callback_data\":\"list_nodes\"}], [{\"text\":\"🚀 全军总攻\",\"callback_data\":\"all_run\"}, {\"text\":\"📊 全军简报\",\"callback_data\":\"all_reports\"}], [{\"text\":\"☢️ 全舰队 OTA 热重载\",\"callback_data\":\"all_ota_confirm\"}]]"
BTNS="[${BTN_MASTER_OTA}[{\"text\":\"🌍 进入全球雷达 (管理节点)\",\"callback_data\":\"list_nodes\"}], [{\"text\":\"🚀 唤醒全局巡逻\",\"callback_data\":\"all_run\"}, {\"text\":\"📊 获取全局简报\",\"callback_data\":\"all_reports\"}], [{\"text\":\"🔄 全网节点 OTA 热重载\",\"callback_data\":\"all_ota_confirm\"}], [{\"text\":\"🌟 前往 GitHub 点亮星标\",\"url\":\"https://github.com/hotyue/IP-Sentinel\"}]]"
else
BTNS="[[{\"text\":\"🌍 进入全球战区雷达 (管理节点)\",\"callback_data\":\"list_nodes\"}], [{\"text\":\"🚀 全军总攻\",\"callback_data\":\"all_run\"}, {\"text\":\"📊 全军简报\",\"callback_data\":\"all_reports\"}]]"
BTNS="[[{\"text\":\"🌍 进入全球雷达 (管理节点)\",\"callback_data\":\"list_nodes\"}], [{\"text\":\"🚀 唤醒全局巡逻\",\"callback_data\":\"all_run\"}, {\"text\":\"📊 获取全局简报\",\"callback_data\":\"all_reports\"}], [{\"text\":\"🌟 前往 GitHub 点亮星标\",\"url\":\"https://github.com/hotyue/IP-Sentinel\"}]]"
fi
TEXT_MSG="🛡️ **IP-Sentinel 司令部**\n${VER_INFO}\n\n📊 舰队状态: 共有 \`${NODE_COUNT}\` 台哨兵在线\n欢迎回来长官。请下达战略指令:"
TEXT_MSG="🛡️ **IP-Sentinel 控制中枢**\n${VER_INFO}\n\n📊 节点状态: 共有 \`${NODE_COUNT}\` 台节点在线\n欢迎回来管理者。请下达系统指令:"
send_ui "$CHAT_ID" "$TEXT_MSG" "$BTNS"
;;

View File

@@ -1,2 +1,2 @@
MASTER_VERSION=4.0.7
AGENT_VERSION=4.0.6
MASTER_VERSION=4.0.8
AGENT_VERSION=4.0.8