diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000..db9047197c
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,3 @@
+[attr]adb linguist-language=AdBlock linguist-detectable
+
+/mod/rules/adblock-rules.txt adb
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000..d0a2f3f1a4
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,11 @@
+'blank_issues_enabled': false
+'contact_links':
+  - 'about': >
+        Please Read Issue Area Rules before submitting an issue. 
+        For Chinese User: 没看完Issue区版规前少特么瞎几把乱提Issue
+    'name': 'Issue Area Rules'
+    'url': 'https://github.com/Cats-Team/AdRules/wiki/Issue-Area-Rules'
+  - 'about': >
+        Only For Chinese User: 建议提Issue前先看完这个
+    'name': '提问的智慧'
+    'url': 'https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md'
diff --git a/.github/ISSUE_TEMPLATE/content-allowlist-request.yml b/.github/ISSUE_TEMPLATE/content-allowlist-request.yml
new file mode 100644
index 0000000000..b823edb38b
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/content-allowlist-request.yml
@@ -0,0 +1,48 @@
+name: Content Rules Allowlist Request
+description: Report incorrectly blocked website content.
+labels: ["content allow"]
+assignees: 
+  - zutzo
+body:
+  - type: dropdown
+    id: adblocker
+    attributes:
+      label: Which tool do you use?
+      description: |
+        Only the following tools are supported.
+      multiple: true
+      options:
+        - AdGuard
+        - uBlock Origin
+    validations:
+      required: true
+  
+  - type: dropdown
+    id: blocklists
+    attributes:
+      label: Which List do you use?
+      multiple: true
+      options:
+        - AdRules AdBlock List Lite
+        - AdRules AdBlock List Normal
+        - AdRules AdBlock List Plus
+    validations:
+      required: true
+
+  - type: textarea
+    id: content
+    attributes:
+      label: Which content should be unblocked?
+      description: | 
+        Please provide the content to be unblocked.      
+    validations:
+      required: true
+  
+  - type: textarea
+    id: reason
+    attributes:
+      label: Why should the content be unblocked? Please Upload blocked log and screenshots!
+      description: |
+        If necessary, please describe the steps to reproduce. You better add screenshots.
+    validations:
+      required: true
diff --git a/.github/ISSUE_TEMPLATE/dns-allowlist-request.yml b/.github/ISSUE_TEMPLATE/dns-allowlist-request.yml
new file mode 100644
index 0000000000..c8a33c02f2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/dns-allowlist-request.yml
@@ -0,0 +1,66 @@
+name: DNS Rules Allowlist Request
+description: Report incorrectly blocked Domains or App
+labels: ["dns allow"]
+assignees: 
+  - zutzo
+  - hacamer
+body:
+  - type: dropdown
+    id: adblocker
+    attributes:
+      label: Which tool do you use?
+      description: |
+        If the tool is not listed, please select "Other" and enter its name in the comment field below.
+      multiple: true
+      options:
+        - AdGuard
+        - AdGuard Home
+        - AdGuard DNS
+        - Clash Meta
+        - Quantumult X
+        - SmartDNS
+        - Mosdns
+        - Loon
+        - Surge
+        - Other
+    validations:
+      required: true
+  - type: input
+    id: other
+    attributes:
+      label: Other
+    validations:
+      required: false
+  
+  - type: dropdown
+    id: blocklists
+    attributes:
+      label: Which AdRules DNS List Syntax do you use?
+      multiple: true
+      options:
+        - ABP
+        - mosdns
+        - Quantumult X
+        - SmartDNS
+        - Clash Domainset
+        - Loon/Surge Ruleset
+    validations:
+      required: true
+
+  - type: textarea
+    id: domains
+    attributes:
+      label: Which domain(s) should be unblocked?
+      description: | 
+        Please provide the domains to be unblocked. And add logs screenshots.      
+    validations:
+      required: true
+  
+  - type: textarea
+    id: reason
+    attributes:
+      label: Why should the domain(s) be unblocked?
+      description: |
+        Please describe the steps to reproduce. You must add screenshots.
+    validations:
+      required: true
diff --git a/.github/workflows/auto-clean-commit.yml b/.github/workflows/auto-clean-commit.yml
new file mode 100644
index 0000000000..9a20a86d5b
--- /dev/null
+++ b/.github/workflows/auto-clean-commit.yml
@@ -0,0 +1,27 @@
+name: Clear commits
+on:
+  workflow_dispatch:
+  schedule:
+  - cron: 0 15 */3 * *
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    permissions:
+      contents: write
+      actions: write
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          ref: script
+      - name: commit
+        run: |
+          git init
+          git config --local user.name "actions"
+          git config --local user.email "action@github.com"
+          git checkout --orphan clearhistory
+          git branch -D script
+          git checkout --orphan script
+          git add .
+          git commit -m "🚀 CI Updated"
+          git remote set-url --add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
+          git push -f -u origin script
\ No newline at end of file
diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml
new file mode 100644
index 0000000000..e019de3897
--- /dev/null
+++ b/.github/workflows/autoupdate.yml
@@ -0,0 +1,100 @@
+name: Update Rules
+on: 
+  schedule:
+    - cron: '0 0 * * *'
+  push:
+    paths:
+      - 'script/*'
+      - 'mod/*'
+
+  workflow_dispatch:
+
+  repository_dispatch:
+   type:
+    - [Manual-Update]
+
+jobs:
+  update-rules:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@main
+      - name: Setup Python
+        uses: actions/setup-python@v2
+        with:
+          python-version: '3.x'
+      - uses: actions/setup-node@v2
+        with:
+          #node-version: '14'
+          check-latest: true
+
+      # Install hostlist-compiler
+      - name: Install hostlist-compiler
+        run: npm i -g @adguard/hostlist-compiler
+
+      - name: Update Upstream
+        continue-on-error: false
+        run: |     
+          pip install requests
+          bash ./script/update-upstream.sh
+          tar -czvf archive.tar.gz ./tmp/*
+
+
+      - name: Upload artifacts
+        uses: actions/upload-artifact@v4
+        with:
+         name: archive.tar.gz
+         path: archive.tar.gz
+        
+      - name: Build Rules
+        continue-on-error: false
+        run: |     
+          bash ./script/update-content-rules.sh
+          bash ./script/update-dns-rules.sh
+          rm -f archive.tar.gz
+
+      - name: Update other rules
+        run: |
+          cd rules
+          rm *.txt
+          wget https://raw.githubusercontent.com/damengzhu/banad/main/jiekouAD.txt
+          cd ../
+      - name: Git push assets to Github
+        run: |
+          git init
+          git config --local user.name "actions"
+          git config --local user.email "action@github.com"
+          git checkout --orphan main
+          git rm -rf .github
+          git rm -rf script
+          git rm -rf *.md         
+          git add *.{conf,txt,list,html,json,srs,mrs} rules/* mod/*
+          git commit -m "Update at $(TZ=UTC-8 date +"%Y-%m-%d %H:%M")"
+          git push -f -u origin main
+
+      - name: Git push assets to other repos
+        continue-on-error: true
+        run: |
+          rm -rf .git/
+          git init          
+          git config --local user.name "hacamer"
+          git config --local user.email "hcamer145@gmail.com"
+          git remote add origin "https://cats-team:${{ secrets.GITLAB_TOKEN }}@gitlab.com/cats-team/adrules.git"
+          git remote set-url --add origin "https://hacamer:${{ secrets.GITEA_TOKEN }}@gitea.com/Cats-Team/AdRules.git"
+          git remote set-url --add origin "https://hacamer:${{ secrets.BITBUCKET_TOKEN }}@bitbucket.org/hacamer/adrules.git"
+          git checkout --orphan clearhistory
+          git add *.{conf,html,txt,json,srs,mrs,list} rules/* mod/*
+          git commit -am "Update at $(TZ=UTC-8 date +"%Y-%m-%d %H:%M")"
+          git branch -m main
+          git push --force --set-upstream origin main
+
+      - name: Auto Built
+        continue-on-error: true
+        run: |
+          curl -X POST "${{ secrets.CF_TOKEN }}"
+      - name: Delete workflow runs
+        uses: Mattraks/delete-workflow-runs@main
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
+          repository: ${{ github.repository }}
+          retain_days: 0
+          keep_minimum_runs: 2
diff --git a/.github/workflows/close-inactive-issue.yml b/.github/workflows/close-inactive-issue.yml
new file mode 100644
index 0000000000..05308834e3
--- /dev/null
+++ b/.github/workflows/close-inactive-issue.yml
@@ -0,0 +1,22 @@
+name: Close inactive issues
+on:
+  schedule:
+    - cron: "30 1 * * *"
+  workflow_dispatch:
+jobs:
+  close-issues:
+    runs-on: ubuntu-latest
+    permissions:
+      issues: write
+      pull-requests: write
+    steps:
+      - uses: actions/stale@v5
+        with:
+          days-before-issue-stale: 3
+          days-before-issue-close: 7
+          stale-issue-label: "stale"
+          stale-issue-message: "This issue is stale because it has been open for 3 days with no activity."
+          close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
+          days-before-pr-stale: -1
+          days-before-pr-close: -1
+          repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/desize.yml b/.github/workflows/desize.yml
new file mode 100644
index 0000000000..423fc2d162
--- /dev/null
+++ b/.github/workflows/desize.yml
@@ -0,0 +1,47 @@
+name: desize
+on:
+  workflow_dispatch:
+
+jobs:
+  clean:
+    runs-on: ubuntu-latest
+      
+    steps:
+      - name: Clone repo
+        run: git clone --mirror https://cats-team:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} repo_gh
+          
+      - name: Clean up
+        run: |
+          curl -fsSL -o bfg.jar https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg-1.14.0.jar && \
+          java -jar bfg.jar --strip-blobs-bigger-than 10K -fs 100M repo_gh && \
+          cd repo_gh && \
+          git reflog expire --expire=now --all && \
+          git gc --prune=now --aggressive
+          
+      - name: Push
+        run: |
+          cd repo_gh
+          git show-ref | cut -d' ' -f2 | grep 'pull' | xargs -r -L1 git update-ref -d
+          git push origin --force
+          cd ../
+          rm -rf repo_gh
+     
+      #Gitlab
+      - name: Clone repo
+        run: git clone --mirror https://cats-team:${{ secrets.GITLAB_TOKEN }}@gitlab.com/cats-team/adrules.git repo_gh
+          
+      - name: Clean up
+        run: |
+          curl -fsSL -o bfg.jar https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg-1.14.0.jar && \
+          java -jar bfg.jar --strip-blobs-bigger-than 10K -fs 100M repo_gh && \
+          cd repo_gh && \
+          git reflog expire --expire=now --all && \
+          git gc --prune=now --aggressive
+          
+      - name: Push
+        run: |
+          cd repo_gh
+          git show-ref | cut -d' ' -f2 | grep 'pull' | xargs -r -L1 git update-ref -d
+          git push origin --force
+          cd ../
+          rm -rf repo_gh
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..e87709667b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+push.sh
+.git/
+tmp/
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000000..81450a2cc2
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+gp.adrules.top
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000..292ff91e4b
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,14 @@
+
+           DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+                   Version 2, December 2004
+ 
+Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+
+Everyone is permitted to copy and distribute verbatim or modified
+copies of this license document, and changing it is allowed as long
+as the name is changed.
+ 
+           DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000..41ad10f749
--- /dev/null
+++ b/README.md
@@ -0,0 +1,63 @@
+<center>
+
+<h1>AdRules</h1>
+
+</center>
+<br>
+<img src="https://img.shields.io/github/stars/Cats-Team/AdRules?style=flat-square&color=yellow">
+<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/cats-team/adrules/main?style=flat-square&color=red">
+<img src="https://img.shields.io/github/license/Cats-Team/AdRules?style=flat-square">
+
+</centre>
+
+## Desc.
+List for blocking ads in the Chinese region
+  
+❔Have any questions? Please go to [Chat](#chat)  
+📃Want to see the upstream rules? [Source](/Source.md)
+<br>  
+
+### 📃 Rules List
+
+
+> [!CAUTION]
+> Use the right filter on the right platform or suffer the consequences.
+
+> 
+- **Content Rules**
+
+| Rules Name 	| 🚀Github Raw 	| 🚀Github Pages 	| 🚀Gitlab Raw 	| 🚀Cloudflare Pages 	| 🚀Bitbucket Raw 	| 🚀Gitea Raw 	| 
+|:---:	|:---:	|:---:	|:---:	|:---:	|:---:	|:---:	|
+| AdRules AdBlock List 	| [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/adblock.txt) 	| [Link](https://gp.adrules.top/adblock.txt) 	| [Link](https://gitlab.com/cats-team/adrules/-/raw/main/adblock.txt) 	| [Link](https://adrules.top/adblock.txt) 	| [Link](https://bitbucket.org/hacamer/adrules/raw/main/adblock.txt) 	| [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/adblock.txt) 	
+| AdRules AdBlock List Lite 	| [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/adblock_lite.txt) 	| [Link](https://gp.adrules.top/adblock_lite.txt) 	| [Link](https://gitlab.com/cats-team/adrules/-/raw/main/adblock_lite.txt) 	| [Link](https://adrules.top/adblock_lite.txt) 	| [Link](https://bitbucket.org/hacamer/adrules/raw/main/adblock_lite.txt) 	| [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/adblock_lite.txt) 	||
+| AdRules AdBlock List Plus 	| [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/adblock_plus.txt) 	| [Link](https://gp.adrules.top/adblock_plus.txt) 	| [Link](https://gitlab.com/cats-team/adrules/-/raw/main/adblock_plus.txt) 	| [Link](https://adrules.top/adblock_plus.txt) 	| [Link](https://bitbucket.org/hacamer/adrules/raw/main/adblock_plus.txt) 	| [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/adblock_plus.txt) 	
+
+- **DNS Rules**
+
+ Syntax             | 🚀Github Raw                                                                           | 🚀Github Pages                                             | 🚀Gitlab Raw                                                                  | 🚀Cloudflare Pages                                | 🚀Bitbucket Raw                                                              | 🚀Gitea                                                                                                                                 
+:------------------:|:--------------------------------------------------------------------------------------:|:----------------------------------------------------------:|:-----------------------------------------------------------------------------:|:-------------------------------------------------:|:----------------------------------------------------------------------------:|:----------------------------------------------------------------------------:
+ ABP                | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/dns.txt)               | [Link](https://gp.adrules.top/dns.txt)                     | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/dns.txt)               | [Link](https://adrules.top/dns.txt)               | [Link](https://bitbucket.org/hacamer/adrules/raw/main/dns.txt)               | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/dns.txt)          |                                                                                
+ SmartDNS           | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/smart-dns.conf)        | [Link](https://gp.adrules.top/smart-dns.conf)              | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/smart-dns.conf)        | [Link](https://adrules.top/smart-dns.conf)        | [Link](https://bitbucket.org/hacamer/adrules/raw/main/smart-dns.conf)        | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/smart-dns.conf)        
+ MosDNS             | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/mosdns_adrules.txt)    | [Link](https://gp.adrules.top/mosdns_adrules.txt)          | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/mosdns_adrules.txt)    | [Link](https://adrules.top/mosdns_adrules.txt)    | [Link](https://bitbucket.org/hacamer/adrules/raw/main/mosdns_adrules.txt)    | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/mosdns_adrules.txt)    
+ Clash Domainset    | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/adrules_domainset.txt) | [Link](https://gp.adrules.top/adrules_domainset.txt)       | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/adrules_domainset.txt) | [Link](https://adrules.top/adrules_domainset.txt) | [Link](https://bitbucket.org/hacamer/adrules/raw/main/adrules_domainset.txt) | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/adrules_domainset.txt) 
+ Surge/Loon Ruleset | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/adrules.list)          | [Link](https://gp.adrules.top/adrules.list)                | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/adrules.list)          | [Link](https://adrules.top/adrules.list)          | [Link](https://bitbucket.org/hacamer/adrules/raw/main/adrules.list)          | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/adrules.list)          
+ Quantumult X       | [Link](https://raw.githubusercontent.com/Cats-Team/AdRules/main/qx.conf)               | [Link](https://gp.adrules.top/qx.conf)                     | [Link](https://gitlab.com/cats-team/adrules/-/raw/main/qx.conf)               | [Link](https://adrules.top/qx.conf)               | [Link](https://bitbucket.org/hacamer/adrules/raw/main/qx.conf)               | [Link](https://gitea.com/Cats-Team/AdRules/raw/branch/main/qx.conf)          
+
+
+## License
+This project is licensed under the WTFPL License - see the LICENSE file for details.
+
+The WTFPL License is a permissive license that allows you to do whatever you want with the code, without any restrictions or obligations. It is a short and simple license that promotes freedom and flexibility.
+
+## Chat
+
+**✈️https://t.me/AdRules_Offical_Chat**  
+**⭕https://github.com/Cats-Team/AdRules/issues**
+
+## Sponsor
+[Afdian](https://afdian.com/a/Cats-Team)  
+
+***Your sponsorship is entirely voluntary and does not grant any special privileges. Thank you for your support!***
+
+
+[<code><kbd>Back to top</kbd></code>](#)
diff --git a/Source.md b/Source.md
new file mode 100644
index 0000000000..865dc3e2f0
--- /dev/null
+++ b/Source.md
@@ -0,0 +1,47 @@
+ List Source | Type | Author | License | Comment 
+:---:|:---:|:---:|:---:|:---:
+  |  |  |  |  
+ Lite |  |  |  |  
+ https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/mv.txt  | ABP | xinggsf | No or Unknown |  
+ https://raw.githubusercontent.com/damengzhu/banad/main/jiekouAD.txt  | ABP | damengzhu | No or Unknown |  
+ https://raw.githubusercontent.com/Noyllopa/NoAppDownload/master/NoAppDownload.txt  | ABP | Noyllopa | MIT License |  
+ https://filters.adtidy.org/extension/ublock/filters/224.txt  | ABP | AdGuard Team | GPL-3.0 license |  
+ https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt | ABP | cjx82630 | LGPL-3.0 license |  
+ https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt | ABP | reek | CC BY-SA 4.0 license |  
+ https://easylist-downloads.adblockplus.org/antiadblockfilters.txt | ABP | EasyList | EasyList Licence |  
+ https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt | ABP | Adblock Plus Team | GPL-3.0 license |  
+  |  |  |  |  
+ Normal (Based on Lite version) |  |  |  |  
+ https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt | ABP | DandelionSprout | DandelionSprout's Licence |  
+ https://filters.adtidy.org/extension/ublock/filters/3_optimized.txt | ABP | AdGuard Team | GPL-3.0 license |  
+ https://easylist-downloads.adblockplus.org/easyprivacy.txt | ABP | EasyList | EasyList Repository Licences |  
+  |  |  |  |  
+ Plus (Based on Normal version) |  |  |  |  
+ https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt 
+ https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt | ABP | uBlock Team | GPL-3.0 license |  
+ https://filters.adtidy.org/windows/filters/2.txt 
+ https://filters.adtidy.org/windows/filters/11.txt 
+ https://filters.adtidy.org/windows/filters/3.txt 
+ https://filters.adtidy.org/windows/filters/224.txt 
+ https://filters.adtidy.org/windows/filters/14.txt 
+ https://filters.adtidy.org/windows/filters/4.txt 
+ https://filters.adtidy.org/windows/filters/17.txt | ABP | AdGuard Team | GPL-3.0 license |  
+  |  |  |  |  
+ DNS (Base on Content Filter) |  |  |  |  
+ https://filters.adavoid.org/ultimate-ad-filter.txt 
+ https://filters.adavoid.org/ultimate-privacy-filter.txt | ABP | ultimate Team | GNU GPLv3 / CC BY 3.0 |  |  
+ https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt | ABP | Fanboy Team | GNU GPLv3 / CC BY 3.0 |  |  
+ https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt | ABP | Banbendalao | MIT License |  
+ https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt | ABP | hoshsadiq | MIT License |  
+ https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt | ABP | durablenapkin | MIT License | 
+ https://raw.githubusercontent.com/d3ward/toolz/master/src/d3host.adblock | ABP | d3ward | CC BY-NC-SA | |
+ https://adaway.org/hosts.txt | Hosts | Adaway Team | CC Attribution 3.0 |  
+ https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts | Hosts | jdlingyu | No or Unknown |  
+ https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt | Hosts | crazy-max | MIT License |  
+ https://gitlab.com/quidsup/notrack-blocklists/-/raw/master/malware.hosts | Hosts | QuidsUp | GNU General Public License v3.0 |  
+ https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts | Hosts | bigdargon | MIT License |  
+ https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts | Hosts | StevenBlack | MIT License |  
+ https://urlhaus.abuse.ch/downloads/hostfile/ | Hosts | urlhaus Team | No or Unknown |  
+ https://someonewhocares.org/hosts/zero/hosts | Hosts | someonewhocares | No or Unknown |  
+ https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt | Hosts | Spam404 | No or Unknown 
+ https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/reject.txt | Clash | Loyalsoldier | GPL-3.0 license | |
diff --git a/index.html b/index.html
new file mode 100644
index 0000000000..a538e7c350
--- /dev/null
+++ b/index.html
@@ -0,0 +1,277 @@
+<html>
+  <head>
+    <link rel="icon" href="https://avatars.githubusercontent.com/u/88201352" />
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <meta name="description" content="List for blocking ads in the Chinese region">
+    <meta charset="utf-8" />
+    <meta
+      name="viewport"
+      content="width=device-width, initial-scale=1.0, user-scalable=no"
+    />
+    <title>AdRules</title>
+    <script
+      src="https://cdnjs.cloudflare.com/ajax/libs/remarkable/2.0.1/remarkable.min.js"
+      integrity="sha512-skYYbQHAuOTpeJTthhUH3flZohep8blA+qjZOY0VqmfXMDiYcWxu29F5UbxU4LxaIpGkRBk+3Qf8qaXfd9jngg=="
+      crossorigin="anonymous"
+      referrerpolicy="no-referrer"
+    ></script>
+    <style>
+        select ~ article[id] {
+            display: block;
+            opacity: 0;
+            transition: opacity 0.45s ease-in-out;
+        }
+        select ~ article[id].show {
+            opacity: 1;
+        }
+        select ~ article[id].hide {
+            display: none;
+        }
+    </style>
+    <meta name="viewport" content="width=device-width; initial-scale=1.0; minimum-scale=1.0; maximum-scale=1.0">
+    <style>
+        .container {
+            width: 80%;
+            margin: 10% auto 0;
+            background-color: rgba(255,255,255,0.7);
+            padding: 2% 5%;
+            border-radius: 10px
+        }
+
+        ul {
+            padding-left: 20px;
+        }
+
+            ul li {
+                line-height: 2.3
+            }
+
+        a {
+            color: #20a53a
+        }
+        select {
+        font-size: 16px;
+        } .styled-select {
+            border: 1px solid #ccc;
+            border-radius: 4px;
+            padding: 6px 10px;
+            font-size: 16px;
+            color: #333;
+        }
+
+        .copy-button {
+            margin-top: 10px;
+            cursor: pointer;
+            padding: 10px;
+            border-radius: 5px;
+            background-color: #4CAF50; /* Green */
+            border: none;
+            color: white;
+            text-align: center;
+            text-decoration: none;
+            display: inline-block;
+            font-size: 16px;
+        }
+        .add-button {
+            margin-top: 10px;
+            cursor: pointer;
+            padding: 10px;
+            border-radius: 5px;
+            background-color: #4CAF50; /* Green */
+            border: none;
+            color: white;
+            text-align: center;
+            text-decoration: none;
+            display: inline-block;
+            font-size: 16px;
+        }
+    </style>
+  </head>
+  <body>
+  <div class="container" align="center">
+    <header>
+      <article><pre>
+## **AdRules**
+
+### *List for blocking ads in the Chinese region*
+</pre></article>
+<img src="https://img.shields.io/github/stars/Cats-Team/AdRules?style=flat-square&color=yellow">
+<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/cats-team/adrules/main?style=flat-square&color=red">
+<img src="https://img.shields.io/github/license/Cats-Team/AdRules?style=flat-square"><br>
+<br>
+    </header>
+    <main>
+      <select class="styled-select">
+       <option value="empty" hidden selected>Choose Your Tool:</option>
+        <optgroup label="Browser & App">
+         <option value="adge">Browser Extension</option>
+         <option value="adgai">AdGuard for Android/iOS</option>
+         <option value="adgwm">AdGuard for Windows/Mac</option>
+        </optgroup>
+        <optgroup label="DNS & Proxy">
+         <option value="adgh">AdGuard Home</option>
+         <option value="sd">SmartDNS</option>
+         <option value="qx">Quantumult X</option>
+         <option value="cla">Clash</option>
+         <option value="mosdns">mosdns</option>
+         <option value="loon">Loon</option>
+         <option value="surge">Surge</option>
+         <option value="singbox">Singbox</option>        
+        </optgroup>
+      </select>
+<article id="adgai" class="hide"><pre>
+### AdGuard for Android / iOS  
+
+<a href="./adblock.txt">AdRules AdBlock List</a><br>
+<button class="copy-button">Copy Link</button>
+<button class="add-button">Add Your Tool</button>
+</pre></article>
+<article id="adgwm" class="hide"><pre>
+### AdGuard for Windows / Mac
+
+<a href="./adblock_plus.txt">AdRules AdBlock List Plus </a><br>
+<button class="copy-button">Copy Link</button>
+<button class="add-button">Add Your Tool</button>
+</pre></article>
+<article id="adge" class="hide"><pre>
+### AdGuard Browser extension / uBlock Origin
+
+<a href="./adblock.txt">AdRules AdBlock List</a><br>
+<button class="copy-button">Copy Link</button>
+<button class="add-button">Add Your Tool</button>
+</pre></article>
+<article id="adgh" class="hide"><pre>
+### AdGuard Home  
+
+<a href="./dns.txt">AdRules DNS List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="sd" class="hide"><pre>
+### SmartDNS
+
+<a href="./smart-dns.conf">AdRules SmartDNS List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="qx" class="hide"><pre>
+### Quantumult X
+
+<a href="./qx.conf">AdRules Quantumult X List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="cla" class="hide"><pre>
+### Clash / Mihomo
+
+<a href="./adrules_domainset.txt">AdRules Clash Domainset List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="mosdns" class="hide"><pre>
+### mosdns
+
+<a href="./mosdns_adrules.txt">AdRules MosDNS List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="loon" class="hide"><pre>
+### Loon 
+
+<a href="./adrules.list">AdRules Ruleset List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="surge" class="hide"><pre>
+### Surge 
+
+<a href="./adrules-surge.conf">AdRules Surge List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+<article id="singbox" class="hide"><pre>
+### Singbox
+
+<a href="./adrules-singbox.srs">AdRules Singbox List </a>
+<button class="copy-button">Copy Link</button>
+</pre></article>
+
+    </main>
+    <footer>
+<article><pre>
+
+( ̄︶ ̄)↗ 
+
+❔Have any questions? Please go to [Chat](https://github.com/Cats-Team/AdRules#chat)  
+📃Want to see the upstream rules? [Source](https://github.com/Cats-Team/AdRules/blob/script/Source.md)  
+🌟Get more or give a star? [GitHub Homepage](https://github.com/Cats-Team/AdRules)</pre></article>
+
+    </footer>
+    <script>
+        const md = new remarkable.Remarkable({
+          html: true,
+          });
+        document.querySelectorAll("article").forEach((art) => {
+          art.innerHTML = md.render(art.querySelector("pre").innerHTML);
+        });
+        document.querySelector("select").addEventListener("change", (e) => {
+          document.querySelectorAll("select ~ article[id].show").forEach((art) => {
+            art.classList.remove("show");
+          });
+          setTimeout(() => {
+            if (e.target.value !== "empty") {
+              document.querySelectorAll("select ~ article[id]").forEach((art) => {
+                if (art.id===e.target.value) {
+                  art.classList.remove("hide");
+                } else {
+                  art.classList.add("hide");
+                }
+              });
+            } else {
+              document.querySelectorAll("select ~ article[id]").forEach((art) => {
+                art.classList.add("hide");
+              });
+            }
+          }, 500);
+          setTimeout(() => {
+            document.querySelectorAll("select ~ article[id]").forEach((art) => {
+              if (art.id===e.target.value) {
+                art.classList.add("show")
+              }
+            });
+          }, 900);
+        });
+    </script>
+      <script>
+const copyButtons = document.querySelectorAll(".copy-button");
+copyButtons.forEach(button => {
+    button.addEventListener('click', () => {
+        let href = button.parentElement.querySelector('a').getAttribute('href');
+        href = href.replace('./', '/');
+        navigator.clipboard.writeText(window.location.origin + href).then(() => {
+            button.innerText = "Copied";
+        }).catch(err => {
+            console.error('Could not copy text: ', err);
+        });
+    });
+});
+
+const addButtons = document.querySelectorAll(".add-button");
+        addButtons.forEach((button) => {
+          button.addEventListener("click", () => {
+            let href = button.parentElement
+              .querySelector("a")
+              .getAttribute("href");
+            href = href.replace("./", "/");
+            const fullUrl =
+              "abp:subscribe?location=" +
+              encodeURIComponent(window.location.origin + href);
+
+            const hideA = document.createElement("a");
+            hideA.style.cssText = "position:absolute;top:-100%";
+            hideA.href = fullUrl;
+            document.body.appendChild(hideA);
+            hideA.click();
+            hideA.remove();
+          });
+        });
+
+document.querySelector("select").value = "empty";
+</script>
+
+  </body>
+  <br>
+</html>
diff --git a/mod/rules/adblock-need-remove.txt b/mod/rules/adblock-need-remove.txt
new file mode 100644
index 0000000000..3e0f674859
--- /dev/null
+++ b/mod/rules/adblock-need-remove.txt
@@ -0,0 +1,9 @@
+||imasdk.googleapis.com^
+
+||bing.com/fd/ls/GLinkPing.aspx?
+
+||bing.com^*/glinkping.aspx$ping,xmlhttprequest
+
+||bing.com/fd/ls/
+
+||gia.jd.com^
diff --git a/mod/rules/adblock-rules.txt b/mod/rules/adblock-rules.txt
new file mode 100644
index 0000000000..6140da1d78
--- /dev/null
+++ b/mod/rules/adblock-rules.txt
@@ -0,0 +1,128 @@
+! ------加强屏蔽Start------ !
+
+!酷安"提到的好物"
+||coolapk.com/v6/page/dataList?$replace=/extra_entities//
+||coolapk.com/v6/feed/detail?$replace=/extra_entities//
+||coolapk.com/v6/main/indexV?$replace=/extra_entities//
+||coolapk.com/v6/feed/detail?$replace=/extra_title//
+||coolapk.com/v6/feed/detail?$replace=/include_goods//
+
+!去除"什么值得买"
+||coolapk.com/v6/main/indexV8?$replace=/\{"entityType":"card"\,"entityTemplate":"listCard".*?\}\,\{"id/{"id/
+!去除热搜
+||coolapk.com/v6/main/init?$replace=/\{"data":\[\{"entityType":"card"\,"entityTemplate":"textCard"\,"title":"\\u70ed\\u95e8\\u641c\\u7d22".*?\}\,\{"entityType":"card"\,"entityTemplate":"configCard"/\{"data":[\{"entityType":"card"\,"entityTemplate":"configCard"/
+||coolapk.com/v6/search?type=hotSearch$replace=/\{"data":\[.*\]/{"data":[]/
+!去除随机应用推荐
+||coolapk.com/v6/main/indexV8?$replace=/\,\{.*?"entityType": "card"\,"entityTemplate":"apkImageCard".*?\}\,\{"id"/,{"id"/
+!去除评论区下某广告
+||coolapk.com/v6/feed/detail?$replace=/detailSponsorCard//
+
+! 信息流及评论区广告
+||ctobsnssdk.com^
+||pangolin.snssdk.com^
+||pangolin-sdk-toutiao.com^
+||pangolin-sdk-toutiao-b.com^
+||pglstatp-toutiao.com^
+||umeng.com^
+||tnc*.zijieapi.com^$app
+! 帖子详情好物推荐
+||api2.coolapk.com/v6/feed/detail$replace=/"_ids":\[.*?]\,"":\[.*?]\,/ /
+! 帖子详情赞助内容
+||api2.coolapk.com/v6/feed/detail$replace=/\,"":{.*}/}}/
+! 发现页去除酷品
+||api2.coolapk.com/v6/main/init$replace=/{"id":1170.*?}\,/ /
+! 应用游戏页去除推广视频
+||api2.coolapk.com/v6/page/dataList$replace=/{"entityType":"card"\,"entityTemplate":"apkImageCard".*?\\u0022}"}\,/ /
+! 去除首页还有什么值得买推广
+||api2.coolapk.com/v6/main/indexV8$replace=/{"entityType":"card"\,"entityTemplate":"listCard".*?}"}\,/ / 
+
+!酷我
+||g.koowo.com^$app=cn.kuwo.player
+||fvedio.kuwo.cn^$app=cn.kuwo.player
+||searchrecterm.kuwo.cn^$app=cn.kuwo.player
+||media.cdn.kuwo.cn*tuijian*.json$app=cn.kuwo.player
+
+!全民k歌
+||y.qq.com/music/common/upload/t_kg_activity_show^
+||y.gtimg.cn/music/common//upload/kg_ad^
+||us.l.qq.com/exapp^
+||httpdns.kg.qq.com^
+
+
+
+!抖音屏蔽大部分广告
+!番茄小说广告全屏蔽
+||ads*-normal*.zijieapi.com^
+||p*-ad-sign.byteimg.com^
+
+! 大海影视
+||uty.micocc.com^
+||lanm.huliyinzi.com^
+||ns.adobe.com^
+||swimg2.tsderen.cn^
+||st.huliyinzi.com/ads_app_pic/^
+
+! 快手AD
+||yoda.kwd.inkuai.com^
+||gdfp.gifshow.com^
+||volceapplog.com^
+
+!小睡眠
+||api.psy-1.com/cosleep/newborn/vips/picks^
+||api.psy-1.com/cosleep/newborn/ad^
+||res.psy-1.com/music/recommend^$app=com.psyone.brainmusic
+
+!小米遥控器
+||home.mi.com/cgi-op/api/v1/recommendation/banner^
+
+!由asky88提供的不太记得是什么作用的规则
+
+||xj-landing.gdtimg.com^
+||*/vhot2.qqvideo.tc.qq.com^
+||soup.v.qq.com^
+
+! -------加强屏蔽End------- !
+
+! -------白名单Start------- !
+! AdGuard
+@@||local.adguard.org^
+
+! Edge新闻
+@@||www.msn.cn/spartan/mmx^
+
+! 银联
+@@||yyfweb.postar.cn^
+
+! Bilibili
+bilibili.com#@#.btn-ctnr
+
+! Phone Youku
+@@||vali.cp*.ott.cibntv.net^$domain=m.youku.com,third-party
+
+! 皮皮虾评论区误杀
+@@||i.snssdk.com/bds^$app=com.sup.android.superb
+
+!mydrivers.com
+mydrivers.com#@#.baidu, a[href^=http][target=_blank]
+
+! Bilibiili API
+@@||api.bilibili.com/*^$removeparam
+
+!https://es6.ruanyifeng.com/#docs/module无法加载
+ruanyifeng.com#@#a[href*=".apeclass.com"]
+
+! b站 投币 收藏 #66
+bilibili.com#@#.bili-dialog-m
+
+! 百度云转存 #59
+@@||pan.baidu.com/$removeparam,domain=pan.baidu.com
+
+! 验证码
+cjcx.neea.edu.cn#@#[style="visibility: visible; display: block;"]
+
+! 魅族主题 #90
+@@||ccm*.res.meizu.com/fileserver/operation/ad/img/*.png
+
+#189
+@@||safe.zhanhuo.com^$domain=safe.zhanhuo.com
+! --------白名单End-------- !
diff --git a/mod/rules/dns-rules.txt b/mod/rules/dns-rules.txt
new file mode 100644
index 0000000000..221946db6e
--- /dev/null
+++ b/mod/rules/dns-rules.txt
@@ -0,0 +1,1746 @@
+!--
+!
+! From Acl4ssr BanAD.List And BanProgramAD.list 
+! China Ad Alliance
+||09mk.cn^
+||100peng.com^
+||114la.com^
+||123juzi.net^
+||138lm.com^
+||17un.com^
+||2cnt.net^
+||3gmimo.com^
+||3xx.vip^
+||51.la^
+||51taifu.com^
+||51yes.com^
+||600ad.com^
+||6dad.com^
+||70e.com^
+||86.cc^
+||8le8le.com^
+||8ox.cn^
+||95558000.com^
+||99click.com^
+||99youmeng.com^
+||a3p4.net^
+||acs86.com^
+||acxiom-online.com^
+||ad-brix.com^
+||ad-delivery.net^
+||ad-locus.com^
+||ad-plus.cn^
+||ad7.com^
+||adadapted.com^
+||adadvisor.net^
+||adap.tv^
+||adbana.com^
+||adchina.com^
+||adcome.cn^
+||ader.mobi^
+||adform.net^
+||adfuture.cn^
+||adhouyi.com^
+||adinfuse.com^
+||adirects.com^
+||adjust.io^
+||adkmob.com^
+||adlive.cn^
+||adlocus.com^
+||admaji.com^
+||admin6.com^
+||admon.cn^
+||adnyg.com^
+||adpolestar.net^
+||adpro.cn^
+||adpush.cn^
+||adquan.com^
+||adreal.cn^
+||ads8.com^
+||adsame.com^
+||adsmogo.com^
+||adsmogo.org^
+||adsunflower.com^
+||adsunion.com^
+||adtrk.me^
+||adups.com^
+||aduu.cn^
+||advertising.com^
+||adview.cn^
+||advmob.cn^
+||adwetec.com^
+||adwhirl.com^
+||adwo.com^
+||adxmi.com^
+||adyun.com^
+||adzerk.net^
+||agrant.cn^
+||agrantsem.com^
+||aihaoduo.cn^
+||ajapk.com^
+||allyes.cn^
+||allyes.com^
+||amazon-adsystem.com^
+||analysys.cn^
+||angsrvr.com^
+||anquan.org^
+||anysdk.com^
+||appadhoc.com^
+||appads.com^
+||appboy.com^
+||appdriver.cn^
+||appjiagu.com^
+||applifier.com^
+||appsflyer.com^
+||atdmt.com^
+||baifendian.com^
+||banmamedia.com^
+||baoyatu.cc^
+||baycode.cn^
+||bayimob.com^
+||behe.com^
+||bfshan.cn^
+||biddingos.com^
+||biddingx.com^
+||bjvvqu.cn^
+||bjxiaohua.com^
+||bloggerads.net^
+||branch.io^
+||bsdev.cn^
+||bshare.cn^
+||btyou.com^
+||bugtags.com^
+||buysellads.com^
+||c0563.com^
+||cacafly.com^
+||casee.cn^
+||cdnmaster.com^
+||chance-ad.com^
+||chanet.com.cn^
+||chartbeat.com^
+||chartboost.com^
+||chengadx.com^
+||chmae.com^
+||clickadu.com^
+||clicki.cn^
+||clicktracks.com^
+||clickzs.com^
+||cloudmobi.net^
+||cmcore.com^
+||cnxad.com^
+||cnzz.com^
+||cnzzlink.com^
+||cocounion.com^
+||coocaatv.com^
+||cooguo.com^
+||coolguang.com^
+||coremetrics.com^
+||cpmchina.co^
+||cpx24.com^
+||crasheye.cn^
+||crosschannel.com^
+||ctrmi.com^
+||customer-security.online^
+||daoyoudao.com^
+||datouniao.com^
+||ddapp.cn^
+||dianjoy.com^
+||dianru.com^
+||disqusads.com^
+||domob.cn^
+||domob.com.cn^
+||domob.org^
+||dotmore.com.tw^
+||doubleverify.com^
+||doudouguo.com^
+||doumob.com^
+||duanat.com^
+||duiba.com.cn^
+||duomeng.cn^
+||dxpmedia.com^
+||edigitalsurvey.com^
+||eduancm.com^
+||emarbox.com^
+||exosrv.com^
+||fancyapi.com^
+||feitian001.com^
+||feixin2.com^
+||flashtalking.com^
+||fraudmetrix.cn^
+||g1.tagtic.cn^
+||gentags.net^
+||gepush.com^
+||getui.com^
+||glispa.com^
+||go-mpulse.net^
+||go-mpulse^
+||godloveme.cn^
+||gridsum.com^
+||gridsumdissector.cn^
+||gridsumdissector.com^
+||growingio.com^
+||guohead.com^
+||guomob.com^
+||haoghost.com^
+||hivecn.cn^
+||hypers.com^
+||icast.cn^
+||igexin.com^
+||il8r.com^
+||imageter.com^
+||immob.cn^
+||inad.com^
+||inmobi.cn^
+||inmobi.net^
+||inmobicdn.cn^
+||inmobicdn.net^
+||innity.com^
+||instabug.com^
+||intely.cn^
+||iperceptions.com^
+||ipinyou.com^
+||irs01.com^
+||irs01.net^
+||irs09.com^
+||istreamsche.com^
+||jesgoo.com^
+||jiaeasy.net^
+||jiguang.cn^
+||jisucn.com^
+||jmgehn.cn^
+||jpush.cn^
+||jusha.com^
+||juzi.cn^
+||juzilm.com^
+||kejet.com^
+||kejet.net^
+||keydot.net^
+||keyrun.cn^
+||kmd365.com^
+||krux.net^
+||lnk0.com^
+||lnk8.cn^
+||localytics.com^
+||lomark.cn^
+||lotuseed.com^
+||lrswl.com^
+||lufax.com^
+||madhouse.cn^
+||madmini.com^
+||madserving.com^
+||magicwindow.cn^
+||mathtag.com^
+||maysunmedia.com^
+||mbai.cn^
+||mediaplex.com^
+||mediav.com^
+||megajoy.com^
+||mgogo.com^
+||miaozhen.com^
+||microad-cn.com^
+||miidi.net^
+||mijifen.com^
+||mixpanel.com^
+||mjmobi.com^
+||mng-ads.com^
+||moad.cn^
+||moatads.com^
+||mobaders.com^
+||mobclix.com^
+||mobgi.com^
+||mobisage.cn^
+||mobvista.com^
+||moogos.com^
+||mopub.com^
+||moquanad.com^
+||mpush.cn^
+||mxpnl.com^
+||myhug.cn^
+||mzy2014.com^
+||networkbench.com^
+||ninebox.cn^
+||nylalobghyhirgh.com^
+||o2omobi.com^
+||oadz.com^
+||oneapm.com^
+||onetad.com^
+||optaim.com^
+||optimix.asia^
+||optimix.cn^
+||optimizelyapis.com^
+||overture.com^
+||p0y.cn^
+||pagechoice.net^
+||pingdom.net^
+||plugrush.com^
+||popin.cc^
+||pro.cn^
+||publicidad.net^
+||publicidad.tv^
+||pubmatic.com^
+||pubnub.com^
+||qcl777.com^
+||qiyou.com^
+||qtmojo.com^
+||quantcount.com^
+||qucaigg.com^
+||qumi.com^
+||qxxys.com^
+||reachmax.cn^
+||responsys.net^
+||revsci.net^
+||rlcdn.com^
+||rtbasia.com^
+||sanya1.com^
+||scupio.com^
+||serving-sys.com^
+||shuiguo.com^
+||shuzilm.cn^
+||sitemeter.com^
+||sitescout.com^
+||sitetag.us^
+||smartmad.com^
+||social-touch.com^
+||somecoding.com^
+||sponsorpay.com^
+||stargame.com^
+||stg8.com^
+||switchadhub.com^
+||sycbbs.com^
+||synacast.com^
+||sysdig.com^
+||talkingdata.com^
+||talkingdata.net^
+||tansuotv.com^
+||tanv.com^
+||tanx.com^
+||tapjoy.cn^
+||th7.cn^
+||thoughtleadr.com^
+||tianmidian.com^
+||tiqcdn.com^
+||touclick.com^
+||trafficjam.cn^
+||trafficmp.com^
+||tuia.cn^
+||ueadlian.com^
+||uerzyr.cn^
+||ugdtimg.com^
+||ugvip.com^
+||ujian.cc^
+||ukeiae.com^
+||umeng.co^
+||umeng.com^
+||umtrack.com^
+||unimhk.com^
+||union-wifi.com^
+||union001.com^
+||unionsy.com^
+||unlitui.com^
+||uri6.com^
+||ushaqi.com^
+||usingde.com^
+||uuzu.com^
+||uyunad.com^
+||vamaker.com^
+||vlion.cn^
+||voiceads.cn^
+||voiceads.com^
+||vpon.com^
+||vungle.cn^
+||vungle.com^
+||waps.cn^
+||wapx.cn^
+||webterren.com^
+||whpxy.com^
+||winads.cn^
+||winasdaq.com^
+||wiyun.com^
+||wooboo.com.cn^
+||wqmobile.com^
+||wrating.com^
+||wumii.cn^
+||xcy8.com^
+||xdrig.com^
+||xiaozhen.com^
+||xibao100.com^
+||xtgreat.com^
+||xy.com^
+||yandui.com^
+||yigao.com^
+||yijifen.com^
+||yinooo.com^
+||yiqifa.com^
+||yiwk.com^
+||ylunion.com^
+||ymapp.com^
+||ymcdn.cn^
+||yongyuelm.com^
+||yooli.com^
+||youmi.net^
+||youxiaoad.com^
+||yoyi.com.cn^
+||yoyi.tv^
+||yrxmr.com^
+||ysjwj.com^
+||yunjiasu.com^
+||yunpifu.cn^
+||zampdsp.com^
+||zamplus.com^
+||zcdsp.com^
+||zhidian3g.cn^
+||zhiziyun.com^
+||zhjfad.com^
+||zqzxz.com^
+||zzsx8.com^
+!
+!
+!---
+!
+!
+! Global Ad Alliance
+||acuityplatform.com^
+||ad-stir.com^
+||ad-survey.com^
+||ad4game.com^
+||adcloud.jp^
+||adcolony.com^
+||addthis.com^
+||adfurikun.jp^
+||adhigh.net^
+||adhood.com^
+||adinall.com^
+||adition.com^
+||adk2x.com^
+||admarket.mobi^
+||admarvel.com^
+||admedia.com^
+||adnxs.com^
+||adotmob.com^
+||adperium.com^
+||adriver.ru^
+||adroll.com^
+||adsco.re^
+||adservice.com^
+||adsrvr.org^
+||adsymptotic.com^
+||adtaily.com^
+||adtech.de^
+||adtechjp.com^
+||adtechus.com^
+||airpush.com^
+||am15.net^
+||amobee.com^
+||appier.net^
+||applift.com^
+||apsalar.com^
+||atas.io^
+||awempire.com^
+||axonix.com^
+||beintoo.com^
+||bepolite.eu^
+||bidtheatre.com^
+||bidvertiser.com^
+||blismedia.com^
+||brucelead.com^
+||bttrack.com^
+||casalemedia.com^
+||celtra.com^
+||channeladvisor.com^
+||connexity.net^
+||criteo.com^
+||criteo.net^
+||csbew.com^
+||directrev.com^
+||dumedia.ru^
+||effectivemeasure.com^
+||effectivemeasure.net^
+||eqads.com^
+||everesttech.net^
+||exoclick.com^
+||extend.tv^
+||eyereturn.com^
+||fastapi.net^
+||fastclick.com^
+||fastclick.net^
+||flurry.com^
+||gosquared.com^
+||gtags.net^
+||heyzap.com^
+||histats.com^
+||hitslink.com^
+||hot-mob.com^
+||hyperpromote.com^
+||i-mobile.co.jp^
+||imrworldwide.com^
+||inmobi.com^
+||inner-active.mobi^
+||intentiq.com^
+||inter1ads.com^
+||ipredictive.com^
+||ironsrc.com^
+||iskyworker.com^
+||jizzads.com^
+||juicyads.com^
+||kochava.com^
+||leadbolt.com^
+||leadbolt.net^
+||leadboltads.net^
+||leadboltapps.net^
+||leadboltmobile.net^
+||lenzmx.com^
+||liveadvert.com^
+||marketgid.com^
+||marketo.com^
+||mdotm.com^
+||medialytics.com^
+||medialytics.io^
+||meetrics.com^
+||meetrics.net^
+||mgid.com^
+||millennialmedia.com^
+||mobadme.jp^
+||mobfox.com^
+||mobileadtrading.com^
+||mobilityware.com^
+||mojiva.com^
+||mookie1.com^
+||msads.net^
+||mydas.mobi^
+||nend.net^
+||netshelter.net^
+||nexage.com^
+||owneriq.net^
+||pixels.asia^
+||plista.com^
+||popads.net^
+||powerlinks.com^
+||propellerads.com^
+||quantserve.com^
+||rayjump.com^
+||revdepo.com^
+||rubiconproject.com^
+||sape.ru^
+||scorecardresearch.com^
+||segment.com^
+||serving-sys.com^
+||sharethis.com^
+||smaato.com^
+||smaato.net^
+||smartadserver.com^
+||smartnews-ads.com^
+||startapp.com^
+||startappexchange.com^
+||statcounter.com^
+||steelhousemedia.com^
+||stickyadstv.com^
+||supersonic.com^
+||taboola.com^
+||tapjoy.com^
+||tapjoyads.com^
+||trafficjunky.com^
+||trafficjunky.net^
+||tribalfusion.com^
+||turn.com^
+||uberads.com^
+||vidoomy.com^
+||viglink.com^
+||voicefive.com^
+||wedolook.com^
+||yadro.ru^
+||yengo.com^
+||zedo.com^
+||zemanta.com^
+!
+!
+!-- 
+!
+! App Ads
+! 163
+||a.youdao.com^
+||adgeo.corp.163.com^
+||analytics.126.net^
+||bobo.corp.163.com^
+||c.youdao.com^
+||clkservice.youdao.com^
+||conv.youdao.com^
+||dsp-impr2.youdao.com^
+||dsp.youdao.com^
+||fa.corp.163.com^
+||g.corp.163.com^
+||g1.corp.163.com^
+||gb.corp.163.com^
+||gorgon.youdao.com^
+||haitaoad.nosdn.127.net^
+||iadmatvideo.nosdn.127.net^
+||img1.126.net^
+||img2.126.net^
+||ir.mail.126.com^
+||ir.mail.yeah.net^
+||mimg.126.net^
+||nc004x.corp.youdao.com^
+||nc045x.corp.youdao.com^
+||nex.corp.163.com^
+||oimagea2.ydstatic.com^
+||pagechoice.net^
+||prom.gome.com.cn^
+||qchannel0d.cn^
+||qt002x.corp.youdao.com^
+||rlogs.youdao.com^
+||static.flv.uuzuonline.com^
+||tb060x.corp.youdao.com^
+||tb104x.corp.youdao.com^
+||union.youdao.com^
+||wanproxy.127.net^
+||ydpushserver.youdao.com^
+
+! 17173
+||cvda.17173.com^
+||imgapp.yeyou.com^
+||log1.17173.com^
+||s.17173cdn.com^
+||ue.yeyoucdn.com^
+||vda.17173.com^
+
+! 178
+||analytics.wanmei.com^
+||gg.stargame.com^
+
+
+! 360
+||3600.com^
+||gamebox.360.cn^
+||jiagu.360.cn^
+||kuaikan.netmon.360safe.com^
+||leak.360.cn^
+||lianmeng.360.cn^
+||pub.se.360.cn^
+||s.so.360.cn^
+||shouji.360.cn^
+||soft.data.weather.360.cn^
+||stat.360safe.com^
+||stat.m.360.cn^
+||wan.360.cn^
+
+! 58
+||58.xgo.com.cn^
+||brandshow.58.com^
+||imp.xgo.com.cn^
+||jing.58.com^
+||stat.xgo.com.cn^
+||track.58.com^
+||tracklog.58.com^
+
+! Alibaba
+||acjs.aliyun.com^
+||adash-c.m.taobao.com^
+||adash-c.ut.taobao.com^
+||adashx4yt.m.taobao.com^
+||adashxgc.ut.taobao.com^
+||afp.alicdn.com^
+||ai.m.taobao.com^
+||alipaylog.com^
+||atanx.alicdn.com^
+||atanx2.alicdn.com^
+||fav.simba.taobao.com^
+||g.click.taobao.com^
+||g.tbcdn.cn^
+||gma.alicdn.com^
+||gtmsdd.alicdn.com^
+||hydra.alibaba.com^
+||m.simba.taobao.com^
+||pindao.huoban.taobao.com^
+||re.m.taobao.com^
+||redirect.simba.taobao.com^
+||rj.m.taobao.com^
+||sdkinit.taobao.com^
+||show.re.taobao.com^
+||simaba.m.taobao.com^
+||simaba.taobao.com^
+||srd.simba.taobao.com^
+||strip.taobaocdn.com^
+||tns.simba.taobao.com^
+||tyh.taobao.com^
+||userimg.qunar.com^
+||yiliao.hupan.com^
+
+! Adobe
+||3dns-2.adobe.com^
+||3dns-3.adobe.com^
+||activate-sea.adobe.com^
+||activate-sjc0.adobe.com^
+||activate.adobe.com^
+||adobe-dns-2.adobe.com^
+||adobe-dns-3.adobe.com^
+||adobe-dns.adobe.com^
+||ereg.adobe.com^
+||geo2.adobe.com^
+||hl2rcv.adobe.com^
+||hlrcv.stage.adobe.com^
+||lm.licenses.adobe.com^
+||lmlicenses.wip4.adobe.com^
+||na1r.services.adobe.com^
+||na2m-pr.licenses.adobe.com^
+||practivate.adobe.com^
+||wip3.adobe.com^
+||wwis-dubc1-vip60.adobe.com^
+
+! Apple
+||adserver.unityads.unity3d.com^
+
+! AutoHome
+||33.autohome.com.cn^
+||adproxy.autohome.com.cn^
+||al.autohome.com.cn^
+||alert.autohome.com.cn^
+||applogapi.autohome.com.cn^
+||c.autohome.com.cn^
+||cmx.autohome.com.cn^
+||dspmnt.autohome.com.cn^
+||pcd.autohome.com.cn^
+||push.app.autohome.com.cn^
+||pvx.autohome.com.cn^
+||rd.autohome.com.cn^
+||rdx.autohome.com.cn^
+||stats.autohome.com.cn^
+
+! Baidu
+||a.baidu.cn^
+||a.baidu.com^
+||ad.duapps.com^
+||ad.player.baidu.com^
+||adm.baidu.cn^
+||adm.baidu.com^
+||adscdn.baidu.cn^
+||adscdn.baidu.com^
+||adx.xiaodutv.com^
+||ae.bdstatic.com^
+||afd.baidu.cn^
+||afd.baidu.com^
+||als.baidu.cn^
+||als.baidu.com^
+||anquan.baidu.cn^
+||anquan.baidu.com^
+||antivirus.baidu.com^
+||api.mobula.sdk.duapps.com^
+||appc.baidu.cn^
+||appc.baidu.com^
+||as.baidu.cn^
+||as.baidu.com^
+||baichuan.baidu.com^
+||baidu9635.com^
+||baidustatic.com^
+||baidutv.baidu.com^
+||banlv.baidu.com^
+||bar.baidu.com^
+||bdplus.baidu.com^
+||btlaunch.baidu.com^
+||c.baidu.cn^
+||c.baidu.com^
+||cb.baidu.cn^
+||cb.baidu.com^
+||cbjs.baidu.cn^
+||cbjs.baidu.com^
+||cbjslog.baidu.cn^
+||cbjslog.baidu.com^
+||cjhq.baidu.cn^
+||cjhq.baidu.com^
+||cleaner.baidu.com^
+||click.bes.baidu.com^
+||click.hm.baidu.com^
+||click.qianqian.com^
+||cm.baidu.com^
+||cpro.baidu.cn^
+||cpro.baidu.com^
+||cpro.baidustatic.com^
+||cpro.tieba.baidu.com^
+||cpro.zhidao.baidu.com^
+||cpro2.baidu.cn^
+||cpro2.baidu.com^
+||cpu-admin.baidu.com^
+||crs.baidu.cn^
+||crs.baidu.com^
+||datax.baidu.com^
+||dl-vip.bav.baidu.com^
+||dl-vip.pcfaster.baidu.co.th^
+||dl.client.baidu.com^
+||dl.ops.baidu.com^
+||dl1sw.baidu.com^
+||dl2.bav.baidu.com^
+||dlsw.baidu.com^
+||dlsw.br.baidu.com^
+||download.bav.baidu.com^
+||download.sd.baidu.com^
+||drmcmm.baidu.cn^
+||drmcmm.baidu.com^
+||dup.baidustatic.com^
+||dxp.baidu.com^
+||dzl.baidu.com^
+||e.baidu.cn^
+||e.baidu.com^
+||eclick.baidu.cn^
+||eclick.baidu.com^
+||ecma.bdimg.com^
+||ecmb.bdimg.com^
+||ecmc.bdimg.com^
+||eiv.baidu.cn^
+||eiv.baidu.com^
+||em.baidu.com^
+||ers.baidu.com^
+||fc-feed.cdn.bcebos.com^
+||fclick.baidu.com^
+||fexclick.baidu.com^
+||g.baidu.com^
+||gimg.baidu.com^
+||guanjia.baidu.com^
+||hc.baidu.cn^
+||hc.baidu.com^
+||hm.baidu.cn^
+||hm.baidu.com^
+||hmma.baidu.cn^
+||hmma.baidu.com^
+||hpd.baidu.cn^
+||hpd.baidu.com^
+||idm-su.baidu.com^
+||iebar.baidu.com^
+||ikcode.baidu.com^
+||imageplus.baidu.cn^
+||imageplus.baidu.com^
+||img.taotaosou.cn^
+||img01.taotaosou.cn^
+||itsdata.map.baidu.com^
+||j.br.baidu.com^
+||kstj.baidu.com^
+||log.music.baidu.com^
+||log.nuomi.com^
+||m1.baidu.com^
+||ma.baidu.cn^
+||ma.baidu.com^
+||mg09.zhaopin.com^
+||mipcache.bdstatic.com^
+||mobads-logs.baidu.cn^
+||mobads-logs.baidu.com^
+||mobads.baidu.cn^
+||mobads.baidu.com^
+||mpro.baidu.com^
+||mtj.baidu.cn^
+||mtj.baidu.com^
+||neirong.baidu.com^
+||nsclick.baidu.cn^
+||nsclick.baidu.com^
+||nsclickvideo.baidu.com^
+||openrcv.baidu.com^
+||pc.videoclick.baidu.com^
+||pos.baidu.com^
+||pups.baidu.cn^
+||pups.baidu.com^
+||pups.bdimg.com^
+||push.music.baidu.com^
+||push.zhanzhang.baidu.com^
+||qchannel0d.cn^
+||qianclick.baidu.com^
+||release.baidu.com^
+||res.limei.com^
+||res.mi.baidu.com^
+||rigel.baidustatic.com^
+||river.zhidao.baidu.com^
+||rj.baidu.cn^
+||rj.baidu.com^
+||rp.baidu.cn^
+||rp.baidu.com^
+||rplog.baidu.com^
+||s.baidu.com^
+||sclick.baidu.com^
+||sestat.baidu.com^
+||shadu.baidu.com^
+||share.baidu.com^
+||sobar.baidu.com^
+||sobartop.baidu.com^
+||spcode.baidu.cn^
+||spcode.baidu.com^
+||stat.v.baidu.com^
+||su.bdimg.com^
+||su.bdstatic.com^
+||tk.baidu.cn^
+||tk.baidu.com^
+||tkweb.baidu.com^
+||tob-cms.bj.bcebos.com^
+||toolbar.baidu.com^
+||tracker.baidu.com^
+||tuijian.baidu.com^
+||tuisong.baidu.cn^
+||tuisong.baidu.com^
+||ubmcmm.baidustatic.com^
+||ucstat.baidu.cn^
+||ucstat.baidu.com^
+||ulic.baidu.com^
+||ulog.imap.baidu.com^
+||union.baidu.cn^
+||union.baidu.com^
+||unionimage.baidu.com^
+||utility.baidu.cn^
+||utility.baidu.com^
+||utk.baidu.cn^
+||utk.baidu.com^
+||videopush.baidu.cn^
+||videopush.baidu.com^
+||vv84.bj.bcebos.com^
+||w.gdown.baidu.com^
+||w.x.baidu.com^
+||wangmeng.baidu.cn^
+||wangmeng.baidu.com^
+||weishi.baidu.com^
+||wenku-cms.bj.bcebos.com^
+||wisepush.video.baidu.com^
+||wm.baidu.cn^
+||wm.baidu.com^
+||znsv.baidu.cn^
+||znsv.baidu.com^
+||zz.bdstatic.com^
+||zzy1.quyaoya.com^
+
+! Book-app 起点 掌阅 书旗 宜搜
+||ad.zhangyue.com^
+||adm.ps.easou.com^
+||aishowbger.com^
+||api.itaoxiaoshuo.com^
+||assets.ps.easou.com^
+||bbcoe.cn^
+||cj.qidian.com^
+||dkeyn.com^
+||drdwy.com^
+||e.aa985.cn^
+||e.v02u9.cn^
+||e701.net^
+||ehxyz.com^
+||ethod.gzgmjcx.com^
+||focuscat.com^
+||game.qidian.com^
+||hdswgc.com^
+||jyd.fjzdmy.com^
+||m.ourlj.com^
+||m.txtxr.com^
+||m.vsxet.com^
+||miam4.cn^
+||o.if.qidian.com^
+||p.vq6nsu.cn^
+||picture.duokan.com^
+||push.zhangyue.com^
+||pyerc.com^
+||s1.cmfu.com^
+||sc.shayugg.com^
+||sdk.cferw.com^
+||sezvc.com^
+||sys.zhangyue.com^
+||tjlog.ps.easou.com^
+||tongji.qidian.com^
+||ut2.shuqistat.com^
+||xgcsr.com^
+||xjq.jxmqkj.com^
+||xpe.cxaerp.com^
+||xtzxmy.com^
+||xyrkl.com^
+||zhuanfakong.com^
+
+! ByteDance 头条抖音
+||ad.toutiao.com^
+||dsp.toutiao.com^
+||ic.snssdk.com^
+||log.snssdk.com^
+||nativeapp.toutiao.com^
+||pangolin-sdk-toutiao-b.com^
+||pangolin-sdk-toutiao.com^
+||pangolin.snssdk.com^
+||partner.toutiao.com^
+||pglstatp-toutiao.com^
+||sm.toutiao.com^
+
+! Dangdang
+||a.dangdang.com^
+||click.dangdang.com^
+||schprompt.dangdang.com^
+||t.dangdang.com^
+
+! Duomi
+||ad.duomi.com^
+||boxshows.com^
+
+! Facebook
+||staticxx.facebook.com^
+
+! Fang
+||click1n.soufun.com^
+||clickm.fang.com^
+||clickn.fang.com^
+||countpvn.light.fang.com^
+||countubn.light.soufun.com^
+||mshow.fang.com^
+||tongji.home.soufun.com^
+
+! Google
+||admob.com^
+||ads.gmodules.com^
+||ads.google.com^
+||adservice.google.com^
+||afd.l.google.com^
+||badad.googleplex.com^
+||csi.gstatic.com^
+||doubleclick.com^
+||doubleclick.net^
+||google-analytics.com^
+||googleadservices.com^
+||googleadsserving.cn^
+||googlecommerce.com^
+||googlesyndication.com^
+||mobileads.google.com^
+||pagead-tpc.l.google.com^
+||pagead.google.com^
+||pagead.l.google.com^
+||service.urchin.com^
+
+! JD
+||ads.union.jd.com^
+||c-nfa.jd.com^
+||cps.360buy.com^
+||img-x.jd.com^
+||jrclick.jd.com^
+||jzt.jd.com^
+||policy.jd.com^
+||stat.m.jd.com^
+
+! Kugou
+||ads.service.kugou.com^
+||adsfile.bssdlbig.kugou.com^
+||d.kugou.com^
+||downmobile.kugou.com^
+||gad.kugou.com^
+||game.kugou.com^
+||gamebox.kugou.com^
+||gcapi.sy.kugou.com^
+||gg.kugou.com^
+||install.kugou.com^
+||install2.kugou.com^
+||kgmobilestat.kugou.com^
+||kuaikaiapp.com^
+||log.stat.kugou.com^
+||log.web.kugou.com^
+||minidcsc.kugou.com^
+||mo.kugou.com^
+||mobilelog.kugou.com^
+||msg.mobile.kugou.com^
+||mvads.kugou.com^
+||p.kugou.com^
+||push.mobile.kugou.com^
+||rtmonitor.kugou.com^
+||sdn.kugou.com^
+||tj.kugou.com^
+||update.mobile.kugou.com^
+
+! Kuwo
+||apk.shouji.koowo.com^
+||deliver.kuwo.cn^
+||g.koowo.com^
+||g.kuwo.cn^
+||kwmsg.kuwo.cn^
+||log.kuwo.cn^
+||mobilead.kuwo.cn^
+||msclick2.kuwo.cn^
+||msphoneclick.kuwo.cn^
+||updatepage.kuwo.cn^
+||wa.kuwo.cn^
+||webstat.kuwo.cn^
+
+! Meizu flyme 魅族
+||aider-res.meizu.com^
+||api-flow.meizu.com^
+||api-game.meizu.com^
+||api-push.meizu.com^
+||aries.mzres.com^
+||bro.flyme.cn^
+||cal.meizu.com^
+||ebook.meizu.com^
+||ebook.res.meizu.com^
+||game-res.meizu.com^
+||game.res.meizu.com^
+||infocenter.meizu.com^
+||openapi-news.meizu.com^
+||push.res.meizu.com^
+||reader.meizu.com^
+||reader.res.meizu.com^
+||t-e.flyme.cn^
+||t-flow.flyme.cn^
+||tongji-res1.meizu.com^
+||tongji.meizu.com^
+||umid.orion.meizu.com^
+||upush.res.meizu.com^
+||uxip.meizu.com^
+
+! Meitu
+||a.koudai.com^
+||adui.tg.meitu.com^
+||corp.meitu.com^
+||dc.meitustat.com^
+||gg.meitu.com^
+||mdc.meitustat.com^
+||meitubeauty.meitudata.com^
+||message.meitu.com^
+||rabbit.meitustat.com^
+||rabbit.tg.meitu.com^
+||tuiguang.meitu.com^
+||xiuxiu.android.dl.meitu.com^
+||xiuxiu.mobile.meitudata.com^
+
+! Miui 小米
+||a.market.xiaomi.com^
+||ad.xiaomi.com^
+||ad1.xiaomi.com^
+||adv.sec.intl.miui.com^
+||adv.sec.miui.com^
+||bss.pandora.xiaomi.com^
+||d.g.mi.com^
+||data.mistat.xiaomi.com^
+||de.pandora.xiaomi.com^
+||dvb.pandora.xiaomi.com^
+||jellyfish.pandora.xiaomi.com^
+||migc.g.mi.com^
+||migcreport.g.mi.com^
+||notice.game.xiaomi.com^
+||ppurifier.game.xiaomi.com^
+||r.browser.miui.com^
+||security.browser.miui.com^
+||shenghuo.xiaomi.com^
+||stat.pandora.xiaomi.com^
+||union.mi.com^
+||wtradv.market.xiaomi.com^
+
+! Moji
+||ad.api.moji.com^
+||app.moji001.com^
+||cdn.moji002.com^
+||cdn2.moji002.com^
+||fds.api.moji.com^
+||log.moji.com^
+||stat.moji.com^
+||ugc.moji001.com^
+
+! Qingting.fm
+||ad.qingting.fm^
+||admgr.qingting.fm^
+||dload.qd.qingting.fm^
+||logger.qingting.fm^
+||s.qd.qingting.fm^
+||s.qd.qingtingfm.com^
+
+! QQ
+
+||adsmind.apdcdn.tc.qq.com^
+||adsmind.gdtimg.com^
+||adsmind.tc.qq.com^
+||pgdt.gtimg.cn^
+||pgdt.gtimg.com^
+||pgdt.ugdtimg.com^
+||splashqqlive.gtimg.com^
+||wa.gtimg.com^
+||wxsnsdy.wxs.qq.com^
+||wxsnsdythumb.wxs.qq.com^
+||act.qq.com^
+||ad.qun.qq.com^
+||adsfile.qq.com^
+||bugly.qq.com^
+||buluo.qq.com^
+||e.qq.com^
+||gdt.qq.com^
+||l.qq.com^
+||monitor.qq.com^
+||pingma.qq.com^
+||pingtcss.qq.com^
+||report.qq.com^
+||tajs.qq.com^
+||tcss.qq.com^
+||uu.qq.com^
+
+! RenRen
+||ebp.renren.com^
+||jebe.renren.com^
+||jebe.xnimg.cn^
+
+! Sina
+||ad.sina.com.cn^
+||adbox.sina.com.cn^
+||add.sina.com.cn^
+||adimg.mobile.sina.cn^
+||adm.sina.com.cn^
+||alitui.weibo.com.cn^
+||biz.weibo.com.cn^
+||cre.dp.sina.cn^
+||dcads.sina.com.cn^
+||dd.sina.com.cn^
+||dmp.sina.com.cn^
+||game.weibo.com.cn^
+||gw5.push.mcp.weibo.cn^
+||leju.sina.com.cn^
+||log.mix.sina.com.cn^
+||mobileads.dx.cn^
+||newspush.sinajs.cn^
+||pay.mobile.sina.cn^
+||sax.mobile.sina.cn^
+||sax.sina.com.cn^
+||saxd.sina.com.cn^
+||sdkapp.mobile.sina.cn^
+||sdkapp.uve.weibo.com^
+||sdkclick.mobile.sina.cn^
+||slog.sina.com.cn^
+||trends.mobile.sina.cn^
+||tui.weibo.com^
+||u1.img.mobile.sina.cn^
+||wax.weibo.com.cn^
+||wbapp.mobile.sina.cn^
+||wbapp.uve.weibo.com^
+||wbclick.mobile.sina.cn^
+||wbpctips.mobile.sina.cn^
+||zymo.mps.weibo.com^
+
+! Sougou
+||123.sogou.com^
+||123.sogoucdn.com^
+||adsence.sogou.com^
+||amfi.gou.sogou.com^
+||brand.sogou.com^
+||cpc.sogou.com^
+||epro.sogou.com^
+||fair.sogou.com^
+||files2.sogou.com^
+||galaxy.sogoucdn.com^
+||golden1.sogou.com^
+||goto.sogou.com^
+||inte.sogou.com^
+||iwan.sogou.com^
+||lu.sogou.com^
+||lu.sogoucdn.com^
+||pb.sogou.com^
+||pd.sogou.com^
+||pv.sogou.com^
+||theta.sogou.com^
+||wan.sogou.com^
+||wangmeng.sogou.com^
+
+! Teleplus
+||applovin.com^
+||guangzhuiyuan.com^
+
+! Twitter
+||ads-twitter.com^
+||ads.twitter.com^
+||analytics.twitter.com^
+||p.twitter.com^
+||scribe.twitter.com^
+||syndication-o.twitter.com^
+||syndication.twitter.com^
+||tellapart.com^
+||urls.api.twitter.com^
+
+! UC ali
+||adslot.uc.cn^
+||api.mp.uc.cn^
+||applog.uc.cn^
+||client.video.ucweb.com^
+||cms.ucweb.com^
+||dispatcher.upmc.uc.cn^
+||huichuan.sm.cn^
+||log.cs.pp.cn^
+||m.uczzd.cn^
+||patriot.cs.pp.cn^
+||puds.ucweb.com^
+||server.m.pp.cn^
+||track.uc.cn^
+||u.uc123.com^
+||u.ucfly.com^
+||uc.ucweb.com^
+||ucsec.ucweb.com^
+||ucsec1.ucweb.com^
+
+! Weifeng
+||aoodoo.feng.com^
+||fengbuy.com^
+||push.feng.com^
+||we.tm^
+||yes1.feng.com^
+
+! WPS Office
+||ad.docer.wps.cn^
+||adm.zookingsoft.com^
+||bannera.kingsoft-office-service.com^
+||bole.shangshufang.ksosoft.com^
+||counter.kingsoft.com^
+||docerad.wps.cn^
+||gou.wps.cn^
+||hoplink.ksosoft.com^
+||ic.ksosoft.com^
+||img.gou.wpscdn.cn^
+||info.wps.cn^
+||ios-informationplatform.wps.cn^
+||minfo.wps.cn^
+||mo.res.wpscdn.cn^
+||news.docer.com^
+||notify.wps.cn^
+||pc.uf.ksosoft.com^
+||pcfg.wps.cn^
+||pixiu.shangshufang.ksosoft.com^
+||push.wps.cn^
+||rating6.kingsoft-office-service.com^
+||up.wps.kingsoft.com^
+||wpsweb-dc.wps.cn^
+
+! Wi-Fi key
+||c.51y5.net^
+||cdsget.51y5.net^
+||news-imgpb.51y5.net^
+||wifiapidd.51y5.net^
+||wkanc.51y5.net^
+
+! Ximalaya 喜马拉雅
+||adse.ximalaya.com^
+||linkeye.ximalaya.com^
+||location.ximalaya.com^
+||xdcs-collector.ximalaya.com^
+
+! Xunlei 迅雷app&看看
+||biz5.kankan.com^
+||float.kankan.com^
+||hub5btmain.sandai.net^
+||hub5emu.sandai.net^
+||logic.cpm.cm.kankan.com^
+||upgrade.xl9.xunlei.com^
+
+! Yahoo
+||ad.wretch.cc^
+||ads.yahoo.com^
+||adserver.yahoo.com^
+||adss.yahoo.com^
+||analytics.query.yahoo.com^
+||analytics.yahoo.com^
+||ane.yahoo.co.jp^
+||ard.yahoo.co.jp^
+||beap-bc.yahoo.com^
+||clicks.beap.bc.yahoo.com^
+||comet.yahoo.com^
+||doubleplay-conf-yql.media.yahoo.com^
+||flurry.com^
+||gemini.yahoo.com^
+||geo.yahoo.com^
+||js-apac-ss.ysm.yahoo.com^
+||locdrop.query.yahoo.com^
+||onepush.query.yahoo.com^
+||p3p.yahoo.com^
+||partnerads.ysm.yahoo.com^
+||ws.progrss.yahoo.com^
+||yads.yahoo.co.jp^
+||ybp.yahoo.com^
+
+
+! Ads in Video apps 下面都是 ********************
+
+! 6间房
+||shrek.6.cn^
+||simba.6.cn^
+||union.6.cn^
+
+! Baofeng 暴风影音
+||logger.baofeng.com^
+||xs.houyi.baofeng.net^
+
+! Douyu
+||dotcounter.douyutv.com^
+
+! Fenghuang 凤凰TV
+||api.newad.ifeng.com^
+||exp.3g.ifeng.com^
+||game.ifeng.com^
+||iis3g.deliver.ifeng.com^
+||mfp.deliver.ifeng.com^
+||stadig.ifeng.com^
+
+! Funshion 风行
+||adm.funshion.com^
+||jobsfe.funshion.com^
+||po.funshion.com^
+||pub.funshion.com^
+||pv.funshion.com^
+||stat.funshion.com^
+
+! iqiyi PPS 爱奇艺
+||ad.m.iqiyi.com^
+||afp.iqiyi.com^
+||c.uaa.iqiyi.com^
+||cloudpush.iqiyi.com^
+||cm.passport.iqiyi.com^
+||cupid.iqiyi.com^
+||emoticon.sns.iqiyi.com^
+||gamecenter.iqiyi.com^
+||ifacelog.iqiyi.com^
+||mbdlog.iqiyi.com^
+||meta.video.qiyi.com^
+||msg.71.am^
+||msg1.video.qiyi.com^
+||msg2.video.qiyi.com^
+||paopao.iqiyi.com^
+||paopaod.qiyipic.com^
+||policy.video.iqiyi.com^
+||yuedu.iqiyi.com^
+
+! Ku6 酷6
+||gug.ku6cdn.com^
+||pq.stat.ku6.com^
+||st.vq.ku6.cn^
+||static.ku6.com^
+
+! LeTV 乐视
+||1.letvlive.com^
+||2.letvlive.com^
+||ark.letv.com^
+||dc.letv.com^
+||fz.letv.com^
+||g3.letv.com^
+||game.letvstore.com^
+||i0.letvimg.com^
+||i3.letvimg.com^
+||minisite.letv.com^
+||n.mark.letv.com^
+||pro.hoye.letv.com^
+||pro.letv.com^
+||stat.letv.com^
+||static.app.m.letv.com^
+
+! MGTV 芒果TV
+||click.hunantv.com^
+||da.hunantv.com^
+||da.mgtv.com^
+||log.hunantv.com^
+||log.v2.hunantv.com^
+||p2.hunantv.com^
+||res.hunantv.com^
+
+! Sohu 搜狐
+||888.tv.sohu.com^
+||adnet.sohu.com^
+||ads.sohu.com^
+||aty.hd.sohu.com^
+||aty.sohu.com^
+||bd.hd.sohu.com^
+||click.hd.sohu.com^
+||click2.hd.sohu.com^
+||ctr.hd.sohu.com^
+||epro.sogou.com^
+||epro.sohu.com^
+||go.sohu.com^
+||golden1.sogou.com^
+||golden1.sohu.com^
+||hui.sohu.com^
+||inte.sogou.com^
+||inte.sogoucdn.com^
+||inte.sohu.com^
+||lm.tv.sohu.com^
+||lu.sogoucdn.com^
+||pb.hd.sohu.com^
+||push.tv.sohu.com^
+||pv.hd.sohu.com^
+||pv.sogou.com^
+||pv.sohu.com^
+||theta.sogoucdn.com^
+||um.hd.sohu.com^
+||uranus.sogou.com^
+||uranus.sohu.com^
+||wan.sohu.com^
+||wl.hd.sohu.com^
+||yule.sohu.com^
+
+! PPTV、PPLive
+||afp.pplive.com^
+||app.aplus.pptv.com^
+||as.aplus.pptv.com^
+||asimgs.pplive.cn^
+||de.as.pptv.com^
+||jp.as.pptv.com^
+||pp2.pptv.com^
+||stat.pptv.com^
+
+! QQ Live
+||btrace.video.qq.com^
+||c.l.qq.com^
+||dp3.qq.com^
+||livep.l.qq.com^
+||lives.l.qq.com^
+||livew.l.qq.com^
+||mcgi.v.qq.com^
+||mdevstat.qqlive.qq.com^
+||omgmta1.qq.com^
+||p.l.qq.com^
+||rcgi.video.qq.com^
+||t.l.qq.com^
+||u.l.qq.com^
+
+! Youku & Tudou
+||a-dxk.play.api.3g.youku.com^
+||actives.youku.com^
+||ad.api.3g.tudou.com^
+||ad.api.3g.youku.com^
+||ad.api.mobile.youku.com^
+||ad.mobile.youku.com^
+||adcontrol.tudou.com^
+||adplay.tudou.com^
+||b.smartvideo.youku.com^
+||c.yes.youku.com^
+||dev-push.m.youku.com^
+||dl.g.youku.com^
+||dmapp.youku.com^
+||e.stat.ykimg.com^
+||gamex.mobile.youku.com^
+||goods.tudou.com^
+||hudong.pl.youku.com^
+||hz.youku.com^
+||iwstat.tudou.com^
+||iyes.youku.com^
+||l.ykimg.com^
+||l.youku.com^
+||lstat.youku.com^
+||lvip.youku.com^
+||mobilemsg.youku.com^
+||msg.youku.com^
+||myes.youku.com^
+||nstat.tudou.com^
+||p-log.ykimg.com^
+||p.l.ykimg.com^
+||p.l.youku.com^
+||passport-log.youku.com^
+||push.m.youku.com^
+||r.l.youku.com^
+||s.p.youku.com^
+||sdk.m.youku.com^
+||stat.tudou.com^
+||stat.youku.com^
+||stats.tudou.com^
+||store.tv.api.3g.youku.com^
+||store.xl.api.3g.youku.com^
+||tdrec.youku.com^
+||test.ott.youku.com^
+||v.l.youku.com^
+||val.api.youku.com^
+||wan.youku.com^
+||ykatr.youku.com^
+||ykrec.youku.com^
+||ykrectab.youku.com^
+
+! Youtube
+||azabu-u.ac.jp^
+||couchcoaster.jp^
+||delivery.dmkt-sp.jp^
+||ehg-youtube.hitbox.com^
+||nichibenren.or.jp^
+||nicorette.co.kr^
+||ssl-youtube.2cnt.net^
+||youtube.112.2o7.net^
+||youtube.2cnt.net^
+
+! Others ads in Video apps
+||acsystem.wasu.tv^
+||ads.wasu.tv^
+||afp.wasu.tv^
+||c.algovid.com^
+||gg.jtertp.com^
+||gridsum-vd.cntv.cn^
+||kwflvcdn.000dn.com^
+||logstat.t.sfht.com^
+||match.rtbidder.net^
+||n-st.vip.com^
+||pop.uusee.com^
+||static.duoshuo.com^
+||t.cr-nielsen.com^
+||terren.cntv.cn^
+
+!
+!
+!---
+!
+! Website Ads
+||1.win7china.com^
+||168.it168.com^
+||2.win7china.com^
+||801.tianya.cn^
+||801.tianyaui.cn^
+||803.tianya.cn^
+||803.tianyaui.cn^
+||806.tianya.cn^
+||806.tianyaui.cn^
+||808.tianya.cn^
+||808.tianyaui.cn^
+||92x.tumblr.com^
+||a1.itc.cn^
+||ad-channel.wikawika.xyz^
+||ad-display.wikawika.xyz^
+||ad.12306.cn^
+||ad.3.cn^
+||ad.95306.cn^
+||ad.caiyunapp.com^
+||ad.cctv.com^
+||ad.cmvideo.cn^
+||ad.csdn.net^
+||ad.ganji.com^
+||ad.house365.com^
+||ad.thepaper.cn^
+||ad.unimhk.com^
+||adadmin.house365.com^
+||adhome.1fangchan.com^
+||adm.10jqka.com.cn^
+||ads.csdn.net^
+||ads.feedly.com^
+||ads.genieessp.com^
+||ads.house365.com^
+||ads.linkedin.com^
+||adshownew.it168.com^
+||adv.ccb.com^
+||advert.api.thejoyrun.com^
+||analytics.ganji.com^
+||api-deal.kechenggezi.com^
+||api-z.weidian.com^
+||app-monitor.ele.me^
+||bat.bing.com^
+||bd1.52che.com^
+||bd2.52che.com^
+||bdj.tianya.cn^
+||bdj.tianyaui.cn^
+||beacon.tingyun.com^
+||cdn.jiuzhilan.com^
+||click.cheshi-img.com^
+||click.cheshi.com^
+||click.ganji.com^
+||click.tianya.cn^
+||click.tianyaui.cn^
+||client-api.ele.me^
+||collector.githubapp.com^
+||counter.csdn.net^
+||d0.xcar.com.cn^
+||de.soquair.com^
+||dol.tianya.cn^
+||dol.tianyaui.cn^
+||dw.xcar.com.cn^
+||e.nexac.com^
+||eq.10jqka.com.cn^
+||exp.17wo.cn^
+||game.51yund.com^
+||ganjituiguang.ganji.com^
+||grand.ele.me^
+||hosting.miarroba.info^
+||iadsdk.apple.com^
+||image.gentags.com^
+||its-dori.tumblr.com^
+||log.outbrain.com^
+||m.12306media.com^
+||media.cheshi-img.com^
+||media.cheshi.com^
+||mobile-pubt.ele.me^
+||mobileads.msn.com^
+||n.cosbot.cn^
+||newton-api.ele.me^
+||ozone.10jqka.com.cn^
+||pdl.gionee.com^
+||pica-juicy.picacomic.com^
+||pixel.wp.com^
+||pub.mop.com^
+||push.wandoujia.com^
+||pv.cheshi-img.com^
+||pv.cheshi.com^
+||pv.xcar.com.cn^
+||qdp.qidian.com^
+||res.gwifi.com.cn^
+||ssp.kssws.ks-cdn.com^
+||sta.ganji.com^
+||stat.10jqka.com.cn^
+||stat.it168.com^
+||stats.chinaz.com^
+||stats.developingperspective.com^
+||track.hujiang.com^
+||tracker.yhd.com^
+||tralog.ganji.com^
+||up.qingdaonews.com^
+||vaserviece.10jqka.com.cn^
+! Pcdn BlockList by MkQtS
+! PCDN domains
+||bsccdn.net^
+||dyp2p-ali.douyucdn.cn^
+||dyp2p-hw.douyucdn.cn^
+||kuiniuca.com^
+||onethingpcs.com^
+||p2p-ali.douyucdn.cn^
+||p2p.huya.com^
+||p2p.qq.com^
+||p2pchunk-hw.douyucdn.cn^
+||p2pchunk-table.douyucdn.cn^
+||p2pchunk-ws.douyucdn.cn^
+||p2perrorlog.douyucdn.cn^
+||p2plive-ali.douyucdn.cn^
+||p2plive-ws.douyucdn.cn^
+||p2plog.douyucdn.cn^
+||p2ptun.qq.com^
+||p2pupdate.gamedl.qq.com^
+||p2pupgrade.gamedl.qq.com^
+||p2pvod-ws.douyucdn.cn^
+||pcdn.yximgs.com^
+||pkoplink.com^
+||saxysec.com^
+||stun.douyucdn.cn^
+||stun.hitv.com^
+||stun1.douyucdn.cn^
+||szbdyd.com^
+||uhabo.com^
+||xycdn.com^
+||mcdn.bilivideo.com^
+||mcdn.bilivideo.cn^
+
+! HTTPDNS by MkQtS
+||apidns.kwd.inkuai.com^
+||doh.dns.apple.com^
+||doh.iqiyi.com^
+||doh.ptqy.gitv.tv^
+||dotserver.douyucdn.cn^
+||dns.jd.com^
+||dns.qiyipic.iqiyi.com^
+||dns.weibo.cn^
+||dns.weixin.qq.com^
+||dns.weixin.qq.com.cn^
+||hdns.ksyun.com^
+||httpdns-api.aliyuncs.com^
+||httpdns-browser.platform.dbankcloud.cn^
+||httpdns-sc.aliyuncs.com^
+||httpdns-sdk.n.netease.com^
+||httpdns.alicdn.com^
+||httpdns.baidu.com^
+||httpdns.baidubce.com^
+||httpdns.bcelive.com^
+||httpdns.bilivideo.com^
+||httpdns.browser.miui.com^
+||httpdns.c.cdnhwc2.com^
+||httpdns.cctv.com^
+||httpdns.danuoyi.tbcache.com^
+||httpdns.gslb.yy.com^
+||httpdns.huaweicloud.com^
+||httpdns.kg.qq.com^
+||httpdns.kwd.inkuai.com^
+||httpdns.meituan.com^
+||httpdns.music.163.com^
+||httpdns.n.netease.com^
+||httpdns.n.shifen.com^
+||httpdns.ocloud.heytapmobi.com^
+||httpdns.ocloud.oppomobile.com^
+||httpdns.platform.dbankcloud.cn^
+||httpdns.platform.dbankcloud.com^
+||httpdns.pro^
+||httpdns.push.heytapmobi.com^
+||httpdns.push.oppomobile.com^
+||httpdns.volcengineapi.com^
+||httpdns.yunxindns.com^
+||httpdns.zybang.com^
+||httpdns1.cc.cdnhwc5.com^
+||httpsdns.baidu.com^
+||kuaishou.httpdns.pro^
+||lofter.httpdns.c.163.com^
+||music.httpdns.c.163.com^
diff --git a/mod/rules/first-dns-rules.txt b/mod/rules/first-dns-rules.txt
new file mode 100644
index 0000000000..7ced0ef4a1
--- /dev/null
+++ b/mod/rules/first-dns-rules.txt
@@ -0,0 +1,27 @@
+/^admarvel\./
+/^admaster\./
+/^adsage\./
+/^adsensor\./
+/^adservice\./
+/^adsmogo\./
+/^adsrvmedia\./
+/^adsserving\./
+/^adsystem\./
+/^adwords\./
+/^applovin\./
+/^appsflyer\./
+/^domob\./
+/^duomeng\./
+/^dwtrack\./
+/^guanggao\./
+/^omgmta\./
+/^omgmtaw\./
+/^omniture\./
+/^openx\./
+/^partnerad\./
+/^pingfore\./
+/^socdm\./
+/^supersonicads\./
+/^wlmonitor\./
+/^zjtoolbar\./
+/^.+stat\.kugou\.com/
diff --git a/mod/title/adblock-title.txt b/mod/title/adblock-title.txt
new file mode 100644
index 0000000000..b1efc5e287
--- /dev/null
+++ b/mod/title/adblock-title.txt
@@ -0,0 +1,7 @@
+[Adblock Plus 2.0]
+! Title: AdRules AdBlock List
+! Homepage: https://github.com/Cats-Team/AdRules
+! Powerd by Cats-Team
+! Expires: 1 day (update frequency)
+! Description: Merge from EasyList,EasyListChina etc. and Add Some Rules.
+! 
\ No newline at end of file
diff --git a/mod/title/adblock_lite-title.txt b/mod/title/adblock_lite-title.txt
new file mode 100644
index 0000000000..fe15b80261
--- /dev/null
+++ b/mod/title/adblock_lite-title.txt
@@ -0,0 +1,7 @@
+[Adblock Plus 2.0]
+! Title: AdRules AdBlock List Lite 
+! Homepage: https://github.com/Cats-Team/AdRules
+! Powerd by Cats-Team
+! Expires: 1 day (update frequency)
+! Description: AdRules AdBlock List's Lite Version, And Remove Some Filters
+! 
\ No newline at end of file
diff --git a/mod/title/adblock_plus-title.txt b/mod/title/adblock_plus-title.txt
new file mode 100644
index 0000000000..a44e43b363
--- /dev/null
+++ b/mod/title/adblock_plus-title.txt
@@ -0,0 +1,7 @@
+[Adblock Plus 2.0]
+! Title: AdRules AdBlock List Plus
+! Homepage: https://github.com/Cats-Team/AdRules
+! Powerd by Cats-Team
+! Expires: 1 day (update frequency)
+! Description: AdRules AdBlock List's Plus Verison, And Add Some Filters
+! 
\ No newline at end of file
diff --git a/mod/title/dns-title.txt b/mod/title/dns-title.txt
new file mode 100644
index 0000000000..da80875d65
--- /dev/null
+++ b/mod/title/dns-title.txt
@@ -0,0 +1,6 @@
+[Adblock Plus 2.0]
+! Title: AdRules DNS List
+! Homepage: https://github.com/Cats-Team/AdRules
+! Powerd by Cats-Team
+! Expires: 1 (update frequency)
+! Description: The DNS Filters
diff --git a/rules/jiekouAD.txt b/rules/jiekouAD.txt
new file mode 100644
index 0000000000..362e3be3f3
--- /dev/null
+++ b/rules/jiekouAD.txt
@@ -0,0 +1,5096 @@
+[Adblock Plus 2.0]
+! Title: 轻量广告拦截规则
+! Homepage: https://github.com/damengzhu/banad
+! Update Time: 2023-12-09 12:54:48(北京时间)
+! Total Count: 5086
+! by: 酷安@大萌主
+! Host
+||hailfi.top^
+||ioswhi.com^
+||wiczcu.xyz^
+||gfbdb1.com^
+||3i2i.com^
+||iobvmtx.xyz^
+||xxsmcps.com^
+||c1d8i3p6.com^
+||m2k3j7x8.com^
+||pirubcfy.xyz^
+||1iuybpo.com^
+||1weorpu.com^
+||youtubee.top^
+||zzmyrz.com^
+||cdvsd9.com^
+||sdvsv.com^
+||l80ays.com^
+||xman.asia^
+||kiitsl.icu^
+||metheny.cn^
+||ziccattws.com^
+||xfztgxt.com^
+||tongjiniao.com^
+||jqtkzuco.xyz^
+||muyxmmz.cn^
+||asdzxc1.top^
+||yjuhqy.xyz^
+||ndbaxn.xyz^
+||jackdd.xyz^
+||dzfzfv.xyz^
+||aispyd.icu^
+||singmwn54g.com^
+||dididy.xyz^
+||rkgwzfwjgk.com^
+||gmxvmvptfm.com^
+||statcounter.com^
+||elinvarpayola.com^
+||eejwvwoo.xyz^
+||88lajs4.com^
+||nyvgbt.xyz^
+||88la.la^
+||bvsfv6.com^
+||feq853.com^
+||iikrmw.xyz^
+||bnnfvd.xyz^
+||faxffjo.com^
+||fptdxkm.com^
+||ignulsniy.com^
+||volgreal.com^
+||2u3v4w5x6y.com^
+||z0a1b2c3d4.com^
+||adsco.re^
+||sqevnrb.com^
+||clcmdie.com^
+||quspga.xyz^
+||0ns32h.com^
+||etrvfx.xyz^
+||ytqlyw.xyz^
+||ulyuom.xyz^
+||viewyentreat.guru^
+||dvnqhdmze.xyz^
+||idd1.com^
+||g13eyx.com^
+||magsrv.com^
+||nhcdn.cn^
+||irtefs.xyz^
+||8mhcc.top^
+||agossuoeach.com^
+||xxfphsg.cn^
+||aabeautiful.cn^
+||65432.pw^
+||98765.pw^
+||ukjwyv.icu^
+||wkrcbszi.xyz^
+||insfengdata.com^
+||quzmtpxw.xyz^
+||ah.5l59k.com^
+||cjgdch.com^
+||goingsranchange.com^
+||aaoffice.cn^
+||zacff.com^
+||ukpsal.icu^
+||sinawap.com^
+||bd-a-1.appmobile.cn^
+||availablesshaother.com^
+||rbbko.com^
+||hebstsmgs.com^
+||livingshonghealth.com^
+||byjykj.xyz^
+||xmmnsl.com^
+||jfyb6.com^
+||tgyxpfjws.com^
+||jcwtml.icu^
+||procdn.asia^
+||lb5o9.com^
+||sdcuo.com^
+||fsmhub.icu^
+||domcwlxin.360doc.cn^
+||000123456789.online^
+||000123456789.site^
+||00xvppy.cn^
+||01v62.xyz^
+||022003xs.com^
+||025zxcv.com^
+||0272aa.com^
+||0272dd.com^
+||027dir.com^
+||027pbj.net^
+||02asdf.com^
+||0310cn.com^
+||031dfgh.com^
+||033dfgh.com^
+||034dfgh.com^
+||035caop.com^
+||036e.cn^
+||039nez.com^
+||03asdf.com^
+||056opui.com^
+||063tutu.com^
+||064ioio.com^
+||065yuyu.com^
+||066hjkl.com^
+||074adzx.com^
+||080999.cn^
+||085cczz.com^
+||087tqb.cn^
+||093yuht.com^
+||096iokj.com^
+||09jsufg.com^
+||0krdn3.com^
+||0m483y7.cn^
+||0p7w.cn^
+||0yq00i.cn^
+||10090dfs.com^
+||1017facai8.xyz^
+||109218er.xyz^
+||1104piaoba2022.xyz^
+||1105yh.com^
+||1106yh.com^
+||1107piaoliang2022.xyz^
+||1113dage2022.xyz^
+||1116yitiao2022.xyz^
+||1117liangtiao2022.xyz^
+||11jianzhan.com^
+||1205qitiao2022.xyz^
+||120askimages.com^
+||121.43.235.135^
+||1224.zg-babyroo.com^
+||12551-1311572332.cos.ap-shanghai.myqcloud.com^
+||1267a.xyz^
+||126ccb.xyz^
+||1378a.xyz^
+||1379a.xyz^
+||1381a.xyz^
+||13hangpifa.com^
+||154.22.214.2^
+||155zn.com^
+||163487*.qmgmw.com^
+||1640831964042.se-life.cn^
+||187388.com^
+||18dui.com^
+||1905715.com^
+||1dfsdfg.com^
+||1jc5t.xyz^
+||1kanz.cn^
+||1u5gy.xyz^
+||1w73a5d.cn^
+||1wkg.cn^
+||2.yunsxk.xyz^
+||20091222.com^
+||2020mustang.com^
+||2022facaiabc9.xyz^
+||208622.top^
+||21qma3vs.com^
+||23.231.151.252^
+||23dhj4q.com^
+||23jgiy.com^
+||2431.vainews.cn^
+||24klm.cn^
+||24klm.net^
+||2g9x9uf.cn^
+||2pogg4c.cn^
+||3.cjcp.cn^
+||32.huanqiu.com^
+||3269x.com^
+||3337126.com^
+||3338637.com^
+||3338652.com^
+||35vc.com^
+||360114.xyz^
+||36htg.fun^
+||36mghtd.xyz^
+||387635.com^
+||38kmute.xyz^
+||39mydp.xyz^
+||3ad5iot.com^
+||3er88wn.com^
+||3q3l.cn^
+||3t769up6.com^
+||3v7c7y.online^
+||3yej.xyz^
+||40fenzhong.com^
+||4199tv.com^
+||42yenxh.cn^
+||44r9fl.xyz^
+||4asfgyx.com^
+||4d0m.cn^
+||4dyt.cn^
+||4etsr.xyz^
+||4kfv18.cn^
+||4po6iqp9.cn^
+||4sexmail.com^
+||50aqzb.com^
+||51-tour.net^
+||51.la^
+||517heiya.com^
+||51gongxiao.com^
+||51jqq.top^
+||51minbingtuan.net^
+||51xuex.com.cn^
+||52acc.cn^
+||52aoteman.com^
+||52kuwang.cn^
+||52pipaxing.com^
+||54askjdklm.xyz^
+||54dbg.xyz^
+||55555555555.xyz^
+||55zzz.cn^
+||56fba.cn^
+||56yk.com^
+||59gt.cn^
+||5gg17gm.com^
+||5ggj5cp.com^
+||5ibanma.com^
+||5idoy8p7.live^
+||5kmp7.top^
+||5lfgdju.com^
+||5vuk.xyz^
+||5wl8x.xyz^
+||61hhdp.com^
+||637o.top^
+||670t5x.cn^
+||68710266.com^
+||69e7.fun^
+||69mok.com^
+||6gukaitu.xyz^
+||6hejing.cn^
+||6iwoif.com^
+||6mh8.com^
+||6tofsu.com^
+||6v4.work^
+||6v6.work^
+||767drv.cn^
+||7701zxcv.com^
+||777aa999aa.com^
+||777zz777zz.com^
+||77aiav.me^
+||77nnv9.xyz^
+||77qwq.com^
+||77zz7.com^
+||789peizi.com^
+||78dfvv.com^
+||79zxcv.com^
+||7caidai.xyz^
+||7cbwus.cn^
+||7cl.app^
+||7dh26aja.com^
+||7jkzmbd.cn^
+||7kjiiu.cn^
+||7r227ut.cn^
+||7xixi.site^
+||81wx.info^
+||84zm8.xyz^
+||87asa.com^
+||87d.xv5b.com^
+||8861198.com^
+||888lianmeng.com^
+||88eg.cn^
+||88lajs1.com^
+||88lajs2.com^
+||89mtdab.xyz^
+||8chj9.com^
+||8cnd.com^
+||8d7hhh8x.com^
+||8g0j.cn^
+||8gp4wjq3.com^
+||8pjqjxmr.com^
+||91chaodijia.com^
+||91p20.space^
+||91xzba.com^
+||986qka.cn^
+||98765432100.online^
+||98765432100.site^
+||99999999.club^
+||999gg.net^
+||999pro.top^
+||9a6cds03.com^
+||9cc9ckp.com^
+||9fgh98k.com^
+||9fum.ifeng.com^
+||9fwz.com^
+||9js6.icu^
+||9miwo.com^
+||9odes.ltd^
+||9xf9qkz5.com^
+||Media.net^
+||a-mo.net^
+||a.breaktime.com.tw^
+||a.wzu.com^
+||a0b22.com^
+||a168888.top^
+||a48505.cn^
+||a4sz.xyz^
+||a8age.com^
+||a962m.xyz^
+||a9able.com^
+||aa889977aa.com^
+||aac.kegood.com^
+||aaenv48847h.com^
+||abalado.com^
+||abb.lxiaoxin.com^
+||abcd.cnhuoche.com^
+||abdluv.xyz^
+||abenshishabi.com^
+||abovede6.com^
+||abram.xin^
+||abrnfctkn.xyz^
+||abtt.pufenchuanmu.com^
+||acgshenshicha.cn^
+||ackcdn.net^
+||acqc9.com^
+||acsc10.com^
+||acscdn.com^
+||activity.hnhnmg.com^
+||ad-survey.com^
+||ad.adondemand.com^
+||ad.holmesmind.com^
+||ad.mazc.org^
+||ad.sitemaji.com^
+||ad.wamxb.info^
+||ad2023.site^
+||ada.baidu.com^
+||adayvquq.cn^
+||adbeuch.cn^
+||adbtwyxl96.fun^
+||adc3-launch.adcolony.com^
+||adcd7.com^
+||adcdn.holmesmind.com^
+||adcr77.com^
+||addictedwonder.com^
+||adfox.yandex.ru^
+||adfstat.yandex.ru^
+||adhdsb.cn^
+||adimg.liba.com^
+||aditibelen.com^
+||adkisdh3897.xyz^
+||adm.hotjar.com^
+||admhbl.xyz^
+||adpushup.com^
+||adrecover.com^
+||adroition.net^
+||ads-api.tiktok.com^
+||ads-api.twitter.com^
+||ads-pixiv.net^
+||ads-sg.tiktok.com^
+||ads.aralego.com^
+||ads.exoclick.com^
+||ads.linkedin.com^
+||ads.pinterest.com^
+||ads.pubmatic.com^
+||ads.service.kugou.com^
+||ads.superad.cc^
+||ads.tiktok.com^
+||ads.yahoo.com^
+||ads.yap.yahoo.com^
+||ads.youtube.com^
+||ads30.adcolony.com^
+||adserver.unityads.unity3d.com^
+||adservice.google.com^
+||adsfs.oppomobile.com^
+||adskeeper.co.uk^
+||adtago.s3.amazonaws.com^
+||adtech.yahooinc.com^
+||adtng.com^
+||adv-sv-show.focus.cn^
+||adv-sv-stat.focus.cn^
+||advertising-api-eu.amazon.com^
+||advertising.apple.com^
+||advertising.yahoo.com^
+||advertising.yandex.ru^
+||advice-ads.s3.amazonaws.com^
+||adx.ads.oppomobile.com^
+||aefmbeq.cn^
+||aeletheacd.com^
+||af31f.site^
+||afablca.cn^
+||afafevk.com^
+||afcav.com^
+||afdunaui.com^
+||afenx.top^
+||afgp10l.com^
+||afk3rs.xyz^
+||afs.googlesyndication.com^
+||afuz032.com^
+||afxncq.com^
+||agathacd.com^
+||agdewasmnjktfrdewqjgdser.top^
+||ahm.jiankang123.net^
+||ahp18.site^
+||ahp19.site^
+||ahp24.site^
+||ahpengjie.com^
+||ai36588.com^
+||ailehui9149.com^
+||aisnj.cn^
+||aiwei365.net^
+||aj4j.icu^
+||ajcode.co^
+||ajfkwwpo.xyz^
+||ajkjbcjbaaaed.com^
+||ajtdumo.cn^
+||ajzsa.xyz^
+||akcnkancklankl.com^
+||akdie.xyz^
+||akmh074.vip^
+||akmh080.vip^
+||aldkfsd.cn^
+||alemu4s.com^
+||alexanbelen.com^
+||alfpair.com^
+||alictibet.com^
+||aliyun.cdn.chengzilte.top^
+||aliyunapi.org^
+||allcp.xyz^
+||allykitchen.com^
+||almabelen.com^
+||alwayzcars.com^
+||alyssabelen.com^
+||amerzbj.cn^
+||amvecurt.cn^
+||amxwqv.com^
+||an.facebook.com^
+||an.yandex.ru^
+||analy.tuniu.cn^
+||analyse.weather.com.cn^
+||analytics-api.samsunghealthcn.com^
+||analytics-sg.tiktok.com^
+||analytics.163.com^
+||analytics.google.com^
+||analytics.pinterest.com^
+||analytics.pointdrive.linkedin.com^
+||analytics.query.yahoo.com^
+||analytics.s3.amazonaws.com^
+||analytics.tiktok.com^
+||analytics.yahoo.com^
+||analyticsengine.s3.amazonaws.com^
+||ancheonyo.fun^
+||annelinterv.fun^
+||antheaceliacd.com^
+||anwqj0i.xyz^
+||anyunwl04.com^
+||aobuygo.com^
+||aoqinglv.cn^
+||aornkmae.com^
+||aoyou1.top^
+||aoyou2.top^
+||aoyou3.top^
+||aoyou4.top^
+||aoyou5.top^
+||aparvibices.com^
+||apdfmhp.cn^
+||apfobmfr.cn^
+||api-adservices.apple.com^
+||api.06fgej.com^
+||api.1101yh.com^
+||api.36dfsa.com^
+||api.bugsnag.com^
+||api.cxzudwk.com^
+||api.faba.pw^
+||api.qcmm07.com^
+||api.qvpublish.com^
+||api.scwsf.com^
+||api.xn--zw0autp42d.cn^
+||api.xyhx.cc^
+||api.xyhx.org^
+||apk.qqvv88.com^
+||app-measurement.com^
+||app.bugsnag.com^
+||app.getsentry.com^
+||appmetrica.yandex.ru^
+||apptime.xyz^
+||aquvg.com^
+||aqvwn18102h.com^
+||arkn81.com^
+||arpg2.com^
+||arts-cloud.net^
+||arwh3scr.world^
+||arwh4scr.xyz^
+||as89de.top^
+||asdffe22.com^
+||asdx55.com^
+||asdyui16.cn^
+||asklcnlkacnklnl.com^
+||asldmlws.cn^
+||asleyty.com^
+||asoursuls.com^
+||aspwg.cn^
+||asvysvxr.com^
+||asycxtz.cn^
+||atbdkmt.xyz^
+||atnnf.xyz^
+||au6w0.xyz^
+||auction.unityads.unity3d.com^
+||autchoog.net^
+||awdc6.com^
+||awiudbyqbpo.com^
+||awyyzx.com^
+||axbdlox.cn^
+||axcdt.cn^
+||axcdy.cn^
+||axz650.com^
+||ayidaye.m.zwdu.com^
+||aykibra.cn^
+||aymtdcg.cn^
+||aynanjianyy.com^
+||ayybzhd.cn^
+||azdxypf.cn^
+||azukgee.cn^
+||b.1th.app^
+||b0rbgroup.xyz^
+||b0ufmrzl.icu^
+||b1.51yangsheng.com^
+||b2.51yangsheng.com^
+||b2xy4m.xyz^
+||b4g7k9d2.com^
+||b59.xyz^
+||b9b2oe8720j.xyz^
+||bacder.fun^
+||bace10.top^
+||bai.luyouwang.com^
+||bai128.xyz^
+||baiduapp.app^
+||baidubdvjssv.com^
+||baidubvjsbvv.com^
+||baidudvbjkbssjvsvv.com^
+||baiduisjkbvsjkl.com^
+||baiduklglndklb.com^
+||baiduvjsbvjknlsvsv.com^
+||baitaiz.com^
+||baiwb.com^
+||baiyishaonian.cn^
+||bangyuandianzi.top^
+||banhui.xyz^
+||banners-cdn77.trafficfactory.biz^
+||barscreative1.com^
+||bavde1.icu^
+||bavde3.icu^
+||bbbazlp.cn^
+||bbges.xyz^
+||bbhktv.xyz^
+||bbphonix.xyz^
+||bc.qunar.com^
+||bcbo.cc^
+||bcejk.xyz^
+||bcfeat2.com^
+||bcglkfu.cn^
+||bcidnfers.live^
+||bcsijjgck.xyz^
+||bd-js.duote.com^
+||bd.ahsrst.cn^
+||bdapi-ads.realmemobile.com^
+||bdapi-in-ads.realmemobile.com^
+||bdates.fun^
+||bddwm.com^
+||bdfg9a.icu^
+||bdhcpll.cn^
+||bea-s.dinghuoche.com^
+||beap.gemini.yahoo.com^
+||beatricecathy.com^
+||beatricenba.com^
+||beclsbx.icu^
+||become.songche.net^
+||bedrapiona.com^
+||bekco.xyz^
+||belindanbd.com^
+||berjzj.xyz^
+||berylnbb.com^
+||beste1.icu^
+||betcss.site^
+||betgorebysson.club^
+||betylife.com^
+||bfdcuy9.com^
+||bfjk360.com^
+||bftqdd.xyz^
+||bfugui.com^
+||bg04y.xyz^
+||bg4nxu2u5t.com^
+||bgbyzv.xyz^
+||bgdizsay.icu^
+||bh0874.online^
+||bhaabom.cn^
+||bhcnmrn.icu^
+||bhjuy10.com^
+||bhpprfk.cn^
+||bhulgot.com^
+||bieqpf.cn^
+||biexsite.net^
+||bifyeldv.top^
+||bigcood.xyz^
+||bihaipack.com^
+||birjkhm.cn^
+||bis8j.com^
+||bjkedv*.xyz^
+||bkhblj.xyz^
+||bkjlf58.com^
+||bl.emotionalworld.cn^
+||bleumzr.icu^
+||bljlrl.xyz^
+||blsenpg.cn^
+||blvhq.com^
+||bmiea.xyz^
+||bmptbyb.com^
+||bmyrihf.icu^
+||bnds3.site^
+||bnds4.site^
+||bnds6.site^
+||bnds7.site^
+||bnds8.site^
+||bnfyzszm.icu^
+||bngpt.com^
+||bnhxxj.xyz^
+||bnl2bii.icu^
+||bnrdnx.xyz^
+||bny9.cn^
+||boats8.top^
+||boewgph.icu^
+||bofnhn.com^
+||bohanhengtian.cn^
+||bookbk.img.zhangyue01.com^
+||books-analytics-events.apple.com^
+||botnrr.xyz^
+||botonmetaverse.com^
+||boxwcr.icu^
+||boyidianqi.com.cn^
+||boyvtr8.com^
+||bozhou666.com^
+||bqdzvl.xyz^
+||br.bendan.shop^
+||brendanbc.com^
+||brfgbn.xyz^
+||brfvyrrp.com^
+||bridgetnbe.com^
+||brownfox.top^
+||bsanciv.top^
+||bsbaswq.cn^
+||bsdgjmy.com^
+||bslbahv.top^
+||bswsmlp.cn^
+||btescs.fun^
+||btgoo.cc^
+||btsvad8.com^
+||bttazsyk.icu^
+||bujiangjiu123.com^
+||bulisite.top^
+||bupidt.xyz^
+||business-api.tiktok.com^
+||buyihao.com^
+||buzien.top^
+||bvvb9.com^
+||bwdhuanbao.com^
+||bxackzj.icu^
+||bxwccii.cn^
+||bxzm9a.icu^
+||by8428.com^
+||byvlph.xyz^
+||bzhn9y.icu^
+||bzxvtj.xyz^
+||c.leankun.com^
+||c0.ifengimg.com^
+||c4d4.cn^
+||c9r05q.com^
+||ca.yangshengtv.com^
+||caaie.xyz^
+||caardinal.com^
+||caider.fun^
+||caimei.me^
+||caimlkh.com^
+||caishuitonghr.com^
+||camep.xyz^
+||canser1.top^
+||canser5.top^
+||canser7.top^
+||canser8.top^
+||canser9.top^
+||cao-gao.xyz^
+||caomeixz7.xyz^
+||caopanshou.top^
+||captivias.site^
+||carbonads.com^
+||careers.hotjar.com^
+||carstat.bitauto.com^
+||casisi118.vip^
+||cat.da.us.criteo.com^
+||cbgyhe.cn^
+||cbh365.club^
+||cbjs.baidu.com^
+||cc-316.cc^
+||ccav.website^
+||cchvc.net^
+||ccnim.xyz^
+||cdcqee.com^
+||cdmjur.xyz^
+||cdn.7nsc.cn^
+||cdn.9823df.com^
+||cdn.anyshare.icu^
+||cdn.creative-bars1.com^
+||cdn.dashenya.com^
+||cdn.hanaya-m.com^
+||cdn.holmesmind.com^
+||cdn.itphanpytor.club^
+||cdn.jquery-cdn.cc^
+||cdn.vue-js.cyou^
+||cdn.weiye.net^
+||cdn.wuxiqiangheng.com^
+||cdn.xianchengyou.com^
+||cdn.xianliao.me^
+||cdn.yunliunet.com^
+||cdn0.sxhjty.cn^
+||cdn3.mancdn88.com^
+||cdn93d99x0e.23bei.com^
+||cdncloud.asia^
+||cdnlog.zhenai.com^
+||cdns.mbxt.net^
+||cdrhjt.com^
+||ceh.cehbh.com^
+||ceshi1.ink^
+||ceshi127722.obs.cn-north-4.myhuaweicloud.com^
+||cfdns.vip^
+||cfepws.com^
+||cgigc.com.cn^
+||cgmalight.com^
+||changshuohr.net^
+||changyangadvertising.com^
+||chaoku.oss-cn-chengdu.aliyuncs.com^
+||cheda1.icu^
+||cheda10.icu^
+||cheda7.icu^
+||cheh9k4t.com^
+||chicmifi.com^
+||chiese.site^
+||chihuoguo.me^
+||chiluyingxiao.com^
+||china.gzxxty168.com^
+||chinachooses.com^
+||chinaxinhe.net^
+||chinayms.com^
+||chixingkeji.com^
+||chnuuee.xyz^
+||cholo101.cn^
+||cholo215.cn^
+||cholor201015.cn^
+||cholor201115.cn^
+||chongyayakk.xyz^
+||choupsee.com^
+||chozarpeases.com^
+||chumeng.link^
+||chushoushijian.cn^
+||chuzushijian.cn^
+||chykohija.pro^
+||ciadre.fun^
+||ciarde.fun^
+||cidhdgv.xyz^
+||cifyeldf.top^
+||ciislunar.com^
+||city.youpukeji.cn^
+||cix0wk.com^
+||ck.ads.oppomobile.com^
+||ck33.top^
+||ckerw.xyz^
+||click.googleanalytics.com^
+||click.oneplus.cn^
+||click.tianyaui.com^
+||clldirectasianew.club^
+||cloudasbook.com^
+||cloudflare.st^
+||clugqa.com^
+||clw99.mobi^
+||cmbkgmx.cn^
+||cmgjqqu.cn^
+||cmh2pw.com^
+||cmpxaup.cn^
+||cmspapp83.com^
+||cmspapp84.com^
+||cncnails.net^
+||cns.wxdal.cn^
+||cnzz.com^
+||cocloud.site^
+||collegepre.net^
+||commondata.oss-cn-hangzhou.aliyuncs.com^
+||config.unityads.unity3d.com^
+||connectreadoasis.com^
+||count.candou.com^
+||count.enet.com.cn^
+||count.nuanyuehanxing.com^
+||count.pcauto.com.cn^
+||counter.pcauto.com.cn^
+||counter.tianjimedia.com^
+||countpage.sznews.com^
+||couplestupidity.com^
+||cp.eoncreativity.com^
+||cpoml.iask.sina.com.cn^
+||cpro.baidustatic.com^
+||cpro.zol.com.cn^
+||cpro88.vip^
+||cpt.9136.com^
+||cpucdn.baidu.com^
+||cqbuchouhua.com^
+||cqtlimi.cn^
+||cqygmb.com^
+||creamaroc.com^
+||createssque.club^
+||creepingbrings.com^
+||crf999.cn^
+||criteo.net^
+||crobotb.com^
+||cryy.vip^
+||cs.luckyorange.net^
+||csedasdme.xyz^
+||csjkb.com^
+||cslbahf.top^
+||cslpf.cn^
+||csygxdym.com^
+||csyys0731.com^
+||ctienlf.top^
+||ctobsnssdk.com^
+||ctquh0q.xyz^
+||ctsau.xyz^
+||cuioxbqi.com^
+||cvftv2.com^
+||cvsheil.com^
+||cw9twua9.shop^
+||cw9twuas.xyz^
+||cwandlf.top^
+||cwc494e.cn^
+||cx0001.cn^
+||cxs.mibaoge.com^
+||cxsh.cn.com^
+||cyhbrjf.cn^
+||cypcb.net^
+||cyq3noz.icu^
+||czghjt.com^
+||d0lzq.com^
+||d13gni3sfor862.cloudfront.net^
+||d1esebcdm6wx7j.cloudfront.net^
+||d1f05vr3sjsuy7.cloudfront.net^
+||d1pmhihatyvp1k.cloudfront.net^
+||d1q4x2p7t0gq14.cloudfront.net^
+||d20903hof2l33q.cloudfront.net^
+||d227cncaprzd7y.cloudfront.net^
+||d2wy8f7a9ursnm.cloudfront.net^
+||d37d9zbli5ytch.cloudfront.net^
+||d3f3.xyz^
+||d3mshiiq22wqhz.cloudfront.net^
+||d3nfknbv.icu^
+||d8962a.xyz^
+||daadr.cn^
+||daawv.cn^
+||daawx.cn^
+||daccp.cn^
+||dacedsfa.cn^
+||dada.dadawm.cc^
+||dadbj.cn^
+||dadcc.cn^
+||dadde.cn^
+||daddq.cn^
+||dadms.cn^
+||dadwu.cn^
+||dadzz.cn^
+||daede.cn^
+||daeis.cn^
+||daenf.cn^
+||dafdf.cn^
+||dafuhouse.com^
+||dagwi.cn^
+||dahounian.top^
+||dakawm.cc^
+||daliantong.com.cn^
+||dalld.xyz^
+||dalmfn.xyz^
+||dangongshijie.com^
+||danstr.fun^
+||dasv10rewq.xyz^
+||dat.yl-zipper.com^
+||dat8.cc^
+||data.ads.oppomobile.com^
+||data.gzuzfa.cn^
+||data.lichenqx.com^
+||data.mistat.india.xiaomi.com^
+||data.mistat.rus.xiaomi.com^
+||data.mistat.xiaomi.com^
+||data.zhongquanjy.com^
+||db11yy.com^
+||dbkdwe1.com^
+||dbnsd2viud.xyz^
+||dbnwlp.xyz^
+||dbxok6uo.icu^
+||dciep.xyz^
+||dcsxv.com^
+||dcvbnzss.xyz^
+||dcvefz.xyz^
+||dd112233dd.com^
+||dd667788dd.com^
+||dd778899dd.com^
+||ddbuwo.cn^
+||ddgjjj.com^
+||ddush.xyz^
+||ddxolb.xyz^
+||dedcrfvdj.xyz^
+||deeterno.cn^
+||degjidp.icu^
+||dehaer.site^
+||dehua.mengtubo.com^
+||dektcvna.icu^
+||derew6xbsc.xyz^
+||dertyhsf.xyz^
+||desac10.icu^
+||desac7.icu^
+||destc10.icu^
+||destc8.icu^
+||device.fishmobi.com^
+||dexinyi.cn^
+||dexuanyu.top^
+||dfadas13.com^
+||dfaikhkm.xyz^
+||dfec2.com^
+||dffrahax.com^
+||dfghaqea.xyz^
+||dfgpifa.com^
+||dfgwer.com^
+||dfgymtx.icu^
+||dfjd.xyz^
+||dfkd.xyz^
+||dfsvhv88.com^
+||dfxwdc.com^
+||dg186.cn^
+||dgaxxjq.cn^
+||dgayibf.icu^
+||dgfgflod.com^
+||dghehu.com^
+||dghhot.com^
+||dghkpp.xyz^
+||dgvkrt.xyz^
+||dgxlm.xyz^
+||dheear.site^
+||dherea.site^
+||dhjrvj.xyz^
+||dhkipdsc.xyz^
+||dhxrop.com^
+||di2y21.top^
+||dianhanjiw.com^
+||dianying-1304791696.cos.ap-shanghai.myqcloud.com^
+||dibaiweiai.com^
+||dicancele.fun^
+||dieka888.com^
+||dig.qbao.com^
+||dikematou.com^
+||dikmnhyxz.xyz^
+||ding.cxzudwk.com^
+||dingyar.top^
+||diouy9cvtx.xyz^
+||dismantlepenantiterrorist.com^
+||ditorialproce.biz^
+||dj09j5u.cn^
+||djv99sxoqpv11.cloudfront.net^
+||dklwddl.cn^
+||dl12349.net^
+||dlads.cn^
+||dlrtz.com^
+||dlxxjsh.top^
+||dmeia.xyz^
+||dmfjeu.xyz^
+||dmm.aizhan.com^
+||dmvckj.icu^
+||dmxfdp.xyz^
+||dmyrza.com^
+||dnceqzz.icu^
+||dncvj.cn^
+||dnightwish.xyz^
+||dnrf0215.com^
+||dnyzbp.cn^
+||dnzmhr.xyz^
+||doccd.xyz^
+||dodhvug.cn^
+||dohihf.com^
+||doiney.pandasone.com^
+||dojyiu8.com^
+||donchen501.cn^
+||dong.aeimmmj.cn^
+||dongya.org^
+||dosre12.xyz^
+||doubleclick.net^
+||douyaobuy.com^
+||dpbgnf.xyz^
+||dpijohb.icu^
+||dpjzzgw.cn^
+||dq06u9lt5akr2.cloudfront.net^
+||dqazwsxd.xyz^
+||dqcgkpp.icu^
+||dqjojx.xyz^
+||dreamlikeverse.com^
+||drebz4f.shop^
+||dreemdmbabys.oss-cn-guangzhou.aliyuncs.com^
+||drfvtgbyk.xyz^
+||dsbjdeh.cn^
+||dsbt7.com^
+||dshapv.xyz^
+||dslenggui.com^
+||dsqzk.cn^
+||dstbekdf.xyz^
+||dstbunkfw.xyz^
+||dt243100.com^
+||dtckvpc.cn^
+||dtfyhdghsd.online^
+||dtrcw.cc^
+||dtsxn.cn^
+||duier.top^
+||dup.baidustatic.com^
+||duxingangtiaoban.com^
+||duyixpy.top^
+||duyvtanrheje.xyz^
+||dv.amtwcvh.cn^
+||dv.taolingjing.com^
+||dvbnmikxh.xyz^
+||dvenkbn.icu^
+||dvnsdo.com^
+||dvtednm.cn^
+||dvv9dkv.site^
+||dvzk66.cn^
+||dwfjtz.xyz^
+||dwibjkdsn.com^
+||dwyngjb.icu^
+||dxwsty.cn^
+||dxzky.love^
+||dycwt.cn^
+||dyeperd.icu^
+||dygtulfe.icu^
+||dyhnbgtsl.xyz^
+||dykeep.com^
+||dzkwj0y.xyz^
+||e49.xyz^
+||eabids.com^
+||eamqbaqzaewwq.top^
+||eblnzoq.cn^
+||ebscb0l.xyz^
+||ebten.xyz^
+||ebuqxsjq.com^
+||eccbb.com^
+||ecoefh.com^
+||ecudsc.cn^
+||ecwmvlhy.com^
+||ed.gumoda.top^
+||edong.link^
+||edssnet.changchunets.com^
+||eduizioq.com^
+||eedudwr.cn^
+||eers0cy.com^
+||eexlgyn.cn^
+||efangcdn.com^
+||effectivehealthy.cn^
+||efvsyhbf.xyz^
+||eghyahl.cn^
+||egipsbvlgn.xyz^
+||egrent.cn^
+||egsxdp.cn^
+||eheb8.cn^
+||ehfjup.xyz^
+||ehk.trenhdg.com^
+||eiadf.xyz^
+||eifyeldw.top^
+||eignky.xyz^
+||eileenjaney.com^
+||eiykmtb.cn^
+||ejieban.com^
+||ejolul.xyz^
+||ekdky.cn^
+||elegant-creator.com^
+||elevatorpartsbuy.com^
+||elopatchwork.com^
+||elsmom.xyz^
+||elsynmlw.fun^
+||eltdeh.top^
+||embnvut.com^
+||emilyz.top^
+||enennsa.gushiwen.cn^
+||enhad.xyz^
+||enl2.96845.com^
+||entsnotesq.fun^
+||eo.chaungpin.top^
+||eo.dongdm.cn^
+||eo.jinzpeng.cn^
+||eoyqzzk.cn^
+||epaes.com.cn^
+||epoid.xyz^
+||epoun.top^
+||eqghuu.com^
+||eqlidke.cn^
+||eqqi.cn^
+||eraaoec.cn^
+||ercnrxa.cn^
+||erfskhnpter.xyz^
+||erjiyouhuiquan.com^
+||erlirscid.com^
+||err.ifengcloud.ifeng.com^
+||ert.pengwenli.top^
+||ertgbme.com^
+||erty0yx.com^
+||esanciw.top^
+||esgher.fun^
+||esgher.site^
+||eslbahw.top^
+||estcruden.biz^
+||etahub.com^
+||etienlw.top^
+||etlanaberez.fun^
+||etregh.fun^
+||euitx.cn^
+||eujxqgh.cn^
+||eulaliadoradl.com^
+||evb0gxo.icu^
+||evbb.xyz^
+||events.hotjar.io^
+||events.reddit.com^
+||events.redditmedia.com^
+||events3alt.adcolony.com^
+||evidhjksdtgyxrh.xyz^
+||evtubescms.phncdn.com^
+||ewfsef.com^
+||ewrwf.com^
+||ewtyewj.com^
+||excsyrv.cn^
+||exdynsrv.com^
+||exevcl.cn^
+||extmaps-api.yandex.net^
+||eybstar.com^
+||eyq3nog.icu^
+||ezlgszdb.icu^
+||ezraahdn.icu^
+||ezu6rd5.houge.in^
+||f1tfmxzg.icu^
+||f23jjd8.xyz^
+||f53a.com^
+||f77j6t2b.com^
+||f77xv3.top^
+||f8ejqxp.cn^
+||fads315.com^
+||fakjkwp.cn^
+||falal.cn^
+||falsarywaybung.com^
+||famorlymal.com^
+||fangcunzhijian1.cn^
+||fangfeng009.xyz^
+||fantuan.name^
+||fc.gaizong.cn^
+||fc.tiepan.cn^
+||fc.zuixinchao.com^
+||fcbqxt.xyz^
+||fcgztan.cn^
+||fcheng.top^
+||fcpnxx.xyz^
+||fcqztan.cn^
+||fddxbn.xyz^
+||fdgem.com^
+||fdhvczd.cn^
+||fds-1230.cc^
+||feiln.xyz^
+||fengyukun03.cn^
+||ffgpol.com^
+||ffmehcg.cn^
+||ffnvhig.cn^
+||ffriedadl.com^
+||ffzz71.com^
+||fg.daochengwowo.top^
+||fg.yilianqing.com^
+||fgetmzx.icu^
+||fgnzdb.xyz^
+||fgre9.top^
+||fhddnh.xyz^
+||fhfgg.com^
+||fhglcpf.icu^
+||fhitagd.cn^
+||fhrl2018.com^
+||fhsmtrnsfnt.com^
+||fhvbhx.xyz^
+||fiktvlnc.icu^
+||fillhr.xyz^
+||fintechpi.com^
+||fionamignon.com^
+||firearmtire.com^
+||fish882.xyz^
+||fiwyjar.cn^
+||fjctlnn.top^
+||fjjmnh.com^
+||fjshxjs.cn^
+||fjsytjs.cn^
+||fjtroip.cn^
+||flagshipism.com^
+||flsfzr.cn^
+||fmre1.com^
+||fnfhjka.xyz^
+||fngcgbl.icu^
+||fo.tiqu.io^
+||fo.zhangbaochang.top^
+||foirkrt.icu^
+||foisml.com^
+||fooid.xyz^
+||forestseasons.com.cn^
+||forflygonom.com^
+||forzubatr.com^
+||fourlaile.com^
+||fqpxzr.xyz^
+||fqxkj.cn^
+||frcykpk.cn^
+||free3dgame.xyz^
+||freshmarketer.com^
+||freychang.fun^
+||friendshipmale.com^
+||fronttoad.com^
+||frpns.com^
+||frrhdl.xyz^
+||frsejhged.xyz^
+||fsgsfaf6.com^
+||fsjjrbz.cn^
+||fsnpbh.xyz^
+||fstats.xyz^
+||fszpzd.xyz^
+||ft8e.top^
+||fthqzxq.cn^
+||ftiodfqk.com^
+||fuentekj.com^
+||fujifood.hk^
+||fujincenter.com^
+||fuliwang.cc^
+||fumanhua88.info^
+||fvffd678.xyz^
+||fvxlhn.xyz^
+||fwepd.xyz^
+||fwmbjrl.cn^
+||fwzvlp.xyz^
+||fxbcpr.xyz^
+||fxeaobv.icu^
+||fxxrllt.com^
+||fy14.cn^
+||g.rain8.com^
+||g.yccdn.com^
+||g.youshishop.com^
+||g1kb9u.xyz^
+||gahvy6ww.icu^
+||gaiqgs.xyz^
+||galopelikeantelope.com^
+||games95.com^
+||gaomingbo.com^
+||gaoyuhu.top^
+||gbcnvip15.com^
+||gbrtyhnsc.xyz^
+||gbsp002.com^
+||gcbflvx.cn^
+||gcqciiqk.com^
+||gdjme27.com^
+||gdls114.com^
+||gdoibwfvjqf.com^
+||gdsoq.com^
+||gdzshoes.com^
+||geiod.xyz^
+||gemini.yahoo.com^
+||geo.yahoo.com^
+||geoparker.net^
+||geziyd.com^
+||gfrzzzx.cn^
+||gfvip09at.com^
+||ggdfrl.com^
+||ggdrfh5.com^
+||ggdumze.cn^
+||gghmef7.com^
+||ghghgf.xuexiwa.com^
+||ghland.site^
+||ghsnhjk.cn^
+||gjh9v.tianshilv.cn^
+||gjipd.xyz^
+||gjkame6.com^
+||gkjmev3.com^
+||gknybkl.cn^
+||gl.zle.com^
+||glczys.xyz^
+||glhdan.site^
+||glixaing.com^
+||globalapi.ad.xiaomi.com^
+||glpca.com^
+||glwxw.net^
+||gmicu.cn^
+||gndmnrh.cn^
+||gnqxd.cn^
+||gnrnws.cn^
+||go.live.missav.com^
+||go.sohu.com^
+||goblin.hupu.com^
+||godni.xyz^
+||goeyxwhp.site^
+||goikbnjksdf.com^
+||golden88.co^
+||gongxifc.com^
+||gongyong002.xyz^
+||gonpc.com^
+||googletagmanager.com^
+||gorgon.youdao.com^
+||gotohouse1.club^
+||gougou88.xyz^
+||govhechi.cn^
+||govkunming.cn^
+||govlaibing.cn^
+||govliuzhou.cn^
+||govxinjiang.cn^
+||goxob6wo.icu^
+||gpxxbyf.cn^
+||gqdfgyz.cn^
+||grandcomms.cn^
+||grduswfx.com^
+||greatnumeric.com^
+||greenxcx.com^
+||grjasq.com^
+||grs.hicloud.com^
+||gscatk.cn^
+||gshsne.xyz^
+||gsjzlssws.com^
+||gsnlc.cn^
+||gsp0.kj-gov.cn^
+||gsxbxvd.cn^
+||gtcqbnu.cn^
+||gtlpa*.com^
+||gtlpaj.com^
+||gtoyouin.biz^
+||gtpxvpi.cn^
+||guanggao28.xyz^
+||guangzhengtwentynine.top^
+||gubgonx.cn^
+||guiliangtechnology.com^
+||guizhouxinsheng.com^
+||gujkj.cn^
+||guke.name^
+||guohexinxiang.com^
+||guqsqfmi.com^
+||guzsjdl.cn^
+||gvbhae0.com^
+||gw1jvhs.com^
+||gwertyuadf.com^
+||gwg51.com^
+||gwmrb.cn^
+||gwrpceo.cn^
+||gxbnp.cn^
+||gxgbvmg.cn^
+||gxhzv.cn^
+||gxlsjt.com^
+||gxxie.com^
+||gxzxiww.com^
+||gyhgcgj.xyz^
+||gyjinchuang.vip^
+||gypowdr.com^
+||gyq3bew.icu^
+||gyqifa.com^
+||gysn001.com^
+||gyutmrp.com^
+||gz-hongxin.com^
+||gzasiatech.net^
+||gzfzcj.cn^
+||gzqvd.cn^
+||gzsjym.xyz^
+||h.baminw.cn^
+||h2ji5.xyz^
+||h45pmx1.cn^
+||h4b0srs.cn^
+||h5.dzgsdswh5.xyz^
+||h6cp.icu^
+||h731.icu^
+||hacde1.icu^
+||hacde10.icu^
+||hacde3.icu^
+||hacde5.icu^
+||hacde6.icu^
+||hackeraa.xyz^
+||hadesleta.com^
+||haejkmm.cn^
+||haffo70.com^
+||haihongzg.com^
+||haili-spitzer.com^
+||hairoak.com^
+||haise10.top^
+||haiwanli.com^
+||handerfix.com^
+||hanwdsii.com^
+||haohuisheng555.cn^
+||haokuaixiu.site^
+||haoweb.top^
+||haoy1.top^
+||haoyongdm.com^
+||haoyundm.com^
+||haoyundmtaotao.com^
+||hapying.com^
+||hasdser.com^
+||hasgde.site^
+||hbandier.com^
+||hbkunye.com^
+||hbqabbg.cn^
+||hbrmickt.com^
+||hbv.tobeacon.cn^
+||hbxhnqj.cn^
+||hbzhenquan.cn^
+||hbzshoes.com^
+||hcbmg.cn^
+||hcbmq.cn^
+||hcdjy.xyz^
+||hciea.xyz^
+||hcvegu.com^
+||hdfdsdaw.com^
+||hdpdrandpd.xyz^
+||hdvkl.cn^
+||hdxjtl.xyz^
+||hdypw.com^
+||hdzb6.cc^
+||hefei64.com^
+||hefei668.com^
+||hefrpv.xyz^
+||hegk01a.top^
+||hegk02a.top^
+||hegk03a.top^
+||hegk05a.top^
+||hegk06a.top^
+||hegk09a.top^
+||heioa.xyz^
+||henanqiuzhige.com^
+||heshun365.cn^
+||hesramfi.com^
+||hezhib.top^
+||hezlqmwm.com^
+||hfawdgz.cn^
+||hfctx.cn^
+||hffxc.com^
+||hfjk3wa.com^
+||hfk7j.top^
+||hflwgg.xyz^
+||hfqdipw.cn^
+||hgehse.site^
+||hgf8hck.com^
+||hghjks2.com^
+||hgiaef.site^
+||hgiafe.site^
+||hgjjk45.com^
+||hgjxp.cn^
+||hgkzl.cn^
+||hgpbhuj.cn^
+||hh0212.cc^
+||hh6820123.com^
+||hh9uv6tq.com^
+||hhff111222.com^
+||hhttm.top^
+||hickeyhsu.top^
+||hifyeldu.top^
+||higefa.site^
+||hikin.online^
+||hikykhz.icu^
+||hiqua.xyz^
+||histats.com^
+||hjbqnwb.com^
+||hjgkr0g.xyz^
+||hjkiguy.com^
+||hjpqt.cn^
+||hjtedf.xyz^
+||hkctmldg.icu^
+||hkk456.cc^
+||hkkeafj.cn^
+||hkscldggm.xyz^
+||hladalliance.com^
+||hlalliances.com^
+||hlbbn6ii.icu^
+||hlnr9q.icu^
+||hlzyb.cn^
+||hmcubp.top^
+||hmjhnkas.com^
+||hmjs.cnmo-img.com.cn^
+||hnbhrt.xyz^
+||hncadh.com^
+||hndfw.com.cn^
+||hndhas.com^
+||hnfnjn.xyz^
+||hnlczgjx.com^
+||hnlphr.cn^
+||hnltcw.com^
+||hnnuange.com^
+||hntezhi.com^
+||hnxxt.net^
+||hnzzff.club^
+||hohmaryt.com^
+||hollg8023.745c.cn^
+||holor0701.cn^
+||holor0804.cn^
+||holor857.cn^
+||hongfachn.com^
+||hongmao39.top^
+||hongteng.xyz^
+||hopefullyapricot.com^
+||hpcwwd.com^
+||hpg786n.cn^
+||hpgmkbt.icu^
+||hpiekt.cn^
+||hpvl2kb.icu^
+||hpvwdkn.cn^
+||hqbuoh.com^
+||hqdlhgx.cn^
+||hqgearb.icu^
+||hqnpwzu.cn^
+||hqzcths.cn^
+||hrngmf.com^
+||hsadeg.site^
+||hsdawz.com^
+||hsfbpp.xyz^
+||hslbahu.top^
+||hsrgnac.cn^
+||hssapp.shop^
+||hstbrt.xyz^
+||hswfj.cn^
+||hsyfcenter.com^
+||hthivr.xyz^
+||htienlu.top^
+||htjrlm.com^
+||htseca.top^
+||httpsjs.com^
+||htvixv.xyz^
+||huaweinnd.top^
+||huaxia.name^
+||hubiazhi.com^
+||hudiecaifu.com^
+||huicpu.com^
+||huifangwen.com^
+||huihuiqi.com^
+||huiruwei.com^
+||huitoukao.com^
+||huiyelu.com^
+||huiyigou111.com^
+||huiyueting.com^
+||huizhoumi.com^
+||hujunhao.name^
+||hummingexam.com^
+||huoju.asia^
+||hushenqiquan.com^
+||hvdath.xyz^
+||hwfoct.icu^
+||hwivedn.icu^
+||hwnod.xyz^
+||hxdwsfg.cn^
+||hxhohd.xyz^
+||hxinitv.icu^
+||hxwxfc.cn^
+||hxwxffc.cn^
+||hy.luassane.cn^
+||hyeqp.xyz^
+||hyidlu.com^
+||hylmfeifei.com^
+||hylmxing.com^
+||hypwbv.xyz^
+||hytzp.cn^
+||hzhabei.cn^
+||hzhuang.wang^
+||hzrghx.xyz^
+||hzvcaadn.icu^
+||i-fk.cn^
+||i.cidianwang.com^
+||i7akpd1.xyz^
+||i7pnx0t.cn^
+||iadsdk.apple.com^
+||ianyshare.xyz^
+||ibozys.cn^
+||ibqkjbw.com^
+||ibwqfpo.xyz^
+||iciclle.com^
+||idawziv.cn^
+||idc9pk.com^
+||identify.hotjar.com^
+||idubwz.cn^
+||idynbff.cn^
+||ieeod0.com^
+||iemwbu.cn^
+||ifdvlh.cn^
+||ifewo.xyz^
+||ifsdg.xyz^
+||igame2steam.com^
+||igetnaughty.com^
+||igscn.com^
+||ihclam.cn^
+||ihtqqws.cn^
+||ihwdun.xyz^
+||ii.joqtfa.cn^
+||iifyeldo.top^
+||ijfksdwe.xyz^
+||ijgbuj.xyz^
+||ijgocb.cn^
+||ijkmafsf.xyz^
+||ikjwmfeds.xyz^
+||iklda.cn^
+||iknwqdpo.xyz^
+||ikunikun.xyz^
+||ilade.xyz^
+||ildopxge.com^
+||ilyf4amifh.com^
+||image.yafytg.cn^
+||images.kxuexue.com^
+||imasdk.googleapis.com^
+||img.91p51.com^
+||img.ckcgsy.cn^
+||img.dubyc.com^
+||img.eqbyc.com^
+||img.ishanggao.com^
+||img.starpc.cn^
+||img.vue-js.cyou^
+||img2.qqwangming6.com^
+||imgcacaca.vip^
+||imgwdyey.com^
+||imp.zol.com.cn^
+||in-page-push.com^
+||inkuae.com^
+||inowe.xyz^
+||inpage-push.com^
+||insights.hotjar.com^
+||intimidatepropel.com^
+||ioiksw.cn^
+||iojnask.com^
+||ionksfefe.xyz^
+||iosppk.com^
+||iot-eu-logser.realme.com^
+||iot-logser.realme.com^
+||ip.tianqiapi.com^
+||ip.ws.126.net^
+||ip1398.com^
+||ipadf.xyz^
+||ipc08dt.com^
+||iplm.cc^
+||ipqc5ejfe.icu^
+||iqede.xyz^
+||iqgoukn.cn^
+||iruacwa.xyz^
+||isancio.top^
+||isdfbvkvsc.xyz^
+||islbaho.top^
+||iswgnn.com^
+||iszbxqps.com^
+||itheatmoran.com^
+||itienlo.top^
+||itpest.cn^
+||itxinrou.com^
+||ityangstudy.cn^
+||iufjkdjmsm.xyz^
+||iuu3j.xyz^
+||iuuiugbjd.xyz^
+||iuwkmpol.net^
+||ivqtrjt.cn^
+||ivzfpwm.cn^
+||iweiweb.com^
+||ixelrsd.cn^
+||ixjtpbj.cn^
+||ixnrmco.com^
+||iytrn.xyz^
+||j.dailiqing.net^
+||j.guanjiabo.net^
+||j.zlszw.com^
+||j6zh4g0.cn^
+||j7ifivzy.icu^
+||ja.yushuha.com^
+||jacksonyee.club^
+||jads.co^
+||jakid.xyz^
+||jakisity.top^
+||janwzsqi.icu^
+||jaowd.xyz^
+||jashautchord.com^
+||javase.top^
+||jayhou.top^
+||jbazhaheia.top^
+||jbhhxd.xyz^
+||jcde.site^
+||jched3.com^
+||jcheys.com^
+||jciske.top^
+||jciwztfj.com^
+||jcjzikj.xyz^
+||jcpecb.com^
+||jd2ujc.cn^
+||jd5c.top^
+||jdcnwd.com^
+||jdh74bf.com^
+||jdnlynb.cn^
+||jdpm.net.cn^
+||jessicarace.com^
+||jf2v.mnpool.cn^
+||jfnkjr.xyz^
+||jfsdiwmnbsk009.top^
+||jghklz.xyz^
+||jgsajfggv.xyz^
+||jh16csf.com^
+||jhkggrr.icu^
+||jhlazsot.icu^
+||jhvchv.xyz^
+||jhzfwl.cn^
+||jianchajingmk.net^
+||jianxinshanghai.com^
+||jianyihang.com^
+||jieshimaya.xyz^
+||jiezoiq.cn^
+||jifyelda.top^
+||jinbao888.com^
+||jinhaitun888.xyz^
+||jiqgsh.com^
+||jisukuaisong.cn^
+||jisz9e.cn^
+||jiumai88.com^
+||jiuyuntian3.cn^
+||jixmlx.xyz^
+||jjade.xyz^
+||jjdk33.com^
+||jjjak.com^
+||jjjcyjj.cn^
+||jjkiahh.icu^
+||jjklrcw.com^
+||jjztrz.xyz^
+||jklhs7u.com^
+||jknnjk.com^
+||jknrwe.cn^
+||jkzbjv.xyz^
+||jljftl.xyz^
+||jmbluyxkl.xyz^
+||jmr.nnxiant.cn^
+||jnhgm.com^
+||jnmascx.xyz^
+||jnp0kmm.icu^
+||jntmwrm.com^
+||jnwpzq.com^
+||jnyayk.xyz^
+||joannarace.com^
+||jocelynrace.com^
+||jochenanabata.guru^
+||joiwnq2.cn^
+||jojog.com^
+||jokerlulm.com^
+||jollytestpartying.com^
+||jomwihn.cn^
+||jothvz.xyz^
+||jpayu6di.icu^
+||jpqed.xyz^
+||jpush0b.xyz^
+||jpvrbt.xyz^
+||jqkcett.icu^
+||jrds.net.cn^
+||jrltdiu.cn^
+||jrmrijv.icu^
+||js.*2023*.live^
+||js.*2023*.xyz^
+||js.363lm.com^
+||js.bbdsdy.com^
+||js.kalvinbg.cn^
+||js.keeyekey.xyz^
+||js.loveshop8.com^
+||js.moeamv.com^
+||js.whfyhouse.com^
+||js.ysfzf.cn^
+||js6.efyt6.com^
+||jsczde.cn^
+||jsdocker.com^
+||jsebmcv.cn^
+||jsgdvkjz.com^
+||jslbaha.top^
+||jsm.godloveme.cn^
+||jsmxkj.com^
+||jsnoownma.fun^
+||jssav4hk.xyz^
+||jssav6hk.club^
+||jsyunmy.com^
+||jszavs1.com^
+||jszctech.com^
+||jtbunh.xyz^
+||jtienla.top^
+||jtjh.tw^
+||jtpu9s.icu^
+||juicyads.com^
+||jujcjz.xyz^
+||junshi8181.com^
+||just-machinery.com^
+||jutwzssh.icu^
+||jv0rlf.com^
+||jvjlkih.com^
+||jvljnb.xyz^
+||jvpyxve.cn^
+||jwddpvu.cn^
+||jweoe.xyz^
+||jwylcrb.cn^
+||jxbtl.com^
+||jxcrnwc.xyz^
+||jxgd1688.com^
+||jxmiyrh.icu^
+||jxtejf.xyz^
+||jy8izgie.xyz^
+||jygiizv.icu^
+||jyhlo0.com^
+||jynthelon.com^
+||jyt58.top^
+||jytjw.com^
+||jyvith.xyz^
+||jzdgn.cn^
+||jzdwl4.cn^
+||jzixypd.icu^
+||jzjxmj.com^
+||jzxpxj.xyz^
+||k16e9b.com^
+||k2.dancihu.com^
+||k31bpzf.xyz^
+||k42kw.top^
+||k5ggua.xyz^
+||k7f67a6s7.xyz^
+||k9w4m.xyz^
+||kagdf.com^
+||kahgjjd.com^
+||kaiguangdou.com^
+||kanwby.com^
+||kart2ks.icu^
+||kasdwergv.com^
+||kasiklz.cc^
+||katelin.top^
+||kazigua.top^
+||kb5ke.xyz^
+||kb8ixcm.cn^
+||kbae.qiqqh.cn^
+||kbneks00.online^
+||kc-valves.com^
+||kcnwe.xyz^
+||kdcl.pchome.com.tw^
+||kdcxhr.cn^
+||kdqnaec.cn^
+||kdvmnn.com^
+||kebi1.top^
+||kehbcv.top^
+||kekop.cn^
+||ken.kenxq.com^
+||kengi.top^
+||kfejnjs.cn^
+||kfyg.xyz^
+||kgeesh.site^
+||kgelugaz.com^
+||kgeshe.site^
+||kgfjrb711.com^
+||khgjfm16.com^
+||kifyeldd.top^
+||kinhincauking.website^
+||kinleung.cn^
+||kissfang.cn^
+||kivo.fun^
+||kjanfwss.xyz^
+||kjggk1.xyz^
+||kjuwxmi.xyz^
+||kjvaqbyebqarl.top^
+||kklpe.xyz^
+||kkmbbvz.xyz^
+||kkpgv2.xunlei.com^
+||kkylx.xyz^
+||kl.yditweb.cn^
+||kl91ccp.com^
+||klbvqqqj.com^
+||kljslku.com^
+||klufjdo.com^
+||kmbopoie.com^
+||kmgfjc.cn^
+||kmhmyaj.cn^
+||kmhnk00.com^
+||kmihknj.cn^
+||kminker.xyz^
+||kmjndas.com^
+||kmn1sk.com^
+||kmnhbr.xyz^
+||kmnhgna.com^
+||kmpl.rnqxp.cn^
+||kmpxq.cn^
+||kmr.enrosr.cn^
+||kmyiubbv.xyz^
+||kmzayrt.cn^
+||knbtpty.xyz^
+||knjcsonpo.com^
+||knjmhmk.com^
+||knliylh.cn^
+||knlk2md.cn^
+||knmwrkw.xyz^
+||ko2v.eiya.net^
+||kodfn.xyz^
+||koljnda.com^
+||kopde.xyz^
+||koudaikeji.info^
+||kowqd1.top^
+||kowqd5.top^
+||kowqd7.top^
+||kqubxdb.cn^
+||kr.sdykcloud.cn^
+||krr894.top^
+||krw.yrehdfer.com^
+||ks66666661.com^
+||ksadrewrty.com^
+||kscly.com^
+||ksdayhtj.shop^
+||ksdayhtl.xyz^
+||kshuiz.top^
+||kslbahd.top^
+||ksqfwxu.cn^
+||kstj.baidu.com^
+||kszvmqo.cn^
+||kszxqq.com^
+||ktdlsb.com^
+||ktienld.top^
+||kuanxin.top^
+||kunzhang.name^
+||kuxkddg.cn^
+||kv8899.com^
+||kvsqa.xyz^
+||kwcmrfb.cn^
+||kwdgudw.cn^
+||kwo-0115.cc^
+||kxcp365.com^
+||kxm1b0u.com^
+||kydb.xyz^
+||kyplpw.com^
+||kyq3hky.icu^
+||kyq3xch.icu^
+||kytesconge.com^
+||kyxw9itc.xyz^
+||kyxw9itv.club^
+||kyzx.xyZ^
+||kzchyhr.cn^
+||kzgmpu.com^
+||kzjkexn.cn^
+||kzuxlydg.icu^
+||l.glrcy.cn^
+||l.ykimg.com^
+||l23jhjfasd.xyz^
+||l3r6p0d5.com^
+||l4efwdtg.icu^
+||laawmmy.cn^
+||laink.xyz^
+||laipeitu.com^
+||lakefish.xyz^
+||lakjdskls.zhdchb.com^
+||lalaping.com^
+||laljjn.xyz^
+||lamkghx.icu^
+||lanmeifeel.xyz^
+||lanmeiyu.work^
+||lanver.fun^
+||larbcc.xyz^
+||launchingonsetwhirlwind.com^
+||lbnqnp.xyz^
+||lbprjdi.cn^
+||lccfjszp.cn^
+||ldjhlqr.cn^
+||ldxinb.xyz^
+||leadc4.icu^
+||leadc6.icu^
+||leadc7.icu^
+||ledaren.cn^
+||ledni.xyz^
+||legdeh.fun^
+||legopq.site^
+||leirsw.com^
+||lekkrrlel.com^
+||lendc.xyz^
+||lestv1.icu^
+||lestv10.icu^
+||lestv7.icu^
+||lezbrja.cn^
+||lfjtiuy.cn^
+||lflmdm.com^
+||lfzk2cp.icu^
+||lganilgll.cyou^
+||lgecqrb.com^
+||lgjygg.com^
+||lgoewtd.icu^
+||lgohse.fun^
+||lgoseh.fun^
+||lguaud.icu^
+||lgygy.cn^
+||lhdlbp.xyz^
+||lhgwcvw.cn^
+||lhiefl.com^
+||lhippac.cn^
+||lhotajl.icu^
+||lhy1.xyz^
+||lianmeng.xgxhy.com^
+||liates.top^
+||lichunxiao.cn^
+||liebaovip.com^
+||lifyeldl.top^
+||lihong.ltd^
+||liitwrz.icu^
+||lijie.in^
+||lijunkai.com^
+||likdie.com^
+||lingcde.cn^
+||lingke05.top^
+||lingsiqiwu.com^
+||lingting.xin^
+||link.jzzxapp.cn^
+||linuozhiyao.xyz^
+||linyongming.top^
+||lishuaibin.cn^
+||littlecdn.com^
+||liugaohao.com^
+||liuyimin5.cn^
+||liwed.xyz^
+||lixianghaodian.com^
+||lixiaodongcy.com^
+||lizehuandian.top^
+||ljarfvg.cn^
+||lkancklanklcav.com^
+||lkmhn.com^
+||lknhrnd.com^
+||lknlkndasda.top^
+||lknnbd.xyz^
+||lkpmprksau.com^
+||llaxl.com^
+||llpuhx.xyz^
+||lm22.top^
+||lm335.com^
+||lm336.com^
+||lm343.com^
+||lm553.com^
+||lm663.com^
+||lm665.com^
+||lm811.com^
+||lm832.com^
+||lm865.com^
+||lm882.com^
+||lm995.com^
+||lmnpd.xyz^
+||lmx7.com^
+||lmxxxz.com^
+||lnaevr.fun^
+||lnzjlr.xyz^
+||log.byteoversea.com^
+||log.daqi.com^
+||log.fc.yahoo.com^
+||log.music.baidu.com^
+||log.pinterest.com^
+||log.vdisk.cn^
+||log.zongheng.com^
+||logbak.hicloud.com^
+||logservice.hicloud.com^
+||logservice1.hicloud.com^
+||loispp.com^
+||lokindt.com^
+||lokngd.com^
+||looedu.top^
+||lookxiuxiu.com^
+||lop.lamimi.cn^
+||lopqrx.xyz^
+||lovegg.club^
+||lowadec.cn^
+||lpasdfgwer.com^
+||lpeolfa.top^
+||lpjxzs.com^
+||lpmzt.cn^
+||lpocne.top^
+||lpxmall.com^
+||lqe3.icu^
+||lqjinx.xyz^
+||lrlsrz.xyz^
+||lrqpyhn.icu^
+||lsancil.top^
+||lshuaibin.cn^
+||lsj2.5aer.com^
+||lskmipb.icu^
+||lslbahl.top^
+||ltht.tech^
+||ltienll.top^
+||ltkbyfd.icu^
+||ltsubzgmw.xyz^
+||luciochen.cn^
+||luckyorange.com^
+||luogod.xyz^
+||luoyangjinmeii.com^
+||lvcha99.cc^
+||lvjtiaa.xyz^
+||lvrvdn.xyz^
+||lwide.xyz^
+||lwksxs.com^
+||lwlqsgr.cn^
+||lwzdzf.xyz^
+||lxbndh.xyz^
+||lxg8s.xyz^
+||lxksalary.com^
+||lycjsix.cn^
+||lyewe.xyz^
+||lygjgzc.com^
+||lyszsz.cn^
+||lyua.cn^
+||lywdoo.cn^
+||lzfzkedp.icu^
+||lzjzyjh.com^
+||lzljhs.com^
+||lzmvcrp.icu^
+||lzzzjx.xyz^
+||m.do.downcdn.top^
+||m.ffowo.com^
+||m.gz-bz.cn^
+||m.nereus.live^
+||m.pmtong.shop^
+||m.s.tpcdn.top^
+||m.slshiye.cn^
+||m.uscdn.top^
+||m.vcsoat.cn^
+||m.wantemachine.com.cn^
+||m.xylmdm.top^
+||m03dv.xyz^
+||m09mm.xyz^
+||m4pgay.com^
+||m7g2v1b9.com^
+||mail.kguapp.com^
+||maiqi.xyz^
+||maljxp.cn^
+||manage88.com^
+||manbag.net^
+||manguan.vip^
+||manlungkey.com^
+||maobujie.com^
+||mapsmnx.cyou^
+||margueritenice.com^
+||marjorienice.com^
+||maximpetus.com^
+||mbekgac.xyz^
+||mbveryu.top^
+||mbxsku.cn^
+||mbxw.xyz^
+||mc.muhtbnd.cn^
+||mcdwfed.cn^
+||mclseww.top^
+||mdhxyhl.cn^
+||mdkjefq.cn^
+||mdqhyxe.cn^
+||mdqpkdne.xyz^
+||mdt.qq.com^
+||mdwhxw.com^
+||meaqcj.cn^
+||meethanshi.com^
+||meetsourhig.biz^
+||meihaoxiangwang.com^
+||meihu56.cn^
+||meiweifood.xyz^
+||mellowmd.com^
+||mengbli.com^
+||metauniverse88.com^
+||metaversemolecule.com^
+||metaword.cn^
+||metrics.apple.com^
+||metrics.data.hicloud.com^
+||metrics.icloud.com^
+||metrics.mzstatic.com^
+||metrics2.data.hicloud.com^
+||metrika.yandex.ru^
+||mfe.paqpq.com^
+||mfoevvy.com^
+||mfxyqh.cn^
+||mg.yunchong6.cn^
+||mg.zgcqxjzny.cn^
+||mgivkqk.cn^
+||mh616.org^
+||mhslbgk.cn^
+||mhysbwo.xyz^
+||mifyeldx.top^
+||mikongdd.top^
+||mindopu.com^
+||mingtians.top^
+||misadw1.cn^
+||misapopait.com^
+||mixer.sina.cn^
+||miyushu.com^
+||mjg0310.com^
+||mkjnba.com^
+||mkjnbg.com^
+||mkjnha.com^
+||mkqdj.cn^
+||mlog.aipai.com^
+||mlstx.cn^
+||mlzgazz.cn^
+||mm28j.com^
+||mmead.xyz^
+||mmevt.icu^
+||mmfcezwqaz.com^
+||mmftdt.com^
+||mmgg62.com^
+||mmkkhhnn.cn^
+||mmszxc.top^
+||mmtnat.com^
+||mn123cass.xyz^
+||mngjrn.cn^
+||mnhknds.com^
+||mnpbxjq.cn^
+||mnzvtwd.cn^
+||mobrkbb.com^
+||moead.xyz^
+||mojoplain.com^
+||monsteredward.com^
+||moobtcnse.xyz^
+||moon.ibytecdn.cn^
+||mosangkeji.com^
+||mosflower.cn^
+||motuopj.cn^
+||mouseflow.com^
+||moxiaoqihuoguo.com^
+||mrgecm.xyz^
+||mrhboe.xyz^
+||mrqbuf.xyz^
+||mryshl.com^
+||msdsd2.cn^
+||msg.ettoday.net^
+||msg.iqiyi.com^
+||msg.video.qiyi.com^
+||msite.baidu.com^
+||mssdhde.cn^
+||mt4v4.com^
+||mtawcy.xyz^
+||mtienlx.top^
+||mu6m1.com^
+||muchenzhongguo.com^
+||mudroom.aquadisco.xyz^
+||muhnbc.cn^
+||mujkdna.xyz^
+||musicoholics.com^
+||muxing.city^
+||mvamnng.cn^
+||mvgucp.com^
+||mvlkvth.cn^
+||mwandlx.top^
+||mwdwepok.xyz^
+||mwzbp.iask.com.cn^
+||mxevdii.cn^
+||myads.cc^
+||myexpendd.xyz^
+||mykch.top^
+||mylmad.com^
+||mywb3.com^
+||mzqf1.com^
+||mzwzo.cn^
+||mzxvib.com^
+||mzya5718.xyz^
+||mzybirdnest.com^
+||n5ta9.site^
+||naemailom.fun^
+||naiep.xyz^
+||najnus.com^
+||naned.xyz^
+||naqiwjj.icu^
+||naryvz.xyz^
+||nawpush.com^
+||nbfieef.cn^
+||nbgsintl.com^
+||nbsxazr.icu^
+||nbtfbb.xyz^
+||ncgqmzm.cn^
+||nchxzmhr.com^
+||ncmxwhf.icu^
+||ncnfjasd.net^
+||ndfsl.com^
+||ndqcz0e.xyz^
+||nefbjp.xyz^
+||neg2zos.icu^
+||neghes.fun^
+||neihhou.com^
+||neiod.xyz^
+||nektonsrutate.com^
+||new.xiongzhangad.com^
+||new.zhuanquxian.com^
+||newwcrsed.com^
+||nezqmud.com^
+||nflks.cn^
+||nftjjw.com^
+||ng8f.top^
+||ngbthf.xyz^
+||nghdp.cn^
+||ngishc.top^
+||nhjkm.com^
+||nhjsw.cn^
+||nhpwwd.cn^
+||nhscv.cn^
+||nhyvhmvw.com^
+||niaideren.icu^
+||niangaoxiansheng.com^
+||nieae.xyz^
+||niebiaoyyds.com^
+||nifyeldc.top^
+||nijnqwem.xyz^
+||nike666.com^
+||nimaxrv.cn^
+||nimoatl.icu^
+||nisihu.com.cn^
+||nissifresh.com^
+||nithisp.cn^
+||niulai0323166.space^
+||njcengpianwang.cn^
+||njcyt.com^
+||njogejt.icu^
+||njtprv.xyz^
+||njupt-sacc.com^
+||njzyjy.cn^
+||nlvgxr.xyz^
+||nlyuuy.cn^
+||nmdotj.xyz^
+||nmetrics.samsung.com^
+||nmgyllh.cn^
+||nmkghh.com^
+||nmm9i.xyz^
+||nmrdnqn.cn^
+||nmssdbgmf.xyz^
+||nndzsw.com^
+||nndzsw1.com^
+||nnfyxd.xyz^
+||nnocsin.cn^
+||nnqwe.xyz^
+||nogff.top^
+||nohcff.xyz^
+||northcookie.xyz^
+||notes-analytics-events.apple.com^
+||notify.bugsnag.com^
+||nourcomip.fun^
+||npftmqv.cn^
+||nphqw.cn^
+||nqdufv.xyz^
+||nqoxurf.icu^
+||nrjzkj.cn^
+||nryqr.cn^
+||nsclick.baidu.com^
+||nswtojdi.icu^
+||ntozchv.icu^
+||nuannuanqi.top^
+||nudpqt.com^
+||nuheoub.cn^
+||nunxhv.com^
+||nutaku.net^
+||nuucmzuc.com^
+||nwera.xyz^
+||nxhwvt.xyz^
+||nxnjw.com^
+||nxxyjn.com^
+||nzrlx6wc.icu^
+||nzrovf.xyz^
+||nzymeedg.icu^
+||o.zjjrlx4.com^
+||o2.jyjyj.cn^
+||oaclrst.cn^
+||oaftaijo.net^
+||oaihiiacb.com^
+||oajfpqojev.net^
+||obertsiamw.fun^
+||obgbok.com^
+||oceanbot-steam.com^
+||oehhq.xyz^
+||oewtuho.cn^
+||offerwall.yandex.net^
+||ofooe.cn^
+||ofreadingand.biz^
+||oganilglk.cyou^
+||oghqvffmnt.com^
+||ognujxj.cn^
+||ohchehw.cn^
+||ohoyao.com^
+||oi9rp7.online^
+||oiewpw.com^
+||oifyeldk.top^
+||oijmds.com^
+||oiknldwlkop.com^
+||oikqwnm.com^
+||oinjkenwok.xyz^
+||oinlkwdsx.xyz^
+||oinlkwr.xyz^
+||oiqbdwjkl.com^
+||oiqwnfk.com^
+||oiunga.com^
+||oiuqwppcsdf.com^
+||ojbkmcsdx.xyz^
+||ok-11-cai.cc^
+||okbd2ou.icu^
+||okforwardt.fun^
+||okmhmkjnm.com^
+||okmhnd.com^
+||okmwfq.xyz^
+||okpoiione.com^
+||okqwidvnsk.net^
+||oldulgk.cn^
+||olpv.onlylady.com^
+||omhoa.com^
+||oncinu.com^
+||one.fsylr.com^
+||one.gongshu168.cn^
+||one6u.xyz^
+||oneyearonechange.com^
+||onkacspio.com^
+||oopej.xyz^
+||ooqwc.xyz^
+||ootyx24.com^
+||open.oneplus.net^
+||ophwrh.cn^
+||opjnbmk.com^
+||opnked*.xyz^
+||opzksyy.cn^
+||oq6ry.com^
+||oqjfekdkc.net^
+||oqpgq.top^
+||oqyiapj.cn^
+||orxsq.xyz^
+||osancik.top^
+||oslbahk.top^
+||osnignsk.xyz^
+||ossfile001.com^
+||otienlk.top^
+||oueia.xyz^
+||ougannike.com^
+||outbrain.com^
+||outoctillerytor.com^
+||ouyhh.xyz^
+||owiurjngsd.com^
+||owlfolk.com^
+||owlinggnomist.com^
+||owlunimmvn.com^
+||owrkwilxbw.com^
+||oxj8hcfg.xyz^
+||oyfnkle.cn^
+||oyhurln.cn^
+||oyxp.xyz^
+||oyysbc.xyz^
+||ozkbdxdu.icu^
+||p0y.cn^
+||p1-feedback.byteimg.com^
+||p11q.cn^
+||p26.gejulm*.com^
+||p2kfynrr.icu^
+||p52q.cn^
+||pagead2.googleadservices.com^
+||pagead2.googlesyndication.com^
+||pageview.kgsz.cn^
+||panchaxumbilic.com^
+||pangolin-sdk-toutiao-b.com^
+||pangolin-sdk-toutiao.com^
+||pangolin.snssdk.com^
+||pansclub.xyz^
+||paradisemall.net^
+||parnett55.xyz^
+||partnerads.ysm.yahoo.com^
+||payoneok.com^
+||pbaiyho.cn^
+||pbtsjh.xyz^
+||pc768.com^
+||pchznf.xyz^
+||pcqsajr.icu^
+||pcvzpj.xyz^
+||pdhhmf.cn^
+||pdiabbi.cn^
+||pdjjrh.xyz^
+||pdrtcgfx.cn^
+||pdweigee.com^
+||pdxdxl.xyz^
+||pdxubxc.cn^
+||pejrq.xyz^
+||pengauto.cn^
+||pepnsnq.cn^
+||pexnjio.cn^
+||pfdth.cn^
+||pfhj89w.com^
+||pfiparts.com^
+||pfjzzl.com^
+||pflrv.cn^
+||pfqwbqs.cn^
+||pftdmmc.xyz^
+||pgght17.com^
+||pglstatp-toutiao.com^
+||phoorned.com^
+||phputils.wc-os.com^
+||piaochong.co^
+||piqtpbxo.icu^
+||pirxzl.xyz^
+||pixel.facebook.com^
+||pj3f7.xyz^
+||pjogndc8ixoidna.360doc.cn^
+||pjsbuhl.icu^
+||pjy55d.com^
+||pkjl00l.cn^
+||pkjmmn.icu^
+||playstats.v.duowan.com^
+||plbs9k.icu^
+||plmn5.com^
+||plnshao.xyz^
+||plof69.com^
+||pmensrl.cn^
+||pmvlwjy.cn^
+||pmxalz.xyz^
+||pnhp3x1.com^
+||pnlhnx.xyz^
+||pnzhpb.xyz^
+||poae2klya.icu^
+||poasotha.com^
+||poereawer.top^
+||pogwua.cn^
+||pohpll.xyz^
+||poiqknfl.com^
+||pojihfnkbllg.net^
+||pojkhufef.xyz^
+||polfaqgvsd.net^
+||polkkqm.com^
+||polkmerth.com^
+||polkmnhytgb.com^
+||poqiod.com^
+||poqjnkdsou.net^
+||poqwnllkm.com^
+||poqwua.cn^
+||pos.baidu.com^
+||postserviceuk.com^
+||powedw.com^
+||ppedp.cn^
+||pplnjoow.com^
+||ppyibei.com^
+||pqd.org^
+||pqjprom.cn^
+||pqomnfbg.com^
+||pr-bh.ybp.yahoo.com^
+||pr88vhg.com^
+||prdohgp.cn^
+||prelandappslab.com^
+||prlioxb.cn^
+||prodigalpromotion.com^
+||prokyrn.icu^
+||propeller-tracking.com^
+||providentsopport.site^
+||pstvvb.xyz^
+||ptauxofi.net^
+||ptfxh.com^
+||ptgdb.cn^
+||ptmabek.cn^
+||ptvfzv.xyz^
+||public.wlbaike.com^
+||pufhzpt.cn^
+||puqer.cn^
+||puy2.cn^
+||pv.cheshi.com^
+||pv.quw1234.icu^
+||pv.zhiding.cn^
+||pvtest.zol.com.cn^
+||pvymlsvo.xyz^
+||pyeditingpro.biz^
+||pygokay.cn^
+||pyjqhb.xyz^
+||pypwxvo.cn^
+||pzjizsyf.icu^
+||pzkrgcp.cn^
+||pzqqstb.icu^
+||q.baminw.com.cn^
+||q.f05.xyz^
+||q27sz.com^
+||qaljfiwv.com^
+||qasqs.com^
+||qawxpzm.cn^
+||qaxkwxpf.cn^
+||qbhmz3.com^
+||qbtd.xyz^
+||qcb2xeg.icu^
+||qcmm01.com^
+||qcmm05.com^
+||qctcu.com^
+||qczcxe.cn^
+||qdczx66.com^
+||qdlzj.cn^
+||qdp.qidian.com^
+||qdvideo.xyz^
+||qdwnlkdw.com^
+||qdzilh.cn^
+||qedvcu.com^
+||qexitv.com^
+||qezpjlp.cn^
+||qf1d.top^
+||qfcdgy.cn^
+||qfnoyix.cn^
+||qhicumg.cn^
+||qhjm600.com^
+||qhkxs.cn^
+||qhonzpl.cn^
+||qhvws.com^
+||qhx1h2g.com^
+||qhxtzwf.cn^
+||qiabayyds.com^
+||qiangquanvip.com^
+||qiaolianshu.com^
+||qichetansuo.com^
+||qifake.com^
+||qifjksdqwd.xyz^
+||qifyeldy.top^
+||qijpaih.cn^
+||qiudbjwhy.com^
+||qiyeshangpu.net^
+||qjekt0c.xyz^
+||qjwpy.com^
+||qjxys.cn^
+||qktmwiq.cn^
+||qmfcybwbf12.com^
+||qmfcybwbf16.com^
+||qmfcybwbf19.com^
+||qmfcybwbf28.com^
+||qnfvojfkw.xyz^
+||qnieo.fun^
+||qnipkk.xyz^
+||qoilbsfwqd.net^
+||qonkdwwf.net^
+||qowfknlds.net^
+||qpb.sohu.com^
+||qpb0.sohu.com^
+||qpb1.sohu.com^
+||qpoiwnelc.com^
+||qpztub.xyz^
+||qq-hls.xyz^
+||qqnde.xyz^
+||qqq123987.site^
+||qqqwww987.site^
+||qqqwww987.space^
+||qqzbabc20.com^
+||qrirud.xyz^
+||qrjxween.com^
+||qrxmgfz.cn^
+||qsanciy.top^
+||qscvli.com^
+||qselic.top^
+||qsj8fd.com^
+||qsjfd2.com^
+||qsjfd2.xyz^
+||qslbahy.top^
+||qstzar.cn^
+||qtd95fj.online^
+||qtienly.top^
+||qtmdzsj.cn^
+||quanxiaozi.com^
+||qubdjkqwl.com^
+||qucncfo.cn^
+||qudajie.com^
+||qurl.f.360.cn^
+||qutyan8848.com^
+||qvxvvjom.com^
+||qw2v.taoxiehui.cn^
+||qwcwnjk.com^
+||qwdbsjnql.com^
+||qwe0231141.bj.bcebos.com^
+||qweasd.vip^
+||qweewq2021.online^
+||qwer220.cn^
+||qwertyuadf.com^
+||qwrnkpow.com^
+||qxakzox.cn^
+||qxrvmu.com^
+||qygzbxpt.com^
+||qyzyd.top^
+||qzda.cc^
+||qzos9ou.xyz^
+||qzpbwq.com^
+||qzpmx.cn^
+||qzqd2.com^
+||r36ku.site^
+||r5dfwjtb.icu^
+||r6pt6kfz.com^
+||r75tia.cn^
+||rabuagc.cn^
+||rapsmnz.cyou^
+||razrzh.xyz^
+||rbioclv.cn^
+||rbodwtj.icu^
+||rbrbr88p.cn^
+||rbsodzgoy.xyz^
+||rc7e.top^
+||rcblfd.xyz^
+||rcqmvmq.cn^
+||rcqqlwb.cn^
+||rdbousn.cn^
+||rddsjx.xyz^
+||rdlbkvo.cn^
+||rdpcom.com^
+||rdufuxr.icu^
+||readme.red^
+||realsrv.com^
+||realtime-bid.com^
+||realwanghao.com^
+||recds7.icu^
+||redbaby.hk^
+||relafp.xyz^
+||remfebd.cn^
+||reminews.com^
+||rengbali.fun^
+||renhadmasandbab.info^
+||renzhen8.cn^
+||reportlog.dftoutiao.com^
+||restorationbowelsunflower.com^
+||rf.cnlongshou.com^
+||rfnenr.xyz^
+||rfnhwaj.cn^
+||rfto9i.icu^
+||rgvqddo.com^
+||rhesed.site^
+||rhinogo.cn^
+||rhlxm.top^
+||rhtc.quanminyouxi.cn^
+||richshredinger.com^
+||rifyeldz.top^
+||rilwzsit.icu^
+||rinshy17.xyz^
+||riqmqrd.icu^
+||rixgpx.xyz^
+||rizihao.top^
+||rjzqtz.xyz^
+||rksnqq.com^
+||rkzby.cn^
+||rljjt.cn^
+||rlogs.youdao.com^
+||rlqoyht.icu^
+||rmws8.com^
+||rmzbfum.cn^
+||rndhaunteran.com^
+||rnhqxh.com^
+||ronbbf.xyz^
+||rongedui.com^
+||ror12.cc^
+||rou3.xyz^
+||rpahyhn.cn^
+||rpkcqtf.cn^
+||rppihz.xyz^
+||rpyor0k.xyz^
+||rqxtbr.xyz^
+||rr.tracker.mobiletracking.ru^
+||rrgapzw.cn^
+||rrxddl.xyz^
+||rsanciz.top^
+||rsinnxoe.com^
+||rssxsjh.icu^
+||rsvqlz.cn^
+||rszkhn.xyz^
+||rtborp.xyz^
+||rte.fuoo1.top^
+||rtjmln.xyz^
+||rtmark.net^
+||rtsdfw44.com^
+||rtumdhdk.xyz^
+||rtumwzp.icu^
+||ruanjiancms.com^
+||rui61.cn^
+||rulwph.xyz^
+||run-syndicate.com^
+||runative-syndicate.com^
+||runn.fun^
+||runningman.site^
+||rusticaula.com^
+||rvbztg.cn^
+||rvlgrb.xyz^
+||rvyjbwr.cn^
+||rvzlobj.cn^
+||rxlidz.ink^
+||rxyggrq.cn^
+||rywnvzd.cn^
+||rzkptd.com^
+||rznscya.cn^
+||rzsgxmm.cn^
+||s.btime.com^
+||s.ufile.cc^
+||s.union.360.cn^
+||s1.ssl.qhres.com^
+||s2dcm.com^
+||s3t3d2y8.afcdn.net^
+||s4te24u.com^
+||s4zqj3m.cn^
+||s65m.win^
+||s6in.cc^
+||sa8zdui.com^
+||saccac11.com^
+||sacfasv.com^
+||sacre.cn^
+||sacredperpetratorbasketball.com^
+||saitef.cn^
+||samsung-com.112.2o7.net^
+||samsungads.com^
+||sange20221226.xyz^
+||sanme2.taisantech.com^
+||saviourketonic.com^
+||sb4you1.com^
+||sb6k.top^
+||sbcjahdc.com^
+||sbdebcz.cn^
+||sbeaje.com^
+||sbldw.cn^
+||sc-gov-cn.website^
+||scannapp.xyz^
+||schain.group^
+||schedfi.com^
+||sciillr.cn^
+||scjpqut.cn^
+||scrvw3.com^
+||sd.yhzzzs*.com^
+||sd01you.com^
+||sd6hon.cn^
+||sdchb2.com^
+||sdfgbuy.com^
+||sdfyiu.com^
+||sdhjueue.com^
+||sdhuawen.cn^
+||sdk.sipujia.cn^
+||sdkconfig.ad.intl.xiaomi.com^
+||sdkdfjksl.com^
+||sdqoi2d.com^
+||sdvfvgj.cn^
+||sdzhongke.cn^
+||securitymobile.club^
+||selornews.com^
+||sensifyfugged.com^
+||senxiaopang.top^
+||seordl.cn^
+||sessions.bugsnag.com^
+||settings.luckyorange.net^
+||sfbixfd.cn^
+||sfg11rr.com^
+||sgegie.fun^
+||sgeth7.icu^
+||sglyd.cn^
+||sh-qiruizx.com^
+||shanjewelry.com^
+||shanxicloud.net^
+||shareman.xyz^
+||shbdyx.com^
+||sheeroop.com^
+||shenfagg.com^
+||shenfire.cn^
+||shengminsy.com^
+||shenhl.top^
+||shenlinlive.cn^
+||shentongjiakao.ren^
+||shigl.top^
+||shijixinrui.cn^
+||shixiong.xyz^
+||shjha.top^
+||shoagooy.net^
+||shop.yipanhaocai.com^
+||shouzhi.biz^
+||show.aklm.cc^
+||show.meituangov.cn^
+||show.pinyoux.com^
+||show.worldcrm.cn^
+||shproud.com^
+||shtatuo.cn^
+||shufapeixun.shop^
+||shulsbs.cn^
+||shunlianhudong.com^
+||shuyu2001.cn^
+||sifa.aak7.cn^
+||sifyeldb.top^
+||simblotusitate.com^
+||simi1234.com^
+||simi2345.com^
+||similm.xyz^
+||simiyue2.com^
+||simplewebanalysis.com^
+||siwei.pub^
+||sixiuwl.cn^
+||siz3wxt8p.shop^
+||sjbgyak.cn^
+||sjdfuvz.cn^
+||sjoy7rq.cn^
+||skfj5d.com^
+||skfjd1.xyz^
+||skfqxkk.cn^
+||skidfqh.xyz^
+||skluff.com^
+||skogsborg.net^
+||skxuueby.cn^
+||sky.tongjiai.com^
+||slfango.ltd^
+||slonlyuse.shop^
+||slsuggestion.live^
+||slutcmail.com^
+||sm2kz.net^
+||smabye.com^
+||smartmail.cyou^
+||smartmuchang.com^
+||smartnextusa.com^
+||smetrics.samsung.com^
+||smfjfgie.xyz^
+||smtwm61.com^
+||so.clzgd.com^
+||sobakenchmaphk.com^
+||sogo.uc.continuefaf.top^
+||solaron.top^
+||somaliainc.com^
+||somewhate.club^
+||soulsoul.xyz^
+||sportsdream.top^
+||spplamt.xyz^
+||sq59.cn^
+||srbzw.cn^
+||srmdz.vip^
+||ssacher.com^
+||ssancib.top^
+||ssdfgq7.com^
+||ssdtour.com^
+||ssh.q4hwkg.cn^
+||ssjiancai.com^
+||ssjuxsc.cn^
+||ssjy.shop^
+||ssl.linyiccic.com^
+||sslbahb.top^
+||ssnnn.net^
+||ssqyuvavse.com^
+||sssxwsry.com^
+||stadig.ifeng.com^
+||starttui.xyz^
+||stat.cnmo.com^
+||stat.download.xunlei.com^
+||stat.ea3w.com^
+||stat.game.yy.com^
+||stat.hebnews.cn^
+||stat.house365.com^
+||stat.ijinshan.com^
+||stat.img-space.com^
+||stat.jc001.cn^
+||stat.pchome.net^
+||stat.timedg.com^
+||stat.v.17173.com^
+||stat.xgo.com.cn^
+||static.ads-twitter.com^
+||static.cdnativepush.com^
+||static.gridsumdissector.com^
+||static.ptoahaistais.com^
+||statics.woozooo.com^
+||statics88.vip^
+||statis1.mama.cn^
+||statisfile.com^
+||stats.v.duowan.com^
+||stats.wp.com^
+||stgowan.com^
+||stienlb.top^
+||stmzzs.com^
+||stricaik.com^
+||studylabs.cn^
+||stunthedge.com^
+||sun66387567606.online^
+||sun66387567606.site^
+||sunriseoutdoor.cn^
+||surface361.com^
+||surperverse.com^
+||surveys.hotjar.com^
+||suy5x8.com^
+||svarub.xyz^
+||svdpgmt.cn^
+||svvbrkk.cn^
+||svvev3.com^
+||sw9t.ml^
+||swwwxww.oss-cn-hangzhou.aliyuncs.com^
+||sxguowei.com^
+||sxk9m8x.cn^
+||sxundrh.cn^
+||sybnzs.cn^
+||sycrgc.xyz^
+||sydz.tw^
+||sygmtz.com^
+||syr66.com.cn^
+||sytclsb.cyou^
+||szafvjdd.icu^
+||szdaqi88.com^
+||szfhl99.com^
+||szhszxfw.cn^
+||szipkp.com^
+||t.atomicfile.cn^
+||t0pan.top^
+||t1tgame.com^
+||t23o.cn^
+||t28goe.cn^
+||t2zfyxjj.icu^
+||t33ng.com^
+||t7x22m7c.com^
+||tahltanboutell.com^
+||tainec.fun^
+||taiqingjiu.com^
+||tangk.top^
+||taoyao.tech^
+||tarqk5.com^
+||tbcgumkadc.xyz^
+||tc6tc.com^
+||tchkcc.cn^
+||tci.oss-ap-southeast-1.aliyuncs.com^
+||tcsgcdn.top^
+||tcuqqhj.icu^
+||tdavopl.icu^
+||tdigcw.com^
+||techspecndt.com^
+||teddync.net^
+||tencent.xn--io0a7i^
+||tepusi888.cn^
+||termvb.xyz^
+||tetiao9.com^
+||teusyxz.icu^
+||tfbulkidn.com^
+||tfdmzsgy.icu^
+||tfexcludes.shop^
+||tfgotoai.shop^
+||tfonlyuse.shop^
+||tfsuggestion.live^
+||tftran.shop^
+||tfttbd.xyz^
+||tfutcmail.com^
+||tfzozf.xyz^
+||tg.loclog.cn^
+||tgbevv.xyz^
+||tgcfmh.com^
+||tgdopodk.com^
+||tgfyq.cn^
+||tggsd07.com^
+||tgymhwt.cn^
+||thallus.net^
+||thcaes.top^
+||thdidx.xyz^
+||thefatherofsalmon.com^
+||thesac2.top^
+||thesac3.top^
+||thesac4.top^
+||thesac5.top^
+||thesac7.top^
+||thesac8.top^
+||thesac9.top^
+||thewindrun.com^
+||thezbpe5*.xyz^
+||thinkmd.cn^
+||thvx9i.icu^
+||tiandesign.top^
+||tianyuewangluo.top^
+||tifyeldi.top^
+||tikimg.cc^
+||tisszhb.cn^
+||tj-cyhg.com^
+||tj-yijiajing.com^
+||tj.21ic.com^
+||tj.allcdn.vip^
+||tj.sosomp.com^
+||tjj.com^
+||tjjd83.xyz^
+||tjnwfjy.cn^
+||tjqwb.cn^
+||tjwzyjx.icu^
+||tknkfd.xyz^
+||tkqwurl.icu^
+||tlbjw.com^
+||tlprlf.xyz^
+||tlsgq.cn^
+||tltyygb.cn^
+||tmochyf.cn^
+||tmwbszn.icu^
+||tnebxv.top^
+||tnjvz.cn^
+||toastspinner.com^
+||toggle.qq.com^
+||toijr.xyz^
+||tokendomain.xyz^
+||tongji.xinmin.cn^
+||tonxzq.com^
+||toutiao.xn--fiqs8s^
+||tovppl.cn^
+||tptp002.cfd^
+||tpvuxt.xyz^
+||tqdctl.xyz^
+||tqdpqq.com^
+||tqmcj.cn^
+||tqytqdrq.icu^
+||track.hujiang.com^
+||track.sohu.com^
+||track.uc.cn^
+||tracking.kdnet.net^
+||tracking.rus.miui.com^
+||trafficjunky.net^
+||trc.taboola.com^
+||trektinyreproduce.com^
+||trfmxf.xyz^
+||trk.pinterest.com^
+||trognoi.com^
+||trp69.top^
+||trqhf.xyz^
+||trslw.cn^
+||trustedcpmrevenue.com^
+||tsancii.top^
+||tsck.online^
+||tseda1.icu^
+||tseda4.icu^
+||tseda6.icu^
+||tslbahi.top^
+||tslianm.com^
+||tsyndicate.com^
+||ttienli.top^
+||ttly888.com^
+||ttvosc.com^
+||ttykabh.icu^
+||ttzhongbao.com^
+||tuhzjrr.cn^
+||tumeite.cn^
+||tupian888.*.bcebos.com^
+||tuplzt.xyz^
+||tushwjp.icu^
+||tuvtpxp.cn^
+||tuwaqtjcood.com^
+||tuyyex.icu^
+||tvabqt.cn^
+||tvdpebx.cn^
+||tvrshv.xyz^
+||tvszazx.icu^
+||twbymc.cn^
+||twdjn.cn^
+||twgzgqqu.com^
+||twjsx.cn^
+||twlcyc.cn^
+||twww.sbs^
+||twzadf.xyz^
+||txbhhh.xyz^
+||txcv68f.com^
+||txjfso.com^
+||txscn.cn^
+||ty8bz.com^
+||tyawwj.cn^
+||tydouke.com^
+||tyed6.top^
+||tymh2022.xyz^
+||tyrsn6di.icu^
+||tyutuyoo.top^
+||tzcfyre.cn^
+||tzlit.cn^
+||u.guannin.com^
+||u.txuesoft.cn^
+||u1.idongde.com^
+||u1022.com^
+||u22aeey.xyz^
+||u346zd.top^
+||u7s546.com^
+||ubxqerc.cn^
+||uc.qq.uuaoz.com^
+||uchat6.com^
+||ud783c02.com^
+||udc.yahoo.com^
+||udcm.yahoo.com^
+||udeztrb.cn^
+||udiab1.jianshu.com^
+||uebabuf.cn^
+||uejdsw.com^
+||ufgg55.xyz^
+||ugbjqwe.com^
+||uhwnrfu.cn^
+||uhyhdrh.cn^
+||uibjhqwkl.com^
+||uifyeldt.top^
+||uioozpxq.com^
+||uiteligularly.fun^
+||ujgf120.com^
+||ujnkn.com^
+||uk529u0.cn^
+||ulkoxbra.com^
+||ulojlvmejkaem.xyz^
+||um5xcgngmart.xyz^
+||umbrellaomendear.com,^
+||umeng.com^
+||umkezbh.cn^
+||umyrn.xyz^
+||unetall.com^
+||uniformer.biz^
+||unjld.com^
+||unjs.jingyanben.com^
+||unpleasantconcrete.com^
+||unypud.cn^
+||uo12.com^
+||uopsawxst.cyou^
+||uphzxdv.cn^
+||upload.luckyorange.net^
+||uporods.com^
+||upzabkw.cn^
+||uqelxct.cn^
+||uraseszincy.com^
+||urimnugocfr.com^
+||urlkwqi.cn^
+||ursegreatm.fun^
+||urtr4hrq.com^
+||usancit.top^
+||usfw2eu.icu^
+||uslbaht.top^
+||uslsxe.com^
+||utienlt.top^
+||uttlinediv.top^
+||utywsi.cn^
+||uujhveglpo.xyz^
+||uuzwvqc.cn^
+||uvnjlm.cn^
+||uwadakest.cyou^
+||uwgnpkd.cn^
+||uwnvcxb.cn^
+||uxbd4id.xyz^
+||uxcnhsf.cn^
+||uxlqwra.cn^
+||uxmwh0f.xyz^
+||uxtruz.xyz^
+||uyf1u0x7.xyz^
+||uyflu0x7.xyz^
+||uym11.xyz^
+||uyq3ruf.icu^
+||uyt79.top^
+||v00yvd.xyz^
+||v1gyb.xyz^
+||v2.dakang-energy.com^
+||v2.uyan.cc^
+||v4dwkcv.com^
+||v6jt.cn^
+||v88yaat.xyz^
+||v9gfm.xyz^
+||vancuongthinh.com^
+||vaxgyly.cn^
+||vbdbmqzu.com^
+||vbnmjjda.xyz^
+||vcvbnmto.xyz^
+||vcydyzd.icu^
+||vdrfes.site^
+||vel7.xyz^
+||venator.link^
+||venetrigni.com^
+||venienceilo.fun^
+||vexilorath.com^
+||vfjsa6do.icu^
+||vfsdgjrr.xyz^
+||vfsdsdeq.xyz^
+||vfsvv1.com^
+||vfzfrx.xyz^
+||vghnnh.xyz^
+||vgijoh.com^
+||vhhvldyuhm.xyz^
+||vhjxrj.xyz^
+||vhsutpgui.xyz^
+||vhulan.com^
+||vhutitpu.icu^
+||victoriajumpc.com^
+||video.new-eve.com^
+||video231.oss-cn-beijing.aliyuncs.com^
+||vidwkd.com^
+||vieldeold.xyz^
+||vihppjk.cn^
+||vijnhyru.xyz^
+||viplp.top^
+||vipwm.cc^
+||viroffyy.com^
+||vizacasa.xyz^
+||vkjqbb.xyz^
+||vkjsnvk.com^
+||vktztp.xyz^
+||vlgkotr.cn^
+||vlujojf.icu^
+||vmbzhfh.cn^
+||vmdlxj.xyz^
+||vnfjsus.xyz^
+||vnfsbl.xyz^
+||vnvmif.cn^
+||vokmhydy.xyz^
+||vokwlch.xyz^
+||vorluic.cn^
+||vpsgu.cn^
+||vpubmi.com^
+||vreephay.com^
+||vrlvnz.xyz^
+||vrr.name^
+||vswswlz.icu^
+||vtvnnl.xyz^
+||vucve6is.icu^
+||vueegqt.xyz^
+||vuhidf.cn^
+||vujzkkz.cn^
+||vulrxr.xyz^
+||vv.nettierbrakier.com^
+||vvdzucs.cn^
+||vvfht.fun^
+||vvwuqxp.icu^
+||vvxhth.xyz^
+||vwfppr.xyz^
+||vwtjvd.xyz^
+||vxhsj.cn^
+||vxhtxt.xyz^
+||vxinzheng.xyz^
+||vyreat.icu^
+||vyye.cn^
+||vzeuvcdi.icu^
+||vzvvifw.cn^
+||w.bnlg.fun^
+||w41.i7x3.fun^
+||wagzqhq.cn^
+||waizongguan.net^
+||wangxialin.top^
+||wangyq.ltd^
+||wap.bntxt.com^
+||wap.gxzhshop.com^
+||wap2.laogu.wang^
+||wasaidailian.com^
+||wazveqv.xyz^
+||wbesryx.cn^
+||wbupbv.com^
+||wcdc5.com^
+||wcehko.juankh.com^
+||wcv68kw.com^
+||wd.adcolony.com^
+||wddsva0.com^
+||wdpkx.cn^
+||wdswgjn.cn^
+||wdzwd.xyz^
+||weather-analytics-events.apple.com^
+||webnappy.com^
+||websitequan.com^
+||webview.unityads.unity3d.com^
+||wedvmr.xyz^
+||wefoidnknsl.net^
+||wegowan.com^
+||weifengtianxia.com^
+||weixin.qq.huigun.top^
+||weizhenwx.com^
+||wenjinsai.top^
+||wenluoxi.com^
+||wensixuetang.com^
+||werois.com^
+||wesat.cn^
+||wfndponfd.com^
+||wgoeisdnlk.com^
+||whe0nqk.icu^
+||whwxxny.com^
+||whyfate.cn^
+||widgets.pinterest.com^
+||widow5blackfr.com^
+||wipew.com^
+||wlgxaij.cn^
+||wlhcb.cn^
+||wlsyuule.cam^
+||wmqfey.com^
+||wmxke.com^
+||wn68din.cn^
+||wn80drk.shop^
+||wnzle.com^
+||wo1990.com^
+||wof.matchkj.com^
+||wogukcd.xyz^
+||wohewodejxp.top^
+||wonderhsjnsd.com^
+||worjeklmq.com^
+||wowreality.info^
+||wpcihg.com^
+||wpoarjokzgi.com^
+||wpwpquse.cn^
+||wqdro6us.icu^
+||wqdwork.com^
+||wqnggnse.fun^
+||wqshui.com^
+||wrpsouf.cn^
+||wsacjdg.cn^
+||wschao.xyz^
+||wsdfame.com^
+||wshlcgj.com^
+||wslbahe.top^
+||wsnew.cn^
+||wtiaw.top^
+||wtienle.top^
+||wubizigeng.com^
+||wuliao.jingyanben.com^
+||wuplexv.cn^
+||wwads.cn^
+||wwggnaw.xyz^
+||wwgqqq.com^
+||wwkh9ku.xyz^
+||www.16m.cc^
+||www.200ps.com^
+||www.3aym.cn^
+||www.517xx.com^
+||www.99tianxin.com^
+||www.abblm.com^
+||www.abcdlm.com^
+||www.ad5lm.net^
+||www.afmykaa.com^
+||www.anbdd19.xyz^
+||www.antailianmeng.com^
+||www.baidumanager.club^
+||www.bibilm.com^
+||www.bjjabc.com^
+||www.bjjxsb.net^
+||www.bl2030.com^
+||www.ceseasons.com^
+||www.claiks.com^
+||www.dahe6f.com^
+||www.dayangfa.com^
+||www.dgtauto.com^
+||www.diyuxa.com^
+||www.dknindsl.com^
+||www.doca182.com^
+||www.dragonib.com^
+||www.geodeep.org^
+||www.govchengdu.cn^
+||www.govguangxi.cn^
+||www.govguilin.cn^
+||www.govguiyang.cn^
+||www.govhangzhou.cn^
+||www.govhebie.cn^
+||www.govjieyang.cn^
+||www.govlihu.cn^
+||www.govshenzhen.cn^
+||www.govxian.cn^
+||www.govxinjing.cn^
+||www.govyunfu.cn^
+||www.govyunnan.cn^
+||www.govzhajian.cn^
+||www.happyyong.com^
+||www.hebeixingfei.com^
+||www.hiweha.com^
+||www.hlgglm.com^
+||www.ibgdd67.top^
+||www.ilaohuyou.xyz^
+||www.jacklm1.com^
+||www.jacklm3.com^
+||www.jianpian.vip^
+||www.jipinyouwu.com^
+||www.jmine.cn^
+||www.kanglingjiu.com^
+||www.kcc4445.top^
+||www.kowqd3.top^
+||www.kowqd9.top^
+||www.kukulm.com^
+||www.leibish.com^
+||www.livemz.com^
+||www.lm661.com^
+||www.lmlmvip.com^
+||www.lookit.tw^
+||www.lthwsj.com^
+||www.mdfsbn.com^
+||www.mitao17.com^
+||www.moneyziyouwm.com^
+||www.mqhzdl.com^
+||www.ostlon.com^
+||www.pcuois.com^
+||www.pksanb.com^
+||www.ppslsa.com^
+||www.q4ee.top^
+||www.qinlinghe.com^
+||www.qkixi.com^
+||www.qlspx.com^
+||www.qqads.com^
+||www.qsixi.com^
+||www.qwupoq.com^
+||www.rdezbie.com^
+||www.renrenhaigou.com^
+||www.repyua.com^
+||www.s184.com^
+||www.seainan333.com^
+||www.seinse27.com^
+||www.sioccu.com^
+||www.smtlm.cc^
+||www.soviewo.com^
+||www.t5wm.cc^
+||www.tctakoh.com^
+||www.tfaftemail.com^
+||www.ttyyuuoo.com^
+||www.uerlqe.com^
+||www.ufndsm.com^
+||www.uuboos.com^
+||www.valadygators.com^
+||www.vbnm888.com^
+||www.vmsal.vip^
+||www.werwzd1.com^
+||www.wndlkj.com^
+||www.wowostar.cn^
+||www.wqddq.com^
+||www.wqetqi.vip^
+||www.wyxcb6.top^
+||www.xaqsl.com^
+||www.xiewje.com^
+||www.xihufe.com^
+||www.xingpingmaoyi.cn^
+||www.xiuxiu4.one^
+||www.xjwrq.com^
+||www.xpdyqax.cn^
+||www.xxmh*.com^
+||www.ynxjf.com^
+||www.youzonggw.com^
+||www.yueyuego.com^
+||www.yuyue008.cn^
+||www.ywquyq.com^
+||www.yymh1113.com^
+||www.zbinview.com^
+||www.zhangjiyi.top^
+||www.zhaohainan.cn^
+||wx.uc.downcdn.top^
+||wxddid.cn^
+||wxdqgmr.cn^
+||wxl0gfw.icu^
+||wyplmjufd.live^
+||wyq3rum.icu^
+||wyqaafplm.live^
+||wyxcb3.top^
+||wzctuv.xyz^
+||x3zy2.icu^
+||x5hnj21.com^
+||x8kwcr3l.xyz^
+||xahycw.com^
+||xazbts.com^
+||xbyoujv.icu^
+||xccadc.com^
+||xcisleoa.cn^
+||xckj0623.com^
+||xckyqq.com^
+||xcmz999.com^
+||xcvwrj.xyz^
+||xcwzq.xyz^
+||xddzshop.com^
+||xecner.top^
+||xeghes.fun^
+||xegneils.com^
+||xeikwh.icu^
+||xerhibx.cn^
+||xeynozl.icu^
+||xfgctg.com^
+||xflsj.com^
+||xgzdys.com^
+||xheqbc.cn^
+||xhiit0n.xyz^
+||xhkvff.cn^
+||xhpghv.xyz^
+||xhqgymmb.com^
+||xhzmjs.com^
+||xiangwangdesh.com^
+||xianzhice.com^
+||xiaobao8888.com^
+||xiaodongrui.com^
+||xiaofangtongzhi.xy^
+||xiaojifly.cn^
+||xiaomifood.cn^
+||xiaoqurong.com^
+||xiaosunxin.cn^
+||xiaoxiuapp.com^
+||xiaoy.name^
+||xiaoyange.cn^
+||xiarikui08.com^
+||xiezhuo038.cn^
+||xilofr.xyz^
+||ximit8023.maijijo.com^
+||xinbo-lora.cn^
+||xinerdact.com^
+||xingyou25.xyz^
+||xinlimaoyi2.xinlimaoyi.cn^
+||xinym1.xyz^
+||xixrdn.xyz^
+||xjrvwz.com^
+||xjssjc.com^
+||xjzyhp.xyz^
+||xkbinj.xyz^
+||xkcxh.com^
+||xkmwxwy.cn^
+||xkqit.com^
+||xkzjq.cn^
+||xlardaxq.com^
+||xlivrdr.com^
+||xlvqhx.xyz^
+||xmangoculture.com^
+||xmawwbz.icu^
+||xmjajv.xyz^
+||xmkbrfyu.cn^
+||xmlsxar.cn^
+||xmxupz.xyz^
+||xmywlyh.cn^
+||xn--2qu92fhtxsxexqab.xn--fiqs8s^
+||xn--2qux23cwrdmnaz3gj3w.xn--fiqs8s^
+||xn--2ss830adjbqy7h.xn--fiqs8s^
+||xn--521-x72fh66s.cn^
+||xn--gov-x68dy61b.shop^
+||xn--jvrp4x1zyfta.net^
+||xn--m7r781dz66a.cn^
+||xn--wxtr44c.video^
+||xn--wxtr9fwyxk9c.xn--fiqs8s^
+||xn--wxtr9fwyxk9c.xn--io0a7i^
+||xn--wxtr9fwyxk9co4hbua.xn--fiqs8s^
+||xn--xhq9mt12cf5v.ren^
+||xn--zw0autp42d.cn^
+||xne1ocient87zxz.360doc.cn^
+||xnzetb.xyz^
+||xokcaxw.cn^
+||xolerkr.cn^
+||xopxptn.cn^
+||xpcwrgy.cn^
+||xpicj1.cc^
+||xqblnei.cn^
+||xqcjfcb.cn^
+||xrb0owc.icu^
+||xrkadslmgg.top^
+||xrkadslmgg.xyz^
+||xryrylt.cn^
+||xs.dmzj.com^
+||xsjh001.xyz^
+||xsxmvb.xyz^
+||xtbzff.xyz^
+||xtjpdfr.cn^
+||xtpwfb.xyz^
+||xuanyaosp.com^
+||xudgjz.xyz^
+||xukang09.cn^
+||xukou.net^
+||xuwfmhh.icu^
+||xwbspx.xyz^
+||xwlyfl.xyz^
+||xwqtatnw.icu^
+||xwsqtngwa.xyz^
+||xww360.com^
+||xxba.cc^
+||xxczdfb.cn^
+||xxdongfa.com^
+||xxgslt.com^
+||xxhp2iz.icu^
+||xxmh456.com^
+||xxmh645.com^
+||xxniln.xyz^
+||xxsywxj.com^
+||xxtalp.xyz^
+||xxxviijmp.com^
+||xxxvjmp.com^
+||xyadtlyy.com^
+||xybnfn.xyz^
+||xyizgh.cn^
+||xzxhpcdz.icu^
+||y0764.cn^
+||y0tf2wp.online^
+||y74s.xyz^
+||yac5t.cn^
+||yahekby.cn^
+||yangjie.asia^
+||yangliu.ink^
+||yangshengzu.cn^
+||yaodaipeishi.cn^
+||yaomuzhubao.com^
+||yaqurc.com^
+||yasg114.com^
+||yb0a.xyz^
+||ybcnvqf.cn^
+||ybixvc.top^
+||ycc90.xyz^
+||ycdywl.com^
+||yd.gxdianhua.com^
+||yd.linjuyihao.com^
+||ydgh0zc.com^
+||ydgsvls.cn^
+||ydjfdkcv.com^
+||ydjs.zol.com.cn^
+||ydtykj.net^
+||yegziyf.cn^
+||yenauddk.com^
+||yenyshy.com^
+||yes-24-go.cc^
+||ygwdai.cn^
+||ygxgk.cn^
+||ygzqlnt.cn^
+||yh.zg-zxzx.net^
+||yh18h8s.com^
+||yh20230625tu.com^
+||yhbsk.cn^
+||yhhnjg.com^
+||yhjccj.cn^
+||yhp4an7.cn^
+||yhsfsdv*.com^
+||yhz18.com^
+||yhzm.xyz^
+||yiboshangmao3.com^
+||yichengjiajupt.com^
+||yifujing.com^
+||yige20221219.xyz^
+||yihehe.xyz^
+||yijiahyvip.com^
+||yijiayi07.top^
+||yingnanyqq.com^
+||yirendajiankang.com^
+||yitongwl.cn^
+||yiw2iei.icu^
+||yjnhkd.com^
+||yjnhndt.com^
+||yjnkas.com^
+||ykcjxvg.cn^
+||ykkbwdf.cn^
+||yklfg.cn^
+||ykotyeo.cn^
+||ylznwl.cn^
+||ymgjc.com^
+||ymhyw6.lol^
+||ymima360.com^
+||ymm17.cc^
+||ymm19.cc^
+||ymyile.xyz^
+||yncjsc.cn^
+||ynfxxbp.xyz^
+||ynslvyou.com^
+||yofprpv.cn^
+||yonsandileer.com^
+||youku6.top^
+||youp05.com^
+||ypzps.com^
+||yqgzaewe.cn^
+||yquqoj.com^
+||yrqwnc.cn^
+||yruws6.com^
+||ysjkbk.com^
+||ysqlmpo.cn^
+||yszpegh.xyz^
+||yt800h.com^
+||ytelc.com^
+||ytvwhbejc.com^
+||yuanlin15.cn^
+||yuanmengbi.com^
+||yuanxiang19.fun^
+||yubingyuan.top^
+||yuehesh.com^
+||yuhunwang.net^
+||yuifgh.fun^
+||yujianmeihao179.cn^
+||yukariyakumo.cn^
+||yunl1.com^
+||yunliunet.com^
+||yunqishi8.com^
+||yupov6ks.icu^
+||yuske2.xyz^
+||yusnw.cc^
+||yutew.cc^
+||yuvdqnpo.com^
+||yvsnhc.com^
+||yw800.com.cn^
+||ywkkmze.cn^
+||ywsywh.cn^
+||ywtd.xyz^
+||yxhjt.com^
+||yxmrqc.com^
+||yxvoud.com^
+||yy4480qpgyy.com^
+||yyefao.com^
+||yylady.cn^
+||yynncbn.cn^
+||yyselrqpyu.com^
+||yystzl.cn^
+||yyuivw6.com^
+||yywridi.cn^
+||yyys.shop^
+||yzc35326.top^
+||yzcpgadw.icu^
+||yziwoidi.icu^
+||yziwujuzq.live^
+||yzllux.xyz^
+||yznwyng.cn^
+||yzykttcy.com^
+||z-xiao.xyz^
+||z2.fakutownee.cn^
+||z3yfkdjd.icu^
+||z6ro5.xyz^
+||zabdybod*.club^
+||zahrvfbd*.xyz^
+||zaiceyjjqq.com^
+||zailet.com^
+||zaiyuanyqq.com^
+||zangtankqq.com^
+||zaqlovh*.xyz^
+||zaqptv2bo.xyz^
+||zasjf.xyz^
+||zasjfget.xyz^
+||zaupjw.xyz^
+||zawqwpajq.club^
+||zazgbqg*.xyz^
+||zazgiyoh*.world^
+||zazgiyoh*.xyz^
+||zb.516624.com^
+||zbc6hy*.live^
+||zbc6hye*.xyz^
+||zbc6hyip.xyz^
+||zblz.me^
+||zbv7kxrteclub.xyz^
+||zbvchabjbcj.com^
+||zbx01.com^
+||zbzbzb.xyz^
+||zcbfjd.xyz^
+||zcchyr*.xyz^
+||zcchyw*.xyz^
+||zcck60qyw.xyz^
+||zcck60wqyw.xyz^
+||zccr2qe.live^
+||zcczrsaqw.xyz^
+||zcczrvsaqw.shop^
+||zcczrvsaqw.world^
+||zcczrvsaqw.xyz^
+||zcczrvsaw.xyz^
+||zcgqsd.icu^
+||zcvyzsyd.icu^
+||zcy821.com^
+||zczcvx.com^
+||zdabnt.buzz^
+||zdabnt.live^
+||zdama.xyz^
+||zdamybi.xyz^
+||zdcfta.buzz^
+||zdcfta.live^
+||zdcoes.live^
+||zdcv5.xyz^
+||zddpnf.xyz^
+||zdfjas.top^
+||zdfl.xyz^
+||zdftqc.xyz^
+||zdg-bend.xyz^
+||zdgbend.buzz^
+||zdhpen.xyz^
+||zdhpenn.live^
+||zdhpenn.shop^
+||zdiwsb.live^
+||zdjeae.live^
+||zdkdwk.buzz^
+||zdkdwk.live^
+||zdkjr.xyz^
+||zdlnhv.xyz^
+||zdmbl.xyz^
+||zdmybl.xyz^
+||zdo-bdg.xyz^
+||zdobdg.fyi^
+||zdvfpa.xyz^
+||zdwykjd.icu^
+||zdx25.site^
+||zdx30.site^
+||zdznsqb.com^
+||zeatse.buzz^
+||zebjlt.buzz^
+||zebjlt.xyz^
+||zektch.buzz^
+||zektch.xyz^
+||zelpbp.buzz^
+||zen0935.com^
+||zents10.top^
+||zents7.top^
+||zeookuv.xyz^
+||zero.wewakir.top^
+||zerolcp.cn^
+||zevbzn.xyz^
+||zewfbw.buzz^
+||zewfbw.xyz^
+||zexfzson.icu^
+||zfcdirf.icu^
+||zfcumb.xyz^
+||zfehvv.buzz^
+||zfehvv.xyz^
+||zfenuq.buzz^
+||zffymmdg.com^
+||zfmqfh.xyz^
+||zfmtyv.buzz^
+||zfmtyv.xyz^
+||zfnclk.buzz^
+||zfotrq.xyz^
+||zfowbr.buzz^
+||zfteiv.xyz^
+||zfticz.buzz^
+||zfticz.xyz^
+||zfvltd.xyz^
+||zfxakx.xyz^
+||zgdshoes.com^
+||zgfshoes.com^
+||zggrxf.life^
+||zghsfh.xyz^
+||zgkvfu.xyz^
+||zglghr.xyz^
+||zglmvz.buzz^
+||zglmvz.xyz^
+||zgm1.com^
+||zgtwzq.xyz^
+||zguqxf.xyz^
+||zgwsnw.xyz^
+||zgystsd.com^
+||zhangchi.work^
+||zhangfeiyijuepifa.com^
+||zhangjiaqi.top^
+||zhangyumo.top^
+||zhanzhang.net^
+||zhaozongqq.com^
+||zhemaijs.net^
+||zhengliyqq.com^
+||zhengshaoze.com^
+||zhengxiaoliu.top^
+||zhflodsix.cn^
+||zhijiangweidu.top^
+||zhisuyunonline.cn^
+||zhixin.host^
+||zhizhunbao.top^
+||zhuangxiu567.com^
+||zhuozhongfangshui.cn^
+||zifyeldq.top^
+||zihuiguochao.top^
+||ziravd.xyz^
+||zj-yxw.com^
+||zjjbtl.com^
+||zjkssw.com^
+||zjthzf.xyz^
+||zjzh2019.com^
+||zlbcxr.xyz^
+||zljnwzp.cn^
+||zlnmzc.top^
+||zlyhslx.icu^
+||zmdjbl.xyz^
+||zmhqhuq.cn^
+||znchw.com^
+||znegiu.top^
+||znnodl.xyz^
+||znyjmbh.icu^
+||zonyff.xyz^
+||zouqiuyyds.com^
+||zowralr.cn^
+||zpotkvpy.icu^
+||zppfjh.xyz^
+||zpsovpgyk.xyz^
+||zpxw.vip^
+||zrakpxsf.com^
+||zrgbh6bm.icu^
+||zsnfdphz.com^
+||zszhln.xyz^
+||zt-uc-baidu.cc^
+||ztqdkzn.cn^
+||ztshg.cn^
+||ztyumn.ifeng.com^
+||zuixinyiqi.com^
+||zukddms.cn^
+||zvasuzb.icu^
+||zvdc9y.icu^
+||zvvg678.xyz^
+||zwfkxb.xyz^
+||zwjaoni.cn^
+||zwlikv.cn^
+||zxcrr.com^
+||zxcv1.com^
+||zxrcfw.com^
+||zxsnllo.cn^
+||zxwstong.com^
+||zyauopr.icu^
+||zygehty.cn^
+||zygkzytb.cn^
+||zygscl.cn^
+||zykwnj.cn^
+||zypzzv.xyz^
+||zyrwfd.xyz^
+||zyzlpt.com^
+||zzdsjxsb.com^
+||zzgxqlzh.com^
+||zzisnvb.cn^
+||zzpzero.com^
+||zzqrr.com^
+||zzrjdp.xyz^
+||zztxr.cn^
+||zzxedr.xyz^
+||zzxlhwyp.com^
+||zzycj.com^
+! APP Host
+||ixisivomer.com^
+||exinariuminix.info^
+||chabadokor.com^
+||truthfulsensor.com^
+||5.61.55.143^
+||37.1.213.100^
+||go2click.online^
+||iyfbodn.com^
+||sdkconfig.ad.xiaomi.com^
+||tfcdn.jingmiuyyds.com^
+||vzttq.brfvyrrp.com^
+||sncop.uioozpxq.com^
+||tracking.miui.com^
+||tracker.ai.xiaomi.com^
+||ulogs.umeng.com^
+||ulogs.umengcloud.com^
+||toblog.ctobsnssdk.com^
+||tobapplog.ctobsnssdk.com^
+||trace.qq.com^
+||e.qq.com^
+||log.snssdk.com^
+||log-api.pangolin-sdk-toutiao.com^
+||auth.be.sec.miui.com^
+||android.bugly.qq.com^
+||tdid.m.qq.com^
+||gdfp.gifshow.com^
+||gdt.qq.com^
+||als.baidu.com^
+||alog.umeng.com^
+||alog.umengcloud.com^
+||umengcloud.com^
+||hmma.baidu.com^
+||e.kuaishou.com^
+||api.installer.xiaomi.com^
+||beacon-api.aliyuncs.com^
+||api.ad.xiaomi.com^
+||worldwide.sogou.com^
+||tools.3g.qq.com^
+||bugly.qq.com^
+||shuzilm.cn^
+||dm.toutiao.com^
+||dm.bytedance.com^
+||dm.pstatp.com^
+||metok.sys.miui.com^
+||api.tw06.xlmc.sec.miui.com^
+||dns.weibo.cn^
+||sdkapp.mobile.sina.cn^
+||biz.weibo.com^
+||sdkapp.uve.weibo.com^
+||miaozhen.com^
+||conf.hpplay.cn^
+||api-shoulei-ssl.xunlei.com^
+||aiclk.com^
+||adkwai.com^
+||upgrade.xl9.xunlei.com^
+||adapi.izuiyou.com^
+||adstat.izuiyou.com^
+||advertpay-vip-ssl.xunlei.com^
+||qqdata.ab.qq.com^
+||qappcenterv6.3g.qq.com^
+||mob.com^
+||adash.man.aliyuncs.com^
+||norma-external-collect.meizu.com^
+||soa-vip-ssl.xunlei.com^
+||fumiad.dxys.pro^
+||yun-hl.3g.qq.com^
+||ad-display.wikawika.xyz^
+||sofire.baidu.com^
+||dxp.baidu.com^
+||tcbox.baidu.com^
+||afd.baidu.com^
+||browserkernel.baidu.com^
+||pimlog.baidu.com^
+||cloud-log.yy.com^
+||collector.dcdn.baidu.com^
+||openrcv.baidu.com^
+||tuisong.baidu.com^
+||sfp.safe.baidu.com^
+||diagnosis.ad.xiaomi.com^
+||line1-log.biligame.net^
+||irs03.com^
+||o2o.api.xiaomi.com^
+||si1.go2yd.com^
+||a.market.xiaomi.com^
+||i1.go2yd.com^
+||fourier.taobao.com^
+||dp3.qq.com^
+||omgid.qq.com^
+||livep.l.qq.com^
+||commdata.v.qq.com^
+||lives.l.qq.com^
+||masdk.3g.qq.com^
+||c.l.qq.com^
+||sealine.youku.com^
+||iyes.youku.com^
+||nbsdk-baichuan.alicdn.com^
+||dorangesource.alicdn.com^
+||orange-dc.youku.com^
+||eco.taobao.com^
+||push.m.youku.com^
+||acs4baichuan.m.taobao.com^
+||umdc.aliapp.org^
+||amdc.m.taobao.com^
+||abtest.alibaba.com^
+||audid-api.taobao.com^
+||px.ucweb.com^
+||sjarvis.taobao.com^
+||un-acs.youku.com^
+||m.atm.youku.com^
+||yk-ssp.ad.youku.com^
+||ykad-data.youku.com^
+||ems.youku.com^
+||ipm.atm.youku.com^
+||h-adashx.ut.taobao.com^
+||applog.uc.cn^
+||adx-open-service.youku.com^
+||huichuan.sm.cn^
+||cad.youku.com^
+||adlaunch.qtfm.cn^
+||amdc.alipay.com^
+||logs.amap.com^
+||hijack.baidu.com^
+||qapm.baidu.com^
+||techain.baidu.com^
+||crab.baidu.com^
+||ug.snssdk.com^
+||ad.tencentmusic.com^
+||imtmp.net^
+||huatuo.qq.com^
+||adstats.tencentmusic.com^
+||hpd.baidu.com^
+||feed.baidu.com^
+||hm.baidu.com^
+||fclog.baidu.com^
+||gentags.net^
+||aty.sohu.com^
+||a1.itc.cn^
+||vstat.v.blog.sohu.com^
+||count.vrs.sohu.com^
+||qchannel03.cn^
+||tsearch.snssdk.com^
+||fclick.baidu.com^
+||ssp.qq.com^
+||ecmb.bdimg.com^
+||appc.baidu.com^
+||d.toutiao.com^
+||log-sdk.ksapisrv.com^
+||dig.bdurl.net^
+||tnc3-aliec2.zijieapi^
+||tnc3-alisc1.zijieapi^
+||tnc3-bjlgy.snssdk.com^
+||tnc3-bjlgy.zijieapi^
+||dm-hl.toutiao.com^
+||abtest-ch.snssdk.com^
+||appsupport.qq.com^
+||dig.zjurl.cn^
+||api.kwaizt.com^
+||httpdns.pro^
+||yoda.kwd.inkuai.com^
+||51y5.net^
+||dlswbr.baidu.com^
+||im-x.jd.com^
+||zhihu-web-analytics.zhihu.com^
+||c-gtc.getui.net^
+||getui.com^
+||b-gtc.getui.net^
+||gepush.com^
+||igexin.com^
+||pingma.qq.com^
+||sugar.zhihu.com^
+||mobads.baidu.com^
+||stat.meitudata.com^
+! URL
+@@.com/o.js$domain=2biqu.com
+@@||/template/conch/asset/js/hlhtml.js$domain=www.lldm.net|1anime.me
+@@||css.yhdmtu.xyz^$domain=yinghuavideo.com|yinghua8.tv
+@@||jstatic.3.cn^$domain=m.jd.com
+@@||api.nocturnal-narwhal.buzz^$domain=webtor.io
+@@||manwa.me^
+@@||cdn-msp*.18comic.*^
+@@https://static.ws.126.net/163/frontend/libs/antanalysis.min.js
+@@guokr.com/apis/flowingboard/item/guokrapp_download_source.json
+@@||qhres2.com^$domain=baike.so.com
+@@||pagead2.googlesyndication.com^$domain=myqqjd.com
+@@||www.google-analytics.com^$domain=myqqjd.com
+@@||www.googletagmanager.com^$domain=myqqjd.com
+@@||myqqjd.com^
+@@||aliyuncs.com/*.png
+@@||f*.baidu.com/it/u=*,*&fm=$domain=baidu.com
+@@||guokr.com/apis/flowingboard/item/m_article
+@@||guokr.com/apis/flowingboard/item/m_home_
+||qishula.com/css/ding.js
+/bar/*.js$domain=yinghuavideo.com|yinghua8.tv
+||google-analytics.com/analytics.js
+||www.cartoon18.com/assets/*/jquery.js
+||onesignal.com^$third-party
+||hotjar.com^$third-party
+||sentry.io^$third-party
+||browser.sentry-cdn.com^$third-party
+||baidu.com/newspage/api/getmobads?
+||ifeng.com/*&adids=
+.xyz$domain=btsj6.com|yinghua8.tv|yinghuavideo.com|dm99.me
+.buzz$domain=btsj6.com|yinghua8.tv|yinghuavideo.com|dm99.me
+.com/sh/to/$third-party
+.xyz/svelte?$third-party
+.xyz/alpine?$third-party
+||boshishuwu.com/js/middlestyle.js
+||boshishuwu.com/js/zhuanhua.js
+||www.288txt.com/da/*.js
+.cyou/redbaiduct.com
+||sina.cn/cm/sinaads_
+/sinaads/release/sinaads.js
+/js/news2zz.js
+/js/lmdas.js
+.com:8001/*/*?*=$third-party
+||static.missav.com/js/plyr.js
+||boxmp4.com/js/foot.js
+/site/mov*$third-party
+||156zw.com/css/js/tools.js
+||dadatuwz.com^$third-party
+||pubfuture.com^$third-party
+||n5m5.com/static/js/playcon.js
+/js/ads
+/banners/pr_advertising_ads_banner
+.ru/ads/
+unpkg.com/aladug/*.js
+/index.html?channelCode=
+.com/js/g.js
+:8008/*/*?is_not=
+trafficjunky.com$third-party
+.com:8007/*/*?*=$third-party
+.cn/2023/*/*.txt$third-party
+.com:8008/*/*?*=$third-party
+.cn/2022/*/*.txt$third-party
+.com:8004/*/*?*=$third-party
+.xyz/qby_*.js?$third-party
+.xyz/get?$third-party
+.xyz/ty/*-*-*$third-party
+/api/LM/Report?placeUUID=$third-party
+.icu/pssbk?$third-party
+/vhyoydie_*_*.js$third-party
+yhdm*.com/js/wap2-jm-ms.js?ver=
+.com:8008/sc/*?n=$third-party
+.com:8003/d/*&n=$third-party
+||liuyingtv.com/common/api_getAcode.php
+||anluyg.net/static/js/channel*.js
+||google-analytics.com$third-party
+||killcovid2021.com/*.mp4
+||lewenma.com/js/read.js
+||jialingmm.net/dm/tj.js
+||58jingxuan.top/115
+xmh/200/200-*.gif
+/scripts/snstyle.js?v=2$~third-party
+.com/qq.js$third-party
+.xyz/st?gp=*$third-party
+||zhhbqg.com/xxgg/*.js
+||zhhbqg.com/ee/*.js
+||trafficstars.com$third-party
+||bimiacg*.net/template/JOELEO/asset/js/jquery.leeleo.js
+||58jingxuan.top/dhbioperhbvoprwm
+/statics/js/hth1111.html
+||asacdn.com/prod/redirect.html
+||img.bzzyx.cn/dipiao.js
+||hhdmh.net/bd/36mh.js
+||hhdmh.net/js/g1.js
+/hm.html?s=*=http
+||m.yinghuacd.com/bar
+||haoyu666.top/uploads*%E7%B2%BE%E5%93%81%E5%BD%B1%E8%A7%86.apk?
+/360mse/360mse_*.apk?
+/app/*/%E6%B5%8F%E8%A7%88%E5%99%A8.apk
+/app/market/*/%E9%AB%98%E9%80%9F%E6%B5%8F%E8%A7%8%A8.apk
+||pstatp.com/toutiao/push.js
+chen-xing/figure_bed*
+.com/gg.js
+/api/ad/*
+/js/mts66.js
+.live/r/*/*_r=*
+.xyz/hm.js?$third-party
+/Distribute/Distribute_g/butterfly/*
+/js/mts.js
+/bugsnag.min.js$third-party
+.icu/biyys*.js$third-party
+/bigREDcat.js?$third-party
+.cn/redbaiduct.com?s=$third-party
+/stats.php?adsid=$third-party
+.xyz/*_*_1_*.js?$third-party
+*tplv-noop.gif*
+.cn:*/vh5$third-party
+||nex.163.com/q?
+||g.163.com/*&affiliate=
+||163.com/wap/special/article_cooper_piapia/
+||qchannel03.cn$third-party
+||templates_pc/default/scripts/chapter_bottom.js
+||zxzj.me/slade2.js
+||widgets.outbrain.com/outbrain.js
+||xbiqu5.com/12345678.js
+.com/adv1/?q=
+||1biqug.com/js/ajax.js
+/_xa/ads_
+hanman/static/dist/ppm/js/main.js
+.cn:8001/*/*?*=$third-party
+.com:10446/*/get*.html
+/ht.js?site_
+/*/*.add.*.add
+/_xa/ads?
+com:8891/c.php?s=*$third-party
+/gameapk/*/hongbao.apk
+/dibu.adadadad
+||imanhuapi.com/style/js/mpmh.js
+?adspot_
+||scupio.com/js/ad.js
+||www.lezhutv.com/static/jquerys.js
+/template/mytheme/statics/js/listing.js
+/asfile/m/gudings.js
+?local_ga_js=
+.xyz/xling_*_*_*.js?
+||pinyuege.net/template/pinygm/public/js/
+.com:8005/*&n=$third-party
+||myhaitang.xyz/assets/public/
+||www.ykjyyy.com/8888/
+/statics/js/guding.js
+/statics/js/dddd.js
+||x4jdm.tv/mdp.js
+||cbu01.alicdn.com/img/ibank/2020/714/563/22725365417_967741881.jpg
+||xinxindm.com/gog.js
+||manhuabei.com/assets/xiwang.js
+||yhdm.tv/bar/yfyh.js
+/js/js4.js
+.top/*/*.js?ts=$third-party
+/obj/ad-app-package
+/yinghuacd/bottom.js
+/hm.js?$third-party
+||www.pkmp*.xyz/template/piankuwap/js/afoot.js
+||baidu.com/rec?*=ad&
+||download.2345.cn/2345yd1/apk/
+||ifeng.com/showcode
+||baidu.com/api/wapui/getrelatedbusiness
+||music.163.com/weapi/activity/downloadpage/config/get
+||pianyuan.la/slade.js
+||pianba.tv/api/web_htmls.js
+||snailok.com/template/stui_tpl/sdfsdfzxxsa/heade.js
+||snailok.com/template/stui_tpl/sdfsdfzxxsa/dxf.js
+||5nj.com/js/cnzz33.js
+||5nj.com/js/cnzz22.js
+||wandouys.com/slade.js
+||kukudm.com/mg/show2.js
+||daishudy.com/js/g/b_1.js
+||zwdu.com/getuserinfo.php
+||pstatp.com/growth/fe_sdk/bannersdk
+||ikkdm.com/mg/show2.js
+||cocomanga.com/js/atmp.html
+||shimo.im/*/ads?
+||shimo.im/kong-api/ads
+||yxdm.tv/js/gad.js
+||277txt.com/da/*.js
+.live/ty/*-*-*$third-party
+:8891/v*$third-party
+.cyou/xling_*_$third-party
+/m.html?rmid=*&yd=
+/m.html?shareName=*&proxyAccount=
+.top/*/2022*/.js$third-party
+.com/sh/*.js$third-party
+||3zmmm.net/ggxx/
+.com/z-*-*?123$third-party
+/biyys*hh.js$third-party
+/vj3/*$third-party
+||novret.com/?clickid=
+/static/*/Lqho7OKcg.js?v=
+/static/*/KdLmbuThM.js?v=
+.cn/bid?url=*$third-party
+.com:8077/*?$third-party
+xyz/kallss?
+xyz/stimulus?
+||wcanj.com/2345/
+/xtub_*_rony.js$third-party
+/app/get*?t=*http$third-party
+.xyz/*?16$third-party
+/dj*ll5c20ff.js
+||tinghao8.com/assets/publish/
+||sofunlib.com/assets/publish
+||91mjw.com/hy-66-90.php
+||omlube.com/O/1000970O3001405O1O.js
+||5dm.tv/html/5dmm.jpg
+||domp4.cc/js/wcount.js
+||bimiacg4.net/template/JOELEO/asset/js/jquery.common.js
+||milimili.tv/js/loadjs/jquery10.4.js
+||milimili.tv/js/loadjs/jquery10.7.js
+||yxdm.tv/js/mbootstrap_nei.js
+||halihali2.com/js/wap2-jm-100ftop.js
+||pufei8.com/skin/t6.html
+||baikebcs.bdimg.com/*banner*.jpg
+||milimili.tv/js/loadjs/jquery10.8.js
+||dlili.tv/ufile/22222.js
+/Public/wap/zymk/js/guanggao.js
+||manhuapi.com/style/js/common.js
+||weiyuedu.cc/skin/v3/js/dibu.js
+||97kpz.com/js/bbk/g.js
+||tutufu.com/bd/b-c1.js
+||pufei.cc/skin/footer.js
+||pufei.cc/skin/middle.js
+js/yys/Pfhl365.js
+/vj1/*$third-party
+/vj2/*$third-party
+/v2/stats/9*$third-party
+/vh2/*$third-party
+/v2/stats/1*/1*$third-party
+||axutongxue.com/js/uuiiio.js
+.com:8003/sc/*?n=$third-party
+||tz659.com/js/chapte*.js
+||tz659.com/js/html*.js
+||tz659.com/js/cdn.js
+Mplay/kk1.js
+.live/hm.js$third-party
+static/pull/qwe1021.js
+com/js/lp365.js
+||halihali*.com/js/wap2-jm-ms.js
+||verysadfun.com/assets/publish/jquery.*.js
+.com/candy*.js$third-party
+||627txt.com/da/*js
+.js?*&ssid=$third-party
+||qsptv.net/tpl/newstyle/js/pv.js
+||y3600.cc/js/jquery.min.js
+||shimo.im/lizard-api/ads
+/adjs
+||pki.net.cn/public/1/plugins
+.com/xz/*?token8=
+||zhanzhang.baidu.com/push.js
+||qhimgs4.com/*.gif$domain=www.jiaozi.me
+||qhimgs4.com/*.gif$domain=hdmoli.com
+*.lijie.*/*_*?$third-party
+.xyz/hm.html?s=
+:8007/*/*?is_not=
+mobi*.*.cyou/*_$third-party
+mobi*.*.cam/*_$third-party
+mobi*.*.xyz/*_$third-party
+mobi*.*.top/*_$third-party
+/*_*_aubi.js$third-party
+dingbu.*.*.com/dingbu.$third-party
+.xyz/jque*.js?$third-party
+/blxn_*_*_*?*$third-party
+.top/*q=*form=*&*url=http*$third-party
+_/bigREDdog.js
+/redbaiduct.com?s=
+/exads-adblock-3.10
+.net/vh1/1*$third-party
+.net/v2/stats/1*$third-party
+.com/c.php?s=*=*=$third-party
+*/blsx_*_*_*?*$third-party
+dingbu.*.*.*/*.add$third-party
+.icu/*_*_*.js$third-party
+.xyz/base*.js?$third-party
+/show_ads_
+.cn/ack?s=*$third-party
+/js/pingbi.js
+_/bigREDcat.css?
+.xyz/bid?url=*$third-party
+.xyz/gif$third-party
+.xyz/ack?s=$third-party
+.top/?token=$third-party
+.top/gluinfo.php?s=$third-party
+/baidu/tg.js
+/baidu/189/999.php
+/bigREDdog.css?
+||golengmen.com/assets/publish/
+.com:7891/stats$third-party
+.icu/?token=$third-party
+.xyz/*0*0*==$third-party
+.xyz/foundation?$third-party
+.xyz/gatsby?$third-party
+.xyz/mithril?$third-party
+.xyz/xefeliffng_$third-party
+91porny.com/api/getPos?jspath=/
+/api/getPos?jspath=/videos/view//*
+/v0/amp-addthis-*.js
+.com:8010/cc/
+.buzz/*0*0*0*==$third-party
+.xyz/?token=
+.shop:*/bid?url=
+.shop:*/ack?s=
+||addthis.com/live/
+||xn--*.xn--fiqs8s:
+||zhenbuka.com/gg/lunbo.js
+||zd518.cn/template/qpg6080/baidufx/baidufx.js
+||ykmh.com/js/aajquery.img01.js
+||zd518.cn/statics/js/home.js
+template/m1938pc/ads/*.js
+||mipcdn.com/c/s/by.manhuachi.com
+||qimiaomh.com/muban/m/static/js/hhh.js
+||qimiaomh.com/muban/m/static/js/common.js
+||mhhanman.xyz/data/my/myjs.js
+||zhhbqg.com/ww/*.js
+||liweidianqi.com/a*.js
+||www.5nj.com/js/cnzz*.js
+||duodada.com/Tpl/default/system.js
+||5dyx.com/static/js/deny.js
+||5dyx.com/static/jquery.js
+||90mh.com/mip/qdbao77.js
+||manmanju.com/mg/show*.js
+||sodu2020.com/js/ppc.js
+/js/statistics/user_ad.js
+/static/js/miniyyrtv-config.js
+! CSS
+@@||developer.apple.com$generichide
+manwa.me#@#.ad-area
+myqqjd.com##.adsbygoogl
+www.jianshu.com#@#div[class$="_0"]
+m.baidu.com#@##results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar):not(.s-group-result):not(.hint-unsafe)
+baidu.com#@#div[class*="ads"]
+baidu.com#@##header > div:last-child
+baidu.com#@##page-pre
+baidu.com##[data-tpl='adv_wenku_fc']
+baidu.com##DIV.c-container.ec-container
+baidu.com##div[class$="-ecom-ads"]
+baidu.com##.ec-ad
+baidu.com##.ad-wrapper
+baidu.com###J-super-layer-promote
+baidu.com###page-copyright.se-page-copyright.se-copyrig
+baidu.com##.c-result.result[srcid='mkt_ad_space']
+baidu.com##[class^='ball-wrapper']
+baidu.com##DIV[class='qrcode call']
+baidu.com##.ec_wise_ad
+baidu.com##.ec_ad_results
+baidu.com##.brand-entry
+baidu.com###relative_shop_flow
+baidu.com##.rel-exp-feed-ad-item
+baidu.com###qtqy_container
+baidu.com##.se-recommend-word-list,#se-recommend-word-list-container
+baidu.com##a.ball-wrapper__3BTBO.c-blocka
+baidu.com##DIV[data-module='swan-ad-fc-feed'] DIV[sid][posid][prank]
+baidu.com##.barea-ad
+baidu.com##[data-video-player='true']
+baidu.com##DIV[data-module='rec:undefined-undefined']
+baidu.com##[class*='index_godCard'][class*='index_noGuaranteeTag'][class*='index_adTextPosition'],[class^='index_brandEntry__'],[data-show*='swan-ad-fc-swiper-banner']
+baidu.com###page-copyright.se-page-copyright.se-copyright-zbios[style='margin-bottom: 50px;']
+hanyu.baidu.com###fengchao_els.c-container.card.fengchao-els
+hanyu.baidu.com##.fengchao-el
+fanyi.baidu.com##H1,H3,.intro-nav.clearfix,.intro-copyrigh,A.app-bar,.intro-copyright
+cpu.baidu.com##A[href*='cpro.baidu.com']
+wk.baidu.com##.fc-ad-wrap
+wk.baidu.com##.middle-box-root
+tieba.baidu.com##.tbui_slideshow_slide
+tieba.baidu.com##.activity_head
+tieba.baidu.com##DIV[id^='aside-ad']
+tieba.baidu.com##div[class*='-ad-pb-']
+tieba.baidu.com##DIV[id^='mediago-tb-frs-list']
+jingyan.baidu.com##.ad-card
+jingyan.baidu.com##.asp-self-rander > .asp-wrap
+jingyan.baidu.com###wrapper > .exp-container:nth-child(2) > aside.wgt-ad-guess.content-box:nth-child(2)
+baike.baidu.com##[onclick^="page.Mixedor.mixedOpen(this,"]
+baike.baidu.com##[class="qtqy-container"],[class="yitiao-content J-yitiao-content"],[class="yitiao-title"]
+zhidao.baidu.com###knowledge-answer-list
+zhidao.baidu.com##.doodle-container,.feed-recommend,.wgt-recommend-business,[class*="-ads"],[class*="related-yxiao-item"],[class*="icon-bdad"],[class*="-youx"]
+baidu.com###bdrainrwDragButton
+pan.baidu.com##A.active-msg
+pan.baidu.com##div.content DIV.photo-banner
+mobile.baidu.com##SECTION.detail-banner.banner-ck
+bing.com###bnp_container
+bing.com##.b_ad
+www.123pan.com##IMG[src*='-banner'],.ant-carousel
+www.123pan.com##DIV.app-adv-container
+www.123pan.com##.advBanner
+sohu.com##A[href='javascript:void(0);']
+sohu.com###bottomBanner[data-spm='b-mb'][data-spm-stop='init']
+sohu.com##.middle-insert-ad
+sohu.com###middleBanner[data-spm='a-mb'][data-spm-stop='init']
+sohu.com##.top-bill-wrapper[data-spm='a-tb'][data-spm-stop='init']
+sohu.com##[data-spm^='ad-']
+sohu.com##.cbd-plate-bill.common-ad
+sohu.com##.nice-img-clz
+sohu.com##DIV[id^="ceans_"]
+sohu.com##.float-discuss-up.float-discuss-enter
+sohu.com##.float-discuss-container
+sohu.com##.feedback
+sohu.com###recommendSearch
+tv.sohu.com##.actv-banner.js-app-topbanner,.banner_yunying,.js-oper-pos,IMG.vrs-banner-act-img
+axutongxue.com##ASIDE[style*='height:58px;overflow:hidden;width:322px;border:dashed .5px']
+axutongxue.com##DIV[style*='z-index: 9999999;display: flex;justify-content: center;align-items: center;']
+axutongxue.com##DIV[style*='px;position:relative;box-shadow:rgb(0 0 0/24%)0px 3px 8px;']
+sina.com.cn##[id^="fake_div_"].xxl-card
+sina.cn###float-btn.callApp_fl_btn
+sina.cn##SECTION.sw_c0.sina_sliders_pos
+sina.cn##[sax-type='proxy'][data-pos][data-saxname][loaded='loaded']
+18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win,jmcomic1.group##[data-group^='photo_center_']
+18comic.vip##IMG[src^='//18comic.vip/media/albums/']
+18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win,jmcomic1.group#.bot-per-times
+18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win,jmcomic1.group##.bot-per-context
+18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win,jmcomic1.group##[data-group^='album_related'],[data-group^='all_bottom']
+cibaipuki.com##IMG[border='0'][width='100%']
+cibaipuki.com##SECTION[id^='download_']
+cibaipuki.com##A[href^='/article-list-id'][target='_blank']
+cibaipuki.com##.topnotice a:not([href='http://7a7c.com'])
+cibaipuki.com##[href*=":"]
+cibaipuki.com##.table2
+m.qidian.com##P.text-content
+m.qidian.com##A.catalog-download
+m.qidian.com##I.icon-logo
+m.hupu.com##A[href^='https://mobile.yangkeduo.com/duo_transfer_channel.html']
+m.hupu.com##IMG[alt='NBA英雄'][width='94%']
+m.hupu.com##[class^="show_ad"]
+www.xvideos.com###ad-footer
+www.xvideos.com##.thumb-ad
+pornhub.com##.adContainer
+pornhub.com##.topAdContainter
+www.apkmirror.com##DIV[style$=' display: flex; justify-content: center; font-family: Roboto, Arial;']
+www.apkmirror.com##.ains.ains-has-label
+guancha.cn##.g_swiper_container
+guancha.cn##.g_header44
+so.toutiao.com##.relative.pointer-events-none
+so.toutiao.com##section.commonbox.hasfooter
+so.toutiao.com##DIV[id^='ad_']
+www.xhfz2.com##A[href^='https://www.xhfz2.com/ad.php']
+www.xhfz2.com##span.lileft > A[style^='float:left;color:']
+www.xhfz2.com##DIV.pctext
+www.xhfz2.com##DIV.HomeTuList
+www.xhfz2.com##DIV#topcont
+v11av.xyz##.row.q-ma-none A[rel='noopener nofollow'][href][style='display: block;']
+v11av.xyz##.content__body [rel='nofollow'][href][target='_blank']
+www.itdog.cn##IMG[src^='/upload/images/'][width='270'][height='80'],.gg_link,.top_link_hidden,[src$='.gif']
+www.itdog.cn#%#window.alert=function(str){return}
+m.huya.com###template
+www.huya.com##A[data-edesc='点击/推荐/左侧导航推荐图']
+smartapps.cn##swan-nest-banner-ad.ad-expose
+smartapps.cn##.sw-22__bdad-wrap,.sw-22__ad-expose
+www.zhihu.com##.KfeCollection-VipRecommendCard
+www.zhihu.com##A.MBannerAd
+www.zhihu.com##A.MHotFeedAd,.MRelateFeedAd,.WeiboAd-wrap,.AdvertImg.AdvertImg--isLoaded.MBannerAd-image,.Banner-adTag,[href='https://maimai.cn/']
+www.zhihu.com##.OpenInAppButton
+manwa1.me,manwa2.me,manwa.me##.ad-area-close
+manwa1.me,manwa2.me,manwa.me##[data-group^='ad_chapter'][data-width='300'][data-height='250']
+manwa1.me,manwa2.me,manwa.me##[style*='15px'][style*='background-color:'][style*='margin: 10px'][style*='margin-top: 14px'][style*='border-radius: 20px'],.fas.fa-times
+manwa1.me,manwa2.me,manwa.me##[style='transform-origin: left top; margin: 0px auto;']
+manwa1.me,manwa2.me,manwa.me##.swiper-container.swiper-container-horizontal
+www.huadongty.com##DIV[id$=' img-containers']
+www.huadongty.com##SECTION
+m.jd.com##DIV.modal__mask
+m.jd.com##DIV.modal__wrap
+ifeng.com##[class^='index_fixSlideBox']
+ifeng.com##[href^='https://mall.ifeng.com'],IMG[class^='picMark-'][src^='https://x0.ifengimg.com/']
+ifeng.com##[class^='index_bottom_box']
+ifeng.com##[class^='index_wutong']
+ifeng.com##[class^='index_pageBottomBrand']
+91porny.com###playerJsvLayer.jsv-layer
+91porny.com##.mobile-jsv-bottom,.mb-3.p-0,.d-sm-none,.mb-0.p-0
+91porny.com##A.display.d-block[href^='http'],A.display.d-block[href^='http'] ~ *
+www.ghxi.com##DIV[style^='padding:10px;position: fixed;bottom: 0;left: 0;right:0;z-index: ']
+www.ghxi.com##.wpcom_ad_wrap
+qq.com##.VideoArticleBottomAdContainer,.ssp.nospl[data-boss-once='true'],DIV[data-boss-expo*='ad&s_or'],DIV[id^='App_WAP_share_page_']
+qq.com##A[dt-eid^='em_item_ad']
+qq.com##[id^='App_WAP_share_page']
+webtor.io##DIV.ad
+webtor.io##[data-element='empty']
+webtor.io##IFRAME[scrolling='no']
+achaec.cc##[style*='px; top: 0px; left: 0px; z-index:']
+achaec.cc##[style*='px; bottom: 0px; left: 0px; z-index: ']
+cqjschungao.com##[style='bottom: 132px;']
+cqjschungao.com##[style*='px no-repeat; position: relative;']
+www.meijuii.cc##DIV[style*='vw; display: block;']
+www.hzw.com.cn##.xfb_close_icon,#xfb_lbox,.xfb_close_btn
+www.hbhtyl.com##P[style^='width: 100% !important; margin: 0p']
+www.ydyse.com##.left,.bottom,.right,.ad,.adimage
+m.kdslife.com###app.Card.DownloadGuide
+m.guancha.cn##.g_header.go-to-app
+thepaper.cn##[class^='index_footer_banner']
+www.wenshushu.cn##A[href^='https://wenshushu.cn/ad/']
+cupfox.app##IMG[class^='jsx-'][width='100%'],.swiper-wrapper img[class^='jsx-'][class*='a']:only-child,.cupfox-content.right,.cupfox-content.left
+youtube.com##AD-SLOT-RENDERER
+www.3ppp.net##DIV.bottom_fixed
+dongmanhuayuan.myheartsite.com##.card-body
+baike.so.com##section#business-flow.business-flow
+chinaso.com##.wrap-toolbar
+www.jianshu.com##[aria-label='lwa-ad-one']
+imgur.com##.Ad.sas.Smart
+axutongxue.com##DIV[style='text-align:center']
+www.xda-developers.com##.adzone-above-latest
+www.lezhutv.com##[style='bottom: 132px;']
+woozooo.com##.ves
+ckizma.com###post-card-64841,#post-card-50163,.post-card-ads,.popup-container
+heiliao346.pro###post-card-1234,#post-card-518,#post-card-1000,#post-card-666,#post-card-1588,#post-card-1555,#post-card-1118,#post-card-618,#post-card-888,#post-card-999
+www.67tool.com##.footer-banner
+mini.yyrtv.com##.right-gg
+oss-cn-hangzhou.aliyuncs.com##A.hm_item[href^='https://tcs-devops.aliyuncs.com/thumbnail/']
+www.jmhongyan.com##ins[class],.container p
+www.jjtyss.com##ins[class],.myui-player.clearfix p,.container p
+www.olevod.com##.B1Lss,.B1Rss
+5dm.app##[src*="sinaimg.cn"]
+yemancomic.com##div > center > strong > button[onclick^="window.location.href"]
+share.acgnx.se##IMG[src*='share.acgnx.se']
+zol.com.cn##A.dingtong.xianshiyouhui
+dm530p.net##DIV[style$='; display: block;']
+m.iqiyi.com##.iqyGuide-content,.cover
+acglala.me##.topm,.donghua_info > DIV[style='width:100%;'],.donghua_info > a
+ali213.net##.placeholderforpromotion
+happymh.com##[src="https://c.nationaltcm.com/ad/tm1111dd.png"]
+skyroad.downallbook.com##IMG[height='60'][width='98%']
+trakt.tv##DIV[id$='-wrapper']
+ximalaya.com##.change-logo.S_q,.packet-container._PC,.less-tips._PC *
+m.douban.com##div.center [style*='padding: 4px;']
+m.sm.cn##DIV[ad_seid],.dl-banner-lg.card
+www.dbbqb.com##.MuiPaper-root
+www.haijiao.com##.addbox,.bannerliststyle,.van-swipe-item,.crossbutton
+boylove.today,boylove1.cc,boyloves.fun,boylove3.cc##DIV[style='bottom: 80px;']
+bimibimi.cc##[src^='https://dd-static.jd.com']
+hao123.com##.popup
+soutubot.moe##.bg-gray-800.overflow-hidden
+ix6080.com##DIV[style$='vw; display: block;']
+sogou.com##.ad_result
+nxnba.com##.bootom-fixed
+ifeng.com##div[class^="ad_"]
+autohome.com.cn##ol > li,.evade-operate
+match.tdping.com##P[style='text-align:left;margin:0;'],td.livetitle > L
+pabopa.com##DIV[style='width: 100%;'],DIV[carousel-item],#slide.layui-carousel,.closeable
+luoqiuzw.com##DIV[id^="a-loading-"]
+qilishusong.cn##[style*='display: block'],[style*='position: absolute; width: 100%;'],[style*='height:120px;']
+javbus.com##.container-fluid:nth-child(9) > .row > .ad-list:nth-child(3)
+##DIV[data-text-ad]
+###bottom_ads.hl_bottom_ads
+##A[href*='jialu6699h.vip']
+##DIV.adj
+##[style*='px; top: 0px; left: 0px; animation: 1.5s ease 0.2s infinite normal none running shakegwegs; z-index:']
+##A[href*='youqu.buzz']
+##A[href^='https://tv2356.cc']
+##DIV[class$='_ad_wrap']
+##DIV[class^='ads_border_']
+##body > A[ontouchstart='this.click();'][href]
+##div[id*='cat_'][id*='_ad']
+##IMG[alt^='kaiybet']
+##DIV.myui-content__acc[style='position: relative;padding: 0 10px']
+##[style^='bottom: 0px; width: 100%; height: 50vw; position: fixed; left: 0px; right: 0px; margin: 0px; background: url("https://']
+##[href='/aga2/1661087']
+##[href^='http://jg.awaliwa.com/']
+##.player_pic_link > [src*='/player.gif']
+##div.close-player_pic[onclick="document.getElementById('player_pic').style.display='none'"]
+##[href^='https://jincai.sohu.com/']
+##[href*='sohu.com/hy-op']
+##[href='/jump.html']
+##[href='/ad.html']
+##DIV._42701c0173
+##DIV._4e544f1dde
+##div.m0auto div.s_h,div.m0auto div.s_h + *
+##secion#ly LI[role='group'],secion#ly > H2
+##div.play_boxbg div[class$='_acmsd']
+##DIV.bot-per-context[data-width='728'][data-height='90']
+##DIV.fixed-bottom.d-block.d-sm-none.movies_ad
+##DIV.col-4.col-sm-2.col-xl-2.px-1.px-sm-2.pb-3.pt-3.pt-sm-0.d-block.d-sm-none
+##[href*='.lookxmh3']
+##[href='https://dpurl.cn/HifSTUtz']
+##[href^="openapp.jdmobile://virtual?params="]
+##[onclick*="trackEvent', 'ad"]
+##[src^='https://ae01.alicdn.com/'][alt='歪歪漫画']
+##UL[style='margin: 0px; padding: 0px; font-size: 0px; display: flex;']
+###topNavad
+###bottomNavad
+##.ff-ads
+##.ssr1
+##.ad_img
+##body.conch-hasone section > span > video
+##div.stui-pannel__bd > #t-img-box
+##P[style$='transparent !important; font-size: 0px !important; text-indent: -10000px !important; height: 125px !important;']
+##DIV[style^='width:100%;height:100%;line-height: 100%;overflow:hidden; margin:auto;border:1px #']
+##[src$='/dibu.adadadad']
+##.ayx[style="position: fixed;bottom: -10px;right:0;z-index:999;width:250px"]
+##[href*="/entry/register/?i_code="]
+##[style$='auto;text-align: center;line-height: initial;margin-bottom: 10px;margin-left: 20px;margin-right: 20px;']
+##[style$="both;margin: auto;text-align: center;line-height: initial;margin-bottom: 10px;"]
+##DIV#mhbottom_ad_box
+##[href^='https://w5979.com:']
+##[href^='https://dc.vvsmse72']
+##oxk
+##body > a[id*='hudie_']
+##div.synopsisArea > a[id*='hudie_']
+##div.recommend > a[id*='hudie_']
+##div.poi-row a > IMG[width='100%'][height='auto'][src]
+##div.row > div[id] > ul > li.cpn > a
+##SPAN[style$='font-size: 6vw; color:#fff; text-align: center; transform: rotate(-90deg);']
+##div.page.player > div.main > div.content > div.module.module-player > div.module-main > div.player-box > div.player-rm.rm-list > a > img
+##IMG[src*='/gg/'][src$='180.gif'][src*='800']
+##[onclick="window.open('http://682kg.com/')"]
+##[href^='https://www.00285164.com']
+##[href^='https://97749516.com/']
+##[href^='https://www.00426740.com']
+##[href^='https://tz.kefuyuming.vip/']
+##[href^='https://gougew.lanzoub.com/']
+##[href='/ad/bfy.html']
+##[href='/my/gd.html']
+##[style^="pointer-events: none;background-image:url('https://33789.qqqwww987.site"],[style^='z-index: 2147483647; height: 123px; ']
+###ad-header-mobile-contener
+###downapp1
+##[data^='/banners/pr_advertising_ads_banner']
+##[src^='/banners/pr_advertising_ads_banner']
+##body > DIV[class][style='top: 132px;']
+##body > DIV[style*='height: 33px'][style*='132px !important;']
+##body > DIV[style='display: block; width: 100%; height: 132px;']
+##[href^='https://www.qlspx.com:']
+##[href^="https://9996867.com"]
+##[href="/ad/007.html"]
+###ad-index.position-relative
+##[src^='https://l.bt5v.com/v.php']
+##div.container > div.row div.yalayi_box
+##center > [href^='https://docs.qq.com/doc'][target='_blank']
+##A[href='/hth.html']
+##[alt="要恰饭的嘛"]
+##img#hth[onclick^="window.open"]
+##[onclick*='https://i.opiwb.com:']
+##[href='https://click.aliyun.com/m/1000332699/']
+##[src^='https://qwe0231141.bj.bcebos.com/']
+##.gr_slide_car_inner
+##.__isboostOverContent
+##IMG[referrerpolicy='no-referrer'][style='box-sizing: border-box;height:calc(10vh); width:100%;padding: 0px 15px 10px 15px;']
+##.C1U,.C1M,.C2L,.C2R
+##[src^='/Uploads/ad/'][src$='.gif'][alt='广告']
+##img#hth[onclick$="hth.html')"]
+##A[onclick$='()'][target='_top'][style*='.gif) no-repeat;background-size:100% 100%;']
+##body#nr_body.nr_all.c_nr > div[class] > DIV[style='height:90px;width:100%;']
+##IMG[src$='.dl'][style='width:100% !important;height:90px'][onclick]
+##A[style='width: 100%;height: 150px;z-index:1000;position: absolute;display:block;top: 0px;'][onclick$=';this.style.display="none";']
+##[src^='https://play.cdn6.buzz/js/']
+##[href='https://www.aiwajbh.com/mh.php']
+##div#reader-scroll.acgn-reader-chapter.v>div>center>strong>button
+##[onclick^="window.location.href='https://apps.apple.com/cn/app/%E9%80%9F%E9%98%85%E5%B0%8F%E8%AF%B4"]
+##.fed-part-advs.fed-text-center.fed-font-xvi
+##A[href^='http'][style^='display:block;left:0;right:0;position:fixed;border-left:']
+###hongbao20201217
+###whYuTlxF
+###t4>a
+##[href^='https://kcc.qrjxween.com/cc/']
+##.zozoads
+##[src='http://m.guangzhoubingqing.com/88888.jpg']
+###bl_mobile_float[style='height: 152px;']
+###sOIcquIT
+##[src^='/MDassets/images/']
+##DIV.ec-ad.tim-box
+##DIV.box-width.ec-ad
+##[class^="chapter_"] > .baiduCenter
+##[href*="/?channelCode="] > [referrerpolicy='no-referrer']
+##[href^='http://mm.alameinv.com/']
+##[onclick='gourl()'][src^='/images/bfq/']
+##[onclick="window.open('https://docs.qq.com/doc/DZGtmWUxpamJGTnNY');"]
+###coupletBox
+##.advertise
+##[href^='https://xcc.'][href*='cn/']
+##a.gggg[href^="https"]
+###adDisabledBtn
+###Page-1[stroke='none'][fill='none'][fill-rule='evenodd']
+###header_global_ad
+##DIV#bl_mobile_float
+##[href^='https://iluluweb.club']
+##.width.imgs_1
+##[href^='https://jd.dangbei.com/']
+##[href^='https://dt.mydrivers.com/b.ashx']
+##.bottom-pic,.col-pd.mb10
+##.mi_btcon.ad
+##.fc_foot
+##SPAN#VuMk2.IgpuN2
+##[href^='https://fcc.hxaxfcc.cn/']
+##SPAN[style^="position: fixed; bottom: 30vh; z-index: 2147483647; right: 0px; margin-right: 6vw; padding: 0px; text-decoration: none; background-color: red; width: 7vw; height: 7vw; border-radius: 7vw; font-size: 6vw; color:"]
+##SPAN#qdSZ2
+##div[class^="is_"] > a > img[referrerpolicy="no-referrer"][src*="hdslb.com"]
+##[alt='ACG里番']
+##[alt='52bl']
+##[alt='西瓜社']
+##VIDEO[loop='true'][muted='true'][autoplay='true'][playsinline='true'][preload='auto']
+##[href^="https://lantianyong"]
+##[href='http://ky53362.com/']
+##[href^='https://js.xiaobaofei.com']
+##[href^='https://tz.jingjiezhenkong.com']
+##[href^='http://j6597v.hjlego.com']
+##[href^='https://xxx.nunxun.com']
+##div.row.col5.clearfix:nth-of-type(2) > dl:nth-of-type(1)
+##[at*='尼斯人注册送']
+##DIV.ads.ads_w
+##body#nr_body a[href*="/?utm_source="]
+##[style*='width:9.6vw;height:8.5vw;background:#000;opacity:0.01;']
+##IMG[url][onclick='window.open(this.url)'][src$='.gif'][width='100%']
+##body.active > div.myui-panel > DIV#home_slide
+##IMG[referrerpolicy='no-referrer'][src$='.gif'][width='100%']
+##div.page.player > div.main > div.content > div.module.module-player DIV[style='width:100%;height:180px']
+##div.page.view > div.main > div.content > DIV[style='width:100%;height:100px']
+##div.homepage > div.main > div.content > DIV[style='width:100%;height:180px']
+##div.main div.content div[id].is_mb a[id] img[id]
+##[src='/images/c_l.png']
+##A[href^='http://h5.shangjinssp.com/sjprom'][style='display:block;']
+##.clearfix > a > IMG[referrerpolicy='no-referrer'][src]:not([style='display: block;'])
+##A[target='_blank'][href*='/auth/register?code=']
+##[href='/my/dp.html']
+##A[href='http://8hgpro.vip/']
+##A[href='http://95710.vip']
+##A[href^='http://www.kyty1119.com']
+##A[href='http://kkyty29.cc/']
+##[href*='.xacg.info/']
+##[style='box-sizing: border-box; position: relative; left: 0px; z-index: 912944; text-indent: -10em;']
+##body#nr_body.nr_all.c_nr > section[id]
+##A[href^='https://chmjmff.com/']
+##div.container > IFRAME[align][width][src][border][height]
+##A[href^='https://d1-dm.online/go/']
+##DIV.appdownload_ad
+##A[href^='https://yongle008.com']
+##DIV#bfad
+##A[href^='https://js.pico4pro.com']
+##IMG[alt='155.fun']
+##div#detail.selector-zero > div > DIV[style]
+##DIV.ad-area.ad-area-fix-bottom
+##div.ad-area > [href]
+##center > a > IMG[alt$='到期']
+##body#nr_body font > [id]
+##IMG.cupfox[src$='gif']
+##[href^='https://luodi.aitaokeji.top/']
+##[poster^='https://dingbu.bj.bcebos.com/']
+##[src^='https://dingbu.bj.bcebos.com/']
+##IMG[onclick='golh()'][src$='.gif']
+##div.callApp_fl_btn.an
+###ad-1,#ad-2,#ad-3,#ad-4,#ad-5,#ad-6,#ad-7
+##[src='https://pnm.hpvitycz.cn/00.jpg']
+###mobile-index > div[id^="ins"]
+###mobile-index > div#vodbm
+##[onclick*='www.l4lui.com'],.col-12.position-relative>b
+##.theme-dark > .ayx > a
+##DIV.ad_js
+##A[href='http://x5123.cc/']
+##a > IMG[src$='.gif'][wapsrc][style^='width: 100%']
+##a > I.gg-icon
+##ul > li > A[href$='_list.html']
+##div.bf_qy DIV.copy_div_btn
+##DIV#advertisings.advertising
+##A[href^='http://cszb420.tinawd81.com/']
+##ul.content-list > li.content-tb
+##div.video-box > div.hf > a
+##body > h1 > strong > title > a
+##UL.myui-extra.clearfix
+##A[href^='https://www.nonstopclub.xyz']
+##A[href^='https://js.iconiclee.com']
+##[alt='ad']
+##div.container > DIV.t-img-box
+##A[href='/?'][target='_blank']
+##DIV#video-player-ads-wrap
+##div.flex-1.order-first > DIV.under_player
+##DIV[style*='.xyz/gif/']
+##DIV.module-adslist
+##DIV.JS_mid_ad
+##IFRAME[src^='https://mydisplay.ctfile.com/popview.php']
+##div[id$='ad1'][class^='text'],div[id$='ad2'][class^='text'],div[id$='ad3'][class^='text'],div[id$='ad4'][class^='text'],div[id$='ad5'][class^='text'],div[id$='ad6'][class^='text']
+##span > A[href='###']
+##IMG[style='width: 100%;'][src^='https://ad.']
+##A[href='http://k023055.com']
+##DIV#bannerCtrl.source_container.swiper-wrapper
+##IMG[src*='.xyz/tupian/'][src$='/h5.gif']
+##[href^='https://65564535.com']
+##div.ad-frame-container
+##iframe.ad-frame
+##DIV#tads
+##body > DIV[class][style='top: 133px;']
+##DIV[style*='display: block; width: 100%; left: 0px; position: fixed; z-index:'][style*='height: 25px; top: 133px;']
+##body > DIV[style='display: block; width: 100%; height: 133px;']
+##DIV[style*='height: 33.25px; top:'][style*='background-size: 400px 133px !important;']
+##DIV.footer-appload.js-footer-appload
+##BODY > DIV.ggcontainer
+##body > DIV[class][style^='bottom: '][style$='vw; display: block;']
+##body > [id][style*='width:100%'][style*='min-height:120px']
+##DIV.col-lg-3.col-md-3.col-sm-4.col-12.item.p-0.px-1
+##DIV#links.links.my-1.row[style='font-size:20px']
+##[class$="_main_outstream"][style="right: 0px;"]
+##DIV#div1.div-relative[style='display:block;']
+##[href^='https://analytics.woozooo.com/jump.php?url=']
+##[href^='https://ccs.holor0803.cn']
+##[href$='/ads.aspx']
+##div.post_list_ajax > A[target='_blank']
+##body.bg_xin > A[href*='com:'][target='_blank']
+##DIV.index_adpic
+##[onclick*='pypyj.com']
+##DIV.div_adhost
+##DIV.stui-player__item.clearfix > img[url]
+##[style*='width: 100% !important; margin: 0px !important; padding: 0px !important; display: flex !'] *
+##[style='width:100%;height:auto;min-height:120px;position:relative;display:block;']
+##div.row > DIV.md-r-panel
+##A.toptxt[target='_blank']
+##SPAN.closebox1,SPAN.closebox2,SPAN.closebox3,SPAN.closebox4
+##A[target='_blank'] > IMG[width='100%'][src*='.gif']
+##body.chapter > div.container div.slide-baidu *
+##ASIDE[id^='custom_html-']
+##DIV.code-block[style='margin: 8px 0; clear: both;']
+##DIV[style^='position: fixed; bottom: 50%; z-index: 19999 !important; ']
+##DIV[class*='id_ads__']
+##DIV#recommend-float.player-recommend-float > a
+##body.page.player > DIV.shortcuts-mobile-overlay
+##body.page.player > div.popup.popup-tips.popup-icon.open
+##div.player-rm.rm-two.rm-list > a
+##A[href='/statics/js/ky-a.html']
+##DIV[class*='home'][class*='Ads']
+##div[class*='bookid_ads']
+##div[id] > div[style*='z-index: 2147483647; width: 100vw; background: url']
+##div#content.content div[id] > DIV[style*='z-index: 2147483647']
+##div#apage.apage > div > ul > li > a
+##div.module-list-right-title-wrap > div.normal-title-wrap > div > a
+##div#beijing.article_content.layui-clear > div.left > div > a
+##ul#page-list.layui-clear.page-wz > ul > li:not([class])
+##body.no_overflow strong
+##DIV[style='position: fixed; bottom: 0px; left: 0px; width: 100%; height: 5.85rem; z-index: 99999;']
+##A[href*='//v.wanfumei.net']
+##IMG[src='/js/imgs/taote.jpg']
+###imgad
+##IMG[src*='//img4.qv1.ru/data/game/']
+##IMG[src*='/ds3/ssmh/']
+##IMG[src='/adBanner']
+##div.slide-baidu IMG[src='/images/aw1.gif']
+##div#gmright
+##[style='top: 0vw; display: block;']
+##[style='top: 8.2vw; display: block;']
+##[style='top: 16.4vw; display: block;']
+##[style='top: 24.6vw; display: block;']
+##DIV[style*='animation: 1s ease 0.2s infinite normal none running shakegwegs; z-index:'][style*='background: url']
+##INS.adsbygoogle
+##body#nr_body div.fixed ~ *
+##[style='width: 100%; height: auto; position: fixed; left: 0px; top: 0px; z-index: 2147483647;']
+##[style='width: 100%; height: 123.75px;']
+##A[href*='/adjump/?']
+##IMG[alt='五一特惠']
+##[ad_dot_url]
+##DIV#pos_nei_content
+##[src*='zdmbl.xyz']
+##I.fa.fa-close
+##IMG#diads
+##[style='display: block; width: 100%; left: 0px; position: fixed; z-index: 2147483646; height: 49px; bottom: 132px;']
+##body.fed-min-width.website-read > [style='bottom: 132px;']
+##center > div.hengfu
+##DIV.ad-content
+##div.layout-box a > IMG[src*='.gif']
+##div.stui-player.col-pd DIV[style='text-align:center']
+##div#hengfu_wap_vod_xia > a
+##div.maomi-content A[href='/baidu/index.html']
+##section > SPAN[style='display: block; clear: both; overflow: hidden;']
+##[style^='position: fixed; bottom: 20%; z-index: 19999 !important; ']
+##div.mobile > div.content IMG[src*='.gif']
+##[style*='width: 100% !important; margin: 0px !important; padding: 0px !important; display: flex !']
+##body#nr_body.nr_all.c_nr > div > div[id][class] > [href]
+##[style='text-align: center; margin: 40px 0; color: blue; font-size: larger;']
+##[style*='line-height: 115px; left: 0px; z-index: 0; width: 100vw; background: url']
+##DIV[style='position: fixed; line-height: 100vh; width: 100vw; top: 0px; left: 0px;']
+##[style='width: 100%;height:660px;z-index:2147483647;position:fixed;display:block;bottom:0px;']
+##IMG[src^='http://socos.gitee.io/ss/poster'][alt][style='width: 100%;']
+##IMG[src*='qmfcybwbf']
+##[href*='.top/?token=']
+##div.appad
+##[src^="https://img.sobot.com/chatres/"][title="sb"]
+##[style='z-index: 99999; text-indent: -10em;position: relative; left: 0px;box-sizing: border-box;']
+##a[href^="/ad.html?url="]
+##html.wap [style='left: 40%;']
+##body > DIV[style='bottom: 130px;']
+##[style^='position: fixed; z-index: 2147483616; width: 10%; height: 32.5px;']
+##body#wrapper A[ontouchstart='this.click();']
+##DIV.row.no-gutters.m-0
+##DIV#top-ads
+##[style*='width: 100vw; background: url'][style$='no-repeat; position: fixed;'][style*='0px 0px / 100vw ']
+##A#floating-banner
+##[style$='display:block;width:9.6vw;height:8.5vw;background: #000;opacity:0.01;']
+##DIV.loc_banner.only-app
+##div.swiper-slide > A[rel='nofollow noopenner']
+##div#liveline > l,div#liveline > ll
+##DIV.duilian[style*='z-index: 9999; top: 0px; ']
+##div#header-wrapper.header_b > div#header
+##a[href^="https://91keep.tv"]
+##DIV#bottom-ads
+##section.wrap > section.f0
+##DIV#googleads-popup.popup.visible
+##DIV[onclick='if (!window.__cfRLUnblockHandlers) return false; window.location.href=\'https://a.biquge-app.com/apps/\''],[onclick='if (!window.__cfRLUnblockHandlers) return false; window.location.href=\'https://a.biquge-app.com/apps/\''] + div
+##DIV[style='clear: both; position: relative; width: 396px; height: 130px;']
+##[style*='display: block; width: 100%; left: 0px; position: fixed; z-index: 2147'][style*='bottom: 132px;']
+##div#nr_body.nr_all.c_nr div.show-app2
+##[style^='position: fixed; color: transparent; line-height: 100vh; width: 100vw; z-index: '][style*='; top: 0px; left: 0px;']
+##a[href*=".com?s="]
+##div.my-ad > a
+##div#playlistbtn > A[href='/ht.html']
+##INS[status='done'] A.external
+##body > div#bottommob.bottommob
+##DIV#xfb_lbox.zoomout_transition.zoomout
+##A[href^='https://icrwt696.com']
+##A[href^='https://k.izret.com']
+##div.am-gallery-item > a
+##div.poi-row IMG[width='950'][height='300'][style='max-width:100%;height:auto']
+##div.inn-content-reseter > a > IMG[decoding='async'][loading='lazy']
+##DIV[style*='!important; color: transparent !important; font-size: 0px !important; text-indent: -10000px !important; line-height: 0px !important; height: 150px !important;']
+##div#page-back DIV.container.clearfix div > A > IMG[src]
+##section.global_video_bottom_dbtc
+##A[href^='https://www.ids20.co']
+##A[href^='https://www.pcjx365.com']
+##IMG[style='height:120px;width:100%;'][src*='/sucai/']
+##DIV[style^='box-sizing: border-box; position: relative; left: 0px; z-index: 214748']
+##A > IMG[alt][src*='resources/images/']
+##A[rel='nofollow noopener'][href*='/game/xr/?attributionId=']
+##DIV.bot-per.visible-xs.visible-sm *
+##div.maomi-content > SECTION.section.section-banner
+##DIV[style='width: 100%;background-color: black;color: white;padding: 15px 0;']
+##IMG.lazyload[src='/statics/img/load.gif']
+##[src^='https://immmg.owowqrf.cn']
+##A[href^='https://v.frthv.com']
+##A[href*='-fghgdf.com']
+##A[href*='-fghhjj.com']
+###mobile-ad.hidden-md
+##.scaled-juicyads
+##DIV.div_sticky2.hidden-lg
+##DIV.bottom-ad.hidden-lg
+##[href^='https://uod217.com/']
+##DIV[style*='px; bottom: 0px; left: 0px; animation: 1.5s ease 0.2s infinite normal none running shakegwegs; z-index:']
+##IMG[src*='tupian.guanggao']
+##A[href='/iwagbwfiwehaeyh/']
+##[href^='https://down.erperweima.top/']
+##IMG[src^='https://dzfzfv.xyz/']
+##body#read.read DIV[style$=' width: 100vw; position: relative;']
+##IMG[src$='tywheying/vv2-960x80.gif']
+##DIV[style='background-color: rgb(249, 249, 249); display: flex; align-items: center; justify-content: center;']
+##[src^='data:image/png;base64,iVBORw0KGgoAAAANSU'][style*='position: fixed; z-index: 2000000000; width: 30px; bottom:']
+##DIV[allowtransparency='true'][scrolling='no']
+##DIV.advertisingConfiguration
+##[src^='/static/resources/lp.php'][style^='max-width: 100%; transform-origin: left top;']
+##DIV[style^='display: block; aspect-ratio: 728 / 90; background-image: url("/static/resources/lp.php']
+##[style$=' 0% 0% / 100% no-repeat; height: 130px; width: 100%; position: relative;']
+##IMG[src*='qimanwu_wap/static/adimages/']
+##div#main.main.read_page [id^="set_adds"]
+##div.container.ff-bg > div.row.ff-row.slide
+##P[style*='!important; color: transparent !important; font-size: 0px !important; text-indent: -10000px !important;']
+##DIV[style*='px; top: 0px; left: 0px; z-index: '][style*='http']
+##DIV[style='position: fixed; color: transparent; line-height: 100vh; width: 100vw; z-index: 288; top: 0px; left: 0px;']
+##[href^='https://mtyshi.com/']
+##A[href*='exuvu.com']
+##A[href*='xzzkx.com']
+52movieba.com,acglala.me,acglala.net,awaker.cn,bimiacg4.net,bimiacg5.net,ccav1.com,cdsoso.me,cgown.com,cn163.net,comicat.org,cosersuki.org,dzbhdm.net,epinv.com,eroacg.com,galacg.me,gmgard.com,haochi123.com,hexieshe.cn,hexieshe.com,hexieshe.xyz,hggard.com,hmghmg.com,hmoe11.net,idanmu.ee,ifenpaidy.com,jitapu.com,jitashe.org,jiyingw.vip,kelatv.com,kisssub.org,languang.co,llss.bz,mtrend.cn,mydrivers.com,mzh.ren,nxing.cn,oyksoft.com,souxue8.com,speedtest.cn,tingroom.com,whsir.com,xxshe.info,xxshe.xyz##a[href*=".taobao.com"]
+! gif ads
+www.aiwuav.xyz##A.toptxt,IMG[src*='.gif'][alt],SPAN[class^="clobox"],IMG[width='100%'][src*='.gif']
+ikan6.vip,www.1111modruba.cc##IMG[src$='.gif']
+##a[href*='html?channelCode'] > IMG[src*='.gif'][width='100%']
+##A[href*='com:'] > IMG[src],A[href*='cc:'] > IMG[src]
+##div#h2_player_prevideo > A[href][target='_blank']
+##body#reader-m-fix IMG[src*='.gif'][style='width:100%;height:100%']
diff --git a/script/allowlist.txt b/script/allowlist.txt
new file mode 100644
index 0000000000..576fb6a3dd
--- /dev/null
+++ b/script/allowlist.txt
@@ -0,0 +1,278 @@
+#!-白名单-!#
+
+#! Apple 白名单 Start !#
+#苹果商店
+xp.apple.com
+#苹果音乐
+securemetrics.apple.com
+#苹果小游戏
+stats.gc.apple.com
+#苹果图标
+is[0-9]\-ssl.mzstatic.com
+#! Apple 白名单 End !#
+
+#! 网易 白名单 Start !#
+#光遇
+fp-upload.dun.163.com
+#网易严选商家后台 #140
+dl.reg.163.com
+#网易云音乐-直播
+api.iplay.163.com
+#! 网易 白名单 End !#
+
+#! 百度 白名单 Start !#
+#手机web百度跳转
+boxer.baidu.com
+#百度盘p2p
+bcsp2p.baidu.com
+#百度地图 #201
+newvector.map.baidu.com
+#额外
+sv.map.baidu.com
+#百度贴吧签到
+als.baidu.com
+#贴吧网页版表情 #146
+gsp0.baidu.com
+#成都 地震预警
+newloc.map.n.shifen.com
+#爱奇艺VIP活动
+act.vip.iqiyi.com
+#! 百度 白名单 End !#
+
+#! Microsoft 白名单 Start !#
+#win天气 #202
+api.msn.com
+#skype #199 #188
+events.data.microsoft.com
+mobile.pipe.aria.microsoft.com
+browser.pipe.aria.microsoft.com
+c1.skype.com
+c.bing.com
+#edge and windows
+ntp.msn.cn
+ntp.msn.com
+assets.msn.cn
+#Microsoft游戏纸牌
+solitaireevents.microsoftcasualgames.com
+#! Microsoft 白名单 End !#
+
+#! 小米 白名单 Start !#
+# 小米 隐私条款撤回 #195
+data.sec.miui.com
+#MIUI校正流量
+api.sec.miui.com
+# 小米社区
+api.vip.miui.com
+#mipush
+chat.xiaomi.net
+register.xmpush.xiaomi.com
+cn.app.chat.xiaomi.net
+resolver.msg.xiaomi.net
+#小米天气
+wtradv.market.xiaomi.com
+#应用商店
+f8.market.xiaomi.com
+#! 小米 白名单 End !#
+
+#! Google 白名单 Start !#
+# 186 麦当劳
+firebaseremoteconfig.googleapis.com
+#google
+safebrowsing.googleapis.com
+#mytvsuper
+imasdk.googleapis.com
+#fcm push
+firebaseinstallations.googleapis.com
+#! Google 白名单 End !#
+
+#! 三大运营商 白名单 Start !#
+#电信一键登录
+id6.me
+#移动一键登录
+da.mmarket.com
+#免流
+cmpassport.com
+#中国联通app充值以及相关页面误杀 #153
+fraudmetrix.cn
+#移动云盘AI
+ad.mcloud.139.com
+#! 三大运营商 白名单 End !#
+
+#! 阿里 白名单 Start !#
+#阿里
+amdc.m.taobao.com
+#淘宝千牛商家 #151
+acs.m.taobao.com
+#淘宝
+click.mz.simba.taobao.com
+#淘宝阿里旺旺买家版聊天对话窗
+amos.alicdn.com
+#UC浏览器
+wgo.mmstat.com
+gm.mmstat.com
+#优酷
+mmstat.com
+#饿了么会员开通
+cashier.ele.me
+#饿了么再来一单
+buy.ele.me
+#饿了么搜索
+h-adashx.ut.ele.me
+# 夸克登录
+api.open.uc.cn
+# uc
+p.bokecc.com
+#! 阿里 白名单 End !#
+
+#! 直播与短视频平台 白名单 Start !#
+#斗鱼礼物
+gift.douyucdn.cn
+#抖音图片
+p3-ad-sign.byteimg.com
+#虎牙直播 #177
+va.huya.com
+#火山视频图片
+img2.autoimg.cn
+#今日头条
+ib.snssdk.com
+ic.snssdk.com
+is.snssdk.com
+#抖音验证码
+mcs.snssdk.com
+vcs.snssdk.com
+verify.snssdk.com
+#虎牙
+livewebbs2.msstatic.com
+liveweb\*\.msstatic\.com
+#哔哩哔哩橱窗功能 #122
+miniapp.bilibili.com
+#bili评论
+grpc.biliapi.net
+#bili直播
+live-trace.bilibili.com
+#! 直播与短视频平台 白名单 End !#
+
+#! 未分类大厂 白名单 Start !#
+#pronhub cdn
+evtubescms.phncdn.com
+#雅虎 js
+consent.cmp.oath.com
+# 迅雷书签
+api-shoulei-ssl.xunlei.com
+#cdn
+cloudfront.net
+#京东礼品卡
+gia.jd.com
+#微信验证
+szlong.weixin.qq.com
+# 搜狗同步
+get.sogou.com
+input.shouji.sogou.com
+ping.pinyin.sogou.com
+info.pinyin.sogou.com
+#360智慧生活
+sobot.com
+#360DNS
+qhres2.com
+# adtidy
+.*\.adtidy\.org$
+# 通配误杀脚本之家
+\*\.jbzj\.com
+#adg邮件跳转
+email-link.adtidy.org
+#奇怪的cname误杀
+tanx.com
+#招商银行掌上生活
+metric.ccc.cmbchina.com
+#OPPO
+client-uc.heytapmobi.com
+#OPPO应用配置
+appconf.heytapdownload.com
+#QQ打卡
+tianshu.gtimg.cn
+#Intel驱动
+static.cloud.coveo.com
+#企业微信 #208
+tdid.m.qq.com
+#! 未分类大厂 白名单 End !#
+
+#! 乱七八糟的域名 白名单 Start !#
+
+#jameswoof 游戏
+app.jameswoof.com
+
+#OpenCat
+lc-cn-n1-shared.com
+
+#bmcx.com cname
+7x24s.com
+
+# 待补充
+similarweb.com
+
+#纵横小说
+static.zongheng.com
+
+#乘车码 #178
+ecard.shenzhentong.com
+
+#东方财富 图片
+dfcfw.com
+
+#umiwi.com
+imgcdn.umiwi.com
+
+#误杀CNAME angtv.cc
+gotoip55.com
+
+# 网盘 #168
+pan.tenire.com
+
+#今日基督教 #167
+christianitytoday.activehosted.com
+
+#sm图床
+loli.net
+
+#电影
+free-adsmind.ugdtimg.com
+
+#mytvsuper #144
+jwpcdn.com
+
+#游戏换购码
+statistics.pandadastudio.com
+
+#云课堂
+www.mosoteach.cn
+api.mosoteach.cn
+
+# 图床
+z4a.net
+
+# 开心消消乐
+animalmobile.happyelements.cn
+
+# 汽车之家加载页
+activity.app.autohome.com.cn
+
+#不知道的域名 #49
+epochtimes.com
+epochtimes.org
+
+# 购物党
+browser.gwdang.com
+
+#206
+logrocket.com
+
+#app mirror #209
+html-load.com
+content-loader.com
+
+#215
+instant.page
+#! 乱七八糟的域名 白名单 End !#
+
+
+#---END---#
diff --git a/script/clean-readme.sh b/script/clean-readme.sh
new file mode 100644
index 0000000000..f81774c34e
--- /dev/null
+++ b/script/clean-readme.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+num_adl=`sed -n 's/^! Total count: //p' adblock_lite.txt`
+num_adb=`sed -n 's/^! Total count: //p' adblock.txt`
+num_adp=`sed -n 's/^! Total count: //p' adblock_plus.txt`
+num_dns=`sed -n 's/^! Total count: //p' dns.txt`
+#num_domains=`sed -n 's/^! Total count: //p' ad-domains.txt`
+
+time=$(TZ=UTC-8 date +'%Y-%m-%d %H:%M:%S')
+sed -i "s/^Update Time:.*/Update Time: $time  /g" README.md
+sed -i 's/^AdRules AdBlock List :.*/AdRules AdBlock List : '$num_adb' /g' README.md
+sed -i 's/^AdRules AdBlock List Plus :.*/AdRules AdBlock List Plus : '$num_adp' /g' README.md
+sed -i 's/^AdRules AdBlock List Lite :.*/AdRules AdBlock List Lite : '$num_adl' /g' README.md
+sed -i 's/^AdRules DNS List .*/AdRules DNS List : '$num_dns' /g' README.md
+exit
diff --git a/script/dns-rules-config.json b/script/dns-rules-config.json
new file mode 100644
index 0000000000..f681645a5c
--- /dev/null
+++ b/script/dns-rules-config.json
@@ -0,0 +1,20 @@
+{
+    "name": "The DNS List",
+    "description": "Blocks ads, analytics, trackers, crypto-jacking & other such threats/nuisances. Addon lists are available to extend this list.",
+    "sources": [
+        {
+            "name": "DNS List",
+            "source": "dns.txt",
+            "type": "adblock",
+            "transformations": ["RemoveComments", "Compress","RemoveModifiers","Deduplicate","Validate"]
+        },
+        {
+            "name": "DNS Filters",
+            "source": "https://raw.githubusercontent.com/Cats-Team/dns-filter/main/abp.txt",
+            "type": "adblock",
+            "transformations": ["RemoveComments", "Compress"]
+        }
+    ],
+    "exclusions_sources": ["https://raw.githubusercontent.com/Cats-Team/deadhosts/main/dead.txt","./script/allowlist.txt"],
+    "transformations": ["Deduplicate", "Compress","TrimLines","Deduplicate","Validate","RemoveEmptyLines"]
+}
diff --git a/script/dns-script/singbox.py b/script/dns-script/singbox.py
new file mode 100644
index 0000000000..8915f62444
--- /dev/null
+++ b/script/dns-script/singbox.py
@@ -0,0 +1,17 @@
+import json
+from datetime import datetime
+
+with open('domain.txt', 'r') as file:
+    domains = [line.strip() for line in file]
+
+rules = {
+    "version": "1",
+    "rules": [
+        {
+            "domain_suffix": domains
+        }
+    ]
+}
+
+with open('adrules-singbox.json', 'w') as file:
+    json.dump(rules, file, indent=4)
diff --git a/script/dns-script/surge.py b/script/dns-script/surge.py
new file mode 100644
index 0000000000..dadd2427df
--- /dev/null
+++ b/script/dns-script/surge.py
@@ -0,0 +1,47 @@
+import re
+import requests
+from datetime import datetime
+
+url = "https://raw.githubusercontent.com/ACL4SSR/ACL4SSR/master/Clash/BanAD.list"
+response = requests.get(url)
+banad_list = response.text.splitlines()
+
+with open("adrules-surge.conf", "w") as surge_file:
+    surge_file.write(f"# Generated at {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n")
+    domain_wildcard_count = 0
+    domain_keyword_count = 0
+    domain_suffix_count = 0
+    for line in banad_list:
+        if line.startswith("DOMAIN-KEYWORD"):
+            domain_keyword_count += 1
+
+pattern = r"(?<=\|\|).+(?=\^)"
+with open('dns.txt', 'r') as file:
+    lines = file.readlines()
+
+domains = []
+for line in lines:
+    line = line.strip()
+    match = re.search(pattern, line)
+    if match:
+        domain = match.group(0)
+        if '*' in domain:
+            domains.append(f"DOMAIN-WILDCARD,{domain}")
+            domain_wildcard_count += 1
+        else:
+            domains.append(f"DOMAIN-SUFFIX,{domain}")
+            domain_suffix_count += 1
+
+domains.sort()
+
+# Write sorted domains to adrules-surge.conf
+with open('adrules-surge.conf', 'a') as output_file:
+    output_file.write(f"# DOMAIN-WILDCARD: {domain_wildcard_count}\n")
+    output_file.write(f"# DOMAIN-KEYWORD: {domain_keyword_count}\n")
+    output_file.write(f"# DOMAIN-SUFFIX: {domain_suffix_count}\n")
+    for line in banad_list:
+        if line.startswith("DOMAIN-KEYWORD"):
+            output_file.write(line + "\n")
+
+    for domain in domains:
+        output_file.write(domain + "\n")
\ No newline at end of file
diff --git a/script/remove.py b/script/remove.py
new file mode 100644
index 0000000000..95a2b62f19
--- /dev/null
+++ b/script/remove.py
@@ -0,0 +1,34 @@
+import re
+
+# 从文件中读取黑名单
+with open('./dns.txt', 'r', encoding='utf-8') as f:
+    blacklist = [line.strip() for line in f.readlines() if line.strip() and not line.startswith("#")]
+
+# 从文件中读取白名单
+with open('./script/allowlist.txt', 'r', encoding='utf-8') as f:
+    whitelist = [line.strip() for line in f.readlines() if line.strip() and not line.startswith("#")]
+
+# 新的黑名单
+new_blacklist = blacklist
+
+# 遍历白名单
+for white_item in whitelist:
+    # 判断白名单项是否为正则表达式
+    try:
+        re.compile(white_item)
+        is_regex = True
+    except re.error:
+        is_regex = False
+
+    # 根据白名单项是正则表达式还是子字符串进行处理
+    if is_regex:
+        # 如果是正则表达式,添加前缀和后缀
+        white_item = r'^\|\|' + white_item + r'\^$'
+        new_blacklist = [domain for domain in new_blacklist if not re.match(white_item, domain)]
+    else:
+        new_blacklist = [domain for domain in new_blacklist if domain != white_item]
+
+# 将新的黑名单写入到文件中
+with open('./dns.txt', 'w', encoding='utf-8') as f:
+    for domain in new_blacklist:
+        f.write(domain + '\n')
diff --git a/script/rule.py b/script/rule.py
new file mode 100644
index 0000000000..7cfe2f84c7
--- /dev/null
+++ b/script/rule.py
@@ -0,0 +1,14 @@
+import os
+import sys
+
+gpus = sys.argv[1]
+result = []
+
+# 读取文件内容,注意指定newline参数为LF
+with open(gpus, "r+", encoding="utf8", newline='') as ffo:
+    result = list(set(ffo.readlines()))
+    result.sort()
+
+# 重新写入文件,注意指定newline参数为LF
+with open(gpus, "w", encoding="utf8", newline='') as ffo:
+    ffo.writelines(result)
diff --git a/script/update-content-rules.sh b/script/update-content-rules.sh
new file mode 100644
index 0000000000..4af09d86ca
--- /dev/null
+++ b/script/update-content-rules.sh
@@ -0,0 +1,61 @@
+#!/bin/sh
+LC_ALL='C'
+
+cd tmp
+
+# Start Merge and Duplicate Removal
+
+echo Start Merge
+
+rules=(
+  jiekouAD.txt
+  224.txt
+  NoAppDownload.txt
+  cjx-annoyance.txt
+  anti-adblock-killer-filters.txt
+  antiadblockfilters.txt
+  abp-filters-anti-cv.txt
+)
+
+#Lite
+echo " " > pre-lite.txt
+
+for file in "${rules[@]}"
+do
+  cat "./content/$file" >> pre-lite.txt
+done
+
+echo "! Version: $(TZ=UTC-8 date +'%Y-%m-%d %H:%M:%S')(GMT+8) " > tpdate.txt 
+cat ../mod/title/adblock_lite-title.txt .././mod/rules/adblock-rules.txt pre-lite.txt \
+ | grep -Ev "^((\!)|(\[)).*" | sort -n | uniq > adblock_lite_pre.txt
+grep -vxFf ../mod/rules/adblock-need-remove.txt ./adblock_lite_pre.txt > adblock_lite.txt
+ 
+python ../script/rule.py adblock_lite.txt
+echo "! Total count: $(wc -l < adblock_lite.txt)" > total.txt
+cat ../mod/title/adblock_lite-title.txt tpdate.txt total.txt adblock_lite.txt > tmp.txt && mv tmp.txt adblock_lite.txt
+
+
+#Normal
+cat ../mod/title/adblock_lite-title.txt adblock_lite.txt ./content/{3.txt,clear_urls_uboified.txt,easyprivacy.txt}\
+ | grep -Ev "^((\!)|(\[)).*" | sort -n | uniq > adblock_pre.txt  
+grep -vxFf ../mod/rules/adblock-need-remove.txt ./adblock_pre.txt  > adblock.txt
+
+python ../script/rule.py adblock.txt
+echo "! Total count: $(wc -l < adblock.txt)" > total.txt
+cat ../mod/title/adblock-title.txt tpdate.txt total.txt adblock.txt > tmp.txt && mv tmp.txt adblock.txt
+
+
+#Plus
+cat adblock.txt ./content/*.txt \
+ | grep -Ev "^((\!)|(\[)).*" | sort -n | uniq  > adblock_plus_pre.txt  
+grep -vxFf ../mod/rules/adblock-need-remove.txt ./adblock_plus_pre.txt > adblock_plus.txt
+
+
+python ../script/rule.py adblock_plus.txt
+echo "! Total count: $(wc -l < adblock_plus.txt)" > total.txt
+cat ../mod/title/adblock_plus-title.txt tpdate.txt total.txt adblock_plus.txt > tmp.txt && mv tmp.txt adblock_plus.txt
+
+rm adblock*pre.txt
+mv adblock*.txt ../
+
+exit
diff --git a/script/update-dns-rules.sh b/script/update-dns-rules.sh
new file mode 100644
index 0000000000..1067c2120d
--- /dev/null
+++ b/script/update-dns-rules.sh
@@ -0,0 +1,55 @@
+#!/bin/bash
+LC_ALL='C'
+
+update_time="$(TZ=UTC-8 date +'%Y-%m-%d %H:%M:%S')(GMT+8)"
+
+cp ./mod/rules/*rule* ./tmp/dns/
+
+cat ./tmp/dns/* | grep -Ev '[A-Z]' |grep -vE '@|:|\?|\$|\#|\!|/' | sort | uniq >dns.txt
+
+hostlist-compiler -c ./script/dns-rules-config.json -o dns-output.txt 
+
+cat dns-output.txt |grep -P "^\|\|[a-z0-9\.\-\*]+\^$"> dns.txt
+
+python ./script/remove.py
+
+cat ./mod/rules/first-dns-rules.txt >> dns.txt
+python ./script/rule.py dns.txt
+echo -e "! Total count: $(wc -l < dns.txt) \n! Update: $update_time" > total.txt
+cat ./mod/title/dns-title.txt total.txt dns.txt | sed '/^$/d' > tmp.txt && mv tmp.txt dns.txt
+
+
+echo "# Title:AdRules Quantumult X List " > qx.conf
+echo "# Title:AdRules SmartDNS List " > smart-dns.conf
+echo "# Title:AdRules List " > adrules.list
+echo "# Update: $update_time" >> qx.conf 
+echo "# Update: $update_time" >> smart-dns.conf 
+echo "# Update: $update_time" >> adrules_domainset.txt 
+echo "# Update: $update_time" >> adrules.list 
+
+cat dns.txt |grep -vE '(@|\*)' |grep -Po "(?<=\|\|).+(?=\^)" | grep -v "\*" > ./domain.txt
+cat domain.txt |sed 's/^/host-suffix,/g'|sed 's/$/,reject/g' >> ./qx.conf
+cat domain.txt |sed "s/^/address \//g"|sed "s/$/\/#/g" >> ./smart-dns.conf
+cat domain.txt |sed "s/^/domain:/g" > ./mosdns_adrules.txt
+cat domain.txt |sed "s/^/\+\./g" >> ./adrules_domainset.txt
+cat domain.txt |sed "s/^/DOMAIN-SUFFIX,/g" >> ./adrules.list
+
+python ./script/dns-script/singbox.py
+python ./script/dns-script/surge.py
+
+wget -O ssc https://github.com/PuerNya/sing-srs-converter/releases/download/v2.0.1/sing-srs-converter-v2.0.1-linux-x86_64_v3
+chmod +x ssc
+./ssc adrules.list -m
+mv adrules.list.srs adrules-singbox.srs
+
+wget https://github.com/MetaCubeX/mihomo/releases/download/Prerelease-Alpha/version.txt
+version=$(cat version.txt)
+wget "https://github.com/MetaCubeX/mihomo/releases/download/Prerelease-Alpha/mihomo-linux-amd64-$version.gz"
+gzip -d "mihomo-linux-amd64-$version.gz"
+chmod +x "mihomo-linux-amd64-$version"
+./"mihomo-linux-amd64-$version" convert-ruleset domain text adrules_domainset.txt adrules-mihomo.mrs
+
+rm ssc mihomo-linux-amd64 *.gz version.txt
+rm dns-output.txt total.txt domain.txt
+
+exit
diff --git a/script/update-upstream.sh b/script/update-upstream.sh
new file mode 100644
index 0000000000..4f2ff26e61
--- /dev/null
+++ b/script/update-upstream.sh
@@ -0,0 +1,155 @@
+#!/bin/sh
+LC_ALL='C'
+
+download_file() {
+  url=$1
+  directory=$2
+  filename=$(basename $url)
+  filepath="$directory/$filename"
+  retries=3
+  while [ $retries -gt 0 ]; do
+    if curl -sS -o $filepath $url; then
+      echo "Downloaded $url successfully"
+      # 在文件的第一行插入 ! url: $url
+      sed -i "1i\\! url: $url" $filepath
+      return  
+    else
+      echo "Failed to download $url, retrying..."
+      retries=$((retries-1))
+    fi
+  done
+  echo "Failed to download $url after 3 retries, exiting script."
+  exit 1  
+}
+
+wait
+# Create temporary folder
+mkdir -p ./tmp/
+cd tmp
+
+# Start Download Filter File
+echo 'Start Downloading...'
+
+content=(  
+  #damengzhu
+  "https://raw.githubusercontent.com/damengzhu/banad/main/jiekouAD.txt" 
+  #Noyllopa NoAppDownload
+  "https://raw.githubusercontent.com/Noyllopa/NoAppDownload/master/NoAppDownload.txt" 
+  #china
+  #"https://filters.adtidy.org/extension/ublock/filters/224.txt" 
+  #cjx
+  "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt"
+  #anti-anti-ad
+  "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt"
+  "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt"
+  "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt"
+  #--normal
+  #Clean Url
+  "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt" 
+  #english opt
+  "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt"
+  #EasyListPrvacy
+  "https://easylist-downloads.adblockplus.org/easyprivacy.txt"
+  #--plus
+  #ubo annoyance
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" 
+  #ubo privacy
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" 
+  #adg base
+  "https://filters.adtidy.org/windows/filters/2.txt" 
+  #adg privacy
+  "https://filters.adtidy.org/windows/filters/3.txt" 
+  #adg cn
+  "https://filters.adtidy.org/windows/filters/224.txt" 
+  #adg annoyance
+  "https://filters.adtidy.org/windows/filters/14.txt" 
+)
+
+dns=(
+  #Ultimate Ad Filter
+  "https://filters.adavoid.org/ultimate-ad-filter.txt"
+  #Ultimate Privacy Filter
+  "https://filters.adavoid.org/ultimate-privacy-filter.txt"
+  #Social
+  "https://filters.adtidy.org/windows/filters/4.txt"
+  #Annoying
+  "https://filters.adtidy.org/windows/filters/14.txt"
+  "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt"
+  #Mobile Ads
+  "https://filters.adtidy.org/windows/filters/11.txt"
+  #Chinese and English
+  "https://filters.adtidy.org/windows/filters/2.txt"
+  "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt"
+  "https://filters.adtidy.org/windows/filters/224.txt" 
+  #Fuck Tracking
+  "https://easylist-downloads.adblockplus.org/easyprivacy.txt"
+  "https://filters.adtidy.org/windows/filters/3.txt"
+  #anti-coin
+  "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt"
+  #scam
+  "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt"
+  #damengzhu
+  "https://raw.githubusercontent.com/damengzhu/banad/main/jiekouAD.txt"
+  #adgk
+  "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt"
+  #xinggsf
+  "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/mv.txt" 
+  #uBO
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" 
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" 
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt"
+  "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt"
+  #cjx
+  "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt"
+  #anti-anti-ad
+  "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt"
+  "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt"
+  "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt"
+  #HostsVN
+  "https://raw.githubusercontent.com/bigdargon/hostsVN/master/filters/adservers-all.txt"
+  #Smart-TV
+  "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt"
+  #d3ward
+  "https://raw.githubusercontent.com/d3ward/toolz/master/src/d3host.adblock"
+  #hosts
+  #ad-wars
+  "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts"
+  #anti-windows-spy
+  "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt"
+  #Notarck-Malware
+  "https://gitlab.com/quidsup/notrack-blocklists/-/raw/master/malware.hosts"
+  #hostsVN
+  "https://raw.githubusercontent.com/bigdargon/hostsVN/master/filters/adservers-all.txt"
+  #StevenBlack
+  "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts"
+  #SomeoneNewWhoCares
+  "https://someonewhocares.org/hosts/zero/hosts"
+  #Spam404
+  "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt"
+  #SukkaW
+  "https://raw.githubusercontent.com/SukkaW/Surge/master/Source/domainset/reject_sukka.conf"
+  #Brave
+  "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-lists/brave-firstparty.txt"
+  #Me
+  "https://raw.githubusercontent.com/Cats-Team/dns-filter/main/abp.txt"
+)
+
+mkdir -p content
+mkdir -p dns
+
+for content in "${content[@]}"
+do
+  download_file $content "content"
+done
+
+for dns in "${dns[@]}" 
+do
+  download_file $dns "dns"
+done
+
+#修复换行符问题
+sed -i 's/\r//' ./content/*.txt
+
+echo 'Finish'
+
+exit