mirror of
https://github.com/roacn/openwrt-packages.git
synced 2025-01-09 04:18:08 +08:00
🎄 Sync 2024-04-08 09:21
This commit is contained in:
parent
9e5ca70efe
commit
468c2332ad
@ -6,7 +6,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-passwall
|
||||
PKG_VERSION:=4.76-3
|
||||
PKG_VERSION:=4.76-4
|
||||
PKG_RELEASE:=
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
|
@ -4,7 +4,9 @@ local fs = api.fs
|
||||
local sys = api.sys
|
||||
local datatypes = api.datatypes
|
||||
local path = string.format("/usr/share/%s/rules/", appname)
|
||||
local route_hosts_path = "/etc/"
|
||||
local gfwlist_path = "/usr/share/passwall/rules/gfwlist"
|
||||
local chnlist_path = "/usr/share/passwall/rules/chnlist"
|
||||
local chnroute_path = "/usr/share/passwall/rules/chnroute"
|
||||
|
||||
m = Map(appname)
|
||||
api.set_apply_on_parse(m)
|
||||
@ -248,7 +250,7 @@ o.validate = function(self, value)
|
||||
end
|
||||
|
||||
---- Route Hosts
|
||||
local hosts = route_hosts_path .. "hosts"
|
||||
local hosts = "/etc/hosts"
|
||||
o = s:taboption("route_hosts", TextValue, "hosts", "", "<font color='red'>" .. translate("Configure routing etc/hosts file, if you don't know what you are doing, please don't change the content.") .. "</font>")
|
||||
o.rows = 15
|
||||
o.wrap = "off"
|
||||
@ -262,6 +264,41 @@ o.remove = function(self, section, value)
|
||||
fs.writefile(hosts, "")
|
||||
end
|
||||
|
||||
if api.fs.access(gfwlist_path) then
|
||||
s:tab("gfw_list", translate("GFW List"))
|
||||
o = s:taboption("gfw_list", TextValue, "gfw_list", "")
|
||||
o.readonly = true
|
||||
o.rows = 45
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return fs.readfile(gfwlist_path) or ""
|
||||
end
|
||||
end
|
||||
|
||||
if api.fs.access(chnlist_path) then
|
||||
s:tab("chn_list", translate("China List"))
|
||||
o = s:taboption("chn_list", TextValue, "chn_list", "")
|
||||
o.readonly = true
|
||||
o.rows = 45
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return fs.readfile(chnlist_path) or ""
|
||||
end
|
||||
end
|
||||
|
||||
if api.fs.access(chnroute_path) then
|
||||
s:tab("chnroute_list", translate("China List"))
|
||||
o = s:taboption("chnroute_list", TextValue, "chnroute_list", "")
|
||||
o.readonly = true
|
||||
o.rows = 45
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return fs.readfile(chnroute_path) or ""
|
||||
end
|
||||
end
|
||||
|
||||
m:append(Template(appname .. "/rule_list/js"))
|
||||
|
||||
if sys.call('[ -f "/www/luci-static/resources/uci.js" ]') == 0 then
|
||||
m.apply_on_parse = true
|
||||
function m.on_apply(self)
|
||||
|
18
luci-app-passwall/luasrc/view/passwall/rule_list/js.htm
Normal file
18
luci-app-passwall/luasrc/view/passwall/rule_list/js.htm
Normal file
@ -0,0 +1,18 @@
|
||||
<%
|
||||
local api = require "luci.passwall.api"
|
||||
-%>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
let dom = document.getElementById("cbi-passwall-global_rules");
|
||||
if (dom) {
|
||||
let textareas = dom.getElementsByTagName("textarea");
|
||||
for (let i = 0; i < textareas.length; i++) {
|
||||
let o = textareas[i];
|
||||
if (o.readOnly) {
|
||||
o.removeAttribute("name");
|
||||
o.removeAttribute("id");
|
||||
}
|
||||
}
|
||||
}
|
||||
//]]>
|
||||
</script>
|
@ -30,48 +30,10 @@ EOF
|
||||
touch /etc/config/passwall_show >/dev/null 2>&1
|
||||
[ ! -s "/etc/config/passwall" ] && cp -f /usr/share/passwall/0_default_config /etc/config/passwall
|
||||
|
||||
use_nft=$(uci -q get passwall.@global_forwarding[0].use_nft || echo "0")
|
||||
[ "${use_nft}" = "0" ] && {
|
||||
if [ -z "$(command -v iptables-legacy || command -v iptables)" ] || [ -z "$(command -v ipset)" ] || [ -z "$(dnsmasq --version | grep 'Compile time options:.* ipset')" ]; then
|
||||
[ "$(opkg list-installed | grep "firewall4")" ] && [ "$(opkg list-installed | grep "nftables")" ] && {
|
||||
[ "$(opkg list-installed | grep "kmod\-nft\-socket")" ] && [ "$(opkg list-installed | grep "kmod\-nft\-tproxy")" ] && [ "$(opkg list-installed | grep "kmod\-nft\-nat")" ] && {
|
||||
uci -q set passwall.@global_forwarding[0].use_nft=1
|
||||
uci -q commit passwall
|
||||
sed -i "s#use_nft '0'#use_nft '1'#g" /usr/share/passwall/0_default_config
|
||||
}
|
||||
}
|
||||
fi
|
||||
}
|
||||
|
||||
global_xray=$(uci -q get passwall.@global_xray[0])
|
||||
[ -z "${global_xray}" ] && {
|
||||
cfgid=$(uci add passwall global_xray)
|
||||
uci -q set passwall.${cfgid}.sniffing=$(uci -q get passwall.@global_forwarding[0].sniffing || echo "1")
|
||||
uci -q set passwall.${cfgid}.route_only=$(uci -q get passwall.@global_forwarding[0].route_only || echo "0")
|
||||
uci -q set passwall.${cfgid}.buffer_size=$(uci -q get passwall.@global_forwarding[0].buffer_size || echo "")
|
||||
|
||||
uci -q delete passwall.@global_forwarding[0].sniffing
|
||||
uci -q delete passwall.@global_forwarding[0].route_only
|
||||
uci -q delete passwall.@global_forwarding[0].buffer_size
|
||||
uci -q commit passwall
|
||||
}
|
||||
|
||||
sed -i "s#option tlsflow#option flow#g" /etc/config/passwall
|
||||
|
||||
global_singbox=$(uci -q get passwall.@global_singbox[0])
|
||||
[ -z "${global_singbox}" ] && {
|
||||
cfgid=$(uci add passwall global_singbox)
|
||||
uci -q set passwall.${cfgid}.sniff_override_destination=0
|
||||
uci -q set passwall.${cfgid}.geoip_path="/tmp/singbox/geoip.db"
|
||||
uci -q set passwall.${cfgid}.geoip_url="https://github.com/SagerNet/sing-geoip/releases/latest/download/geoip.db"
|
||||
uci -q set passwall.${cfgid}.geosite_path="/tmp/singbox/geosite.db"
|
||||
uci -q set passwall.${cfgid}.geosite_url="https://github.com/SagerNet/sing-geosite/releases/latest/download/geosite.db"
|
||||
uci -q commit passwall
|
||||
}
|
||||
|
||||
chmod +x /usr/share/passwall/*.sh
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
rm -rf /tmp/luci-modulecache/
|
||||
killall -HUP rpcd 2>/dev/null
|
||||
|
||||
exit 0
|
||||
|
@ -1587,14 +1587,13 @@ start() {
|
||||
if [ -n "$(command -v iptables-legacy || command -v iptables)" ] && [ -n "$(command -v ipset)" ] && [ -n "$(dnsmasq --version | grep 'Compile time options:.* ipset')" ]; then
|
||||
USE_TABLES="iptables"
|
||||
else
|
||||
echolog "系统未安装iptables或ipset或Dnsmasq没有开启ipset支持,无法使用iptables+ipset透明代理!"
|
||||
if [ -n "$(command -v fw4)" ] && [ -n "$(command -v nft)" ] && [ -n "$(dnsmasq --version | grep 'Compile time options:.* nftset')" ]; then
|
||||
echolog "检测到fw4,使用nftables进行透明代理。"
|
||||
USE_TABLES="nftables"
|
||||
nftflag=1
|
||||
config_t_set global_forwarding use_nft 1
|
||||
uci commit ${CONFIG}
|
||||
else
|
||||
echolog "系统未安装iptables或ipset或Dnsmasq没有开启ipset支持,无法透明代理!"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
|
@ -149,8 +149,9 @@ local function check_excluded_domain(domain)
|
||||
end
|
||||
|
||||
local cache_text = ""
|
||||
local nodes_address_md5 = luci.sys.exec("echo -n $(uci show passwall | grep '\\.address') | md5sum")
|
||||
local new_rules = luci.sys.exec("echo -n $(find /usr/share/passwall/rules -type f | xargs md5sum)")
|
||||
local new_text = TMP_DNSMASQ_PATH .. DNSMASQ_CONF_FILE .. DEFAULT_DNS .. LOCAL_DNS .. TUN_DNS .. REMOTE_FAKEDNS .. USE_DEFAULT_DNS .. CHINADNS_DNS .. USE_DIRECT_LIST .. USE_PROXY_LIST .. USE_BLOCK_LIST .. USE_GFW_LIST .. CHN_LIST .. DEFAULT_PROXY_MODE .. NO_PROXY_IPV6 .. new_rules .. NFTFLAG
|
||||
local new_text = TMP_DNSMASQ_PATH .. DNSMASQ_CONF_FILE .. DEFAULT_DNS .. LOCAL_DNS .. TUN_DNS .. REMOTE_FAKEDNS .. USE_DEFAULT_DNS .. CHINADNS_DNS .. USE_DIRECT_LIST .. USE_PROXY_LIST .. USE_BLOCK_LIST .. USE_GFW_LIST .. CHN_LIST .. DEFAULT_PROXY_MODE .. NO_PROXY_IPV6 .. nodes_address_md5 .. new_rules .. NFTFLAG
|
||||
if fs.access(CACHE_TEXT_FILE) then
|
||||
for line in io.lines(CACHE_TEXT_FILE) do
|
||||
cache_text = line
|
||||
@ -204,6 +205,7 @@ if not fs.access(CACHE_DNS_PATH) then
|
||||
--始终用国内DNS解析节点域名
|
||||
uci:foreach(appname, "nodes", function(t)
|
||||
local address = t.address
|
||||
if address == "engage.cloudflareclient.com" then return end
|
||||
if datatypes.hostname(address) then
|
||||
set_domain_dns(address, LOCAL_DNS)
|
||||
set_domain_ipset(address, setflag_4 .. "passwall_vpslist," .. setflag_6 .. "passwall_vpslist6")
|
||||
|
@ -1172,7 +1172,7 @@ del_firewall_rule() {
|
||||
destroy_ipset $IPSET_BLOCKLIST6
|
||||
destroy_ipset $IPSET_WHITELIST6
|
||||
|
||||
$DIR/app.sh echolog "删除相关防火墙规则完成。"
|
||||
$DIR/app.sh echolog "删除iptables防火墙规则完成。"
|
||||
}
|
||||
|
||||
flush_ipset() {
|
||||
|
@ -1214,7 +1214,7 @@ del_firewall_rule() {
|
||||
destroy_nftset $NFTSET_BLOCKLIST6
|
||||
destroy_nftset $NFTSET_WHITELIST6
|
||||
|
||||
$DIR/app.sh echolog "删除相关防火墙规则完成。"
|
||||
$DIR/app.sh echolog "删除nftables防火墙规则完成。"
|
||||
}
|
||||
|
||||
flush_nftset() {
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -13,8 +13,6 @@
|
||||
2001:256::/32
|
||||
2001:4438::/32
|
||||
2001:4510::/29
|
||||
2001:550:1601::/48
|
||||
2001:678:d3c::/48
|
||||
2001:67c:aec::/48
|
||||
2001:67c:c28::/48
|
||||
2001:7fa:10::/48
|
||||
@ -74,7 +72,10 @@
|
||||
2001:df3:15c0::/48
|
||||
2001:df3:2a80::/48
|
||||
2001:df3:3a80::/48
|
||||
2001:df3:7440::/48
|
||||
2001:df3:77c0::/48
|
||||
2001:df3:8b80::/48
|
||||
2001:df3:9a40::/48
|
||||
2001:df3:a680::/48
|
||||
2001:df3:b380::/48
|
||||
2001:df3:c380::/48
|
||||
@ -171,7 +172,6 @@
|
||||
2400:3cc0::/32
|
||||
2400:3e00::/32
|
||||
2400:3f40::/32
|
||||
2400:3f60:3::/48
|
||||
2400:3f60::/32
|
||||
2400:3fc0::/32
|
||||
2400:4440::/32
|
||||
@ -198,7 +198,6 @@
|
||||
2400:56c0::/32
|
||||
2400:57c0::/32
|
||||
2400:5840::/32
|
||||
2400:58a0:1400::/48
|
||||
2400:58a0:1402::/48
|
||||
2400:5a00::/32
|
||||
2400:5a40::/32
|
||||
@ -244,6 +243,7 @@
|
||||
2400:6dc0::/32
|
||||
2400:6e00::/32
|
||||
2400:6e40::/32
|
||||
2400:6e60:1301::/48
|
||||
2400:6e60::/32
|
||||
2400:6ec0::/32
|
||||
2400:6f40::/32
|
||||
@ -258,11 +258,9 @@
|
||||
2400:7200::/32
|
||||
2400:7240::/32
|
||||
2400:72c0::/32
|
||||
2400:72e0:9f00::/40
|
||||
2400:72e0::/32
|
||||
2400:7340::/32
|
||||
2400:73c0::/32
|
||||
2400:73e0:201::/48
|
||||
2400:73e0::/32
|
||||
2400:7440::/32
|
||||
2400:74c0::/32
|
||||
@ -327,7 +325,6 @@
|
||||
2400:9380:8001::/48
|
||||
2400:9380:8003::/48
|
||||
2400:9380:8021::/48
|
||||
2400:9380:8030::/48
|
||||
2400:9380:8040::/48
|
||||
2400:9380:8140::/48
|
||||
2400:9380:8201::/48
|
||||
@ -338,7 +335,6 @@
|
||||
2400:9380:9009::/48
|
||||
2400:9380:900a::/48
|
||||
2400:9380:9020::/47
|
||||
2400:9380:9030::/47
|
||||
2400:9380:9040::/47
|
||||
2400:9380:9050::/47
|
||||
2400:9380:9060::/48
|
||||
@ -351,7 +347,6 @@
|
||||
2400:9380:9201::/48
|
||||
2400:9380:9202::/48
|
||||
2400:9380:9220::/47
|
||||
2400:9380:9230::/47
|
||||
2400:9380:9240::/47
|
||||
2400:9380:9250::/47
|
||||
2400:9380:9252::/48
|
||||
@ -426,6 +421,8 @@
|
||||
2400:cac0::/32
|
||||
2400:cb40::/32
|
||||
2400:cb80::/32
|
||||
2400:cb80:e30::/44
|
||||
2400:cb80:e40::/44
|
||||
2400:cbc0::/32
|
||||
2400:cc40::/32
|
||||
2400:cc80::/32
|
||||
@ -489,14 +486,13 @@
|
||||
2400:fe00::/32
|
||||
2401:1000::/32
|
||||
2401:1160::/32
|
||||
2401:11a0:150::/44
|
||||
2401:11a0:1500::/40
|
||||
2401:11a0::/32
|
||||
2401:11c0::/32
|
||||
2401:1200::/32
|
||||
2401:1200::/48
|
||||
2401:12c0::/32
|
||||
2401:1320::/32
|
||||
2401:13a0:1::/48
|
||||
2401:13a0::/32
|
||||
2401:140::/32
|
||||
2401:15c0::/32
|
||||
2401:1740:2000::/48
|
||||
@ -584,11 +580,17 @@
|
||||
2401:7240::/32
|
||||
2401:7320::/32
|
||||
2401:7340::/32
|
||||
2401:7360::/32
|
||||
2401:73a0::/32
|
||||
2401:7580::/32
|
||||
2401:7660::/32
|
||||
2401:7680::/32
|
||||
2401:7700::/32
|
||||
2401:7780::/32
|
||||
2401:77e0::/32
|
||||
2401:7820::/32
|
||||
2401:7880::/32
|
||||
2401:78e0::/32
|
||||
2401:7980::/32
|
||||
2401:7a00::/32
|
||||
2401:7a80::/32
|
||||
@ -597,6 +599,7 @@
|
||||
2401:7c0::/32
|
||||
2401:7c80::/32
|
||||
2401:7cc0::/32
|
||||
2401:7ce0::/32
|
||||
2401:7d40::/32
|
||||
2401:7d80::/32
|
||||
2401:7e00::/32
|
||||
@ -609,7 +612,11 @@
|
||||
2401:8540::/32
|
||||
2401:8600::/32
|
||||
2401:8680::/32
|
||||
2401:8720::/32
|
||||
2401:87e0::/32
|
||||
2401:8820::/31
|
||||
2401:8840::/32
|
||||
2401:8be0::/32
|
||||
2401:8d00:10::/48
|
||||
2401:8d00:12::/48
|
||||
2401:8d00:14::/48
|
||||
@ -620,8 +627,10 @@
|
||||
2401:8d00:b::/48
|
||||
2401:8d00:c::/48
|
||||
2401:8d00:f::/48
|
||||
2401:8da0::/32
|
||||
2401:8f40::/32
|
||||
2401:8fc0::/32
|
||||
2401:90a0::/32
|
||||
2401:9340::/32
|
||||
2401:95c0:f001::/48
|
||||
2401:9600::/32
|
||||
@ -659,8 +668,7 @@
|
||||
2401:b180::/32
|
||||
2401:b340::/32
|
||||
2401:b400:11::/48
|
||||
2401:b400:14::/48
|
||||
2401:b400:16::/47
|
||||
2401:b400:14::/46
|
||||
2401:b400:20::/47
|
||||
2401:b400:8::/47
|
||||
2401:b400::/32
|
||||
@ -942,6 +950,11 @@
|
||||
2402:e140::/32
|
||||
2402:e2c0::/32
|
||||
2402:e380:100::/40
|
||||
2402:e380:302::/48
|
||||
2402:e380:306::/48
|
||||
2402:e380:308::/48
|
||||
2402:e380:30c::/48
|
||||
2402:e380:312::/48
|
||||
2402:e3c0::/32
|
||||
2402:e480::/32
|
||||
2402:e540::/32
|
||||
@ -1005,6 +1018,7 @@
|
||||
2403:2740::/32
|
||||
2403:2780::/32
|
||||
2403:27c0:1000::/48
|
||||
2403:27c0:c03::/48
|
||||
2403:28c0::/32
|
||||
2403:2940::/32
|
||||
2403:2a00::/32
|
||||
@ -1094,10 +1108,6 @@
|
||||
2403:5f80::/32
|
||||
2403:5fc0::/32
|
||||
2403:600::/32
|
||||
2403:600:a000::/38
|
||||
2403:600:a600::/47
|
||||
2403:600:a602::/48
|
||||
2403:600:b001::/48
|
||||
2403:6080::/32
|
||||
2403:6180::/32
|
||||
2403:6280::/32
|
||||
@ -1334,9 +1344,18 @@
|
||||
2404:2280:13c::/47
|
||||
2404:2280:147::/48
|
||||
2404:2280:193::/48
|
||||
2404:2280:196::/48
|
||||
2404:2280:199::/48
|
||||
2404:2280:19a::/47
|
||||
2404:2280:19c::/47
|
||||
2404:2280:19e::/48
|
||||
2404:2280:1a4::/47
|
||||
2404:2280:1b2::/48
|
||||
2404:2280:1b4::/48
|
||||
2404:2280:1b6::/47
|
||||
2404:2280:1b8::/47
|
||||
2404:2280:1ba::/48
|
||||
2404:2280:1bf::/48
|
||||
2404:2280:1c1::/48
|
||||
2404:2280:1c2::/47
|
||||
2404:2280:1c4::/47
|
||||
@ -1345,11 +1364,18 @@
|
||||
2404:2280:1cb::/48
|
||||
2404:2280:1cc::/48
|
||||
2404:2280:1cf::/48
|
||||
2404:2280:1d0::/48
|
||||
2404:2280:1d3::/48
|
||||
2404:2280:1d6::/48
|
||||
2404:2280:1d8::/45
|
||||
2404:2280:1e0::/48
|
||||
2404:2280:1e2::/47
|
||||
2404:2280:1e4::/46
|
||||
2404:2280:1e8::/48
|
||||
2404:2280:1ea::/48
|
||||
2404:2280:1ee::/48
|
||||
2404:2280:1f0::/45
|
||||
2404:2280:1f8::/46
|
||||
2404:240::/32
|
||||
2404:280::/32
|
||||
2404:30c0::/32
|
||||
@ -1403,14 +1429,11 @@
|
||||
2404:7180:a000::/48
|
||||
2404:7180:a010::/48
|
||||
2404:7180:a021::/48
|
||||
2404:7180:a022::/48
|
||||
2404:7180:aa00::/48
|
||||
2404:7180:aa10::/48
|
||||
2404:7180:b001::/48
|
||||
2404:7180:b002::/48
|
||||
2404:7180:b010::/48
|
||||
2404:7180:b021::/48
|
||||
2404:7180:b022::/48
|
||||
2404:7180:c001::/48
|
||||
2404:7180:c002::/48
|
||||
2404:7180:c011::/48
|
||||
@ -1508,7 +1531,6 @@
|
||||
2404:e780::/32
|
||||
2404:e880::/32
|
||||
2404:e8c0::/32
|
||||
2404:ea80:400:2116::/64
|
||||
2404:ea80:500:575::/64
|
||||
2404:ea80:600:623::/64
|
||||
2404:ea80:700:104::/64
|
||||
@ -1534,6 +1556,7 @@
|
||||
2405:1480:3000::/47
|
||||
2405:1480::/32
|
||||
2405:1580::/32
|
||||
2405:1640:6::/48
|
||||
2405:1680::/32
|
||||
2405:18c0::/32
|
||||
2405:1c80::/32
|
||||
@ -1649,6 +1672,7 @@
|
||||
2405:6d80::/32
|
||||
2405:6e80::/32
|
||||
2405:6f00::/32
|
||||
2405:6f00:c170::/47
|
||||
2405:6f00:c602::/48
|
||||
2405:6f80::/32
|
||||
2405:7040:6000::/47
|
||||
@ -1805,7 +1829,6 @@
|
||||
2406:1e40:f012::/47
|
||||
2406:1e80::/32
|
||||
2406:1f80::/32
|
||||
2406:2000:a0::/48
|
||||
2406:2080::/32
|
||||
2406:2640::/32
|
||||
2406:2700::/32
|
||||
@ -1853,7 +1876,6 @@
|
||||
2406:4380::/32
|
||||
2406:43c0::/32
|
||||
2406:440::/32
|
||||
2406:4440:f000::/44
|
||||
2406:4480::/32
|
||||
2406:4500::/32
|
||||
2406:4680::/32
|
||||
@ -1937,38 +1959,8 @@
|
||||
2406:8180::/32
|
||||
2406:8280::/32
|
||||
2406:8380::/32
|
||||
2406:840:100::/48
|
||||
2406:840:10::/45
|
||||
2406:840:1800::/48
|
||||
2406:840:1860::/48
|
||||
2406:840:1::/48
|
||||
2406:840:1c0::/48
|
||||
2406:840:20::/48
|
||||
2406:840:2800::/48
|
||||
2406:840:2::/48
|
||||
2406:840:301::/48
|
||||
2406:840:3800::/48
|
||||
2406:840:3c1::/48
|
||||
2406:840:4100::/47
|
||||
2406:840:410::/48
|
||||
2406:840:43c0::/47
|
||||
2406:840:44::/47
|
||||
2406:840:4800::/47
|
||||
2406:840:4880::/47
|
||||
2406:840:5100::/47
|
||||
2406:840:5800::/47
|
||||
2406:840:5860::/47
|
||||
2406:840:5880::/47
|
||||
2406:840:78::/48
|
||||
2406:840:7::/48
|
||||
2406:840:800::/42
|
||||
2406:840:80::/47
|
||||
2406:840:8100::/40
|
||||
2406:840:840::/47
|
||||
2406:840:860::/48
|
||||
2406:840:880::/48
|
||||
2406:840:9000::/46
|
||||
2406:840:90::/48
|
||||
2406:840:9000::/44
|
||||
2406:840:9100::/47
|
||||
2406:840:9102::/48
|
||||
2406:840:9200::/40
|
||||
@ -1979,15 +1971,15 @@
|
||||
2406:840:981c::/46
|
||||
2406:840:9960::/44
|
||||
2406:840:9980::/48
|
||||
2406:840:9984::/48
|
||||
2406:840:9ef0::/44
|
||||
2406:840::/32
|
||||
2406:840:a000::/35
|
||||
2406:840:a00::/47
|
||||
2406:840:a08::/48
|
||||
2406:840:a10::/48
|
||||
2406:840:c00::/47
|
||||
2406:840:c0a8::/48
|
||||
2406:840:e010::/47
|
||||
2406:840:e014::/46
|
||||
2406:840:e018::/45
|
||||
2406:840:e030::/47
|
||||
2406:840:e033::/48
|
||||
2406:840:e03f::/48
|
||||
2406:840:e080::/44
|
||||
2406:840:e0c1::/48
|
||||
@ -1997,17 +1989,17 @@
|
||||
2406:840:e14f::/48
|
||||
2406:840:e180::/44
|
||||
2406:840:e20f::/48
|
||||
2406:840:e230::/48
|
||||
2406:840:e270::/44
|
||||
2406:840:e280::/48
|
||||
2406:840:e300::/47
|
||||
2406:840:e302::/48
|
||||
2406:840:e340::/44
|
||||
2406:840:e36f::/48
|
||||
2406:840:e500::/47
|
||||
2406:840:e571::/48
|
||||
2406:840:e576::/48
|
||||
2406:840:e57b::/48
|
||||
2406:840:e57f::/48
|
||||
2406:840:e666::/47
|
||||
2406:840:e720::/48
|
||||
2406:840:e770::/48
|
||||
2406:840:e777::/48
|
||||
2406:840:e80f::/48
|
||||
@ -2021,6 +2013,7 @@
|
||||
2406:840:eab0::/48
|
||||
2406:840:eab2::/47
|
||||
2406:840:eab4::/48
|
||||
2406:840:eab6::/48
|
||||
2406:840:eb00::/46
|
||||
2406:840:eb04::/47
|
||||
2406:840:eb07::/48
|
||||
@ -2028,37 +2021,32 @@
|
||||
2406:840:eb0b::/48
|
||||
2406:840:eb0f::/48
|
||||
2406:840:eb80::/42
|
||||
2406:840:efa0::/44
|
||||
2406:840:eef0::/44
|
||||
2406:840:f0a1::/48
|
||||
2406:840:f0aa::/48
|
||||
2406:840:f100::/47
|
||||
2406:840:f200::/44
|
||||
2406:840:f230::/44
|
||||
2406:840:f380::/44
|
||||
2406:840:f401::/48
|
||||
2406:840:f40f::/48
|
||||
2406:840:f440::/47
|
||||
2406:840:f44f::/48
|
||||
2406:840:f48f::/48
|
||||
2406:840:f62f::/48
|
||||
2406:840:f660::/44
|
||||
2406:840:f681::/48
|
||||
2406:840:f990::/44
|
||||
2406:840:fa01::/48
|
||||
2406:840:fa02::/48
|
||||
2406:840:fd00::/47
|
||||
2406:840:fd03::/48
|
||||
2406:840:fd05::/48
|
||||
2406:840:fd06::/48
|
||||
2406:840:fd1f::/48
|
||||
2406:840:fe27::/48
|
||||
2406:840:fe40::/48
|
||||
2406:840:fe4a::/48
|
||||
2406:840:fe50::/48
|
||||
2406:840:fe60::/48
|
||||
2406:840:fe72::/47
|
||||
2406:840:fec0::/47
|
||||
2406:840:fec4::/48
|
||||
2406:840:fec8::/48
|
||||
2406:840:fec4::/47
|
||||
2406:840:fec8::/46
|
||||
2406:840:fecc::/48
|
||||
2406:840:fed1::/48
|
||||
2406:840:fed2::/47
|
||||
2406:840:fed4::/46
|
||||
@ -2069,7 +2057,7 @@
|
||||
2406:840:feed::/48
|
||||
2406:840:fef0::/46
|
||||
2406:840:fef5::/48
|
||||
2406:840:fef6::/47
|
||||
2406:840:fef7::/48
|
||||
2406:840:fef8::/45
|
||||
2406:8480::/32
|
||||
2406:8500::/32
|
||||
@ -2077,6 +2065,7 @@
|
||||
2406:8780::/32
|
||||
2406:880::/32
|
||||
2406:8880::/32
|
||||
2406:8880::/48
|
||||
2406:8980::/32
|
||||
2406:8a80::/32
|
||||
2406:8b80::/32
|
||||
@ -2256,7 +2245,6 @@
|
||||
2407:7880::/32
|
||||
2407:7980::/32
|
||||
2407:7c80::/32
|
||||
2407:7d00:1::/48
|
||||
2407:7d00::/32
|
||||
2407:7d80::/32
|
||||
2407:7e80::/32
|
||||
@ -2703,6 +2691,7 @@
|
||||
2408:844b::/32
|
||||
2408:844c::/30
|
||||
2408:8452::/31
|
||||
2408:8454::/32
|
||||
2408:8456::/31
|
||||
2408:8458::/30
|
||||
2408:845c::/31
|
||||
@ -2764,7 +2753,7 @@
|
||||
2408:8708::/29
|
||||
2408:8710::/30
|
||||
2408:8719::/32
|
||||
2408:871a::/32
|
||||
2408:871a::/31
|
||||
2408:8720::/30
|
||||
2408:8726::/32
|
||||
2408:872b::/32
|
||||
@ -2866,6 +2855,9 @@
|
||||
2409:2000::/32
|
||||
2409:27fa::/48
|
||||
2409:27fa:f000::/48
|
||||
2409:27fb::/48
|
||||
2409:27fc::/48
|
||||
2409:27fe::/33
|
||||
2409:6000::/20
|
||||
2409:6100::/44
|
||||
2409:8000::/20
|
||||
@ -2873,12 +2865,15 @@
|
||||
240a:2000::/29
|
||||
240a:4000::/21
|
||||
240a:400b::/33
|
||||
240a:4010:8000::/33
|
||||
240a:4020:83a::/48
|
||||
240a:4020:883a::/48
|
||||
240a:4021:83a::/48
|
||||
240a:4021:883a::/48
|
||||
240a:4082:c000::/35
|
||||
240a:4084:2000::/35
|
||||
240a:408a:c000::/35
|
||||
240a:408c:2000::/35
|
||||
240a:4090:1000::/39
|
||||
240a:4090:1200::/40
|
||||
240a:4090:120::/48
|
||||
@ -2894,15 +2889,27 @@
|
||||
240a:4090:7000::/39
|
||||
240a:4090:7200::/40
|
||||
240a:4092:c000::/35
|
||||
240a:4094:2000::/35
|
||||
240a:409a:c000::/35
|
||||
240a:409c:2000::/35
|
||||
240a:40a2:c000::/35
|
||||
240a:40a4:2000::/35
|
||||
240a:40aa:c000::/35
|
||||
240a:40ac:2000::/35
|
||||
240a:40b0:283a::/48
|
||||
240a:40b0:483a::/48
|
||||
240a:40b0:683a::/48
|
||||
240a:40b0:83a::/48
|
||||
240a:40c0:8200::/48
|
||||
240a:40c0:8240::/48
|
||||
240a:40c3:c200::/48
|
||||
240a:40c3:c240::/48
|
||||
240a:414c::/31
|
||||
240a:4172::/31
|
||||
240a:41b0::/47
|
||||
240a:41cc::/31
|
||||
240a:41f2::/31
|
||||
240a:4242::/31
|
||||
240a:4280::/26
|
||||
240a:42c0::/27
|
||||
240a:42e0::/28
|
||||
@ -2952,15 +2959,17 @@
|
||||
240f:4000::/24
|
||||
240f:8000::/24
|
||||
240f:c000::/24
|
||||
2602:2a3::/40
|
||||
2602:2a3::/48
|
||||
2602:2a4:ff::/48
|
||||
2602:f9df:300::/40
|
||||
2602:f9df:400::/48
|
||||
2602:f9df:410::/48
|
||||
2602:f9df:420::/48
|
||||
2602:2c3:810::/44
|
||||
2602:f9ba:a9::/48
|
||||
2602:f9df:400::/47
|
||||
2602:f9df:500::/48
|
||||
2602:f9df:505::/48
|
||||
2602:f9df:510::/47
|
||||
2602:f9df:515::/48
|
||||
2602:f9df:516::/48
|
||||
2602:f9f6:400::/44
|
||||
2602:fa1c:121::/48
|
||||
2602:fab0:11::/48
|
||||
2602:fbda:600::/48
|
||||
2602:fbda:660::/48
|
||||
@ -2968,11 +2977,9 @@
|
||||
2602:fc52:311::/48
|
||||
2602:fc52:312::/48
|
||||
2602:fc52:315::/48
|
||||
2602:fd50:20::/48
|
||||
2602:fd92:800::/40
|
||||
2602:fe69:f26::/47
|
||||
2602:fed2:7020::/46
|
||||
2602:fed2:7025::/48
|
||||
2602:fed2:7101::/48
|
||||
2602:fed2:731d::/48
|
||||
2602:feda:182::/47
|
||||
@ -2992,6 +2999,8 @@
|
||||
2602:feda:ca1::/48
|
||||
2602:feda:d80::/48
|
||||
2602:feda:d83::/48
|
||||
2602:ffe4:c5f::/48
|
||||
2602:ffe4:c60::/47
|
||||
2605:640f:bcd7::/48
|
||||
2605:9d80:8001::/48
|
||||
2605:9d80:8011::/48
|
||||
@ -3005,11 +3014,9 @@
|
||||
2605:9d80:9033::/48
|
||||
2605:9d80:9042::/48
|
||||
2605:9d80:9052::/48
|
||||
2605:9d80:9061::/48
|
||||
2605:9d80:9071::/48
|
||||
2605:9d80:9092::/48
|
||||
2605:f440:cafe::/48
|
||||
2607:7640::/48
|
||||
2804:1e48::/32
|
||||
2a03:5840:290::/48
|
||||
2a03:5840:f3::/48
|
||||
@ -3043,20 +3050,17 @@
|
||||
2a04:f580:9280::/48
|
||||
2a04:f580:9290::/48
|
||||
2a05:1085::/32
|
||||
2a05:1086:f000::/47
|
||||
2a05:1086:f000::/48
|
||||
2a05:1087::/32
|
||||
2a05:dfc1:1602::/48
|
||||
2a05:dfc1:16ff::/48
|
||||
2a05:dfc1:5900::/41
|
||||
2a05:dfc1:5a00::/40
|
||||
2a05:dfc1:6601::/48
|
||||
2a05:dfc1:6607::/48
|
||||
2a05:dfc1:7100::/46
|
||||
2a05:dfc1:7105::/48
|
||||
2a05:dfc1:7100::/47
|
||||
2a05:dfc1:7103::/48
|
||||
2a05:dfc1:7108::/47
|
||||
2a05:dfc1:8c00::/48
|
||||
2a05:dfc1:8c02::/48
|
||||
2a05:dfc1:8c05::/48
|
||||
2a05:dfc1:8c06::/48
|
||||
2a05:dfc1:8c09::/48
|
||||
2a05:dfc1:8c0a::/48
|
||||
2a05:dfc1:8c13::/48
|
||||
@ -3065,24 +3069,27 @@
|
||||
2a05:dfc1:8c1d::/48
|
||||
2a05:dfc1:8c22::/48
|
||||
2a05:dfc1:8c24::/48
|
||||
2a05:dfc1:8c30::/48
|
||||
2a05:dfc1:8c3a::/48
|
||||
2a05:dfc1:8c40::/48
|
||||
2a05:dfc1:8c90::/47
|
||||
2a05:dfc1:8c98::/47
|
||||
2a05:dfc1:8c42::/48
|
||||
2a05:dfc1:8c90::/46
|
||||
2a05:dfc1:8c94::/47
|
||||
2a05:dfc1:8d00::/48
|
||||
2a05:dfc1:8d02::/48
|
||||
2a05:dfc1:8d05::/48
|
||||
2a06:a001:a0c4::/48
|
||||
2a05:dfc1:9198::/48
|
||||
2a06:3600::/29
|
||||
2a06:a005:1340::/43
|
||||
2a06:a005:13b0::/44
|
||||
2a06:a005:13c0::/43
|
||||
2a06:a005:13e0::/47
|
||||
2a06:a005:13e8::/48
|
||||
2a06:a005:13ea::/47
|
||||
2a06:a005:13ed::/48
|
||||
2a06:a005:1520::/44
|
||||
2a06:a005:1700::/44
|
||||
2a06:a005:1800::/48
|
||||
2a06:a005:1b60::/47
|
||||
2a06:a005:1c40::/44
|
||||
2a06:a005:1ee1::/48
|
||||
2a06:a005:1ee9::/48
|
||||
2a06:a005:1eee::/48
|
||||
2a06:a005:2040::/44
|
||||
2a06:a005:2100::/44
|
||||
@ -3091,6 +3098,7 @@
|
||||
2a06:a005:280::/42
|
||||
2a06:a005:28f3::/48
|
||||
2a06:a005:28f4::/48
|
||||
2a06:a005:2910::/44
|
||||
2a06:a005:2922::/48
|
||||
2a06:a005:2925::/48
|
||||
2a06:a005:2926::/48
|
||||
@ -3102,25 +3110,31 @@
|
||||
2a06:a005:8da::/48
|
||||
2a06:a005:910::/44
|
||||
2a06:a005:9c0::/48
|
||||
2a06:a005:a13::/48
|
||||
2a06:a005:b69::/48
|
||||
2a06:a005:d22::/48
|
||||
2a06:a005:e90::/44
|
||||
2a06:a005:f80::/44
|
||||
2a06:de00:de04::/48
|
||||
2a06:de00:de0e::/47
|
||||
2a06:de01:80a::/48
|
||||
2a06:de01:872::/47
|
||||
2a06:de01:881::/48
|
||||
2a06:de01:8e4::/48
|
||||
2a06:de01:8f1::/48
|
||||
2a06:de01:906::/48
|
||||
2a06:de01:90f::/48
|
||||
2a06:de01:96b::/48
|
||||
2a06:de01:976::/48
|
||||
2a06:de01:986::/48
|
||||
2a06:de01:9af::/48
|
||||
2a06:de01:ac5::/48
|
||||
2a06:de01:ad1::/48
|
||||
2a06:de01:b38::/48
|
||||
2a06:de00:de0e::/48
|
||||
2a06:de01:812::/48
|
||||
2a06:de01:831::/48
|
||||
2a06:de01:846::/48
|
||||
2a06:de01:84b::/48
|
||||
2a06:de01:888::/48
|
||||
2a06:de01:8bc::/48
|
||||
2a06:de01:8c5::/48
|
||||
2a06:de01:8ea::/48
|
||||
2a06:de01:90d::/48
|
||||
2a06:de01:91e::/48
|
||||
2a06:de01:95f::/48
|
||||
2a06:de01:96f::/48
|
||||
2a06:de01:9a4::/48
|
||||
2a06:de01:9a7::/48
|
||||
2a06:de01:ac0::/48
|
||||
2a06:de01:ac3::/48
|
||||
2a06:de01:b1a::/48
|
||||
2a06:de01:b32::/48
|
||||
2a06:e881:2509::/48
|
||||
2a06:e881:5501::/48
|
||||
2a06:e881:5502::/48
|
||||
@ -3128,15 +3142,13 @@
|
||||
2a06:e881:6600::/48
|
||||
2a06:e881:6602::/47
|
||||
2a06:e881:6606::/48
|
||||
2a07:54c1:2200::/48
|
||||
2a09:b280:ff80::/47
|
||||
2a09:b280:ff83::/48
|
||||
2a09:b280:ff84::/47
|
||||
2a0a:280:2d00::/46
|
||||
2a0a:280:2d04::/47
|
||||
2a0a:2840:20::/43
|
||||
2a0a:2845:aab8::/46
|
||||
2a0a:6040:1b00::/40
|
||||
2a0a:6040:2211::/48
|
||||
2a0a:6040:2222::/48
|
||||
2a0a:6040:2228::/48
|
||||
2a0a:6040:2233::/48
|
||||
@ -3152,13 +3164,12 @@
|
||||
2a0a:6040:5555::/48
|
||||
2a0a:6040:6607::/48
|
||||
2a0a:6040:6c40::/44
|
||||
2a0a:6040:a430::/48
|
||||
2a0a:6040:a450::/47
|
||||
2a0a:6040:a730::/48
|
||||
2a0a:6040:a740::/48
|
||||
2a0a:6040:a901::/48
|
||||
2a0a:6040:b770::/44
|
||||
2a0a:6040:c00::/41
|
||||
2a0a:6040:c00::/40
|
||||
2a0a:6040:c601::/48
|
||||
2a0a:6040:c700::/42
|
||||
2a0a:6040:c740::/47
|
||||
@ -3166,21 +3177,16 @@
|
||||
2a0a:6040:c750::/47
|
||||
2a0a:6040:c770::/44
|
||||
2a0a:6040:c7a0::/48
|
||||
2a0a:6040:c80::/42
|
||||
2a0a:6040:cc0::/43
|
||||
2a0a:6040:ce00::/48
|
||||
2a0a:6040:ce0::/44
|
||||
2a0a:6040:ce10::/48
|
||||
2a0a:6040:d0fe::/48
|
||||
2a0a:6040:d401::/48
|
||||
2a0a:6040:d600::/44
|
||||
2a0a:6040:d610::/47
|
||||
2a0a:6040:d612::/48
|
||||
2a0a:6040:d614::/48
|
||||
2a0a:6040:d616::/47
|
||||
2a0a:6040:d614::/46
|
||||
2a0a:6040:d710::/44
|
||||
2a0a:6040:e01::/48
|
||||
2a0a:6040:e02::/48
|
||||
2a0a:6040:e02::/47
|
||||
2a0a:6040:e541::/48
|
||||
2a0a:6040:e543::/48
|
||||
2a0a:6040:e544::/47
|
||||
@ -3190,21 +3196,20 @@
|
||||
2a0a:6040:e900::/40
|
||||
2a0a:6040:ea0::/48
|
||||
2a0a:6040:ec00::/40
|
||||
2a0a:6040:f00::/48
|
||||
2a0a:6040:f10::/47
|
||||
2a0a:6040:f00::/47
|
||||
2a0a:6040:f02::/48
|
||||
2a0a:6040:f11::/48
|
||||
2a0a:6040:f15::/48
|
||||
2a0b:2542:300::/40
|
||||
2a0b:2542::/48
|
||||
2a0b:4340:1304::/48
|
||||
2a0b:4340:1340::/48
|
||||
2a0b:4340:22::/48
|
||||
2a0b:4340:30::/44
|
||||
2a0b:4340:400::/46
|
||||
2a0b:4340:404::/47
|
||||
2a0b:4340:406::/48
|
||||
2a0b:4340:434::/48
|
||||
2a0b:4340:560::/44
|
||||
2a0b:4340:60::/44
|
||||
2a0b:4340:6::/48
|
||||
2a0b:4340:70::/48
|
||||
2a0b:4340:90::/48
|
||||
2a0b:4340:93::/48
|
||||
@ -3218,9 +3223,7 @@
|
||||
2a0b:b86:ffe0::/48
|
||||
2a0b:b87:ffb5::/48
|
||||
2a0c:9a40:8cf0::/48
|
||||
2a0c:9a40:9e04::/47
|
||||
2a0c:9a40:9e08::/45
|
||||
2a0c:b641:130::/44
|
||||
2a0c:9a40:9e00::/43
|
||||
2a0c:b641:210::/47
|
||||
2a0c:b641:24f::/48
|
||||
2a0c:b641:312::/48
|
||||
@ -3229,7 +3232,6 @@
|
||||
2a0c:b641:a11::/48
|
||||
2a0c:b641:a60::/44
|
||||
2a0c:b641:b21::/48
|
||||
2a0c:b641:b25::/48
|
||||
2a0c:b642:4101::/48
|
||||
2a0c:b642:4102::/47
|
||||
2a0c:b642:4104::/47
|
||||
@ -3239,12 +3241,11 @@
|
||||
2a0d:2580:ff08::/46
|
||||
2a0d:2581:fffc::/48
|
||||
2a0d:2581:fffe::/47
|
||||
2a0d:2586:1000::/48
|
||||
2a0d:2586::/48
|
||||
2a0d:2683:2::/48
|
||||
2a0d:2687::/32
|
||||
2a0d:2904::/44
|
||||
2a0d:2906:f000::/44
|
||||
2a0d:c7c7::/32
|
||||
2a0e:15c0:6::/48
|
||||
2a0e:800:ff00::/48
|
||||
2a0e:800:ff04::/48
|
||||
2a0e:800:ff20::/47
|
||||
@ -3253,6 +3254,7 @@
|
||||
2a0e:8f02:f006::/48
|
||||
2a0e:8f02:f058::/48
|
||||
2a0e:8f02:f062::/48
|
||||
2a0e:8f02:f067::/48
|
||||
2a0e:97c0:220::/44
|
||||
2a0e:97c0:550::/44
|
||||
2a0e:97c0:5ef::/48
|
||||
@ -3262,6 +3264,7 @@
|
||||
2a0e:aa06:440::/48
|
||||
2a0e:aa06:470::/44
|
||||
2a0e:aa06:490::/44
|
||||
2a0e:aa06:4e0::/44
|
||||
2a0e:aa06::/40
|
||||
2a0e:aa07:e00e::/48
|
||||
2a0e:aa07:e01b::/48
|
||||
@ -3269,18 +3272,17 @@
|
||||
2a0e:aa07:e030::/48
|
||||
2a0e:aa07:e035::/48
|
||||
2a0e:aa07:e039::/48
|
||||
2a0e:aa07:e03a::/48
|
||||
2a0e:aa07:e043::/48
|
||||
2a0e:aa07:e044::/48
|
||||
2a0e:aa07:e050::/44
|
||||
2a0e:aa07:e060::/48
|
||||
2a0e:aa07:e073::/48
|
||||
2a0e:aa07:e071::/48
|
||||
2a0e:aa07:e0f1::/48
|
||||
2a0e:aa07:e0f7::/48
|
||||
2a0e:aa07:e120::/44
|
||||
2a0e:aa07:e130::/47
|
||||
2a0e:aa07:e141::/48
|
||||
2a0e:aa07:e142::/48
|
||||
2a0e:aa07:e140::/46
|
||||
2a0e:aa07:e145::/48
|
||||
2a0e:aa07:e146::/47
|
||||
2a0e:aa07:e16a::/48
|
||||
2a0e:aa07:e200::/44
|
||||
2a0e:aa07:f000::/48
|
||||
@ -3296,16 +3298,16 @@
|
||||
2a0e:b107:12b::/48
|
||||
2a0e:b107:14a0::/44
|
||||
2a0e:b107:16b0::/44
|
||||
2a0e:b107:16c0::/44
|
||||
2a0e:b107:1a40::/46
|
||||
2a0e:b107:1b60::/48
|
||||
2a0e:b107:1b6f::/48
|
||||
2a0e:b107:1d20::/47
|
||||
2a0e:b107:1c1::/48
|
||||
2a0e:b107:1d25::/48
|
||||
2a0e:b107:1e85::/48
|
||||
2a0e:b107:272::/48
|
||||
2a0e:b107:30::/48
|
||||
2a0e:b107:32::/47
|
||||
2a0e:b107:4e0::/48
|
||||
2a0e:b107:710::/48
|
||||
2a0e:b107:790::/44
|
||||
2a0e:b107:a0::/44
|
||||
2a0e:b107:bd0::/48
|
||||
@ -3314,22 +3316,31 @@
|
||||
2a0e:b107:dce::/48
|
||||
2a0f:1440::/29
|
||||
2a0f:2100::/29
|
||||
2a0f:5707:ac01::/48
|
||||
2a0f:5707:fe01::/48
|
||||
2a0f:5707:fff4::/47
|
||||
2a0f:7803:fc00::/39
|
||||
2a0f:7803:fe81::/48
|
||||
2a0f:5707:fff5::/48
|
||||
2a0f:7803:fafa::/48
|
||||
2a0f:7803:fc00::/44
|
||||
2a0f:7803:fc30::/44
|
||||
2a0f:7803:fc70::/44
|
||||
2a0f:7803:fc80::/44
|
||||
2a0f:7803:fcc0::/44
|
||||
2a0f:7803:fd10::/48
|
||||
2a0f:7803:fe21::/48
|
||||
2a0f:7803:fe23::/48
|
||||
2a0f:7803:fe80::/47
|
||||
2a0f:7803:fe82::/48
|
||||
2a0f:7803:ff10::/48
|
||||
2a0f:7803:ffd1::/48
|
||||
2a0f:7980::/44
|
||||
2a0f:85c1:100::/47
|
||||
2a0f:85c1:30::/47
|
||||
2a0f:9400:6110::/48
|
||||
2a0f:9400:7700::/48
|
||||
2a10:2f00:13a::/48
|
||||
2a10:2f00:147::/48
|
||||
2a10:2f00:15a::/48
|
||||
2a10:2f00:18e::/48
|
||||
2a10:2f01:100::/48
|
||||
2a10:cc40:180::/48
|
||||
2a10:cc40:180::/47
|
||||
2a10:cc40:188::/48
|
||||
2a10:cc40:190::/48
|
||||
2a10:cc42:120::/43
|
||||
@ -3338,6 +3349,7 @@
|
||||
2a10:ccc0:ccc6::/48
|
||||
2a10:ccc0:ccc::/48
|
||||
2a10:ccc0:cccc::/46
|
||||
2a10:ccc1:105::/48
|
||||
2a11:f2c0:ffc4::/48
|
||||
2a12:3fc2:6600::/48
|
||||
2a12:3fc2:6666::/48
|
||||
@ -3349,8 +3361,8 @@
|
||||
2a12:3fc7:8000::/48
|
||||
2a12:3fc7::/48
|
||||
2a12:dd47:5c00::/40
|
||||
2a12:f8c0:1000::/39
|
||||
2a12:f8c0:1200::/40
|
||||
2a12:f8c0:1000::/40
|
||||
2a12:f8c0:2000::/40
|
||||
2a12:f8c0::/48
|
||||
2a12:f8c1::/48
|
||||
2a12:f8c3::/36
|
||||
@ -3359,33 +3371,45 @@
|
||||
2a13:1800:80::/44
|
||||
2a13:1800::/48
|
||||
2a13:1801:180::/43
|
||||
2a13:1802::/44
|
||||
2a13:1802::/43
|
||||
2a13:a5c3:f000::/40
|
||||
2a13:a5c4:1000::/38
|
||||
2a13:a5c4:1400::/39
|
||||
2a13:a5c7:1200::/40
|
||||
2a13:a5c7:1500::/40
|
||||
2a13:a5c7:1600::/47
|
||||
2a13:a5c7:1603::/48
|
||||
2a13:a5c7:1604::/47
|
||||
2a13:a5c7:1802::/48
|
||||
2a13:a5c7:1600::/45
|
||||
2a13:a5c7:1608::/47
|
||||
2a13:a5c7:1610::/46
|
||||
2a13:a5c7:1614::/47
|
||||
2a13:a5c7:1801::/48
|
||||
2a13:a5c7:1802::/47
|
||||
2a13:a5c7:1804::/47
|
||||
2a13:aac4:f000::/44
|
||||
2a13:b487:11aa::/48
|
||||
2a13:b487:11da::/48
|
||||
2a13:b487:1200::/43
|
||||
2a13:b487:1b86::/48
|
||||
2a13:b487:1bb2::/48
|
||||
2a13:b487:1bb7::/48
|
||||
2a13:b487:1bbb::/48
|
||||
2a13:b487:1f00::/47
|
||||
2a13:b487:1b00::/44
|
||||
2a13:b487:1b10::/47
|
||||
2a13:b487:1b86::/47
|
||||
2a13:b487:1ba0::/47
|
||||
2a13:b487:1ba4::/47
|
||||
2a13:b487:1bb2::/47
|
||||
2a13:b487:1bb6::/47
|
||||
2a13:b487:1bb8::/46
|
||||
2a13:b487:1f00::/45
|
||||
2a13:b487:4200::/47
|
||||
2a13:b487:4210::/44
|
||||
2a13:b487:4220::/43
|
||||
2a13:b487:4240::/43
|
||||
2a13:b487:42d0::/44
|
||||
2a13:df80:3b10::/48
|
||||
2a13:df80:6808::/48
|
||||
2a13:df85:a200::/40
|
||||
2a13:df85:be00::/48
|
||||
2a13:df85:be0e::/48
|
||||
2a13:df85:be10::/48
|
||||
2a13:df85:be80::/48
|
||||
2a13:df85:be88::/48
|
||||
2a13:df85:be90::/48
|
||||
2a13:df85:beaa::/48
|
||||
2a13:df85:befe::/48
|
||||
2c0f:f7a8:8011::/48
|
||||
2c0f:f7a8:8050::/48
|
||||
|
@ -337,6 +337,7 @@ appdownloader.net
|
||||
appledaily.com
|
||||
appledaily.com.hk
|
||||
appledaily.com.tw
|
||||
apps.evozi.com
|
||||
appshopper.com
|
||||
appsocks.net
|
||||
appspot.com
|
||||
@ -346,6 +347,7 @@ ar.hao123.com
|
||||
archive.fo
|
||||
archive.is
|
||||
archive.li
|
||||
archive.md
|
||||
archive.org
|
||||
archive.ph
|
||||
archive.today
|
||||
@ -816,6 +818,7 @@ c-span.org
|
||||
c-spanvideo.org
|
||||
c100tibet.org
|
||||
c2cx.com
|
||||
cableav.tv
|
||||
cablegatesearch.net
|
||||
cachinese.com
|
||||
cacnw.com
|
||||
@ -1044,6 +1047,7 @@ chubold.com
|
||||
chubun.com
|
||||
churchinhongkong.org
|
||||
chushigangdrug.ch
|
||||
ciciai.com
|
||||
cienen.com
|
||||
cineastentreff.de
|
||||
cipfg.org
|
||||
@ -1173,6 +1177,7 @@ costco.com
|
||||
cotweet.com
|
||||
counter.social
|
||||
coursehero.com
|
||||
coze.com
|
||||
cpj.org
|
||||
cq99.us
|
||||
crackle.com
|
||||
@ -2682,6 +2687,7 @@ huiyi.in
|
||||
hulkshare.com
|
||||
hulu.com
|
||||
huluim.com
|
||||
humanparty.me
|
||||
humanrightspressawards.org
|
||||
hung-ya.com
|
||||
hungerstrikeforaids.org
|
||||
@ -3648,6 +3654,7 @@ newlandmagazine.com.au
|
||||
newmitbbs.com
|
||||
newnews.ca
|
||||
news.cnyes.com
|
||||
news.ebc.net.tw
|
||||
news.hk.msn.com
|
||||
news.msn.com.tw
|
||||
news.nationalgeographic.com
|
||||
@ -4934,6 +4941,7 @@ telegraph.co.uk
|
||||
telesco.pe
|
||||
tellme.pw
|
||||
tenacy.com
|
||||
tenor.com
|
||||
tensorflow.org
|
||||
tenzinpalmo.com
|
||||
terabox.com
|
||||
|
@ -1,6 +1,6 @@
|
||||
engage.cloudflareclient.com
|
||||
github.com
|
||||
bing.com
|
||||
sspanel.net
|
||||
v2ex.com
|
||||
c.mi.com
|
||||
|
||||
#google
|
||||
@ -10,8 +10,3 @@ google.com.tw
|
||||
google.com.hk
|
||||
gstatic.com
|
||||
xn--ngstr-lra8j.com
|
||||
|
||||
#github
|
||||
github.com
|
||||
github.global.ssl.fastly.net
|
||||
assets-cdn.github.com
|
||||
|
Loading…
Reference in New Issue
Block a user