iczrac / Parsers-for-clash

自用Clash的预处理配置文件(parsers)
136 stars 29 forks source link

initial rule provider reject error: unexpected EOF #5

Open neuron42 opened 1 year ago

neuron42 commented 1 year ago

Parsers:

parsers: # array
  - reg: ^.*$ 
  # - reg: ^.*$ 匹配所有订阅,或  - url: https://example.com/profile.yaml 指定订阅
  # 下面是删除服务商自带的策略组和规则
    code: |
      module.exports.parse = (raw, { yaml }) => {
        const rawObj = yaml.parse(raw)
        const groups = []
        const rules = []
        return yaml.stringify({ ...rawObj, 'proxy-groups': groups, rules })
      } 
  # 建立自己的配置
    yaml:
      prepend-proxy-groups: # 建立策略组
      - name: 🥷PROXY
        type: select
        url: http://www.google.com/generate_204
        interval: 300
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 👆SELECT
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - ⏳YouTube-Url-Test
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🚀URL-TEST
        type: url-test
        url: http://www.google.com/generate_204
        interval: 120
        lazy: true
        tolerance: 100

      - name: 🎛LOAD-BALANCE
        type: load-balance
        url: http://www.gstatic.com/generate_204
        interval: 600

      - name: 🕹Fallback
        type: fallback
        url: http://www.gstatic.com/generate_204
        interval: 60
        lazy: true
        tolerance: 30

      - name: 🎎YouTube
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - ⏳YouTube-Url-Test
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: ⏳YouTube-Url-Test
        type: url-test
        url: https://www.youtube.com/
        interval: 120
        lazy: true
        tolerance: 100
        proxies:
            - REJECT
            - DIRECT

      - name: 📽Netflix
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🤖OpenAI
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🔍Bing
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🚅Google
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🛀Bilibiliintl
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🦤Twitter
        type: select
        proxies:
         - 🚀URL-TEST
         - 🎛LOAD-BALANCE
         - 🕹Fallback
         - 👆SELECT
         - DIRECT
         - 🇭🇰香港
         - 🐳台湾
         - 🇯🇵日本
         - 🇸🇬新加坡
         - 🇰🇷韩国
         - 🇺🇸美国
         - 👨‍🎤其他

      - name: 🚦AD
        type: select
        proxies:
            - REJECT
            - DIRECT
            - 🥷PROXY

      - name: 🇭🇰香港
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 🐳台湾
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 🇯🇵日本
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 🇸🇬新加坡
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 🇰🇷韩国
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 🇺🇸美国
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

      - name: 👨‍🎤其他
        type: url-test
        url: http://www.google.com/generate_204
        interval: 300

  # 策略组示例
      # - name: 分组名
        # type: select       # 手动选点   
        # url-test     # 自动选择延迟最低的节点
        # fallback     # 节点故障时自动切换下一个
        # laod-balance # 均衡使用分组内的节点
        # url: http://www.gstatic.com/generate_204 # 测试地址 非select类型分组必要
        # interval: 300 # 自动测试间隔时间,单位秒 非select类型分组必要
        # tolerance: 50 # 允许的偏差,节点之间延迟差小于该值不切换 非必要
        # proxies:  
          # - 节点名称或其他分组套娃

      commands:
        - proxy-groups.(🚀URL-TEST).proxies=[]proxyNames
        - proxy-groups.(🎛LOAD-BALANCE).proxies=[]proxyNames
        - proxy-groups.(🕹Fallback).proxies=[]proxyNames
        - proxy-groups.(⏳YouTube-Url-Test).proxies=[]proxyNames
        - proxy-groups.🇭🇰香港.proxies=[]proxyNames|港|香港|🇭🇰|HK|Hong Kong # 向指定策略组添加订阅中的节点名,可使用正则过滤
        - proxy-groups.🐳台湾.proxies=[]proxyNames|台|台湾|新北|彰化|TW|Taiwan
        - proxy-groups.🇯🇵日本.proxies=[]proxyNames|日|日本|🇯🇵|川日|东京|大阪|泉日|埼玉|沪日|深日|[^-]日|JP|Japan
        - proxy-groups.🇰🇷韩国.proxies=[]proxyNames|韩|韓|韩国|🇰🇷|KR|Korea|KOR|首尔
        - proxy-groups.🇸🇬新加坡.proxies=[]proxyNames|新加坡|🇸🇬|坡|狮城|SG|Singapore
        - proxy-groups.🇺🇸美国.proxies=[]proxyNames|美|美国|🇺🇸|波特兰|达拉斯|俄勒冈|凤凰城|费利蒙|硅谷|拉斯维加斯|洛杉矶|圣何塞|圣克拉拉|西雅图|芝加哥|US|United States
        - proxy-groups.👨‍🎤其他.proxies=[]proxyNames|^[^香日台新韩美]*$ # 这个可以自定义,这个正则的意思是排除节点名字有“香日台新韩美”的节点。
        - mixed-port=7890

       # 为各个策略组添加一个DIRECT,避免机场节点无法匹配上面的正则筛选而导致配置出错。应该有其他办法避免,但是我不会。
        - proxy-groups.🇭🇰香港.proxies.0+REJECT
        - proxy-groups.🐳台湾.proxies.0+REJECT
        - proxy-groups.🇯🇵日本.proxies.0+REJECT
        - proxy-groups.🇰🇷韩国.proxies.0+REJECT
        - proxy-groups.🇸🇬新加坡.proxies.0+REJECT
        - proxy-groups.🇺🇸美国.proxies.0+REJECT
        - proxy-groups.👨‍🎤其他.proxies.0+REJECT

        # - proxy-groups.节点名字.proxies.0+DIRECT # 向指定分组第一个位置添加一个 DIRECT 节点名
        # 一些可能用到的正则过滤节点示例,使分组更细致
        # []proxyNames|a                         # 包含a
        # []proxyNames|^(.*)(a|b)+(.*)$          # 包含a或b
        # []proxyNames|^(?=.*a)(?=.*b).*$        # 包含a和b
        # []proxyNames|^((?!b).)*a((?!b).)*$     # 包含a且不包含b
        # []proxyNames|^((?!b|c).)*a((?!b|c).)*$ # 包含a且不包含b或c
        # 更多正则教程,请看这里:https://deerchao.cn/tutorials/regex/regex.htm#top

  # 添加规则
      prepend-rules: # 规则由上往下遍历,如上面规则已经命中,则不再往下处理
        - DOMAIN-SUFFIX,jdev.tw,🥷PROXY
        - DOMAIN-SUFFIX,omnivore.app,🥷PROXY
        - RULE-SET,youtube,🎎YouTube
        - RULE-SET,netflix,📽Netflix
        - RULE-SET,openai,🤖OpenAI
        - RULE-SET,bing,🔍Bing
        - RULE-SET,bilibiliintl,🛀Bilibiliintl
        - RULE-SET,twitter,🦤Twitter
        - RULE-SET,github,🥷PROXY
        - RULE-SET,applications,DIRECT
        - DOMAIN,clash.razord.top,DIRECT
        - DOMAIN,yacd.haishan.me,DIRECT
        - RULE-SET,private,DIRECT
        - RULE-SET,reject,🚦AD
        - RULE-SET,icloud,DIRECT #
        - RULE-SET,apple,DIRECT # 这三个为国内可直连地址,如果希望走代理改为🥷PROXY
        - RULE-SET,google,🚅Google # 
        - RULE-SET,googledrive,🚅Google # 
        - RULE-SET,googlesearch,🚅Google # 
        - RULE-SET,tld-not-cn,🥷PROXY
        - RULE-SET,gfw,🥷PROXY
        - RULE-SET,greatfire,🥷PROXY
        - RULE-SET,telegramcidr,🥷PROXY
        - RULE-SET,lancidr,DIRECT
        - RULE-SET,cncidr,DIRECT
        - GEOIP,,DIRECT
        - GEOIP,CN,DIRECT
        - RULE-SET,direct,DIRECT
        - RULE-SET,proxy,🥷PROXY
        - MATCH,👆SELECT # ⭐️⭐️规则之外的,在这里来修改是白名单模式还是黑名单模式,具体在“👆SELECT”选择代理或直连。

      # 添加规则集
        # DOMAIN-SUFFIX:域名后缀匹配
        # DOMAIN:域名匹配
        # DOMAIN-KEYWORD:域名关键字匹配
        # IP-CIDR:IP段匹配
        # SRC-IP-CIDR:源IP段匹配
        # GEOIP:GEOIP数据库(国家代码)匹配
        # DST-PORT:目标端口匹配
        # SRC-PORT:源端口匹配
        # PROCESS-NAME:源进程名匹配
        # RULE-SET:Rule Provider规则匹配
        # MATCH:全匹配

  # 添加规则集
      mix-rule-providers: 
        reject: # 广告域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/reject.txt"
          path: ./ruleset/reject.yaml
          interval: 86400

        icloud: # iCloud 域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/icloud.txt"
          path: ./ruleset/icloud.yaml
          interval: 86400

        apple: # Apple 在中国大陆可直连的域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/apple.txt"
          path: ./ruleset/apple.yaml
          interval: 86400

        google: # Google 在中国大陆可直连的域名列表
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Google/Google.yaml"
          path: ./ruleset/google.yaml
          interval: 86400

        googledrive: # 
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GoogleDrive/GoogleDrive.yaml"
          path: ./ruleset/googledrive.yaml
          interval: 86400

        googlesearch: # 
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GoogleSearch/GoogleSearch.yaml"
          path: ./ruleset/googlesearch.yaml
          interval: 86400

        proxy: # 代理域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/proxy.txt"
          path: ./ruleset/proxy.yaml
          interval: 86400

        direct: # 直连域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/direct.txt"
          path: ./ruleset/direct.yaml
          interval: 86400

        private: # 私有网络专用域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/private.txt"
          path: ./ruleset/private.yaml
          interval: 86400

        gfw: # GFWList 域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/gfw.txt"
          path: ./ruleset/gfw.yaml
          interval: 86400

        greatfire: # GreatFire 域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/greatfire.txt"
          path: ./ruleset/greatfire.yaml
          interval: 86400

        tld-not-cn: # 非中国大陆使用的顶级域名列表
          type: http
          behavior: domain
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/tld-not-cn.txt"
          path: ./ruleset/tld-not-cn.yaml
          interval: 86400

        telegramcidr: # Telegram 使用的 IP 地址列表
          type: http
          behavior: ipcidr
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/telegramcidr.txt"
          path: ./ruleset/telegramcidr.yaml
          interval: 86400

        cncidr: # 中国大陆 IP 地址列表
          type: http
          behavior: ipcidr
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/cncidr.txt"
          path: ./ruleset/cncidr.yaml
          interval: 86400

        lancidr: # 局域网 IP 及保留 IP 地址列表
          type: http
          behavior: ipcidr
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/lancidr.txt"
          path: ./ruleset/lancidr.yaml
          interval: 86400

        applications: # 需要直连的常见软件列表
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/Loyalsoldier/clash-rules/release/applications.txt"
          path: ./ruleset/applications.yaml
          interval: 86400

        netflix: # 奈飞的分流规则
          type: http
          behavior: classical
          url: "https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/release/rule/Clash/Netflix/Netflix.yaml"
          path: ./ruleset/netflix.yaml
          interval: 86400

        bing: # Bing的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Bing/Bing.yaml"
          path: ./ruleset/bing.yaml
          interval: 86400

        openai: # OpenAI的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/OpenAI/OpenAI.yaml"
          path: ./ruleset/openai.yaml
          interval: 86400    

        youtube: # YouTube的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/YouTube/YouTube.yaml"
          path: ./ruleset/youtube.yaml
          interval: 86400    

        bilibiliintl: # BiliBiliIntl的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/BiliBiliIntl/BiliBiliIntl.yaml"
          path: ./ruleset/bilibiliintl.yaml
          interval: 86400    

        twitter: # twitter的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Twitter/Twitter.yaml"
          path: ./ruleset/twitter.yaml
          interval: 86400    

        github: # github的分流规则
          type: http
          behavior: classical
          url: "https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GitHub/GitHub.yaml"
          path: ./ruleset/github.yaml
          interval: 86400    

添加了 Parsers 之后再切换 Profile 就会报错:initial rule provider reject error: unexpected EOF 因为 jsDelivr 在我这无法访问,所以我把它替换成了 fastgit,我使用的订阅是 tbbatbb/Proxy ,请问问题出在哪里?

neuron42 commented 1 year ago

Profile:

allow-lan: true
external-controller: 0.0.0.0:9090
log-level: info
mixed-port: 7890
mode: Rule
proxies:
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
    network: tcp
    port: 31601
    server: 5m4h0k04.mcfront.xyz
    servername: hk04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
    network: tcp
    port: 31301
    server: 2d1t5w04.mcfront.xyz
    servername: tw04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
    network: tcp
    port: 31116
    server: 6w7j3p04.mcfront.xyz
    servername: jp04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
    network: tcp
    port: 31611
    server: 5m4h0k06.mcfront.xyz
    servername: hk06.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
    network: tcp
    port: 31201
    server: 1c7s2g04.mcfront.xyz
    servername: sg04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
    network: tcp
    port: 31851
    server: 4t1r5u04.mcfront.xyz
    servername: ru04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
    network: tcp
    port: 31606
    server: 5m4h0k05.mcfront.xyz
    servername: hk05.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_0@7
    network: tcp
    port: 45689
    server: 107.167.16.87
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 7640a1e7-9701-428e-a4b2-19b3e7dd6f9f
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
    network: ws
    port: 80
    server: 1.sanfen001.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 82a573e6-6ac2-448a-b36b-f996ccdeda23
    ws-opts:
      headers:
        host: ccaws.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_0@9
    network: ws
    port: 8080
    server: 162.159.25.51
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d5382631-aae1-486d-842a-de48274dd0d7
    ws-opts:
      headers:
        host: uxx.vtcss.top
      path: /qwer
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
    network: tcp
    port: 31877
    server: 7c6i2r04.mcfront.xyz
    servername: br04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
    network: tcp
    port: 31864
    server: 3c2h4u04.mcfront.xyz
    servername: hu04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
    network: tcp
    port: 31506
    server: 4a2u0a05.mcfront.xyz
    servername: us05.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
    network: tcp
    port: 31821
    server: 4o5a3u04.mcfront.xyz
    servername: au04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
    network: tcp
    port: 31811
    server: 3a4u0k04.mcfront.xyz
    servername: uk04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
    network: tcp
    port: 31111
    server: 6w7j3p06.mcfront.xyz
    servername: jp06.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
    network: tcp
    port: 31841
    server: 9t1d5e04.mcfront.xyz
    servername: de04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
    network: tcp
    port: 31874
    server: 2w8u2a04.mcfront.xyz
    servername: vn04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
    network: tcp
    port: 31401
    server: 8l2k1r04.mcfront.xyz
    servername: kr04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
    network: tcp
    port: 31701
    server: 3d1c4a04.mcfront.xyz
    servername: ca04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
    network: tcp
    port: 31831
    server: 6q3i1n04.mcfront.xyz
    servername: in04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
    network: tcp
    port: 31861
    server: 7c1a1r04.mcfront.xyz
    servername: ar04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 1
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
    network: ws
    port: 443
    server: cn-to-hk-443.db-link.in
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 40cbc750-a182-3fe2-8832-9fa6006354cf
    ws-opts:
      headers:
        host: free-to-us-01.db-link.in
      path: /db
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
    network: tcp
    port: 31871
    server: 4w7u4a04.mcfront.xyz
    servername: ua04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
    network: tcp
    port: 31868
    server: 4t1u6r04.mcfront.xyz
    servername: tr04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: a8d5255d-e8ed-4951-9017-975dfb67e7b0
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_0@25
    network: tcp
    port: 50002
    server: 198.2.203.154
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_4_0@26
    network: tcp
    port: 47127
    server: 45.12.144.80
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇫🇷_FR_法国_0@27
    network: ws
    port: 443
    server: 51.158.98.130
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 8ec62dcf-9ead-48d6-afec-4aa4ed264a95
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_1_0@28
    network: ws
    port: 80
    server: 159.223.94.156
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 533724ad-58ef-4147-88dc-9da523c15fc4
    ws-opts:
      path: /anti13.zingfast.vn
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_2_0@29
    network: ws
    port: 80
    server: sg4.zingfast.vn
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 533724ad-58ef-4147-88dc-9da523c15fc4
    ws-opts:
      headers:
        host: sg4.zingfast.vn
      path: /anti13.zingfast.vn
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
    network: ws
    port: 443
    server: 104.16.32.142
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: QkGxa2MSvmu.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
    network: ws
    port: 19106
    server: 221.131.165.175
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1b35440a-1309-339b-9dd3-ff90ff887d76
    ws-opts:
      path: /soda
  - alterId: 0
    cipher: auto
    name: 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
    network: ws
    port: 2052
    server: dearma.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1262dace-d355-3868-915f-b7418c2e7390
    ws-opts:
      headers:
        host: dearma.76898102.xyz
      path: /abuciwyg
  - name: 🇸🇬_SG_新加坡_3_0@33
    network: tcp
    password: 4b526505-3de3-4cb4-8f99-70b65adea09f
    port: 12025
    server: sg1.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen
    skip-cert-verify: true
    sni: rfetch.yektanet.net
    type: trojan
    udp: true
  - name: 🇻🇳_VN_越南_1@0
    network: tcp
    password: 99507239-7601-4c76-afda-18be311b0bec
    port: 443
    server: 103.173.255.21
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇭🇰_HK_香港_1@1
    network: ws
    port: 443
    server: hk1.c.e8bb3fc45ae9.sanfen004.me
    servername: hk1.sanfen004.me
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3e309172-9f20-4e18-b42e-5c635ed4fa7c
    ws-opts:
      headers:
        host: www.microsoft.com
      path: /zh-cn
  - alterId: 0
    cipher: auto
    name: 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
    network: ws
    port: 2095
    server: 8.sanfen001.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 82a573e6-6ac2-448a-b36b-f996ccdeda23
    ws-opts:
      headers:
        host: jpppp.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 64
    cipher: auto
    name: 🇨🇳_CN_中国_1_1@3
    network: tcp
    port: 50002
    server: 112.132.215.189
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
    network: ws
    port: 2095
    server: 7.sanfen001.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 82a573e6-6ac2-448a-b36b-f996ccdeda23
    ws-opts:
      headers:
        host: ccaws.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
    network: tcp
    port: 29033
    server: a7d4813550c2.sanfen004.me
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3e309172-9f20-4e18-b42e-5c635ed4fa7c
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
    network: tcp
    password: e958b47d-3510-445a-99cb-dc98d227e29e
    port: 38805
    server: zf.heigouyunzf.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇷_CR_哥斯达黎加_1@8
    network: ws
    port: 443
    server: cf-lt.sharecentre.online
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 2d5d8b9c-8ec4-4a37-b610-78e71e13eaef
    ws-opts:
      headers:
        host: ca.ilovescp.com
      path: /shirker
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
    password: 5dffba42-4be9-447e-a6d5-61567a360e70
    port: 19584
    server: cm1-nc.go001.buzz
    type: ss
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_1@10
    password: amazonskr05
    port: 443
    server: 13.213.46.196
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
    network: ws
    port: 443
    server: 104.16.183.101
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: pWghljmnknq.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_1@12
    network: tcp
    port: 54774
    server: 45.12.112.122
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
    network: tcp
    port: 36311
    server: 8t6w06.abzoones.xyz
    servername: tw06.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
    network: tcp
    port: 36601
    server: 8h2k04.abzoones.xyz
    servername: hk04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
    network: tcp
    port: 36206
    server: 9s5g05.abzoones.xyz
    servername: sg05.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: aes-128-gcm
    name: 🇨🇳_CN_中国_2_1@16
    network: ws
    port: 443
    server: 202.108.15.135
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 06a28663-4320-4a31-ab98-0ef8c1ef546b
    ws-opts:
      headers:
        host: ttk.731808.tk
      path: /cec6f2
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
    network: tcp
    port: 36501
    server: 3u1s04.abzoones.xyz
    servername: us04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_1@19
    network: tcp
    port: 41654
    server: 107.167.7.22
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: bdee202c-8fae-441f-a588-7bc4d3887019
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
    network: tcp
    port: 36831
    server: 7i4n04.abzoones.xyz
    servername: in04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
    network: tcp
    port: 36701
    server: 5c1a04.abzoones.xyz
    servername: ca04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
    network: tcp
    port: 36868
    server: 2t1u04.abzoones.xyz
    servername: tr04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
    network: tcp
    port: 36811
    server: 2u3k04.abzoones.xyz
    servername: uk04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
    network: tcp
    port: 36871
    server: 8u9a04.abzoones.xyz
    servername: ua04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
    network: tcp
    port: 36606
    server: 8h2k05.abzoones.xyz
    servername: hk05.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
    network: tcp
    port: 36301
    server: 8t6w04.abzoones.xyz
    servername: tw04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
    network: tcp
    port: 36861
    server: 9a8r04.abzoones.xyz
    servername: ar04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
    network: tcp
    port: 36611
    server: 8h2k06.abzoones.xyz
    servername: hk06.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
    network: tcp
    port: 36111
    server: 1j8p06.abzoones.xyz
    servername: jp06.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
    network: tcp
    port: 36821
    server: 5a4u04.abzoones.xyz
    servername: au04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
    network: ws
    port: 443
    server: 104.16.48.44
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: SX8xtGOKv1MaJh.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_1@32
    network: tcp
    port: 50002
    server: 23.225.9.195
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_1@33
    network: ws
    port: 80
    server: 192.9.131.244
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 38919fc2-ea92-3162-9cc7-ae1476603e21
    ws-opts:
      headers:
        host: v9-dy.ixigua.com
      path: /v2ray
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
    network: tcp
    port: 36116
    server: 1j8p04.abzoones.xyz
    servername: jp04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
    network: tcp
    port: 36211
    server: 9s5g06.abzoones.xyz
    servername: sg06.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
    network: tcp
    port: 36874
    server: 3v4n04.abzoones.xyz
    servername: vn04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
    network: tcp
    port: 36201
    server: 9s5g04.abzoones.xyz
    servername: sg04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_1@38
    network: ws
    port: 443
    server: smt.ircf.space
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3bcbd5cd-e791-4770-8bc7-7b1d941c9513
    ws-opts:
      headers:
        host: wfi.sahnama.com
      path: /S4PSg9xqUClN2kJ4SOPKqC6
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
    network: tcp
    port: 36511
    server: 3u1s06.abzoones.xyz
    servername: us06.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
    network: tcp
    port: 36106
    server: 1j8p05.abzoones.xyz
    servername: jp05.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
    network: tcp
    port: 36864
    server: 2h4u04.abzoones.xyz
    servername: hu04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 21d45a20-34e4-4042-807c-39ab0974bab0
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
    network: ws
    port: 80
    server: zfc.windowsupdate1.com
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 01925169-e2ff-483c-89f2-6e778dcdd450
    ws-opts:
      headers:
        host: us-1.acyun.cf
      path: /
  - alterId: 0
    cipher: auto
    name: 🇹🇼_TW_台湾_1@43
    network: tcp
    port: 445
    server: tw99-hinet.mynodes001.one
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5f04de84-6b7e-3564-82c2-d2a998002629
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
    network: ws
    port: 2052
    server: jpnewacs.114514782.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5936dbd5-670f-372c-87be-fa5a55dd2d0c
    ws-opts:
      headers:
        host: jpnewacs.114514782.xyz
      path: /vvfdgtrh
  - name: 🇯🇵_JP_日本_1@45
    network: tcp
    password: 38541d74-6ffd-4352-988d-715ee989947c
    port: 443
    server: fschk.fscloud123456789.com
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_1_2@1
    network: ws
    port: 8080
    server: 104.248.148.72
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5d260357-312a-4a10-82b7-ca4d9da4d780
    ws-opts:
      headers:
        host: tms.dingtalk.com
      path: /
  - name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
    network: tcp
    password: 12aa5b09-3550-42f2-a51a-ef5e8c2762e1
    port: 43000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: sg03.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
    network: tcp
    password: 12aa5b09-3550-42f2-a51a-ef5e8c2762e1
    port: 40002
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: hk03.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
    network: tcp
    password: 12aa5b09-3550-42f2-a51a-ef5e8c2762e1
    port: 41002
    server: gzyd02.jcnode.top
    skip-cert-verify: true
    sni: jp001.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
    network: tcp
    password: 12aa5b09-3550-42f2-a51a-ef5e8c2762e1
    port: 41003
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: jp02.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇻🇳_VN_越南_1_2@7
    network: ws
    port: 8080
    server: 103.183.113.73
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5d260357-312a-4a10-82b7-ca4d9da4d780
    ws-opts:
      headers:
        host: tms.dingtalk.com
      path: /
  - name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
    network: tcp
    password: 12aa5b09-3550-42f2-a51a-ef5e8c2762e1
    port: 42000
    server: gzyd02.jcnode.top
    skip-cert-verify: true
    sni: rctw02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_2_2@9
    network: tcp
    password: b2ac46e0-cf21-4dd3-bf99-60eeb18a1cee
    port: 443
    server: pqawssg01.gsjc.cfd
    skip-cert-verify: true
    sni: 18-140-66-207.nhost.00cdn.com
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_3_2@10
    network: tcp
    password: 24fc7d27-3ad3-4592-af6e-2220cab6047a
    port: 60006
    server: starlightboostor.top
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_2_2@11
    password: amazonskr05
    port: 443
    server: 13.230.137.173
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
    network: ws
    port: 2095
    server: fldsubgigtujuy.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1262dace-d355-3868-915f-b7418c2e7390
    ws-opts:
      headers:
        host: fldsubgigtujuy.76898102.xyz
      path: /miaoGK
  - name: 🇻🇳_VN_越南_2_2@13
    network: tcp
    password: 19537db7-b002-4a60-8f91-59461bf56c3b
    port: 443
    server: 202.158.244.220
    skip-cert-verify: true
    sni: dl.kgvn.garenanow.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
    network: tcp
    port: 39611
    server: a-cm1.jsmmm.cyou
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2ca11501-7729-3f82-884a-1ceaf2a49a3f
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
    network: ws
    port: 2083
    server: 188.114.96.50
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3abe40d0-dbe1-481a-9427-9f4d8c646d34
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue
  - alterId: 0
    cipher: aes-128-gcm
    name: 🇺🇸_US_美国_2_2@16
    network: ws
    port: 80
    server: cf-lt.sharecentre.online
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2d5d8b9c-8ec4-4a37-b610-78e71e13eaef
    ws-opts:
      headers:
        host: ca.ilovescp.com
      path: /shirker
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
    network: ws
    port: 2096
    server: 104.18.127.153
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: f387a0af-4b70-4a40-e2c3-2f22472df0cb
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue01
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
    network: ws
    port: 2096
    server: 104.18.182.251
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: f387a0af-4b70-4a40-e2c3-2f22472df0cb
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue01
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_2@21
    network: tcp
    port: 50004
    server: 137.175.41.200
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
    network: ws
    port: 2096
    server: 141.101.122.73
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: f387a0af-4b70-4a40-e2c3-2f22472df0cb
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue01
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_2@23
    network: ws
    port: 2052
    server: 104.25.118.64
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5cd1dfc8-607b-4121-efa6-633fb808d911
    ws-opts:
      headers:
        host: uxx.vtcss.top
      path: /qwer
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
    network: ws
    port: 80
    server: 104.31.16.27
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 58fe1542-5290-40ad-815a-77707a81afe5
    ws-opts:
      headers:
        host: ca5.tehme2.fun
      path: /IOebhLMhl1CTbFHbL95myfRX2
  - name: 🇯🇵_JP_日本_3_2@25
    network: tcp
    password: 7a73f1dc97a70905870c0c0484b12145
    port: 443
    server: trs19.bolab.net
    skip-cert-verify: true
    sni: trs19.bolab.net
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
    network: ws
    port: 80
    server: 104.31.16.45
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2fcc2939-7dcf-4741-aa03-825bc40e23fd
    ws-opts:
      headers:
        host: de3.irteh.fun
      path: /CZfczvtieCZXdOlgWhgDLX
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
    network: ws
    port: 80
    server: ns1.v2-vip.fun
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 4f859149-2b2f-4b90-9a2c-8c0fe15c8c4c
    ws-opts:
      headers:
        host: de14.irteh.fun
      path: /ozX9aUPiJVtoLavjTW
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_2@28
    network: ws
    port: 443
    server: bluehost.com
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: be74ca03-6a7c-4c88-edc2-c6434ead0cfa
    ws-opts:
      headers:
        host: cdnca1.digisport.shop
      path: /16575
  - name: 🇩🇪_DE_德国_2@29
    network: tcp
    password: 92d1ed85-97f8-4821-887b-0d1b8b367cf8
    port: 443
    server: 217.79.184.76
    skip-cert-verify: true
    sni: downloadde.xn--mes358aby2apfg.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
    network: tcp
    port: 36306
    server: 8t6w05.abzoones.xyz
    servername: tw05.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
    network: tcp
    port: 36877
    server: 6i2r04.abzoones.xyz
    servername: br04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
    network: tcp
    port: 36841
    server: 3d6e04.abzoones.xyz
    servername: de04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
    network: ws
    port: 42042
    server: dc.xmrthnode.com
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 61a06847-820f-3785-af90-506d3e988a12
    ws-opts:
      headers:
        host: dc.xmrthnode.com
      path: /th
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
    network: tcp
    port: 36401
    server: 8k2r04.abzoones.xyz
    servername: kr04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
    network: ws
    port: 443
    server: 104.16.150.9
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: XWOp2D.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 64
    cipher: auto
    name: 🇫🇷_FR_法国_2@36
    network: tcp
    port: 48972
    server: 156.249.18.37
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_6_2@37
    network: tcp
    port: 44313
    server: 64.32.21.245
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 57f93e92-ebb9-4f16-9bdc-8225d2010995
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
    network: tcp
    port: 36801
    server: 7p3h04.abzoones.xyz
    servername: ph04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_7_2@39
    network: ws
    port: 443
    server: v2ray.online
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 00BBF5B8-173E-6818-9927-5AD1AA073C7D
    ws-opts:
      headers:
        host: Kansas.v2ray.online
      path: /speedtest
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
    network: tcp
    port: 36851
    server: 8r5u04.abzoones.xyz
    servername: ru04.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 75b24456-a883-4a33-8f85-8842849bfffb
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_8_2@41
    network: ws
    port: 80
    server: tech.noaries.de
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2d5d8b9c-8ec4-4a37-b610-78e71e13eaef
    ws-opts:
      headers:
        host: nl.sharecentrepro.com
      path: /shirker
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_9_2@42
    network: ws
    port: 443
    server: mtn.ircf.space
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3bcbd5cd-e791-4770-8bc7-7b1d941c9513
    ws-opts:
      headers:
        host: wfi.sahnama.com
      path: /S4PSg9xqUClN2kJ4SOPKqC6
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
    network: tcp
    port: 31501
    server: 4a2u0a04.mcfront.xyz
    servername: us04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 71573380-f4c8-46d6-a1a8-b8ea7cf15e31
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
    network: tcp
    port: 31511
    server: 4a2u0a06.mcfront.xyz
    servername: us06.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 71573380-f4c8-46d6-a1a8-b8ea7cf15e31
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
    network: tcp
    port: 36506
    server: 3u1s05.abzoones.xyz
    servername: us05.abpilot.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 00686191-4d9e-416a-b0bb-bebbd55bc546
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_3@25
    network: tcp
    port: 42857
    server: 192.74.228.176
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 051b844f-efe3-4847-92aa-66b5de0b6d4e
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_3@26
    network: ws
    port: 80
    server: dl.v001sssv.pw
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: a4bb7f93-cee6-43d7-b2dd-fa9c70b88233
    ws-opts:
      headers:
        host: dl.v001sssv.pw
      path: /
  - name: 🇺🇸_US_美国_4_3@28
    network: tcp
    password: c8e877d3-2909-416d-aa5a-6d1722a374bd
    port: 80
    server: ssrsub.o08.trojan.tel
    skip-cert-verify: true
    sni: ssrsub.o08.trojan.tel
    type: trojan
    udp: true
  - name: 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
    network: tcp
    password: c32c56fb-64d9-33c4-b42a-af81b7a33fe7
    port: 23330
    server: hnm.xiaohouzi.club
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_3@31
    network: ws
    port: 8080
    server: 141.101.120.216
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: a1bed870-013d-4555-becd-584b00249f3c
    ws-opts:
      headers:
        host: xx.ylks01.eu.org
      path: /qwer
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
    network: tcp
    password: fca31d04-a84c-4c7a-a506-b4f28a0eab0f
    port: 40003
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk04.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
    network: tcp
    password: 6443f0be-b188-4fbb-92d5-1b5b7e004435
    port: 29200
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: vn01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
    network: tcp
    password: 6443f0be-b188-4fbb-92d5-1b5b7e004435
    port: 29200
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: vn01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
    network: tcp
    password: 6443f0be-b188-4fbb-92d5-1b5b7e004435
    port: 24002
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: rctw01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
    network: tcp
    password: fca31d04-a84c-4c7a-a506-b4f28a0eab0f
    port: 48000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: us2.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
    network: tcp
    password: 6443f0be-b188-4fbb-92d5-1b5b7e004435
    port: 25001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: id01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
    network: tcp
    password: 6443f0be-b188-4fbb-92d5-1b5b7e004435
    port: 23005
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: sg03.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
    network: tcp
    password: fca31d04-a84c-4c7a-a506-b4f28a0eab0f
    port: 48003
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: us04.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
    network: tcp
    password: fca31d04-a84c-4c7a-a506-b4f28a0eab0f
    port: 40001
    server: gzyd02.jcnode.top
    skip-cert-verify: true
    sni: hk02.ckcloud.info
    type: trojan
    udp: true
  - cipher: aes-128-gcm
    name: 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
    password: 077efc30-5273-46ed-a55d-b40cf4750d83
    port: 7060
    server: rukou1.rookiebase.cn
    type: ss
  - cipher: aes-128-gcm
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
    password: 077efc30-5273-46ed-a55d-b40cf4750d83
    port: 7017
    server: rukou2.rookiebase.cn
    type: ss
  - cipher: aes-128-gcm
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
    password: 077efc30-5273-46ed-a55d-b40cf4750d83
    port: 7010
    server: rukou1.rookiebase.cn
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
    network: ws
    port: 2052
    server: baxwarfrey.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 12d06bb6-d797-3cf3-b368-a903b8702f2c
    ws-opts:
      headers:
        host: baxwarfrey.76898102.xyz
      path: /bxtkmiao
  - name: 🇰🇷_KR_韩国_3@46
    network: tcp
    password: ab204b2d-dac8-4cf4-8239-d46d49d9cad5
    port: 51256
    server: ko1.lianpi.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
    network: tcp
    port: 31211
    server: 1c7s2g06.mcfront.xyz
    servername: sg06.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 30ebfb96-5394-4b70-b137-3d29880d60f6
  - name: 🇹🇼_TW_台湾_4@1
    network: tcp
    password: 1381fa76-e460-3a03-a01b-b9ad00e01415
    port: 443
    server: ip1158944211.mobgslb.tbcache.com
    skip-cert-verify: true
    sni: ip1158944211.mobgslb.tbcache.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰_4@2
    network: ws
    port: 443
    server: 188.114.97.7
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 1441af41-5cee-497e-a47c-c26af169f9ff
    ws-opts:
      headers:
        host: x.leonard.eu.org
      path: /
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
    network: ws
    port: 2083
    server: 104.24.189.73
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3abe40d0-dbe1-481a-9427-9f4d8c646d34
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_4@5
    network: ws
    port: 443
    server: ahsorathiyaa.fly.dev
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: de04add9-5c68-8bab-950c-08cd5320df18
    ws-opts:
      headers:
        host: ahsorathiyaa.fly.dev
      path: /vmess
  - name: 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: us2.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列_4@7
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: us1.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_1_4@9
    network: tcp
    password: 7e319f7a-4c47-4606-8008-ce6c92634dd8
    port: 53638
    server: jp7.lianpi.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_4_4@12
    network: tcp
    port: 50035
    server: 172.247.67.45
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2278efe4-ad0c-47ce-9480-068608368d76
  - cipher: aes-256-cfb
    name: 🇷🇺_RU_俄罗斯联邦_4@13
    obfs: plain
    obfs-param: ab93117422.jd.hk
    password: vyunme
    port: 443
    protocol: auth_aes128_sha1
    protocol-param: 17422:TTp0SX
    server: 45.130.146.86
    type: ssr
  - cipher: aes-256-cfb
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
    obfs: plain
    obfs-param: ab93117422.jd.hk
    password: vyunme
    port: 443
    protocol: auth_aes128_sha1
    protocol-param: 17422:TTp0SX
    server: en2.vfun.icu
    type: ssr
  - name: 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.77.131
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.75.208
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.75.110
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_5_4@18
    network: tcp
    port: 51322
    server: 198.2.234.108
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_6_4@19
    network: tcp
    port: 51592
    server: 192.74.229.198
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_2_4@20
    password: amazonskr05
    port: 443
    server: 3.112.28.34
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_1_4@21
    port: 443
    server: sg4.f163ab0f2c75.sanfen004.me
    servername: sg1.sanfen004.me
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: aa2c8122-d188-489f-88b9-b4af51b9ab9b
  - name: 🇸🇬_SG_新加坡_2_4@22
    network: tcp
    password: 4b526505-3de3-4cb4-8f99-70b65adea09f
    port: 12025
    server: hk1.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen
    skip-cert-verify: true
    sni: 13-231-155-134.NHOST.00CDN.COM
    type: trojan
    udp: true
  - cipher: chacha20-ietf
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
    obfs: plain
    obfs-param: t.me/vpnhat
    password: mblank1port
    port: 563
    protocol: auth_aes128_md5
    protocol-param: 51649:231456575
    server: cmaisallin.debugspace.work
    type: ssr
  - cipher: chacha20-ietf
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
    obfs: plain
    obfs-param: t.me/vpnhat
    password: mblank1port
    port: 562
    protocol: auth_aes128_md5
    protocol-param: 51649:231456575
    server: cmaisallin.debugspace.work
    type: ssr
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_2_4@25
    password: amazonskr05
    port: 443
    server: 43.202.49.224
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_7_4@26
    network: tcp
    port: 44313
    server: 64.32.21.241
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 57f93e92-ebb9-4f16-9bdc-8225d2010995
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_3_4@27
    obfs: tls1.2_ticket_auth
    password: eAokbaDN6
    port: 8081
    protocol: origin
    server: jp-am48-6.eqnode.net
    type: ssr
  - cipher: aes-256-cfb
    name: 🇫🇷_FR_法国_1_4@28
    obfs: tls1.2_ticket_auth
    password: RcfVcDzzB
    port: 8181
    protocol: origin
    server: fr-am1-5.eqsunshine.com
    type: ssr
  - cipher: aes-256-cfb
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
    obfs: plain
    obfs-param: ab93117422.jd.hk
    password: vyunme
    port: 443
    protocol: auth_aes128_sha1
    protocol-param: 17422:TTp0SX
    server: usa1.vfun.icu
    type: ssr
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
    password: dbefcef0-836b-4d58-aa05-146f7e63f06f
    port: 61001
    server: api-a-asia-4.mcqqn.com
    type: ss
  - name: 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.75.112
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_3_4@32
    password: amazonskr05
    port: 443
    server: 18.139.163.228
    type: ss
  - cipher: aes-256-gcm
    name: 🇫🇷_FR_法国_2_4@33
    password: XKFKl2rULjIp74
    port: 8008
    server: 149.202.82.172
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_3_4@34
    password: amazonskr05
    port: 443
    server: 43.201.19.172
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_4_4@35
    password: amazonskr05
    port: 443
    server: 3.38.211.225
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_8_4@36
    network: ws
    port: 8080
    server: 165.1.72.46
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 88c6d12b-614f-485f-83fc-fb0cc57c4801
  - name: 🇺🇸_US_美国_9_4@37
    network: tcp
    password: 274fefdb-6159-4765-b3e8-c6050b23b48f
    port: 443
    server: 141.193.68.81
    skip-cert-verify: true
    sni: mzy.windowsupdatea.com
    type: trojan
    udp: true
  - name: 🇭🇰_HK_香港_4@38
    network: tcp
    password: 274fefdb-6159-4765-b3e8-c6050b23b48f
    port: 443
    server: download1hkt.windowsupdate.lol
    skip-cert-verify: true
    sni: mzy.windowsupdate1.com
    type: trojan
    udp: true
  - name: 🇻🇳_VN_越南_4@39
    network: tcp
    password: 274fefdb-6159-4765-b3e8-c6050b23b48f
    port: 443
    server: 103.81.85.238
    skip-cert-verify: true
    sni: mzy.hruqoaw.cn
    type: trojan
    udp: true
  - name: 🇩🇪_DE_德国_4@40
    network: tcp
    password: 274fefdb-6159-4765-b3e8-c6050b23b48f
    port: 443
    server: 89.163.220.99
    skip-cert-verify: true
    sni: mzy.windowsupdatea.com
    type: trojan
    udp: true
  - cipher: chacha20-ietf
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
    obfs: plain
    obfs-param: t.me/vpnhat
    password: mblank1port
    port: 561
    protocol: auth_aes128_md5
    protocol-param: 51649:231456575
    server: shzzzhk.eucdurl.me
    type: ssr
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_10_4@42
    network: tcp
    port: 52212
    server: 142.4.126.67
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_5@0
    network: ws
    port: 2052
    server: ovhsdza.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 78fd41e5-346a-3bf4-b942-be0fad711979
    ws-opts:
      headers:
        host: ovhsdz.76898102.xyz
      path: /funsdfrh
  - name: 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: us3.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_1_5@3
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 43643
    server: sg003.170203.xyz
    skip-cert-verify: true
    sni: sg003.170203.xyz
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_2_5@4
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 45632
    server: sgss01.170203.xyz
    skip-cert-verify: true
    sni: sgss01.170203.xyz
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_3_5@5
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 45356
    server: sgmax01.170203.xyz
    skip-cert-verify: true
    sni: sgmax01.170203.xyz
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_1_5@8
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 34522
    server: jp003.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_2_5@9
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 443
    server: jp03.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_3_5@10
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 56464
    server: jpmax05.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_4_5@11
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 63608
    server: jp002.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_5_5@12
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 443
    server: jpmax03.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_6_5@13
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 56546
    server: jp06.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_4_5@14
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 443
    server: sgmax06.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_5_5@15
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 54643
    server: sg001.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_6_5@16
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 45636
    server: sg02.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇺🇸_US_美国_2_5@17
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 443
    server: usmax01.170203.xyz
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_7_5@19
    password: amazonskr05
    port: 443
    server: 54.151.179.33
    type: ss
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_8_5@20
    obfs: tls1.2_ticket_auth
    password: 3g0dHlKME
    port: 32001
    protocol: origin
    server: sg-am3.eqsunshine.com
    type: ssr
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_9_5@21
    password: amazonskr05
    port: 443
    server: 13.215.46.225
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_5@22
    network: tcp
    port: 56662
    server: 23.225.33.170
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-256-cfb
    name: 🇱🇻_LV_拉脱维亚_5@24
    password: JdmRK9gMEqFgs8nP
    port: 9003
    server: 185.135.86.173
    type: ss
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_10_5@25
    password: amazonskr05
    port: 443
    server: 52.221.180.2
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_1_5@26
    password: amazonskr05
    port: 443
    server: 43.202.52.108
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_2_5@27
    password: amazonskr05
    port: 443
    server: 52.78.217.18
    type: ss
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_8_5@28
    password: amazonskr05
    port: 443
    server: 43.207.74.136
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇹🇼_TW_台湾_2_5@30
    port: 56568
    server: hinettw1.applebench.tech
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1f3d67b4-6929-4598-90ca-84a841bf02e4
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_4_5@31
    port: 50502
    server: 198.2.203.34
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_5_5@32
    port: 53362
    server: 38.40.219.182
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - name: 🇯🇵_JP_日本_9_5@34
    network: tcp
    password: f5075d6e-c65b-4133-b4fa-301ce5ba1fa9
    port: 443
    server: jp2.gsjc.cfd
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇷🇺_RU_俄罗斯联邦_2_5@35
    obfs: plain
    obfs-param: ab93117422.jd.hk
    password: vyunme
    port: 443
    protocol: auth_aes128_sha1
    protocol-param: 17422:TTp0SX
    server: 185.22.154.70
    type: ssr
  - name: 🇸🇬_SG_新加坡_11_5@36
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 43536
    server: sg11.170203.xyz
    skip-cert-verify: true
    sni: sg11.170203.xyz
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_12_5@37
    network: tcp
    password: 535b9369-31d4-4685-9bb5-7c223d383524
    port: 45623
    server: sgmax02.170203.xyz
    skip-cert-verify: true
    sni: sgmax02.170203.xyz
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.71.124
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.71.155
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.89.110
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.71.164
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.75.79
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: uk1.chuqiangtou.net
    skip-cert-verify: true
    sni: magnetadservices.com
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.77.129
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_2_6@11
    password: amazonskr05
    port: 443
    server: 3.0.183.226
    type: ss
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_3_6@13
    password: doub.io
    port: 2333
    server: 54.255.237.136
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
    network: tcp
    port: 56268
    server: cn-guangzhou.applebench.tech
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 7e319f7a-4c47-4606-8008-ce6c92634dd8
  - cipher: chacha20-ietf-poly1305
    name: 🇯🇵_JP_日本_1_6@15
    password: 7e319f7a-4c47-4606-8008-ce6c92634dd8
    port: 34234
    server: jp3.lianpi.xyz
    type: ss
  - name: 🇭🇰_HK_香港_6@16
    network: tcp
    password: 7e319f7a-4c47-4606-8008-ce6c92634dd8
    port: 28069
    server: hk2.lianpi.xyz
    skip-cert-verify: true
    sni: hk2.lianpi.xyz
    type: trojan
    udp: true
  - name: 🇯🇵_JP_日本_2_6@17
    network: tcp
    password: 7e319f7a-4c47-4606-8008-ce6c92634dd8
    port: 54234
    server: jp4.lianpi.xyz
    skip-cert-verify: true
    sni: jp4.lianpi.xyz
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.77.99
    skip-cert-verify: true
    sni: telewebion.com
    type: trojan
    udp: true
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_6@19
    network: tcp
    port: 43246
    server: 192.74.243.58
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - name: 🇺🇸_US_美国_2_6@21
    network: tcp
    password: xxoo
    port: 443
    server: 138.197.5.103
    skip-cert-verify: true
    sni: dserver.adad.ir
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
    network: tcp
    port: 41502
    server: cn-guangzhou.applebench.tech
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 7e319f7a-4c47-4606-8008-ce6c92634dd8
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_4_6@23
    password: amazonskr05
    port: 443
    server: 13.213.66.163
    type: ss
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_5_6@24
    password: amazonskr05
    port: 443
    server: 13.215.175.189
    type: ss
  - name: 🇯🇵_JP_日本_4_6@25
    network: tcp
    password: 5057f49b-3038-4683-a5d9-8d9657caef3c
    port: 443
    server: fscjp.fscloud123456789.com
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
    network: ws
    port: 443
    server: ger.digires.shop
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: f988dd2c-0d1a-49d0-cabc-a1288d72d183
    ws-opts:
      headers:
        host: ger.digires.shop
      path: /14161
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_6@28
    network: ws
    port: 443
    server: sbn.ircf.space
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3bcbd5cd-e791-4770-8bc7-7b1d941c9513
    ws-opts:
      headers:
        host: wfi.sahnama.com
      path: /S4PSg9xqUClN2kJ4SOPKqC6
  - name: 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
    network: tcp
    password: PlF471nxneY0YevI
    port: 4003
    server: 149.50.76.85
    skip-cert-verify: true
    sni: de2.nigirocloud.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
    network: ws
    port: 80
    server: 104.31.16.28
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 58fe1542-5290-40ad-815a-77707a81afe5
    ws-opts:
      headers:
        host: ca4.tehme2.fun
      path: /IOebhLMhl1CTbFHbL95myfRX2
  - name: 🇺🇸_US_美国_5_6@31
    network: tcp
    password: xxoo
    port: 443
    server: us.blazeppn.info
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇬🇧_GB_英国_6@32
    password: G4h2X1AThBilGI1eUrXny6
    port: 52484
    server: 51.132.13.41
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_6_6@34
    network: ws
    port: 443
    server: 104.18.83.10
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: dddd0b29-1576-4003-9990-d7cea34264db
    ws-opts:
      headers:
        host: dedi2.1808.cf
      path: /835757
  - alterId: 0
    cipher: auto
    name: 🇻🇳_VN_越南_6@35
    network: ws
    port: 80
    server: 103.190.36.130
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: e79dcd87-ea5c-4058-a186-c7e3bc844ab8
    ws-opts:
      path: /gachcraft
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_7@6
    network: ws
    port: 80
    server: cf-dx-dns.sharecentre.online
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2d5d8b9c-8ec4-4a37-b610-78e71e13eaef
    ws-opts:
      headers:
        host: dp4.scproxy.top
      path: /shirker
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_7@7
    network: ws
    port: 8880
    server: 104.27.17.155
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 53ae65be-81ee-4766-8a09-da43c44c4d30
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_7@14
    network: ws
    port: 2083
    server: 104.25.137.57
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: e883ff76-3bb4-4008-c068-6b5b1d960ea7
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_7@23
    network: ws
    port: 2052
    server: 104.25.129.208
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 243240f9-9f5b-4f98-dd5c-e19784d19631
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - name: 🇯🇵_JP_日本_7@33
    network: tcp
    password: 7a73f1dc97a70905870c0c0484b12145
    port: 443
    server: trs21.bolab.net
    skip-cert-verify: true
    sni: trs21.bolab.net
    type: trojan
    udp: true
  - name: 🇺🇸_US_美国_7_7@35
    network: tcp
    password: 997a9caa-5950-476f-8614-462fb2e0ed18
    port: 443
    server: 163.123.192.154
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇳_IN_印度_8@0
    network: tcp
    password: d906afe5-7c3c-4ddc-aaa4-61c154a82e5e
    port: 443
    server: 152.70.74.66
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
    network: ws
    port: 2053
    server: 141.101.113.15
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 0404bc28-9cfc-4fbb-9e4c-c3f3ba87f384
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue01
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_8@6
    network: tcp
    port: 49214
    server: 45.86.8.78
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - name: 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
    network: tcp
    password: PlF471nxneY0YevI
    port: 4003
    server: de1.nigirocloud.com
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_8@11
    network: ws
    port: 443
    server: zfc.windowsupdate1.com
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 41bec492-cd79-4b57-9a15-7d2bb00fcfca
    ws-opts:
      headers:
        host: usfh2.pqjc.buzz
      path: /pq/usfh2?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
    network: ws
    port: 443
    server: 212.110.134.7
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: zHGKLbqn6UM.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 0
    cipher: auto
    name: 🇧🇷_BR_巴西_8@15
    network: ws
    port: 2052
    server: menmaza.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 12d06bb6-d797-3cf3-b368-a903b8702f2c
    ws-opts:
      headers:
        host: menmaz.76898102.xyz
      path: /eduifbiefg
  - name: 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.66.127
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: 149.50.92.75
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇨🇦_CA_加拿大_8@20
    network: tcp
    password: opentunnel.net-newdday
    port: 443
    server: cat-1.opensvr.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇺🇸_US_美国_5_8@21
    network: tcp
    password: b25cbc3a-d7e8-4fe4-b7a0-d3d18985bcf4
    port: 443
    server: 141.193.68.93
    skip-cert-verify: true
    sni: 18-140-66-207.nhost.00cdn.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
    network: ws
    port: 8080
    server: 10.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 31d49dee-0931-4223-a0bb-60141bc51141
    ws-opts:
      headers:
        host: jpppp.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_6_8@25
    network: ws
    port: 8880
    server: 104.27.38.10
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 53ae65be-81ee-4766-8a09-da43c44c4d30
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_7_8@27
    network: tcp
    port: 43379
    server: 142.4.99.77
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: b65da4af-a12a-4a59-9316-4549e12ba62c
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_8_8@29
    network: ws
    port: 8080
    server: 104.27.60.217
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: c5c9844d-050e-44f1-cb6d-ec5166772631
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
    network: ws
    port: 2096
    server: 198.41.221.113
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: f387a0af-4b70-4a40-e2c3-2f22472df0cb
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue01
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_9_8@31
    network: tcp
    port: 51009
    server: 129.146.133.157
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 81714cef-9bde-4a08-aa50-d6bc0172d78b
  - alterId: 0
    cipher: auto
    name: 🇯🇵_JP_日本_3_8@32
    network: ws
    port: 443
    server: oci.donpau.com
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3C02DC15-56AE-7889-8936-9A2EA8FF8666
    ws-opts:
      headers:
        host: oci.donpau.com
      path: /
  - name: 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
    network: tcp
    password: PlF471nxneY0YevI
    port: 4003
    server: de3.nigirocloud.com
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇸🇬_SG_新加坡_2_8@34
    network: tcp
    password: 4b526505-3de3-4cb4-8f99-70b65adea09f
    port: 12025
    server: hk2.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen
    skip-cert-verify: true
    sni: 13-231-155-134.NHOST.00CDN.COM
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
    network: tcp
    port: 31306
    server: 2d1t5w05.mcfront.xyz
    servername: tw05.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: eca9ad34-1222-470d-8104-45ddac4debfd
  - alterId: 0
    cipher: auto
    name: 🇰🇷_KR_韩国_9@1
    network: ws
    port: 8080
    server: 146.56.174.31
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: c2eb5ff8-508d-4100-e0ca-9739f4d1c52c
    ws-opts:
      path: /tg@herhero6
  - alterId: 64
    cipher: auto
    name: 🇩🇪_DE_德国_9@12
    network: tcp
    port: 54902
    server: 54.38.154.182
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
    network: ws
    port: 2083
    server: 104.19.251.120
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3abe40d0-dbe1-481a-9427-9f4d8c646d34
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /blue
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_9@21
    network: ws
    port: 8080
    server: cf-lt.sharecentre.online
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d16c31a2-93a3-4f1a-954c-e383b14a4d26
    ws-opts:
      headers:
        host: ssrsub.v03.ssrsub.com
      path: /api/v3/download.getFile
  - alterId: 0
    cipher: auto
    name: 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
    network: ws
    port: 443
    server: 45.67.215.70
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3de4ec27-74b4-43e3-bf23-18e726ac80bc
    ws-opts:
      headers:
        host: lMcFuKcm63c5wv.janbaroon.com
      path: /P6kpn5UKG40MNLK2
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_9@33
    network: ws
    port: 80
    server: 158.101.7.8
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 95b45c49-f5c0-4959-bb64-2b8fbc4a869c
    ws-opts:
      headers:
        host: YTB-awkj
      path: /
  - alterId: 2
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
    network: ws
    port: 23626
    server: 26.v2-ray.cyou
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 0dd19d20-ec86-3680-b256-87237bafa89e
    ws-opts:
      headers:
        host: 26.v2-ray.cyou
      path: /
  - name: 🇯🇵_JP_日本_9@35
    network: tcp
    password: 4b526505-3de3-4cb4-8f99-70b65adea09f
    port: 443
    server: us1.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen
    skip-cert-verify: true
    sni: 13-231-155-134.NHOST.00CDN.COM
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
    network: ws
    port: 443
    server: 23.227.38.99
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 86d37526-5758-4cec-862f-df404b313086
    ws-opts:
      headers:
        host: 1.freek1.xyz
      path: /3G6WPDL7
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
    network: tcp
    port: 31311
    server: 2d1t5w06.mcfront.xyz
    servername: tw06.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 5d336469-53b0-4036-8f2f-33d9bc317743
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
    network: tcp
    port: 31106
    server: 6w7j3p05.mcfront.xyz
    servername: jp05.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 5d336469-53b0-4036-8f2f-33d9bc317743
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
    network: tcp
    port: 31801
    server: 1a4p0h04.mcfront.xyz
    servername: ph04.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 5d336469-53b0-4036-8f2f-33d9bc317743
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
    network: tcp
    port: 31206
    server: 1c7s2g05.mcfront.xyz
    servername: sg05.lovemc.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 5d336469-53b0-4036-8f2f-33d9bc317743
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_10@25
    network: ws
    port: 383
    server: a2.zwtg888.com
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 731938de-22c8-3d7e-849b-c4610bce7994
    ws-opts:
      headers:
        host: www.minecraft.com
      path: /v2ray
  - alterId: 0
    cipher: auto
    name: 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
    network: ws
    port: 443
    server: speed.76898102.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: dddd0b29-1576-4003-9990-d7cea34264db
    ws-opts:
      headers:
        host: dedi2.1808.cf
      path: /835757
  - alterId: 0
    cipher: auto
    name: 🇫🇷_FR_法国_10@32
    network: ws
    port: 443
    server: pl2-vmess.greenssh.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 2e68015f-a8b2-4893-a7a3-4edb19b178d9
    ws-opts:
      headers:
        host: pl2-vmess.greenssh.xyz
      path: /
  - name: 🇯🇵_JP_日本_11@0
    network: tcp
    password: fddd2348-b67b-49aa-aaca-085d32f3f6fb
    port: 443
    server: azjp1.downloadvip.cfd
    skip-cert-verify: true
    sni: jp1.xn--mes358acgm99l.com
    type: trojan
    udp: true
  - name: 🇩🇪_DE_德国_11@1
    network: tcp
    password: fddd2348-b67b-49aa-aaca-085d32f3f6fb
    port: 443
    server: 217.79.181.82
    skip-cert-verify: true
    sni: download.xn--mes358acgm99l.com
    type: trojan
    udp: true
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_11@2
    network: tcp
    port: 41212
    server: 140.99.57.19
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - name: 🇸🇬_SG_新加坡_11@3
    network: tcp
    password: fddd2348-b67b-49aa-aaca-085d32f3f6fb
    port: 443
    server: sg2.downloadvip.cfd
    skip-cert-verify: true
    sni: jssg1.xn--mes358acgm99l.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_11@9
    network: ws
    port: 2083
    server: 104.24.169.82
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: e883ff76-3bb4-4008-c068-6b5b1d960ea7
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - name: 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 27000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: de01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 20003
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 25001
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: id01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 20002
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: hk01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 26000
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: uk01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 21001
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: jp02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 20001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk04.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
    network: ws
    port: 2082
    server: hkgkgb.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: aed95e45-53e1-45a4-a22c-f606522c4777
    ws-opts:
      headers:
        host: ccaws.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
    network: ws
    port: 28000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: eee19429-f15e-40b8-9d2e-b15c09c9722c
  - name: 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 22000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: sk01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
    network: tcp
    password: eee19429-f15e-40b8-9d2e-b15c09c9722c
    port: 21000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: jp01.ckcloud.info
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
    password: 4b34aa48-8602-46c3-8aea-36d6bd7ba3d7
    port: 39850
    server: proxy.node7.kk-proxy.pro
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
    password: 3aa9eed4-2439-40dc-9895-c2e6b0999f99
    port: 39851
    server: proxy.node5.kk-proxy.pro
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_12@1
    network: tcp
    port: 47839
    server: 140.99.148.53
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_12@13
    network: tcp
    port: 49924
    server: 107.148.192.152
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_12@25
    network: ws
    port: 443
    server: 162.159.152.95
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: dddd0b29-1576-4003-9990-d7cea34264db
    ws-opts:
      headers:
        host: dedi2.1808.cf
      path: /835757
  - alterId: 0
    cipher: auto
    name: 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
    network: ws
    port: 2052
    server: kradvcgfb.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 78fd41e5-346a-3bf4-b942-be0fad711979
    ws-opts:
      headers:
        host: kradvcgfb.76898102.xyz
      path: /bcdsuiyv
  - name: 🇺🇸_US_美国_5_12@27
    network: tcp
    password: 41bec492-cd79-4b57-9a15-7d2bb00fcfca
    port: 443
    server: 148.59.74.52
    skip-cert-verify: true
    sni: 18-140-66-207.nhost.00cdn.com
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
    network: tcp
    password: eb04ced6-ef93-4941-8c7c-d18003ebeea1
    port: 40001
    server: whyd.jcnode.top
    skip-cert-verify: true
    sni: hk02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
    network: tcp
    password: eb04ced6-ef93-4941-8c7c-d18003ebeea1
    port: 48004
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: us05.ckcloud.info
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
    password: dedaf22b-2901-4490-a316-07ee18113b59
    port: 15352
    server: gzcm.xn--8sq835h.net
    type: ss
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
    network: tcp
    password: eb04ced6-ef93-4941-8c7c-d18003ebeea1
    port: 40000
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: hk05.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
    network: tcp
    password: eb04ced6-ef93-4941-8c7c-d18003ebeea1
    port: 40004
    server: gzyd02.jcnode.top
    skip-cert-verify: true
    sni: hk05.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
    network: tcp
    password: eb04ced6-ef93-4941-8c7c-d18003ebeea1
    port: 40001
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: hk02.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_13@21
    network: http
    port: 37421
    server: chanel.vpnshop.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: f8257079-b5fc-4d84-9889-708a7e52e26f
  - alterId: 0
    cipher: auto
    name: 🇹🇼_TW_台湾_1_13@24
    network: ws
    port: 80
    server: v07.jiedian.stream
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 04daec61-d0bc-4a62-90ef-f7c62f271ed0
    ws-opts:
      headers:
        host: v07.jiedian.stream
      path: /
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_13@25
    network: ws
    port: 80
    server: 13.215.190.191
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: ca7febc2-bb45-4e6d-810e-ab0af6009c4e
    ws-opts:
      path: /aws-china-media/Y699Gjx2rNw.mp4
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_13@26
    network: ws
    port: 443
    server: 198.2.208.181
    servername: www.62317155.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
    ws-opts:
      path: /path/1684145765058
  - alterId: 0
    cipher: auto
    name: 🇹🇼_TW_台湾_2_13@27
    network: ws
    port: 80
    server: v08.jiedian.stream
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 04daec61-d0bc-4a62-90ef-f7c62f271ed0
    ws-opts:
      headers:
        host: v08.jiedian.stream
      path: /
  - name: 🇮🇱_IL_以色列_13@29
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: jp2.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
    network: ws
    port: 80
    server: cf-yd-dns.sharecentre.online
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 2d5d8b9c-8ec4-4a37-b610-78e71e13eaef
    ws-opts:
      headers:
        host: do.sharecentrepro.com
      path: /shirker
  - cipher: aes-256-cfb
    name: 🇱🇻_LV_拉脱维亚_13@32
    password: KnJGad3FqTvjqbaX
    port: 9014
    server: 185.135.86.173
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
    network: ws
    port: 80
    server: 1.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: aed95e45-53e1-45a4-a22c-f606522c4777
    ws-opts:
      headers:
        host: ccaws.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
    network: ws
    port: 443
    server: 162.159.195.185
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 553f509e-56c1-4eaf-be67-b9b20c780bff
    ws-opts:
      headers:
        host: xbly100.wsvpn.xyz
      path: /ws1341380505
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
    network: ws
    port: 80
    server: 104.25.243.70
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 6884d728-7fb0-4172-c319-e8caeadcd01f
    ws-opts:
      headers:
        host: us.herofree66.tk
      path: /tg@herhero6
  - alterId: 0
    cipher: auto
    name: 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
    network: ws
    port: 8080
    server: 190.93.244.241
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 516a22c5-54c1-4203-ec0a-bb3b2517a82d
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
    network: tcp
    password: 78af6d6d-6de7-3a1f-a969-c39077fb47bf
    port: 20769
    server: AZHJ.xifasd.top
    skip-cert-verify: true
    sni: ssl.ssl12.xyz
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
    network: tcp
    port: 2087
    server: turkey.abraak.site
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 21025839-c140-4c67-8f4c-9a413ca8de3f
  - alterId: 0
    cipher: auto
    name: 🇰🇿_KZ_哈萨克斯坦_14@24
    network: ws
    port: 80
    server: p1.09vpn.com
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 833c989e-f113-4287-9148-f5595854f3e3
    ws-opts:
      headers:
        host: p1.09vpn.com
      path: /vmess/
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
    network: ws
    port: 80
    server: 104.17.28.197
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1a6e91f6-4aec-4fba-d652-f65e9dfa4a63
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_14@27
    network: ws
    port: 443
    server: 104.17.53.191
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: dddd0b29-1576-4003-9990-d7cea34264db
    ws-opts:
      headers:
        host: dedi2.1808.cf
      path: /835757
  - name: 🇹🇼_TW_台湾_1_14@28
    network: tcp
    password: 0d4926a0-9881-3609-b6ee-4716da84e59emielink
    port: 443
    server: kaizen-tw-4.mielink-dns2.com
    skip-cert-verify: true
    sni: paydiu.com
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
    network: tcp
    password: 78af6d6d-6de7-3a1f-a969-c39077fb47bf
    port: 20715
    server: AZHJ.xifasd.top
    skip-cert-verify: true
    sni: ssl.ssl12.xyz
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇱🇻_LV_拉脱维亚_14@31
    password: UkXRsXvR6buDMG2Y
    port: 9001
    server: 185.135.86.173
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_15@0
    network: ws
    port: 2052
    server: 104.20.55.60
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3f100fa9-a160-4a1c-c40d-e22070ac9785
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
    network: ws
    port: 2095
    server: 104.24.49.199
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1d1362f7-073c-4e5c-b470-02b8222c226c
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_1_15@3
    network: ws
    port: 443
    server: 13.215.205.45
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 9bc3178b-959d-45ea-a487-b66c6098a4a5
    ws-opts:
      path: /
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
    network: ws
    port: 2095
    server: 188.114.99.97
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1d1362f7-073c-4e5c-b470-02b8222c226c
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
    network: ws
    port: 8080
    server: 104.18.23.26
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: dcafb669-fefc-4994-e3a9-5f40ed6aa7cf
    ws-opts:
      headers:
        host: v2free.sshtproect.shop
      path: /sshtproject
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_15@23
    network: ws
    port: 80
    server: 108.162.194.118
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: a1d16be7-8aa7-4fd3-ea1b-79117cd9cce6
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 0
    cipher: auto
    name: 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
    network: ws
    port: 2095
    server: krawycaa.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 7ed7e770-140d-37d0-8bbd-11cafb8186e2
    ws-opts:
      headers:
        host: krawyca.76898102.xyz
      path: /funsdfrh
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
    network: ws
    port: 8080
    server: 104.26.13.165
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 516a22c5-54c1-4203-ec0a-bb3b2517a82d
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
    network: ws
    port: 2052
    server: aduibdfg.114514782.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: e412e583-ce9b-3cf5-8812-32b9fa47562b
    ws-opts:
      headers:
        host: aduibdfg.114514782.xyz
      path: /flkfhzz
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
    network: tcp
    password: 78af6d6d-6de7-3a1f-a969-c39077fb47bf
    port: 20804
    server: AZHJ.xifasd.top
    skip-cert-verify: true
    sni: ssl.ssl12.xyz
    type: trojan
    udp: true
  - cipher: aes-128-cfb
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
    password: QazEdcTgb159@$*
    port: 24002
    server: 14.29.124.168
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
    network: ws
    port: 2052
    server: 104.16.53.217
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: c36d4223-1804-494a-a453-d4f77f10c830
    ws-opts:
      headers:
        host: detacenter.01.biqibao.site
      path: /public
  - name: 🇨🇳_CN_中国_15@35
    network: tcp
    password: 78af6d6d-6de7-3a1f-a969-c39077fb47bf
    port: 20714
    server: AZHJ.xifasd.top
    skip-cert-verify: true
    sni: ssl.ssl12.xyz
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_16@4
    network: ws
    port: 8880
    server: 104.19.145.223
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 53ae65be-81ee-4766-8a09-da43c44c4d30
    ws-opts:
      headers:
        host: uyaa.vtcss.top
      path: /youlingkaishi
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
    network: ws
    port: 2052
    server: 104.25.97.255
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_16@16
    network: ws
    port: 2095
    server: 173.245.58.89
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 43f71098-601d-459b-91f2-7e85a9ac6042
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /blue
  - alterId: 0
    cipher: auto
    name: 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
    network: ws
    port: 2052
    server: jpwadnca.114514782.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3f6ad16c-f1ea-38fd-bf1d-a64e77ffaa32
    ws-opts:
      headers:
        host: jpwadnca.114514782.xyz
      path: /miaoshen
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
    network: ws
    port: 2052
    server: 104.17.106.135
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_16@22
    network: ws
    port: 2052
    server: 162.159.12.77
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_16@23
    network: ws
    port: 2052
    server: 104.24.198.75
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3f100fa9-a160-4a1c-c40d-e22070ac9785
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 0
    cipher: auto
    name: 🇫🇷_FR_法国_16@24
    network: ws
    port: 2052
    server: 173.245.49.24
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇨🇷_CR_哥斯达黎加_16@25
    network: ws
    port: 2052
    server: 190.93.245.248
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
    network: ws
    port: 443
    server: yd1.01dj.sbs
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 08d3c0b5-6515-4187-860f-2e41dac6a94b
    ws-opts:
      headers:
        host: yd1.01dj.sbs
      path: /sometimesnaive
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_16@27
    network: http
    port: 29530
    server: chanel.vpnshop.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: b0298d06-3790-4807-a7b1-ebba8d167cd2
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_6_16@28
    network: ws
    port: 443
    server: 104.18.1.110
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 1d8488a7-c784-4e66-ae92-1b22da9c9e68
    ws-opts:
      headers:
        host: d2.pgypgykmoljklj.xyz
      path: /c3lZ7dp02p?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
    network: ws
    port: 8080
    server: 2.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 52672366-6993-4d21-8f1a-d102b2b87744
    ws-opts:
      headers:
        host: ccaws.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - alterId: 0
    cipher: auto
    name: 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
    network: ws
    port: 8880
    server: 9.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 52672366-6993-4d21-8f1a-d102b2b87744
    ws-opts:
      headers:
        host: jpppp.cashdawiodxkawjaiocjdawdawdadwrawgfsegsededwadawfgrdrcvsssl.top
      path: /
  - name: 🇹🇼_TW_台湾_16@32
    network: tcp
    password: d59235c4-44ea-4e2e-bd90-5eed10db3b15
    port: 443
    server: hinet2.downloadvip.cfd
    skip-cert-verify: true
    sni: download.xn--mes358a9urctx.com
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
    password: 9bc3178b-959d-45ea-a487-b66c6098a4a5
    port: 34085
    server: 106.75.136.42
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_17@10
    network: tcp
    port: 50702
    server: 38.63.17.176
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
    network: ws
    port: 2052
    server: 141.101.123.176
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 71b93046-9b6b-48d5-c5fb-9997daf0c7f4
    ws-opts:
      headers:
        host: x1.ylks01.eu.org
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇩🇪_DE_德国_17@25
    network: ws
    port: 42653
    server: 185.249.227.220
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: a2d2f285-3650-47fa-9d83-9a259d52abd9
    ws-opts:
      path: /?ed=2048
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_17@27
    network: tcp
    port: 49871
    server: 137.175.4.116
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_17@29
    network: ws
    port: 2095
    server: 104.25.197.67
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 43f71098-601d-459b-91f2-7e85a9ac6042
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /blue
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_5_17@32
    network: tcp
    port: 46679
    server: 137.175.61.130
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇫🇷_FR_法国_17@37
    network: ws
    port: 80
    server: pl2-vmess.greenssh.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: a60d4d2f-6a61-4c16-9d63-94a97e65d1f3
    ws-opts:
      headers:
        host: pl2-vmess.greenssh.xyz
      path: /vmess
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国_17@38
    network: tcp
    port: 11023
    server: 36.133.171.209
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 8c042a38-71c1-1dcb-00df-54880236e0dc
  - cipher: chacha20-ietf-poly1305
    name: 🇮🇪_IE_爱尔兰_17@40
    password: 1uB3vmXVoz1hnB3wiZ83mD
    port: 6091
    server: 13.69.252.86
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_18@0
    network: ws
    port: 2095
    server: 104.27.38.190
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: cc17ed88-5317-447a-f83b-222e2e4205ba
    ws-opts:
      headers:
        host: bac.vtcss.top
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
    network: ws
    port: 80
    server: cdncf.scyu.app
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: c07a7268-6b25-4952-be6d-e9fb3beacedc
    ws-opts:
      headers:
        host: ssrsub.v02.ssrsub.com
      path: /api/v3/download.getFile
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_18@7
    network: ws
    port: 2095
    server: 198.41.219.154
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: cc17ed88-5317-447a-f83b-222e2e4205ba
    ws-opts:
      headers:
        host: bac.vtcss.top
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_18@8
    network: ws
    port: 8880
    server: 104.22.9.160
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5158c044-d6d4-4b07-ba79-b20f13445d0d
    ws-opts:
      headers:
        host: bac.vtcss.top
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_18@13
    network: ws
    port: 8880
    server: 172.67.92.196
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5158c044-d6d4-4b07-ba79-b20f13445d0d
    ws-opts:
      headers:
        host: bac.vtcss.top
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_5_18@18
    network: ws
    port: 8880
    server: 104.27.12.251
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 5158c044-d6d4-4b07-ba79-b20f13445d0d
    ws-opts:
      headers:
        host: bac.vtcss.top
      path: /ylks
  - alterId: 0
    cipher: auto
    name: 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
    network: ws
    port: 2052
    server: apkwvctghw.114514782.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d1969fc7-b361-3c1d-b92d-4ae5c3909e62
    ws-opts:
      headers:
        host: apkwvctghw.114514782.xyz
      path: /miaosafh
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_7_18@21
    network: ws
    port: 2052
    server: 172.67.119.32
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3f100fa9-a160-4a1c-c40d-e22070ac9785
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 64
    cipher: auto
    name: 🇸🇬_SG_新加坡_18@22
    network: ws
    port: 59886
    server: 43.156.131.164
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: be3fdec2-86e1-4d51-969b-704b1efc3158
    ws-opts:
      path: /sg2/getData
  - name: 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
    network: tcp
    password: 83d32def-43d2-4603-bc25-47fafce7d82d
    port: 29500
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: tur01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
    network: tcp
    password: c6ed83f0-5319-4982-92f5-513afe76f697
    port: 49001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: aus01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
    network: tcp
    password: c6ed83f0-5319-4982-92f5-513afe76f697
    port: 40001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
    network: tcp
    password: 83d32def-43d2-4603-bc25-47fafce7d82d
    port: 21001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: jp02.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
    network: tcp
    password: c6ed83f0-5319-4982-92f5-513afe76f697
    port: 42000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: rctw02.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
    network: ws
    port: 28001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 83d32def-43d2-4603-bc25-47fafce7d82d
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
    network: ws
    port: 20000
    server: gzyd.jcnode.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 83d32def-43d2-4603-bc25-47fafce7d82d
  - name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
    network: tcp
    password: c6ed83f0-5319-4982-92f5-513afe76f697
    port: 42001
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: rctw01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
    network: tcp
    password: 83d32def-43d2-4603-bc25-47fafce7d82d
    port: 23003
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: sg01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
    network: tcp
    password: 83d32def-43d2-4603-bc25-47fafce7d82d
    port: 20005
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: hk05.ckcloud.info
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
    password: b89b39c2-dc8d-4595-a4c5-54b4fbab3fc2
    port: 32102
    server: free.themars.top
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_19@1
    network: ws
    port: 8080
    server: 104.17.32.102
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: c5c9844d-050e-44f1-cb6d-ec5166772631
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - alterId: 64
    cipher: auto
    name: 🇸🇬_SG_新加坡_19@19
    network: ws
    port: 43860
    server: 43.156.131.164
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: be3fdec2-86e1-4d51-969b-704b1efc3158
    ws-opts:
      path: /sg2/getData
  - name: 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
    network: tcp
    password: 7362ca76-171d-4ebe-8b9e-e83df22417a8
    port: 27000
    server: gzyd.jcnode.top
    skip-cert-verify: true
    sni: de01.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
    network: tcp
    password: f119f2f3-a33f-4200-96fc-74ca49721bc4
    port: 40002
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk03.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
    network: tcp
    password: f119f2f3-a33f-4200-96fc-74ca49721bc4
    port: 49000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: id01.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
    network: ws
    port: 20000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 7362ca76-171d-4ebe-8b9e-e83df22417a8
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_19@28
    network: ws
    port: 1000
    server: bb.hk1997.pro
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 0fa2f4ff-d1c3-47b2-8b05-8b7e4916c290
    ws-opts:
      headers:
        host: bb.hk1997.pro
      path: /jash-weh-peft-pseb-lous-jass
  - name: 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
    network: tcp
    password: f119f2f3-a33f-4200-96fc-74ca49721bc4
    port: 40004
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk05.ckcloud.info
    type: trojan
    udp: true
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
    network: tcp
    password: f119f2f3-a33f-4200-96fc-74ca49721bc4
    port: 40000
    server: gzdx.jcnode.top
    skip-cert-verify: true
    sni: hk05.ckcloud.info
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_19@32
    network: ws
    port: 2052
    server: 104.17.94.14
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3f100fa9-a160-4a1c-c40d-e22070ac9785
    ws-opts:
      headers:
        host: x2.ylks01.eu.org
      path: /qwer00
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国_19@33
    password: ll668668@
    port: 11023
    server: 36.138.193.128
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_20@0
    port: 42857
    server: 192.74.228.179
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 051b844f-efe3-4847-92aa-66b5de0b6d4e
  - cipher: aes-256-ctr
    name: 🇫🇷_FR_法国_20@2
    obfs: tls1.2_ticket_auth
    password: HowdyBypasser2022
    port: 443
    protocol: origin
    server: 94.23.116.190
    type: ssr
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_20@3
    network: tcp
    port: 47074
    server: 107.167.16.101
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: b74f4afa-1a57-4aff-b7e5-8ad5ea33566f
  - name: 🇰🇷_KR_韩国_20@4
    network: tcp
    password: 431218b0-8b07-4d71-89a4-c20aa92fce30
    port: 58853
    server: kr.cc2.zhoushuren.top
    skip-cert-verify: true
    sni: kr.cc2.zhoushuren.top
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇹🇼_TW_台湾_1_20@5
    password: 9e44e9ffe5c2
    plugin: v2ray-plugin
    plugin-opts:
      host: wtw1000mline004.chilines.club
      mode: websocket
      mux: true
      path: /isaifqaagpi
    port: 443
    server: 103.177.33.180
    type: ss
  - cipher: aes-256-gcm
    name: 🇷🇺_RU_俄罗斯联邦_20@7
    password: dongtaiwang.com
    port: 12345
    server: 46.17.43.192
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_20@8
    network: ws
    port: 443
    server: 69.25.115.162
    servername: www.69908657.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
    ws-opts:
      path: /path/1685877796747
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_4_20@9
    network: ws
    port: 443
    server: 137.175.52.26
    servername: www.77646750.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
    ws-opts:
      path: /path/1685935087393
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_5_20@10
    network: ws
    port: 443
    server: 23.225.33.173
    servername: www.53638055.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
    ws-opts:
      path: /path/1685950726372
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_6_20@11
    network: tcp
    port: 56662
    server: 23.225.33.171
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_7_20@16
    network: ws
    port: 80
    server: 104.21.53.35
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 09c1d32d-4458-4ebf-b36d-4dd732bae3aa
    ws-opts:
      headers:
        host: dp3.yxjnode.com
      path: /yxzbp
  - alterId: 0
    cipher: auto
    name: 🇮🇩_ID_印度尼西亚_20@17
    network: ws
    port: 80
    server: id-rysa-put-ra18n19xz.live
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 11255dd6-c36e-4bf9-ad5e-dfb228b09298
    ws-opts:
      headers:
        host: id-rysa-put-ra18n19xz.live
      path: /vmess
  - name: 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
    network: tcp
    password: d0d24d5b-54ae-40a0-ab68-889dbd4b8a66
    port: 13543
    server: assets.flareai.site
    skip-cert-verify: true
    type: trojan
    udp: true
  - name: 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: jp3.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - cipher: aes-256-cfb
    name: 🇸🇬_SG_新加坡_2_20@21
    password: KBGjZYcy4SyRShmA
    port: 9044
    server: 103.172.116.79
    type: ss
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国_20@22
    password: ll668668@
    port: 11023
    server: 36.139.166.252
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
    network: tcp
    port: 34214
    server: 120.226.50.68
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-128-cfb
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
    password: QazEdcTgb159@$*
    port: 24001
    server: 14.29.124.168
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_1_21@2
    password: amazonskr05
    port: 443
    server: 43.200.7.118
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_1_21@3
    network: tcp
    port: 53986
    server: 137.175.29.38
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
    network: ws
    port: 2052
    server: cdn.ikuan.dev
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3185c2f3-4246-49c4-ba8a-5ea8fb2ef6b8
    ws-opts:
      headers:
        host: freeforgfw.ikuan.dev
      path: /FreeForGFW
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_4_21@8
    password: amazonskr05
    port: 443
    server: 43.202.46.135
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_3_21@10
    network: ws
    port: 443
    server: usg.fljsm.com
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: e5543efd-5400-3760-9bb6-02767728e888
    ws-opts:
      headers:
        host: usg.fljsm.com
      path: /video
  - name: 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
    network: tcp
    password: TJCfE7Mx2YcA8kX8zg
    port: 4003
    server: hk1.chuqiangtou.net
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
    network: ws
    port: 2052
    server: dearmb.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d264f990-a6a5-3832-bf37-1fccaed298dd
    ws-opts:
      headers:
        host: dearmb.76898102.xyz
      path: /ancihgrt
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国_2_21@13
    password: ll668668@
    port: 11023
    server: 36.137.106.45
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
    network: ws
    port: 2052
    server: freenodecdn.ikuan.dev
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 3185c2f3-4246-49c4-ba8a-5ea8fb2ef6b8
    ws-opts:
      headers:
        host: freeforgfw.ikuan.dev
      path: /FreeForGFW
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_4_21@15
    network: ws
    port: 443
    server: bb.hk1997.pro
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 0fa2f4ff-d1c3-47b2-8b05-8b7e4916c290
    ws-opts:
      headers:
        host: bb.hk1997.pro
      path: /jash-weh-peft-pseb-lous-jass
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国_5_21@21
    password: ll668668@
    port: 11023
    server: 36.137.106.115
    type: ss
  - cipher: aes-256-gcm
    name: 🇨🇦_CA_加拿大_22@1
    password: Y6R9pAtvxxzmGC
    port: 3306
    server: 134.195.196.149
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_2_22@4
    password: amazonskr05
    port: 443
    server: 43.200.1.53
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_4_22@6
    password: amazonskr05
    port: 443
    server: 43.202.45.84
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_2_22@9
    network: tcp
    port: 41654
    server: 107.167.7.12
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: bdee202c-8fae-441f-a588-7bc4d3887019
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_22@10
    network: tcp
    port: 48729
    server: 23.224.9.146
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: bb25859e-f6da-4101-989f-b4dd67a22682
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_6_22@11
    password: amazonskr05
    port: 443
    server: 43.201.251.42
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
    network: tcp
    port: 48767
    server: 120.226.50.68
    servername: cr3.biger.club
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_1_22@14
    password: amazonskr05
    port: 443
    server: 54.64.76.95
    type: ss
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_4_22@17
    network: tcp
    port: 44920
    server: 137.175.69.234
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_5_22@18
    network: tcp
    port: 33002
    server: 137.175.52.18
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - name: 🇭🇰_HK_香港_22@19
    network: tcp
    password: ca7febc2-bb45-4e6d-810e-ab0af6009c4e
    port: 443
    server: awshk5-tg-data.amazonwebservicess.com
    skip-cert-verify: true
    type: trojan
    udp: true
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_6_22@21
    network: tcp
    port: 31002
    server: 142.4.126.76
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
    password: b89b39c2-dc8d-4595-a4c5-54b4fbab3fc2
    port: 32103
    server: free.themars.top
    type: ss
  - cipher: aes-256-cfb
    name: 🇮🇳_IN_印度_22@25
    obfs: http_simple
    password: YpX2opBbrfqJzzMs
    port: 42833
    protocol: origin
    server: z0114.security-cloudfront-cdn.com
    type: ssr
  - name: 🇻🇳_VN_越南_22@26
    network: tcp
    password: fcf74125-99de-4df3-af94-552a0b1ee021
    port: 443
    server: vn2.microsoft-orgwly.vip
    skip-cert-verify: true
    sni: tls.microsoft-orgwly.vip
    type: trojan
    udp: true
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27127
    server: foshan.chiguayun.cc
    type: ss
  - cipher: aes-256-cfb
    name: 🇯🇵_JP_日本_23@1
    password: amazonskr05
    port: 443
    server: 13.230.159.245
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27124
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27101
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27103
    server: foshan.chiguayun.cc
    type: ss
  - cipher: aes-128-cfb
    name: 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
    password: QazEdcTgb159@$*
    port: 24006
    server: 14.29.124.168
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27118
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27117
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27105
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27125
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27108
    server: hefei.chiguayun.cc
    type: ss
  - alterId: 2
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
    network: tcp
    port: 51004
    server: ieplhk.lanyunshi.top
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1a7680df-81a1-3d89-a221-db81ac4b04df
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27116
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27107
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27104
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27101
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27123
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27126
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27120
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27119
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27106
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27113
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27103
    server: hefei.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27110
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27122
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27118
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27121
    server: foshan.chiguayun.cc
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27102
    server: foshan.chiguayun.cc
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇨🇳_CN_中国_2_23@30
    network: tcp
    port: 11023
    server: 36.134.16.190
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 8c042a38-71c1-1dcb-00df-54880236e0dc
  - cipher: chacha20-ietf-poly1305
    name: 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
    password: f2f91d55-266e-4446-957b-829cf623d2c4
    port: 27109
    server: hefei.chiguayun.cc
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_1_24@1
    network: ws
    port: 2082
    server: cf.noaries.de
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 67c5ce45-7b48-473e-bf25-e4c830b0ed24
    ws-opts:
      headers:
        host: dedipath2.iiio.wiki
      path: /aries?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
    network: ws
    port: 2082
    server: dbamwv.76898102.xyz
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d264f990-a6a5-3832-bf37-1fccaed298dd
    ws-opts:
      headers:
        host: dbamwv.76898102.xyz
      path: /tadvchk
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
    network: ws
    port: 2086
    server: sin.chigua.tk
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: fb67c65d-6e01-495f-f427-a26df0e6ebd3
    ws-opts:
      headers:
        host: hk-justhost.iiio.wiki
      path: /?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇩🇪_DE_德国_24@4
    network: http
    port: 3456
    server: 167.235.61.163
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 68424231-aedd-466b-a171-5571c8183c57
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_1_24@5
    password: amazonskr05
    port: 443
    server: 43.201.254.7
    type: ss
  - cipher: chacha20-ietf-poly1305
    name: 🇷🇺_RU_俄罗斯联邦_24@6
    password: IX8Y44tZmVzfUoFprNhTFZFEyNCUjnYOwX7RqgMvmRIA
    port: 17
    server: 185.87.48.173
    type: ss
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_2_24@7
    network: ws
    port: 2052
    server: 104.27.40.80
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 0227edc4-8735-4370-ac42-4e8147920f0b
    ws-opts:
      headers:
        host: tou.vtcss.top
      path: /qwer10
  - alterId: 64
    cipher: auto
    name: 🇺🇸_US_美国_3_24@8
    network: tcp
    port: 31002
    server: 142.4.126.77
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
    password: 44e4e808-db1e-494d-9d7e-c67b38b13556
    port: 30004
    server: 62e2186f.d0f692af.83df.34fb5e38.cc
    type: ss
  - cipher: aes-256-cfb
    name: 🇰🇷_KR_韩国_2_24@10
    password: amazonskr05
    port: 443
    server: 43.201.254.164
    type: ss
  - name: 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
    network: tcp
    password: 1c681734-ffc2-34dd-8ac8-bfabe4871216
    port: 22054
    server: scloud54.jafiyun.world
    skip-cert-verify: true
    sni: scloud54.jafiyun.world
    type: trojan
    udp: true
  - name: 🇭🇰_HK_香港_1_24@12
    network: tcp
    password: c47e33f0-eef9-4cbd-b803-ea6182a5d943
    port: 443
    server: hk2.downloadvip.cfd
    skip-cert-verify: true
    sni: download.xn--mes358a9urctx.com
    type: trojan
    udp: true
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
    network: ws
    port: 8080
    server: cdncf.scyu.app
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 4427eafb-3b3a-4265-9a32-fe0ea9cfd736
    ws-opts:
      headers:
        host: ssrsub.v01.ssrsub.com
      path: /api/v3/download.getFile
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_1_24@14
    network: tcp
    port: 443
    server: sg2.f163ab0f2c74.sanfen004.me
    servername: sg1.sanfen004.me
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 6d31bd0b-81df-4bb0-b9ea-e00bab2e06d8
  - alterId: 64
    cipher: auto
    name: 🇸🇬_SG_新加坡_2_24@17
    network: tcp
    port: 55264
    server: 202.79.174.157
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 121c9c89-7d11-4f49-9112-dc1e85363f6f
  - alterId: 64
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
    network: tcp
    port: 45070
    server: 120.226.50.76
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - alterId: 0
    cipher: auto
    name: 🇭🇰_HK_香港_2_24@19
    network: tcp
    port: 43692
    server: 156.227.6.7
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: d3b43b85-1b50-4cb5-9738-8d65bae2c95d
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰_24@20
    network: ws
    port: 443
    server: 188.114.98.205
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 2c3a22f0-2087-4f86-b30d-664317f8c820
    ws-opts:
      headers:
        host: tou.vtcss.top
      path: /qwer
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
    network: ws
    port: 2086
    server: beta.noaries.de
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 67c5ce45-7b48-473e-bf25-e4c830b0ed24
    ws-opts:
      headers:
        host: ovh.iiio.wiki
      path: /aries?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
    network: ws
    port: 443
    server: ask.ircf.space
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 3bcbd5cd-e791-4770-8bc7-7b1d941c9513
    ws-opts:
      headers:
        host: wfi.sahnama.com
      path: /S4PSg9xqUClN2kJ4SOPKqC6
  - alterId: 0
    cipher: auto
    name: 🇸🇬_SG_新加坡_3_24@26
    network: ws
    port: 80
    server: sigma.jandapirang.my.id
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 1d1c1d94-6987-4658-a4dc-8821a30fe7e0
    ws-opts:
      headers:
        host: sigma.jandapirang.my.id
      path: /vmess
  - alterId: 0
    cipher: auto
    name: 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
    network: ws
    port: 443
    server: bx.weizai2023.uk.eu.org
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: e7d1e562-2af9-40ac-9fad-d1d4806ff1e9
    ws-opts:
      headers:
        host: 2bh.unioreo.rip
      path: /mioooo?ed=2048
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_6_24@30
    network: ws
    port: 2083
    server: 108.162.194.48
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 39304f36-8a9c-4692-9b31-d2997532f567
    ws-opts:
      headers:
        host: zslbs.vtcss.top
      path: /qwer
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
    network: ws
    port: 443
    server: scaleway.696960.xyz
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: e357cd63-f1a5-4c8e-c42e-26da11207fee
    ws-opts:
      path: /root/
  - alterId: 0
    cipher: auto
    name: 🇺🇸_US_美国_7_24@32
    network: ws
    port: 443
    server: downloadvip.cfd
    skip-cert-verify: true
    tls: true
    type: vmess
    uuid: 92622695-8087-4f81-97ea-1bd9cfeddfcf
    ws-opts:
      headers:
        host: us4.djjc.sbs
      path: /djjc/us4
  - alterId: 64
    cipher: auto
    name: 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
    network: tcp
    port: 40095
    server: 183.237.20.158
    skip-cert-verify: true
    tls: false
    type: vmess
    uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
  - cipher: aes-256-gcm
    name: 🇨🇳_CN_中国_4_24@34
    password: ll668668@
    port: 11023
    server: 36.139.166.231
    type: ss
proxy-groups:
  - name: 🥷PROXY
    type: select
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 👆SELECT
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - ⏳YouTube-Url-Test
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🚀URL-TEST
    type: url-test
    url: http://www.google.com/generate_204
    interval: 120
    lazy: true
    tolerance: 100
    proxies:
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
      - 🇺🇸_US_美国_1_0@7
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇺🇸_US_美国_2_0@9
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
      - 🇺🇸_US_美国_3_0@25
      - 🇺🇸_US_美国_4_0@26
      - 🇫🇷_FR_法国_0@27
      - 🇸🇬_SG_新加坡_1_0@28
      - 🇸🇬_SG_新加坡_2_0@29
      - 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
      - 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
      - 🇸🇬_SG_新加坡_3_0@33
      - 🇻🇳_VN_越南_1@0
      - 🇭🇰_HK_香港_1@1
      - 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
      - 🇨🇳_CN_中国_1_1@3
      - 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
      - 🇨🇷_CR_哥斯达黎加_1@8
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
      - 🇸🇬_SG_新加坡_1@10
      - 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
      - 🇺🇸_US_美国_1_1@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
      - 🇨🇳_CN_中国_2_1@16
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
      - 🇺🇸_US_美国_2_1@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
      - 🇺🇸_US_美国_3_1@32
      - 🇺🇸_US_美国_4_1@33
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
      - 🇺🇸_US_美国_5_1@38
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇹🇼_TW_台湾_1@43
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇯🇵_JP_日本_1@45
      - 🇸🇬_SG_新加坡_1_2@1
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
      - 🇻🇳_VN_越南_1_2@7
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
      - 🇸🇬_SG_新加坡_2_2@9
      - 🇸🇬_SG_新加坡_3_2@10
      - 🇯🇵_JP_日本_2_2@11
      - 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
      - 🇻🇳_VN_越南_2_2@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
      - 🇺🇸_US_美国_2_2@16
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国_3_2@21
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇺🇸_US_美国_4_2@23
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
      - 🇯🇵_JP_日本_3_2@25
      - 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
      - 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
      - 🇺🇸_US_美国_5_2@28
      - 🇩🇪_DE_德国_2@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
      - 🇫🇷_FR_法国_2@36
      - 🇺🇸_US_美国_6_2@37
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
      - 🇺🇸_US_美国_7_2@39
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
      - 🇺🇸_US_美国_8_2@41
      - 🇺🇸_US_美国_9_2@42
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
      - 🇺🇸_US_美国_2_3@25
      - 🇺🇸_US_美国_3_3@26
      - 🇺🇸_US_美国_4_3@28
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇺🇸_US_美国_5_3@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
      - 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
      - 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
      - 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
      - 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
      - 🇰🇷_KR_韩国_3@46
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
      - 🇹🇼_TW_台湾_4@1
      - 🇳🇱_NL_荷兰_4@2
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇺🇸_US_美国_2_4@5
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
      - 🇮🇱_IL_以色列_4@7
      - 🇯🇵_JP_日本_1_4@9
      - 🇺🇸_US_美国_4_4@12
      - 🇷🇺_RU_俄罗斯联邦_4@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
      - 🇺🇸_US_美国_5_4@18
      - 🇺🇸_US_美国_6_4@19
      - 🇯🇵_JP_日本_2_4@20
      - 🇸🇬_SG_新加坡_1_4@21
      - 🇸🇬_SG_新加坡_2_4@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
      - 🇰🇷_KR_韩国_2_4@25
      - 🇺🇸_US_美国_7_4@26
      - 🇯🇵_JP_日本_3_4@27
      - 🇫🇷_FR_法国_1_4@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
      - 🇸🇬_SG_新加坡_3_4@32
      - 🇫🇷_FR_法国_2_4@33
      - 🇰🇷_KR_韩国_3_4@34
      - 🇰🇷_KR_韩国_4_4@35
      - 🇺🇸_US_美国_8_4@36
      - 🇺🇸_US_美国_9_4@37
      - 🇭🇰_HK_香港_4@38
      - 🇻🇳_VN_越南_4@39
      - 🇩🇪_DE_德国_4@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
      - 🇺🇸_US_美国_10_4@42
      - 🇺🇸_US_美国_1_5@0
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
      - 🇸🇬_SG_新加坡_1_5@3
      - 🇸🇬_SG_新加坡_2_5@4
      - 🇸🇬_SG_新加坡_3_5@5
      - 🇯🇵_JP_日本_1_5@8
      - 🇯🇵_JP_日本_2_5@9
      - 🇯🇵_JP_日本_3_5@10
      - 🇯🇵_JP_日本_4_5@11
      - 🇯🇵_JP_日本_5_5@12
      - 🇯🇵_JP_日本_6_5@13
      - 🇸🇬_SG_新加坡_4_5@14
      - 🇸🇬_SG_新加坡_5_5@15
      - 🇸🇬_SG_新加坡_6_5@16
      - 🇺🇸_US_美国_2_5@17
      - 🇸🇬_SG_新加坡_7_5@19
      - 🇸🇬_SG_新加坡_8_5@20
      - 🇸🇬_SG_新加坡_9_5@21
      - 🇺🇸_US_美国_3_5@22
      - 🇱🇻_LV_拉脱维亚_5@24
      - 🇸🇬_SG_新加坡_10_5@25
      - 🇰🇷_KR_韩国_1_5@26
      - 🇰🇷_KR_韩国_2_5@27
      - 🇯🇵_JP_日本_8_5@28
      - 🇹🇼_TW_台湾_2_5@30
      - 🇺🇸_US_美国_4_5@31
      - 🇺🇸_US_美国_5_5@32
      - 🇯🇵_JP_日本_9_5@34
      - 🇷🇺_RU_俄罗斯联邦_2_5@35
      - 🇸🇬_SG_新加坡_11_5@36
      - 🇸🇬_SG_新加坡_12_5@37
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
      - 🇸🇬_SG_新加坡_2_6@11
      - 🇸🇬_SG_新加坡_3_6@13
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
      - 🇯🇵_JP_日本_1_6@15
      - 🇭🇰_HK_香港_6@16
      - 🇯🇵_JP_日本_2_6@17
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
      - 🇺🇸_US_美国_1_6@19
      - 🇺🇸_US_美国_2_6@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
      - 🇸🇬_SG_新加坡_4_6@23
      - 🇸🇬_SG_新加坡_5_6@24
      - 🇯🇵_JP_日本_4_6@25
      - 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
      - 🇺🇸_US_美国_4_6@28
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
      - 🇺🇸_US_美国_5_6@31
      - 🇬🇧_GB_英国_6@32
      - 🇺🇸_US_美国_6_6@34
      - 🇻🇳_VN_越南_6@35
      - 🇺🇸_US_美国_2_7@6
      - 🇺🇸_US_美国_3_7@7
      - 🇺🇸_US_美国_4_7@14
      - 🇺🇸_US_美国_5_7@23
      - 🇯🇵_JP_日本_7@33
      - 🇺🇸_US_美国_7_7@35
      - 🇮🇳_IN_印度_8@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国_1_8@6
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
      - 🇺🇸_US_美国_3_8@11
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
      - 🇧🇷_BR_巴西_8@15
      - 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
      - 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
      - 🇨🇦_CA_加拿大_8@20
      - 🇺🇸_US_美国_5_8@21
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇺🇸_US_美国_6_8@25
      - 🇺🇸_US_美国_7_8@27
      - 🇺🇸_US_美国_8_8@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇺🇸_US_美国_9_8@31
      - 🇯🇵_JP_日本_3_8@32
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
      - 🇸🇬_SG_新加坡_2_8@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
      - 🇰🇷_KR_韩国_9@1
      - 🇩🇪_DE_德国_9@12
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇺🇸_US_美国_1_9@21
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
      - 🇺🇸_US_美国_2_9@33
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
      - 🇯🇵_JP_日本_9@35
      - 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
      - 🇸🇬_SG_新加坡_10@25
      - 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
      - 🇫🇷_FR_法国_10@32
      - 🇯🇵_JP_日本_11@0
      - 🇩🇪_DE_德国_11@1
      - 🇺🇸_US_美国_1_11@2
      - 🇸🇬_SG_新加坡_11@3
      - 🇺🇸_US_美国_2_11@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
      - 🇺🇸_US_美国_1_12@1
      - 🇺🇸_US_美国_2_12@13
      - 🇺🇸_US_美国_4_12@25
      - 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
      - 🇺🇸_US_美国_5_12@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
      - 🇺🇸_US_美国_1_13@21
      - 🇹🇼_TW_台湾_1_13@24
      - 🇸🇬_SG_新加坡_13@25
      - 🇺🇸_US_美国_2_13@26
      - 🇹🇼_TW_台湾_2_13@27
      - 🇮🇱_IL_以色列_13@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇱🇻_LV_拉脱维亚_13@32
      - 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
      - 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
      - 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
      - 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
      - 🇰🇿_KZ_哈萨克斯坦_14@24
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国_3_14@27
      - 🇹🇼_TW_台湾_1_14@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
      - 🇱🇻_LV_拉脱维亚_14@31
      - 🇺🇸_US_美国_1_15@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇸🇬_SG_新加坡_1_15@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
      - 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
      - 🇺🇸_US_美国_2_15@23
      - 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
      - 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
      - 🇨🇳_CN_中国_15@35
      - 🇺🇸_US_美国_1_16@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国_2_16@16
      - 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇺🇸_US_美国_3_16@22
      - 🇺🇸_US_美国_4_16@23
      - 🇫🇷_FR_法国_16@24
      - 🇨🇷_CR_哥斯达黎加_16@25
      - 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
      - 🇺🇸_US_美国_5_16@27
      - 🇺🇸_US_美国_6_16@28
      - 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
      - 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
      - 🇹🇼_TW_台湾_16@32
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
      - 🇺🇸_US_美国_1_17@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇩🇪_DE_德国_17@25
      - 🇺🇸_US_美国_3_17@27
      - 🇺🇸_US_美国_4_17@29
      - 🇺🇸_US_美国_5_17@32
      - 🇫🇷_FR_法国_17@37
      - 🇨🇳_CN_中国_17@38
      - 🇮🇪_IE_爱尔兰_17@40
      - 🇺🇸_US_美国_1_18@0
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇺🇸_US_美国_2_18@7
      - 🇺🇸_US_美国_3_18@8
      - 🇺🇸_US_美国_4_18@13
      - 🇺🇸_US_美国_5_18@18
      - 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
      - 🇺🇸_US_美国_7_18@21
      - 🇸🇬_SG_新加坡_18@22
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
      - 🇺🇸_US_美国_1_19@1
      - 🇸🇬_SG_新加坡_19@19
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
      - 🇺🇸_US_美国_2_19@28
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
      - 🇺🇸_US_美国_3_19@32
      - 🇨🇳_CN_中国_19@33
      - 🇺🇸_US_美国_1_20@0
      - 🇫🇷_FR_法国_20@2
      - 🇺🇸_US_美国_2_20@3
      - 🇰🇷_KR_韩国_20@4
      - 🇹🇼_TW_台湾_1_20@5
      - 🇷🇺_RU_俄罗斯联邦_20@7
      - 🇺🇸_US_美国_3_20@8
      - 🇺🇸_US_美国_4_20@9
      - 🇺🇸_US_美国_5_20@10
      - 🇺🇸_US_美国_6_20@11
      - 🇺🇸_US_美国_7_20@16
      - 🇮🇩_ID_印度尼西亚_20@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
      - 🇸🇬_SG_新加坡_2_20@21
      - 🇨🇳_CN_中国_20@22
      - 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
      - 🇰🇷_KR_韩国_1_21@2
      - 🇺🇸_US_美国_1_21@3
      - 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
      - 🇰🇷_KR_韩国_4_21@8
      - 🇺🇸_US_美国_3_21@10
      - 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
      - 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
      - 🇨🇳_CN_中国_2_21@13
      - 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
      - 🇺🇸_US_美国_4_21@15
      - 🇨🇳_CN_中国_5_21@21
      - 🇨🇦_CA_加拿大_22@1
      - 🇰🇷_KR_韩国_2_22@4
      - 🇰🇷_KR_韩国_4_22@6
      - 🇺🇸_US_美国_2_22@9
      - 🇺🇸_US_美国_3_22@10
      - 🇰🇷_KR_韩国_6_22@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
      - 🇯🇵_JP_日本_1_22@14
      - 🇺🇸_US_美国_4_22@17
      - 🇺🇸_US_美国_5_22@18
      - 🇭🇰_HK_香港_22@19
      - 🇺🇸_US_美国_6_22@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
      - 🇮🇳_IN_印度_22@25
      - 🇻🇳_VN_越南_22@26
      - 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
      - 🇯🇵_JP_日本_23@1
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
      - 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
      - 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
      - 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
      - 🇨🇳_CN_中国_2_23@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
      - 🇺🇸_US_美国_1_24@1
      - 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
      - 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
      - 🇩🇪_DE_德国_24@4
      - 🇰🇷_KR_韩国_1_24@5
      - 🇷🇺_RU_俄罗斯联邦_24@6
      - 🇺🇸_US_美国_2_24@7
      - 🇺🇸_US_美国_3_24@8
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
      - 🇰🇷_KR_韩国_2_24@10
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
      - 🇭🇰_HK_香港_1_24@12
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇸🇬_SG_新加坡_1_24@14
      - 🇸🇬_SG_新加坡_2_24@17
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
      - 🇭🇰_HK_香港_2_24@19
      - 🇳🇱_NL_荷兰_24@20
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
      - 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
      - 🇸🇬_SG_新加坡_3_24@26
      - 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
      - 🇺🇸_US_美国_6_24@30
      - 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
      - 🇺🇸_US_美国_7_24@32
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
      - 🇨🇳_CN_中国_4_24@34
  - name: 🎛LOAD-BALANCE
    type: load-balance
    url: http://www.gstatic.com/generate_204
    interval: 600
    proxies:
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
      - 🇺🇸_US_美国_1_0@7
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇺🇸_US_美国_2_0@9
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
      - 🇺🇸_US_美国_3_0@25
      - 🇺🇸_US_美国_4_0@26
      - 🇫🇷_FR_法国_0@27
      - 🇸🇬_SG_新加坡_1_0@28
      - 🇸🇬_SG_新加坡_2_0@29
      - 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
      - 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
      - 🇸🇬_SG_新加坡_3_0@33
      - 🇻🇳_VN_越南_1@0
      - 🇭🇰_HK_香港_1@1
      - 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
      - 🇨🇳_CN_中国_1_1@3
      - 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
      - 🇨🇷_CR_哥斯达黎加_1@8
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
      - 🇸🇬_SG_新加坡_1@10
      - 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
      - 🇺🇸_US_美国_1_1@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
      - 🇨🇳_CN_中国_2_1@16
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
      - 🇺🇸_US_美国_2_1@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
      - 🇺🇸_US_美国_3_1@32
      - 🇺🇸_US_美国_4_1@33
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
      - 🇺🇸_US_美国_5_1@38
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇹🇼_TW_台湾_1@43
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇯🇵_JP_日本_1@45
      - 🇸🇬_SG_新加坡_1_2@1
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
      - 🇻🇳_VN_越南_1_2@7
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
      - 🇸🇬_SG_新加坡_2_2@9
      - 🇸🇬_SG_新加坡_3_2@10
      - 🇯🇵_JP_日本_2_2@11
      - 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
      - 🇻🇳_VN_越南_2_2@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
      - 🇺🇸_US_美国_2_2@16
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国_3_2@21
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇺🇸_US_美国_4_2@23
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
      - 🇯🇵_JP_日本_3_2@25
      - 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
      - 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
      - 🇺🇸_US_美国_5_2@28
      - 🇩🇪_DE_德国_2@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
      - 🇫🇷_FR_法国_2@36
      - 🇺🇸_US_美国_6_2@37
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
      - 🇺🇸_US_美国_7_2@39
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
      - 🇺🇸_US_美国_8_2@41
      - 🇺🇸_US_美国_9_2@42
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
      - 🇺🇸_US_美国_2_3@25
      - 🇺🇸_US_美国_3_3@26
      - 🇺🇸_US_美国_4_3@28
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇺🇸_US_美国_5_3@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
      - 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
      - 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
      - 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
      - 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
      - 🇰🇷_KR_韩国_3@46
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
      - 🇹🇼_TW_台湾_4@1
      - 🇳🇱_NL_荷兰_4@2
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇺🇸_US_美国_2_4@5
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
      - 🇮🇱_IL_以色列_4@7
      - 🇯🇵_JP_日本_1_4@9
      - 🇺🇸_US_美国_4_4@12
      - 🇷🇺_RU_俄罗斯联邦_4@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
      - 🇺🇸_US_美国_5_4@18
      - 🇺🇸_US_美国_6_4@19
      - 🇯🇵_JP_日本_2_4@20
      - 🇸🇬_SG_新加坡_1_4@21
      - 🇸🇬_SG_新加坡_2_4@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
      - 🇰🇷_KR_韩国_2_4@25
      - 🇺🇸_US_美国_7_4@26
      - 🇯🇵_JP_日本_3_4@27
      - 🇫🇷_FR_法国_1_4@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
      - 🇸🇬_SG_新加坡_3_4@32
      - 🇫🇷_FR_法国_2_4@33
      - 🇰🇷_KR_韩国_3_4@34
      - 🇰🇷_KR_韩国_4_4@35
      - 🇺🇸_US_美国_8_4@36
      - 🇺🇸_US_美国_9_4@37
      - 🇭🇰_HK_香港_4@38
      - 🇻🇳_VN_越南_4@39
      - 🇩🇪_DE_德国_4@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
      - 🇺🇸_US_美国_10_4@42
      - 🇺🇸_US_美国_1_5@0
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
      - 🇸🇬_SG_新加坡_1_5@3
      - 🇸🇬_SG_新加坡_2_5@4
      - 🇸🇬_SG_新加坡_3_5@5
      - 🇯🇵_JP_日本_1_5@8
      - 🇯🇵_JP_日本_2_5@9
      - 🇯🇵_JP_日本_3_5@10
      - 🇯🇵_JP_日本_4_5@11
      - 🇯🇵_JP_日本_5_5@12
      - 🇯🇵_JP_日本_6_5@13
      - 🇸🇬_SG_新加坡_4_5@14
      - 🇸🇬_SG_新加坡_5_5@15
      - 🇸🇬_SG_新加坡_6_5@16
      - 🇺🇸_US_美国_2_5@17
      - 🇸🇬_SG_新加坡_7_5@19
      - 🇸🇬_SG_新加坡_8_5@20
      - 🇸🇬_SG_新加坡_9_5@21
      - 🇺🇸_US_美国_3_5@22
      - 🇱🇻_LV_拉脱维亚_5@24
      - 🇸🇬_SG_新加坡_10_5@25
      - 🇰🇷_KR_韩国_1_5@26
      - 🇰🇷_KR_韩国_2_5@27
      - 🇯🇵_JP_日本_8_5@28
      - 🇹🇼_TW_台湾_2_5@30
      - 🇺🇸_US_美国_4_5@31
      - 🇺🇸_US_美国_5_5@32
      - 🇯🇵_JP_日本_9_5@34
      - 🇷🇺_RU_俄罗斯联邦_2_5@35
      - 🇸🇬_SG_新加坡_11_5@36
      - 🇸🇬_SG_新加坡_12_5@37
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
      - 🇸🇬_SG_新加坡_2_6@11
      - 🇸🇬_SG_新加坡_3_6@13
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
      - 🇯🇵_JP_日本_1_6@15
      - 🇭🇰_HK_香港_6@16
      - 🇯🇵_JP_日本_2_6@17
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
      - 🇺🇸_US_美国_1_6@19
      - 🇺🇸_US_美国_2_6@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
      - 🇸🇬_SG_新加坡_4_6@23
      - 🇸🇬_SG_新加坡_5_6@24
      - 🇯🇵_JP_日本_4_6@25
      - 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
      - 🇺🇸_US_美国_4_6@28
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
      - 🇺🇸_US_美国_5_6@31
      - 🇬🇧_GB_英国_6@32
      - 🇺🇸_US_美国_6_6@34
      - 🇻🇳_VN_越南_6@35
      - 🇺🇸_US_美国_2_7@6
      - 🇺🇸_US_美国_3_7@7
      - 🇺🇸_US_美国_4_7@14
      - 🇺🇸_US_美国_5_7@23
      - 🇯🇵_JP_日本_7@33
      - 🇺🇸_US_美国_7_7@35
      - 🇮🇳_IN_印度_8@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国_1_8@6
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
      - 🇺🇸_US_美国_3_8@11
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
      - 🇧🇷_BR_巴西_8@15
      - 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
      - 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
      - 🇨🇦_CA_加拿大_8@20
      - 🇺🇸_US_美国_5_8@21
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇺🇸_US_美国_6_8@25
      - 🇺🇸_US_美国_7_8@27
      - 🇺🇸_US_美国_8_8@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇺🇸_US_美国_9_8@31
      - 🇯🇵_JP_日本_3_8@32
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
      - 🇸🇬_SG_新加坡_2_8@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
      - 🇰🇷_KR_韩国_9@1
      - 🇩🇪_DE_德国_9@12
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇺🇸_US_美国_1_9@21
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
      - 🇺🇸_US_美国_2_9@33
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
      - 🇯🇵_JP_日本_9@35
      - 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
      - 🇸🇬_SG_新加坡_10@25
      - 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
      - 🇫🇷_FR_法国_10@32
      - 🇯🇵_JP_日本_11@0
      - 🇩🇪_DE_德国_11@1
      - 🇺🇸_US_美国_1_11@2
      - 🇸🇬_SG_新加坡_11@3
      - 🇺🇸_US_美国_2_11@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
      - 🇺🇸_US_美国_1_12@1
      - 🇺🇸_US_美国_2_12@13
      - 🇺🇸_US_美国_4_12@25
      - 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
      - 🇺🇸_US_美国_5_12@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
      - 🇺🇸_US_美国_1_13@21
      - 🇹🇼_TW_台湾_1_13@24
      - 🇸🇬_SG_新加坡_13@25
      - 🇺🇸_US_美国_2_13@26
      - 🇹🇼_TW_台湾_2_13@27
      - 🇮🇱_IL_以色列_13@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇱🇻_LV_拉脱维亚_13@32
      - 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
      - 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
      - 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
      - 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
      - 🇰🇿_KZ_哈萨克斯坦_14@24
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国_3_14@27
      - 🇹🇼_TW_台湾_1_14@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
      - 🇱🇻_LV_拉脱维亚_14@31
      - 🇺🇸_US_美国_1_15@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇸🇬_SG_新加坡_1_15@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
      - 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
      - 🇺🇸_US_美国_2_15@23
      - 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
      - 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
      - 🇨🇳_CN_中国_15@35
      - 🇺🇸_US_美国_1_16@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国_2_16@16
      - 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇺🇸_US_美国_3_16@22
      - 🇺🇸_US_美国_4_16@23
      - 🇫🇷_FR_法国_16@24
      - 🇨🇷_CR_哥斯达黎加_16@25
      - 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
      - 🇺🇸_US_美国_5_16@27
      - 🇺🇸_US_美国_6_16@28
      - 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
      - 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
      - 🇹🇼_TW_台湾_16@32
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
      - 🇺🇸_US_美国_1_17@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇩🇪_DE_德国_17@25
      - 🇺🇸_US_美国_3_17@27
      - 🇺🇸_US_美国_4_17@29
      - 🇺🇸_US_美国_5_17@32
      - 🇫🇷_FR_法国_17@37
      - 🇨🇳_CN_中国_17@38
      - 🇮🇪_IE_爱尔兰_17@40
      - 🇺🇸_US_美国_1_18@0
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇺🇸_US_美国_2_18@7
      - 🇺🇸_US_美国_3_18@8
      - 🇺🇸_US_美国_4_18@13
      - 🇺🇸_US_美国_5_18@18
      - 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
      - 🇺🇸_US_美国_7_18@21
      - 🇸🇬_SG_新加坡_18@22
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
      - 🇺🇸_US_美国_1_19@1
      - 🇸🇬_SG_新加坡_19@19
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
      - 🇺🇸_US_美国_2_19@28
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
      - 🇺🇸_US_美国_3_19@32
      - 🇨🇳_CN_中国_19@33
      - 🇺🇸_US_美国_1_20@0
      - 🇫🇷_FR_法国_20@2
      - 🇺🇸_US_美国_2_20@3
      - 🇰🇷_KR_韩国_20@4
      - 🇹🇼_TW_台湾_1_20@5
      - 🇷🇺_RU_俄罗斯联邦_20@7
      - 🇺🇸_US_美国_3_20@8
      - 🇺🇸_US_美国_4_20@9
      - 🇺🇸_US_美国_5_20@10
      - 🇺🇸_US_美国_6_20@11
      - 🇺🇸_US_美国_7_20@16
      - 🇮🇩_ID_印度尼西亚_20@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
      - 🇸🇬_SG_新加坡_2_20@21
      - 🇨🇳_CN_中国_20@22
      - 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
      - 🇰🇷_KR_韩国_1_21@2
      - 🇺🇸_US_美国_1_21@3
      - 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
      - 🇰🇷_KR_韩国_4_21@8
      - 🇺🇸_US_美国_3_21@10
      - 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
      - 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
      - 🇨🇳_CN_中国_2_21@13
      - 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
      - 🇺🇸_US_美国_4_21@15
      - 🇨🇳_CN_中国_5_21@21
      - 🇨🇦_CA_加拿大_22@1
      - 🇰🇷_KR_韩国_2_22@4
      - 🇰🇷_KR_韩国_4_22@6
      - 🇺🇸_US_美国_2_22@9
      - 🇺🇸_US_美国_3_22@10
      - 🇰🇷_KR_韩国_6_22@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
      - 🇯🇵_JP_日本_1_22@14
      - 🇺🇸_US_美国_4_22@17
      - 🇺🇸_US_美国_5_22@18
      - 🇭🇰_HK_香港_22@19
      - 🇺🇸_US_美国_6_22@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
      - 🇮🇳_IN_印度_22@25
      - 🇻🇳_VN_越南_22@26
      - 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
      - 🇯🇵_JP_日本_23@1
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
      - 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
      - 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
      - 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
      - 🇨🇳_CN_中国_2_23@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
      - 🇺🇸_US_美国_1_24@1
      - 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
      - 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
      - 🇩🇪_DE_德国_24@4
      - 🇰🇷_KR_韩国_1_24@5
      - 🇷🇺_RU_俄罗斯联邦_24@6
      - 🇺🇸_US_美国_2_24@7
      - 🇺🇸_US_美国_3_24@8
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
      - 🇰🇷_KR_韩国_2_24@10
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
      - 🇭🇰_HK_香港_1_24@12
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇸🇬_SG_新加坡_1_24@14
      - 🇸🇬_SG_新加坡_2_24@17
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
      - 🇭🇰_HK_香港_2_24@19
      - 🇳🇱_NL_荷兰_24@20
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
      - 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
      - 🇸🇬_SG_新加坡_3_24@26
      - 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
      - 🇺🇸_US_美国_6_24@30
      - 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
      - 🇺🇸_US_美国_7_24@32
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
      - 🇨🇳_CN_中国_4_24@34
  - name: 🕹Fallback
    type: fallback
    url: http://www.gstatic.com/generate_204
    interval: 60
    lazy: true
    tolerance: 30
    proxies:
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
      - 🇺🇸_US_美国_1_0@7
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇺🇸_US_美国_2_0@9
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
      - 🇺🇸_US_美国_3_0@25
      - 🇺🇸_US_美国_4_0@26
      - 🇫🇷_FR_法国_0@27
      - 🇸🇬_SG_新加坡_1_0@28
      - 🇸🇬_SG_新加坡_2_0@29
      - 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
      - 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
      - 🇸🇬_SG_新加坡_3_0@33
      - 🇻🇳_VN_越南_1@0
      - 🇭🇰_HK_香港_1@1
      - 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
      - 🇨🇳_CN_中国_1_1@3
      - 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
      - 🇨🇷_CR_哥斯达黎加_1@8
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
      - 🇸🇬_SG_新加坡_1@10
      - 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
      - 🇺🇸_US_美国_1_1@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
      - 🇨🇳_CN_中国_2_1@16
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
      - 🇺🇸_US_美国_2_1@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
      - 🇺🇸_US_美国_3_1@32
      - 🇺🇸_US_美国_4_1@33
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
      - 🇺🇸_US_美国_5_1@38
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇹🇼_TW_台湾_1@43
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇯🇵_JP_日本_1@45
      - 🇸🇬_SG_新加坡_1_2@1
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
      - 🇻🇳_VN_越南_1_2@7
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
      - 🇸🇬_SG_新加坡_2_2@9
      - 🇸🇬_SG_新加坡_3_2@10
      - 🇯🇵_JP_日本_2_2@11
      - 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
      - 🇻🇳_VN_越南_2_2@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
      - 🇺🇸_US_美国_2_2@16
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国_3_2@21
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇺🇸_US_美国_4_2@23
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
      - 🇯🇵_JP_日本_3_2@25
      - 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
      - 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
      - 🇺🇸_US_美国_5_2@28
      - 🇩🇪_DE_德国_2@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
      - 🇫🇷_FR_法国_2@36
      - 🇺🇸_US_美国_6_2@37
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
      - 🇺🇸_US_美国_7_2@39
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
      - 🇺🇸_US_美国_8_2@41
      - 🇺🇸_US_美国_9_2@42
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
      - 🇺🇸_US_美国_2_3@25
      - 🇺🇸_US_美国_3_3@26
      - 🇺🇸_US_美国_4_3@28
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇺🇸_US_美国_5_3@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
      - 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
      - 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
      - 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
      - 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
      - 🇰🇷_KR_韩国_3@46
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
      - 🇹🇼_TW_台湾_4@1
      - 🇳🇱_NL_荷兰_4@2
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇺🇸_US_美国_2_4@5
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
      - 🇮🇱_IL_以色列_4@7
      - 🇯🇵_JP_日本_1_4@9
      - 🇺🇸_US_美国_4_4@12
      - 🇷🇺_RU_俄罗斯联邦_4@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
      - 🇺🇸_US_美国_5_4@18
      - 🇺🇸_US_美国_6_4@19
      - 🇯🇵_JP_日本_2_4@20
      - 🇸🇬_SG_新加坡_1_4@21
      - 🇸🇬_SG_新加坡_2_4@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
      - 🇰🇷_KR_韩国_2_4@25
      - 🇺🇸_US_美国_7_4@26
      - 🇯🇵_JP_日本_3_4@27
      - 🇫🇷_FR_法国_1_4@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
      - 🇸🇬_SG_新加坡_3_4@32
      - 🇫🇷_FR_法国_2_4@33
      - 🇰🇷_KR_韩国_3_4@34
      - 🇰🇷_KR_韩国_4_4@35
      - 🇺🇸_US_美国_8_4@36
      - 🇺🇸_US_美国_9_4@37
      - 🇭🇰_HK_香港_4@38
      - 🇻🇳_VN_越南_4@39
      - 🇩🇪_DE_德国_4@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
      - 🇺🇸_US_美国_10_4@42
      - 🇺🇸_US_美国_1_5@0
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
      - 🇸🇬_SG_新加坡_1_5@3
      - 🇸🇬_SG_新加坡_2_5@4
      - 🇸🇬_SG_新加坡_3_5@5
      - 🇯🇵_JP_日本_1_5@8
      - 🇯🇵_JP_日本_2_5@9
      - 🇯🇵_JP_日本_3_5@10
      - 🇯🇵_JP_日本_4_5@11
      - 🇯🇵_JP_日本_5_5@12
      - 🇯🇵_JP_日本_6_5@13
      - 🇸🇬_SG_新加坡_4_5@14
      - 🇸🇬_SG_新加坡_5_5@15
      - 🇸🇬_SG_新加坡_6_5@16
      - 🇺🇸_US_美国_2_5@17
      - 🇸🇬_SG_新加坡_7_5@19
      - 🇸🇬_SG_新加坡_8_5@20
      - 🇸🇬_SG_新加坡_9_5@21
      - 🇺🇸_US_美国_3_5@22
      - 🇱🇻_LV_拉脱维亚_5@24
      - 🇸🇬_SG_新加坡_10_5@25
      - 🇰🇷_KR_韩国_1_5@26
      - 🇰🇷_KR_韩国_2_5@27
      - 🇯🇵_JP_日本_8_5@28
      - 🇹🇼_TW_台湾_2_5@30
      - 🇺🇸_US_美国_4_5@31
      - 🇺🇸_US_美国_5_5@32
      - 🇯🇵_JP_日本_9_5@34
      - 🇷🇺_RU_俄罗斯联邦_2_5@35
      - 🇸🇬_SG_新加坡_11_5@36
      - 🇸🇬_SG_新加坡_12_5@37
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
      - 🇸🇬_SG_新加坡_2_6@11
      - 🇸🇬_SG_新加坡_3_6@13
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
      - 🇯🇵_JP_日本_1_6@15
      - 🇭🇰_HK_香港_6@16
      - 🇯🇵_JP_日本_2_6@17
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
      - 🇺🇸_US_美国_1_6@19
      - 🇺🇸_US_美国_2_6@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
      - 🇸🇬_SG_新加坡_4_6@23
      - 🇸🇬_SG_新加坡_5_6@24
      - 🇯🇵_JP_日本_4_6@25
      - 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
      - 🇺🇸_US_美国_4_6@28
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
      - 🇺🇸_US_美国_5_6@31
      - 🇬🇧_GB_英国_6@32
      - 🇺🇸_US_美国_6_6@34
      - 🇻🇳_VN_越南_6@35
      - 🇺🇸_US_美国_2_7@6
      - 🇺🇸_US_美国_3_7@7
      - 🇺🇸_US_美国_4_7@14
      - 🇺🇸_US_美国_5_7@23
      - 🇯🇵_JP_日本_7@33
      - 🇺🇸_US_美国_7_7@35
      - 🇮🇳_IN_印度_8@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国_1_8@6
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
      - 🇺🇸_US_美国_3_8@11
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
      - 🇧🇷_BR_巴西_8@15
      - 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
      - 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
      - 🇨🇦_CA_加拿大_8@20
      - 🇺🇸_US_美国_5_8@21
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇺🇸_US_美国_6_8@25
      - 🇺🇸_US_美国_7_8@27
      - 🇺🇸_US_美国_8_8@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇺🇸_US_美国_9_8@31
      - 🇯🇵_JP_日本_3_8@32
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
      - 🇸🇬_SG_新加坡_2_8@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
      - 🇰🇷_KR_韩国_9@1
      - 🇩🇪_DE_德国_9@12
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇺🇸_US_美国_1_9@21
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
      - 🇺🇸_US_美国_2_9@33
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
      - 🇯🇵_JP_日本_9@35
      - 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
      - 🇸🇬_SG_新加坡_10@25
      - 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
      - 🇫🇷_FR_法国_10@32
      - 🇯🇵_JP_日本_11@0
      - 🇩🇪_DE_德国_11@1
      - 🇺🇸_US_美国_1_11@2
      - 🇸🇬_SG_新加坡_11@3
      - 🇺🇸_US_美国_2_11@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
      - 🇺🇸_US_美国_1_12@1
      - 🇺🇸_US_美国_2_12@13
      - 🇺🇸_US_美国_4_12@25
      - 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
      - 🇺🇸_US_美国_5_12@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
      - 🇺🇸_US_美国_1_13@21
      - 🇹🇼_TW_台湾_1_13@24
      - 🇸🇬_SG_新加坡_13@25
      - 🇺🇸_US_美国_2_13@26
      - 🇹🇼_TW_台湾_2_13@27
      - 🇮🇱_IL_以色列_13@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇱🇻_LV_拉脱维亚_13@32
      - 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
      - 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
      - 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
      - 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
      - 🇰🇿_KZ_哈萨克斯坦_14@24
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国_3_14@27
      - 🇹🇼_TW_台湾_1_14@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
      - 🇱🇻_LV_拉脱维亚_14@31
      - 🇺🇸_US_美国_1_15@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇸🇬_SG_新加坡_1_15@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
      - 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
      - 🇺🇸_US_美国_2_15@23
      - 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
      - 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
      - 🇨🇳_CN_中国_15@35
      - 🇺🇸_US_美国_1_16@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国_2_16@16
      - 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇺🇸_US_美国_3_16@22
      - 🇺🇸_US_美国_4_16@23
      - 🇫🇷_FR_法国_16@24
      - 🇨🇷_CR_哥斯达黎加_16@25
      - 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
      - 🇺🇸_US_美国_5_16@27
      - 🇺🇸_US_美国_6_16@28
      - 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
      - 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
      - 🇹🇼_TW_台湾_16@32
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
      - 🇺🇸_US_美国_1_17@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇩🇪_DE_德国_17@25
      - 🇺🇸_US_美国_3_17@27
      - 🇺🇸_US_美国_4_17@29
      - 🇺🇸_US_美国_5_17@32
      - 🇫🇷_FR_法国_17@37
      - 🇨🇳_CN_中国_17@38
      - 🇮🇪_IE_爱尔兰_17@40
      - 🇺🇸_US_美国_1_18@0
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇺🇸_US_美国_2_18@7
      - 🇺🇸_US_美国_3_18@8
      - 🇺🇸_US_美国_4_18@13
      - 🇺🇸_US_美国_5_18@18
      - 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
      - 🇺🇸_US_美国_7_18@21
      - 🇸🇬_SG_新加坡_18@22
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
      - 🇺🇸_US_美国_1_19@1
      - 🇸🇬_SG_新加坡_19@19
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
      - 🇺🇸_US_美国_2_19@28
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
      - 🇺🇸_US_美国_3_19@32
      - 🇨🇳_CN_中国_19@33
      - 🇺🇸_US_美国_1_20@0
      - 🇫🇷_FR_法国_20@2
      - 🇺🇸_US_美国_2_20@3
      - 🇰🇷_KR_韩国_20@4
      - 🇹🇼_TW_台湾_1_20@5
      - 🇷🇺_RU_俄罗斯联邦_20@7
      - 🇺🇸_US_美国_3_20@8
      - 🇺🇸_US_美国_4_20@9
      - 🇺🇸_US_美国_5_20@10
      - 🇺🇸_US_美国_6_20@11
      - 🇺🇸_US_美国_7_20@16
      - 🇮🇩_ID_印度尼西亚_20@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
      - 🇸🇬_SG_新加坡_2_20@21
      - 🇨🇳_CN_中国_20@22
      - 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
      - 🇰🇷_KR_韩国_1_21@2
      - 🇺🇸_US_美国_1_21@3
      - 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
      - 🇰🇷_KR_韩国_4_21@8
      - 🇺🇸_US_美国_3_21@10
      - 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
      - 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
      - 🇨🇳_CN_中国_2_21@13
      - 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
      - 🇺🇸_US_美国_4_21@15
      - 🇨🇳_CN_中国_5_21@21
      - 🇨🇦_CA_加拿大_22@1
      - 🇰🇷_KR_韩国_2_22@4
      - 🇰🇷_KR_韩国_4_22@6
      - 🇺🇸_US_美国_2_22@9
      - 🇺🇸_US_美国_3_22@10
      - 🇰🇷_KR_韩国_6_22@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
      - 🇯🇵_JP_日本_1_22@14
      - 🇺🇸_US_美国_4_22@17
      - 🇺🇸_US_美国_5_22@18
      - 🇭🇰_HK_香港_22@19
      - 🇺🇸_US_美国_6_22@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
      - 🇮🇳_IN_印度_22@25
      - 🇻🇳_VN_越南_22@26
      - 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
      - 🇯🇵_JP_日本_23@1
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
      - 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
      - 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
      - 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
      - 🇨🇳_CN_中国_2_23@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
      - 🇺🇸_US_美国_1_24@1
      - 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
      - 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
      - 🇩🇪_DE_德国_24@4
      - 🇰🇷_KR_韩国_1_24@5
      - 🇷🇺_RU_俄罗斯联邦_24@6
      - 🇺🇸_US_美国_2_24@7
      - 🇺🇸_US_美国_3_24@8
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
      - 🇰🇷_KR_韩国_2_24@10
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
      - 🇭🇰_HK_香港_1_24@12
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇸🇬_SG_新加坡_1_24@14
      - 🇸🇬_SG_新加坡_2_24@17
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
      - 🇭🇰_HK_香港_2_24@19
      - 🇳🇱_NL_荷兰_24@20
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
      - 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
      - 🇸🇬_SG_新加坡_3_24@26
      - 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
      - 🇺🇸_US_美国_6_24@30
      - 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
      - 🇺🇸_US_美国_7_24@32
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
      - 🇨🇳_CN_中国_4_24@34
  - name: 🎎YouTube
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - ⏳YouTube-Url-Test
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: ⏳YouTube-Url-Test
    type: url-test
    url: https://www.youtube.com/
    interval: 120
    lazy: true
    tolerance: 100
    proxies:
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
      - 🇺🇸_US_美国_1_0@7
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇺🇸_US_美国_2_0@9
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
      - 🇺🇸_US_美国_3_0@25
      - 🇺🇸_US_美国_4_0@26
      - 🇫🇷_FR_法国_0@27
      - 🇸🇬_SG_新加坡_1_0@28
      - 🇸🇬_SG_新加坡_2_0@29
      - 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
      - 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
      - 🇸🇬_SG_新加坡_3_0@33
      - 🇻🇳_VN_越南_1@0
      - 🇭🇰_HK_香港_1@1
      - 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
      - 🇨🇳_CN_中国_1_1@3
      - 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
      - 🇨🇷_CR_哥斯达黎加_1@8
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
      - 🇸🇬_SG_新加坡_1@10
      - 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
      - 🇺🇸_US_美国_1_1@12
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
      - 🇨🇳_CN_中国_2_1@16
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
      - 🇺🇸_US_美国_2_1@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
      - 🇺🇸_US_美国_3_1@32
      - 🇺🇸_US_美国_4_1@33
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
      - 🇺🇸_US_美国_5_1@38
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇹🇼_TW_台湾_1@43
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇯🇵_JP_日本_1@45
      - 🇸🇬_SG_新加坡_1_2@1
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
      - 🇻🇳_VN_越南_1_2@7
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
      - 🇸🇬_SG_新加坡_2_2@9
      - 🇸🇬_SG_新加坡_3_2@10
      - 🇯🇵_JP_日本_2_2@11
      - 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
      - 🇻🇳_VN_越南_2_2@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
      - 🇺🇸_US_美国_2_2@16
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国_3_2@21
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇺🇸_US_美国_4_2@23
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
      - 🇯🇵_JP_日本_3_2@25
      - 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
      - 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
      - 🇺🇸_US_美国_5_2@28
      - 🇩🇪_DE_德国_2@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
      - 🇫🇷_FR_法国_2@36
      - 🇺🇸_US_美国_6_2@37
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
      - 🇺🇸_US_美国_7_2@39
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
      - 🇺🇸_US_美国_8_2@41
      - 🇺🇸_US_美国_9_2@42
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
      - 🇺🇸_US_美国_2_3@25
      - 🇺🇸_US_美国_3_3@26
      - 🇺🇸_US_美国_4_3@28
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇺🇸_US_美国_5_3@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
      - 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
      - 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
      - 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
      - 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
      - 🇰🇷_KR_韩国_3@46
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
      - 🇹🇼_TW_台湾_4@1
      - 🇳🇱_NL_荷兰_4@2
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇺🇸_US_美国_2_4@5
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
      - 🇮🇱_IL_以色列_4@7
      - 🇯🇵_JP_日本_1_4@9
      - 🇺🇸_US_美国_4_4@12
      - 🇷🇺_RU_俄罗斯联邦_4@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
      - 🇺🇸_US_美国_5_4@18
      - 🇺🇸_US_美国_6_4@19
      - 🇯🇵_JP_日本_2_4@20
      - 🇸🇬_SG_新加坡_1_4@21
      - 🇸🇬_SG_新加坡_2_4@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
      - 🇰🇷_KR_韩国_2_4@25
      - 🇺🇸_US_美国_7_4@26
      - 🇯🇵_JP_日本_3_4@27
      - 🇫🇷_FR_法国_1_4@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
      - 🇸🇬_SG_新加坡_3_4@32
      - 🇫🇷_FR_法国_2_4@33
      - 🇰🇷_KR_韩国_3_4@34
      - 🇰🇷_KR_韩国_4_4@35
      - 🇺🇸_US_美国_8_4@36
      - 🇺🇸_US_美国_9_4@37
      - 🇭🇰_HK_香港_4@38
      - 🇻🇳_VN_越南_4@39
      - 🇩🇪_DE_德国_4@40
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
      - 🇺🇸_US_美国_10_4@42
      - 🇺🇸_US_美国_1_5@0
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
      - 🇸🇬_SG_新加坡_1_5@3
      - 🇸🇬_SG_新加坡_2_5@4
      - 🇸🇬_SG_新加坡_3_5@5
      - 🇯🇵_JP_日本_1_5@8
      - 🇯🇵_JP_日本_2_5@9
      - 🇯🇵_JP_日本_3_5@10
      - 🇯🇵_JP_日本_4_5@11
      - 🇯🇵_JP_日本_5_5@12
      - 🇯🇵_JP_日本_6_5@13
      - 🇸🇬_SG_新加坡_4_5@14
      - 🇸🇬_SG_新加坡_5_5@15
      - 🇸🇬_SG_新加坡_6_5@16
      - 🇺🇸_US_美国_2_5@17
      - 🇸🇬_SG_新加坡_7_5@19
      - 🇸🇬_SG_新加坡_8_5@20
      - 🇸🇬_SG_新加坡_9_5@21
      - 🇺🇸_US_美国_3_5@22
      - 🇱🇻_LV_拉脱维亚_5@24
      - 🇸🇬_SG_新加坡_10_5@25
      - 🇰🇷_KR_韩国_1_5@26
      - 🇰🇷_KR_韩国_2_5@27
      - 🇯🇵_JP_日本_8_5@28
      - 🇹🇼_TW_台湾_2_5@30
      - 🇺🇸_US_美国_4_5@31
      - 🇺🇸_US_美国_5_5@32
      - 🇯🇵_JP_日本_9_5@34
      - 🇷🇺_RU_俄罗斯联邦_2_5@35
      - 🇸🇬_SG_新加坡_11_5@36
      - 🇸🇬_SG_新加坡_12_5@37
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
      - 🇸🇬_SG_新加坡_2_6@11
      - 🇸🇬_SG_新加坡_3_6@13
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
      - 🇯🇵_JP_日本_1_6@15
      - 🇭🇰_HK_香港_6@16
      - 🇯🇵_JP_日本_2_6@17
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
      - 🇺🇸_US_美国_1_6@19
      - 🇺🇸_US_美国_2_6@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
      - 🇸🇬_SG_新加坡_4_6@23
      - 🇸🇬_SG_新加坡_5_6@24
      - 🇯🇵_JP_日本_4_6@25
      - 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
      - 🇺🇸_US_美国_4_6@28
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
      - 🇺🇸_US_美国_5_6@31
      - 🇬🇧_GB_英国_6@32
      - 🇺🇸_US_美国_6_6@34
      - 🇻🇳_VN_越南_6@35
      - 🇺🇸_US_美国_2_7@6
      - 🇺🇸_US_美国_3_7@7
      - 🇺🇸_US_美国_4_7@14
      - 🇺🇸_US_美国_5_7@23
      - 🇯🇵_JP_日本_7@33
      - 🇺🇸_US_美国_7_7@35
      - 🇮🇳_IN_印度_8@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国_1_8@6
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
      - 🇺🇸_US_美国_3_8@11
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
      - 🇧🇷_BR_巴西_8@15
      - 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
      - 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
      - 🇨🇦_CA_加拿大_8@20
      - 🇺🇸_US_美国_5_8@21
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇺🇸_US_美国_6_8@25
      - 🇺🇸_US_美国_7_8@27
      - 🇺🇸_US_美国_8_8@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇺🇸_US_美国_9_8@31
      - 🇯🇵_JP_日本_3_8@32
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
      - 🇸🇬_SG_新加坡_2_8@34
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
      - 🇰🇷_KR_韩国_9@1
      - 🇩🇪_DE_德国_9@12
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇺🇸_US_美国_1_9@21
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
      - 🇺🇸_US_美国_2_9@33
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
      - 🇯🇵_JP_日本_9@35
      - 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
      - 🇸🇬_SG_新加坡_10@25
      - 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
      - 🇫🇷_FR_法国_10@32
      - 🇯🇵_JP_日本_11@0
      - 🇩🇪_DE_德国_11@1
      - 🇺🇸_US_美国_1_11@2
      - 🇸🇬_SG_新加坡_11@3
      - 🇺🇸_US_美国_2_11@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
      - 🇺🇸_US_美国_1_12@1
      - 🇺🇸_US_美国_2_12@13
      - 🇺🇸_US_美国_4_12@25
      - 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
      - 🇺🇸_US_美国_5_12@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
      - 🇺🇸_US_美国_1_13@21
      - 🇹🇼_TW_台湾_1_13@24
      - 🇸🇬_SG_新加坡_13@25
      - 🇺🇸_US_美国_2_13@26
      - 🇹🇼_TW_台湾_2_13@27
      - 🇮🇱_IL_以色列_13@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇱🇻_LV_拉脱维亚_13@32
      - 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
      - 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
      - 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
      - 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
      - 🇰🇿_KZ_哈萨克斯坦_14@24
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国_3_14@27
      - 🇹🇼_TW_台湾_1_14@28
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
      - 🇱🇻_LV_拉脱维亚_14@31
      - 🇺🇸_US_美国_1_15@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇸🇬_SG_新加坡_1_15@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
      - 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
      - 🇺🇸_US_美国_2_15@23
      - 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
      - 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
      - 🇨🇳_CN_中国_15@35
      - 🇺🇸_US_美国_1_16@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国_2_16@16
      - 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇺🇸_US_美国_3_16@22
      - 🇺🇸_US_美国_4_16@23
      - 🇫🇷_FR_法国_16@24
      - 🇨🇷_CR_哥斯达黎加_16@25
      - 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
      - 🇺🇸_US_美国_5_16@27
      - 🇺🇸_US_美国_6_16@28
      - 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
      - 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
      - 🇹🇼_TW_台湾_16@32
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
      - 🇺🇸_US_美国_1_17@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇩🇪_DE_德国_17@25
      - 🇺🇸_US_美国_3_17@27
      - 🇺🇸_US_美国_4_17@29
      - 🇺🇸_US_美国_5_17@32
      - 🇫🇷_FR_法国_17@37
      - 🇨🇳_CN_中国_17@38
      - 🇮🇪_IE_爱尔兰_17@40
      - 🇺🇸_US_美国_1_18@0
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇺🇸_US_美国_2_18@7
      - 🇺🇸_US_美国_3_18@8
      - 🇺🇸_US_美国_4_18@13
      - 🇺🇸_US_美国_5_18@18
      - 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
      - 🇺🇸_US_美国_7_18@21
      - 🇸🇬_SG_新加坡_18@22
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
      - 🇺🇸_US_美国_1_19@1
      - 🇸🇬_SG_新加坡_19@19
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
      - 🇺🇸_US_美国_2_19@28
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
      - 🇺🇸_US_美国_3_19@32
      - 🇨🇳_CN_中国_19@33
      - 🇺🇸_US_美国_1_20@0
      - 🇫🇷_FR_法国_20@2
      - 🇺🇸_US_美国_2_20@3
      - 🇰🇷_KR_韩国_20@4
      - 🇹🇼_TW_台湾_1_20@5
      - 🇷🇺_RU_俄罗斯联邦_20@7
      - 🇺🇸_US_美国_3_20@8
      - 🇺🇸_US_美国_4_20@9
      - 🇺🇸_US_美国_5_20@10
      - 🇺🇸_US_美国_6_20@11
      - 🇺🇸_US_美国_7_20@16
      - 🇮🇩_ID_印度尼西亚_20@17
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
      - 🇸🇬_SG_新加坡_2_20@21
      - 🇨🇳_CN_中国_20@22
      - 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
      - 🇰🇷_KR_韩国_1_21@2
      - 🇺🇸_US_美国_1_21@3
      - 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
      - 🇰🇷_KR_韩国_4_21@8
      - 🇺🇸_US_美国_3_21@10
      - 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
      - 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
      - 🇨🇳_CN_中国_2_21@13
      - 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
      - 🇺🇸_US_美国_4_21@15
      - 🇨🇳_CN_中国_5_21@21
      - 🇨🇦_CA_加拿大_22@1
      - 🇰🇷_KR_韩国_2_22@4
      - 🇰🇷_KR_韩国_4_22@6
      - 🇺🇸_US_美国_2_22@9
      - 🇺🇸_US_美国_3_22@10
      - 🇰🇷_KR_韩国_6_22@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
      - 🇯🇵_JP_日本_1_22@14
      - 🇺🇸_US_美国_4_22@17
      - 🇺🇸_US_美国_5_22@18
      - 🇭🇰_HK_香港_22@19
      - 🇺🇸_US_美国_6_22@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
      - 🇮🇳_IN_印度_22@25
      - 🇻🇳_VN_越南_22@26
      - 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
      - 🇯🇵_JP_日本_23@1
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
      - 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
      - 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
      - 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
      - 🇨🇳_CN_中国_2_23@30
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
      - 🇺🇸_US_美国_1_24@1
      - 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
      - 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
      - 🇩🇪_DE_德国_24@4
      - 🇰🇷_KR_韩国_1_24@5
      - 🇷🇺_RU_俄罗斯联邦_24@6
      - 🇺🇸_US_美国_2_24@7
      - 🇺🇸_US_美国_3_24@8
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
      - 🇰🇷_KR_韩国_2_24@10
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
      - 🇭🇰_HK_香港_1_24@12
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇸🇬_SG_新加坡_1_24@14
      - 🇸🇬_SG_新加坡_2_24@17
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
      - 🇭🇰_HK_香港_2_24@19
      - 🇳🇱_NL_荷兰_24@20
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
      - 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
      - 🇸🇬_SG_新加坡_3_24@26
      - 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
      - 🇺🇸_US_美国_6_24@30
      - 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
      - 🇺🇸_US_美国_7_24@32
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
      - 🇨🇳_CN_中国_4_24@34
  - name: 📽Netflix
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🤖OpenAI
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🔍Bing
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🚅Google
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🛀Bilibiliintl
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🦤Twitter
    type: select
    proxies:
      - 🚀URL-TEST
      - 🎛LOAD-BALANCE
      - 🕹Fallback
      - 👆SELECT
      - DIRECT
      - 🇭🇰香港
      - 🐳台湾
      - 🇯🇵日本
      - 🇸🇬新加坡
      - 🇰🇷韩国
      - 🇺🇸美国
      - 👨‍🎤其他
  - name: 🚦AD
    type: select
    proxies:
      - REJECT
      - DIRECT
      - 🥷PROXY
  - name: 🇭🇰香港
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_0@0
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_0@3
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_0@6
      - 🇭🇰_HK_香港_1@1
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_1@6
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_1@14
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_1@25
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_1@28
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2@3
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_3@32
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_3@41
      - 🇭🇰_HK_香港_4@38
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4@41
      - 🇭🇰_HK_香港_6@16
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6@22
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_1_11@16
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_2_11@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_11@20
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_11@23
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_12@29
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_12@34
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_12@37
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_16@33
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_18@25
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_5_18@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_3_19@25
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_4_19@27
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_6_19@31
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_20@19
      - 🇮🇱_IL_以色列->🇭🇰_HK_香港_21@11
      - 🇭🇰_HK_香港_22@19
      - 🇨🇳_CN_中国->🇭🇰_HK_香港_23@31
      - 🇭🇰_HK_香港_1_24@12
      - 🇭🇰_HK_香港_2_24@19
  - name: 🐳台湾
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_0@1
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_1@5
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_1@26
      - 🇹🇼_TW_台湾_1@43
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2@8
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_3@36
      - 🇹🇼_TW_台湾_4@1
      - 🇹🇼_TW_台湾_2_5@30
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_6@14
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_9@0
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_11@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_11@31
      - 🇹🇼_TW_台湾_1_13@24
      - 🇹🇼_TW_台湾_2_13@27
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_14@22
      - 🇹🇼_TW_台湾_1_14@28
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_3_15@32
      - 🇹🇼_TW_台湾_16@32
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_18@29
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_2_18@32
      - 🇹🇼_TW_台湾_1_20@5
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_21@1
      - 🇨🇳_CN_中国->🇹🇼_TW_台湾_1_23@5
  - name: 🇯🇵日本
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_0@2
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_0@15
      - 🇧🇿_BZ_伯利兹->🇯🇵_JP_日本_1@2
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_1@29
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_1@34
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_1@40
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇯🇵_JP_日本_1@45
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_1_2@4
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_2@6
      - 🇯🇵_JP_日本_2_2@11
      - 🇯🇵_JP_日本_3_2@25
      - 🇯🇵_JP_日本_1_4@9
      - 🇯🇵_JP_日本_2_4@20
      - 🇯🇵_JP_日本_3_4@27
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4@30
      - 🇯🇵_JP_日本_1_5@8
      - 🇯🇵_JP_日本_2_5@9
      - 🇯🇵_JP_日本_3_5@10
      - 🇯🇵_JP_日本_4_5@11
      - 🇯🇵_JP_日本_5_5@12
      - 🇯🇵_JP_日本_6_5@13
      - 🇯🇵_JP_日本_8_5@28
      - 🇯🇵_JP_日本_9_5@34
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_1_6@1
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_2_6@3
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_3_6@5
      - 🇯🇵_JP_日本_1_6@15
      - 🇯🇵_JP_日本_2_6@17
      - 🇯🇵_JP_日本_4_6@25
      - 🇯🇵_JP_日本_7@33
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇯🇵_JP_日本_3_8@32
      - 🇯🇵_JP_日本_9@35
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_10@9
      - 🇯🇵_JP_日本_11@0
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_11@21
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_11@28
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_4_15@31
      - 🇻🇬_VG_英属维尔京群岛->🇯🇵_JP_日本_16@31
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_2_18@26
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_3_18@36
      - 🇮🇱_IL_以色列->🇯🇵_JP_日本_20@20
      - 🇯🇵_JP_日本_1_22@14
      - 🇯🇵_JP_日本_23@1
      - 🇨🇳_CN_中国->🇯🇵_JP_日本_23@29
      - 🇷🇺_RU_俄罗斯联邦->🇯🇵_JP_日本_24@2
  - name: 🇸🇬新加坡
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_0@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_0@22
      - 🇸🇬_SG_新加坡_1_0@28
      - 🇸🇬_SG_新加坡_2_0@29
      - 🇸🇬_SG_新加坡_3_0@33
      - 🇧🇿_BZ_伯利兹->🇸🇬_SG_新加坡_1@4
      - 🇸🇬_SG_新加坡_1@10
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_1@15
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_1@35
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_1@37
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇸🇬_SG_新加坡_1_2@1
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_2@2
      - 🇸🇬_SG_新加坡_2_2@9
      - 🇸🇬_SG_新加坡_3_2@10
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_2@15
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_2@33
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_5_3@39
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_1_4@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇸🇬_SG_新加坡_1_4@21
      - 🇸🇬_SG_新加坡_2_4@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_4@23
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_4@24
      - 🇸🇬_SG_新加坡_3_4@32
      - 🇸🇬_SG_新加坡_1_5@3
      - 🇸🇬_SG_新加坡_2_5@4
      - 🇸🇬_SG_新加坡_3_5@5
      - 🇸🇬_SG_新加坡_4_5@14
      - 🇸🇬_SG_新加坡_5_5@15
      - 🇸🇬_SG_新加坡_6_5@16
      - 🇸🇬_SG_新加坡_7_5@19
      - 🇸🇬_SG_新加坡_8_5@20
      - 🇸🇬_SG_新加坡_9_5@21
      - 🇸🇬_SG_新加坡_10_5@25
      - 🇸🇬_SG_新加坡_11_5@36
      - 🇸🇬_SG_新加坡_12_5@37
      - 🇸🇬_SG_新加坡_2_6@11
      - 🇸🇬_SG_新加坡_3_6@13
      - 🇸🇬_SG_新加坡_4_6@23
      - 🇸🇬_SG_新加坡_5_6@24
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇸🇬_SG_新加坡_2_8@34
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_4_9@34
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_2_10@20
      - 🇸🇬_SG_新加坡_10@25
      - 🇸🇬_SG_新加坡_11@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_11@24
      - 🇸🇬_SG_新加坡_13@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇺🇦_UA_乌克兰->🇸🇬_SG_新加坡_13@34
      - 🇨🇷_CR_哥斯达黎加->🇸🇬_SG_新加坡_14@15
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇸🇬_SG_新加坡_1_15@3
      - 🇳🇱_NL_荷兰->🇸🇬_SG_新加坡_15@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇨🇦_CA_加拿大->🇸🇬_SG_新加坡_16@30
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇸🇬_SG_新加坡_18@22
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_3_18@34
      - 🇸🇬_SG_新加坡_19@19
      - 🇸🇬_SG_新加坡_2_20@21
      - 🇨🇳_CN_中国->🇸🇬_SG_新加坡_22@23
      - 🇸🇬_SG_新加坡->🇷🇺_RU_俄罗斯联邦_24@3
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇸🇬_SG_新加坡_1_24@14
      - 🇸🇬_SG_新加坡_2_24@17
      - 🇸🇬_SG_新加坡_3_24@26
  - name: 🇰🇷韩国
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_1_0@18
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2_0@31
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_2@34
      - 🇰🇷_KR_韩国_3@46
      - 🇰🇷_KR_韩国_2_4@25
      - 🇰🇷_KR_韩国_3_4@34
      - 🇰🇷_KR_韩国_4_4@35
      - 🇰🇷_KR_韩国_1_5@26
      - 🇰🇷_KR_韩国_2_5@27
      - 🇰🇷_KR_韩国_9@1
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_11@27
      - 🇬🇧_GB_英国->🇰🇷_KR_韩国_15@25
      - 🇰🇷_KR_韩国_20@4
      - 🇰🇷_KR_韩国_1_21@2
      - 🇰🇷_KR_韩国_4_21@8
      - 🇰🇷_KR_韩国_2_22@4
      - 🇰🇷_KR_韩国_4_22@6
      - 🇰🇷_KR_韩国_6_22@11
      - 🇰🇷_KR_韩国_1_24@5
      - 🇨🇳_CN_中国->🇰🇷_KR_韩国_24@9
      - 🇰🇷_KR_韩国_2_24@10
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
  - name: 🇺🇸美国
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇺🇸_US_美国_1_0@7
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_0@8
      - 🇺🇸_US_美国_2_0@9
      - 🇨🇳_CN_中国->🇺🇸_US_美国_0@12
      - 🇺🇸_US_美国_3_0@25
      - 🇺🇸_US_美国_4_0@26
      - 🇺🇸_US_美国->🇬🇧_GB_英国_0@30
      - 🇺🇸_US_美国->🇬🇧_GB_英国_1_1@11
      - 🇺🇸_US_美国_1_1@12
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_1@18
      - 🇺🇸_US_美国_2_1@19
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_1@31
      - 🇺🇸_US_美国_3_1@32
      - 🇺🇸_US_美国_4_1@33
      - 🇺🇸_US_美国_5_1@38
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_1@39
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1@42
      - 🇺🇸_US_美国->🇯🇵_JP_日本_1@44
      - 🇦🇲_AM_亚美尼亚->🇨🇱_CL_智利_2@12
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2@14
      - 🇺🇸_US_美国_2_2@16
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_2@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_2@18
      - 🇺🇸_US_美国_3_2@21
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_3_2@22
      - 🇺🇸_US_美国_4_2@23
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_2@24
      - 🇺🇸_US_美国->🇫🇮_FI_芬兰_2@26
      - 🇺🇸_US_美国->🇩🇪_DE_德国_2@27
      - 🇺🇸_US_美国_5_2@28
      - 🇺🇸_US_美国->🇬🇧_GB_英国_3_2@35
      - 🇺🇸_US_美国_6_2@37
      - 🇺🇸_US_美国_7_2@39
      - 🇺🇸_US_美国_8_2@41
      - 🇺🇸_US_美国_9_2@42
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_3@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_3@4
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_3@16
      - 🇺🇸_US_美国_2_3@25
      - 🇺🇸_US_美国_3_3@26
      - 🇺🇸_US_美国_4_3@28
      - 🇹🇼_TW_台湾->🇺🇸_US_美国_3@30
      - 🇺🇸_US_美国_5_3@31
      - 🇨🇳_CN_中国->🇺🇸_US_美国_6_3@37
      - 🇨🇳_CN_中国->🇺🇸_US_美国_7_3@40
      - 🇨🇳_CN_中国->🇺🇸_US_美国_8_3@44
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_4@3
      - 🇺🇸_US_美国_2_4@5
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_4@6
      - 🇺🇸_US_美国_4_4@12
      - 🇺🇸_US_美国_5_4@18
      - 🇺🇸_US_美国_6_4@19
      - 🇺🇸_US_美国_7_4@26
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4@29
      - 🇺🇸_US_美国_8_4@36
      - 🇺🇸_US_美国_9_4@37
      - 🇺🇸_US_美国_10_4@42
      - 🇺🇸_US_美国_1_5@0
      - 🇮🇱_IL_以色列->🇺🇸_US_美国_1_5@1
      - 🇺🇸_US_美国_2_5@17
      - 🇺🇸_US_美国_3_5@22
      - 🇺🇸_US_美国_4_5@31
      - 🇺🇸_US_美国_5_5@32
      - 🇺🇸_US_美国_1_6@19
      - 🇺🇸_US_美国_2_6@21
      - 🇺🇸_US_美国->🇩🇪_DE_德国_6@27
      - 🇺🇸_US_美国_4_6@28
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_6@30
      - 🇺🇸_US_美国_5_6@31
      - 🇺🇸_US_美国_6_6@34
      - 🇺🇸_US_美国_2_7@6
      - 🇺🇸_US_美国_3_7@7
      - 🇺🇸_US_美国_4_7@14
      - 🇺🇸_US_美国_5_7@23
      - 🇺🇸_US_美国_7_7@35
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_8@5
      - 🇺🇸_US_美国_1_8@6
      - 🇺🇸_US_美国_3_8@11
      - 🇺🇸_US_美国_5_8@21
      - 🇺🇸_US_美国->🇯🇵_JP_日本_8@23
      - 🇺🇸_US_美国_6_8@25
      - 🇺🇸_US_美国_7_8@27
      - 🇺🇸_US_美国_8_8@29
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_8@30
      - 🇺🇸_US_美国_9_8@31
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_9@17
      - 🇺🇸_US_美国_1_9@21
      - 🇺🇸_US_美国_2_9@33
      - 🇨🇦_CA_加拿大->🇺🇸_US_美国_10@0
      - 🇬🇧_GB_英国->🇺🇸_US_美国_10@31
      - 🇺🇸_US_美国_1_11@2
      - 🇺🇸_US_美国_2_11@9
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_11@25
      - 🇺🇸_US_美国_1_12@1
      - 🇺🇸_US_美国_2_12@13
      - 🇺🇸_US_美国_4_12@25
      - 🇺🇸_US_美国_5_12@27
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_12@31
      - 🇺🇸_US_美国_1_13@21
      - 🇺🇸_US_美国_2_13@26
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_13@31
      - 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_14@1
      - 🇺🇸_US_美国->🇨🇦_CA_加拿大_14@11
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_14@25
      - 🇺🇸_US_美国_3_14@27
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_14@30
      - 🇺🇸_US_美国_1_15@0
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_15@1
      - 🇺🇸_US_美国->🇧🇷_BR_巴西_15@16
      - 🇺🇸_US_美国_2_15@23
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_15@26
      - 🇦🇲_AM_亚美尼亚->🇳🇱_NL_荷兰_15@28
      - 🇺🇸_US_美国->🇳🇿_NZ_新西兰_15@34
      - 🇺🇸_US_美国_1_16@4
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_1_16@14
      - 🇺🇸_US_美国_2_16@16
      - 🇨🇾_CY_塞浦路斯->🇺🇸_US_美国_16@17
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_2_16@21
      - 🇺🇸_US_美国_3_16@22
      - 🇺🇸_US_美国_4_16@23
      - 🇺🇸_US_美国->🇮🇳_IN_印度_16@26
      - 🇺🇸_US_美国_5_16@27
      - 🇺🇸_US_美国_6_16@28
      - 🇺🇸_US_美国_1_17@10
      - 🇺🇸_US_美国->🇸🇬_SG_新加坡_17@12
      - 🇺🇸_US_美国_3_17@27
      - 🇺🇸_US_美国_4_17@29
      - 🇺🇸_US_美国_5_17@32
      - 🇺🇸_US_美国_1_18@0
      - 🇯🇵_JP_日本->🇺🇸_US_美国_18@5
      - 🇺🇸_US_美国_2_18@7
      - 🇺🇸_US_美国_3_18@8
      - 🇺🇸_US_美国_4_18@13
      - 🇺🇸_US_美国_5_18@18
      - 🇩🇪_DE_德国->🇺🇸_US_美国_18@20
      - 🇺🇸_US_美国_7_18@21
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_18@30
      - 🇺🇸_US_美国_1_19@1
      - 🇺🇸_US_美国_2_19@28
      - 🇺🇸_US_美国_3_19@32
      - 🇺🇸_US_美国_1_20@0
      - 🇺🇸_US_美国_2_20@3
      - 🇺🇸_US_美国_3_20@8
      - 🇺🇸_US_美国_4_20@9
      - 🇺🇸_US_美国_5_20@10
      - 🇺🇸_US_美国_6_20@11
      - 🇺🇸_US_美国_7_20@16
      - 🇨🇳_CN_中国->🇺🇸_US_美国_21@0
      - 🇺🇸_US_美国_1_21@3
      - 🇺🇸_US_美国->🇬🇧_GB_英国_21@5
      - 🇺🇸_US_美国_3_21@10
      - 🇺🇸_US_美国_4_21@15
      - 🇺🇸_US_美国_2_22@9
      - 🇺🇸_US_美国_3_22@10
      - 🇨🇳_CN_中国->🇺🇸_US_美国_22@13
      - 🇺🇸_US_美国_4_22@17
      - 🇺🇸_US_美国_5_22@18
      - 🇺🇸_US_美国_6_22@21
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_23@2
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_23@3
      - 🇨🇳_CN_中国->🇺🇸_US_美国_3_23@11
      - 🇨🇳_CN_中国->🇺🇸_US_美国_4_23@15
      - 🇨🇳_CN_中国->🇺🇸_US_美国_5_23@16
      - 🇺🇸_US_美国_1_24@1
      - 🇺🇸_US_美国_2_24@7
      - 🇺🇸_US_美国_3_24@8
      - 🇸🇬_SG_新加坡->🇺🇸_US_美国_24@13
      - 🇨🇳_CN_中国->🇺🇸_US_美国_1_24@18
      - 🇺🇸_US_美国->🇰🇷_KR_韩国_24@21
      - 🇳🇱_NL_荷兰->🇺🇸_US_美国_24@24
      - 🇰🇿_KZ_哈萨克斯坦->🇺🇸_US_美国_24@28
      - 🇺🇸_US_美国_6_24@30
      - 🇺🇸_US_美国->🇳🇱_NL_荷兰_24@31
      - 🇺🇸_US_美国_7_24@32
      - 🇨🇳_CN_中国->🇺🇸_US_美国_2_24@33
  - name: 👨‍🎤其他
    type: url-test
    url: http://www.google.com/generate_204
    interval: 300
    proxies:
      - REJECT
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_0@5
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_0@10
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_0@11
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_0@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_0@14
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_0@16
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_0@17
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_0@19
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_0@20
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_0@21
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_0@23
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_0@24
      - 🇫🇷_FR_法国_0@27
      - 🇬🇧_GB_英国->🇩🇪_DE_德国_0@32
      - 🇻🇳_VN_越南_1@0
      - 🇨🇳_CN_中国_1_1@3
      - 🇨🇷_CR_哥斯达黎加_1@8
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_1_1@9
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_1_1@13
      - 🇨🇳_CN_中国_2_1@16
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_1@21
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_1@22
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1@23
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_1@24
      - 🇨🇳_CN_中国->🇦🇷_AR_阿根廷_1@27
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_1@30
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_1@36
      - 🇨🇳_CN_中国->🇭🇺_HU_匈牙利_1@41
      - 🇻🇳_VN_越南_1_2@7
      - 🇻🇳_VN_越南_2_2@13
      - 🇩🇪_DE_德国_2@29
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2@30
      - 🇨🇳_CN_中国->🇧🇷_BR_巴西_2@31
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_2@32
      - 🇫🇷_FR_法国_2@36
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_2@38
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_2@40
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_2_3@33
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_3_3@34
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_3@38
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_3_3@42
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_3@43
      - 🇳🇱_NL_荷兰->🇧🇷_BR_巴西_3@45
      - 🇳🇱_NL_荷兰_4@2
      - 🇮🇱_IL_以色列_4@7
      - 🇷🇺_RU_俄罗斯联邦_4@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4@14
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_4@15
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_4@16
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_4@17
      - 🇫🇷_FR_法国_1_4@28
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_3_4@31
      - 🇫🇷_FR_法国_2_4@33
      - 🇻🇳_VN_越南_4@39
      - 🇩🇪_DE_德国_4@40
      - 🇱🇻_LV_拉脱维亚_5@24
      - 🇷🇺_RU_俄罗斯联邦_2_5@35
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_1_6@4
      - 🇮🇱_IL_以色列->🇳🇱_NL_荷兰_2_6@6
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_1_6@7
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_2_6@8
      - 🇮🇱_IL_以色列->🇬🇧_GB_英国_3_6@18
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_6@29
      - 🇬🇧_GB_英国_6@32
      - 🇻🇳_VN_越南_6@35
      - 🇮🇳_IN_印度_8@0
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_1_8@9
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_8@14
      - 🇧🇷_BR_巴西_8@15
      - 🇮🇱_IL_以色列->🇦🇺_AU_澳大利亚_8@18
      - 🇮🇱_IL_以色列->🇪🇪_EE_爱沙尼亚_8@19
      - 🇨🇦_CA_加拿大_8@20
      - 🇮🇱_IL_以色列->🇩🇪_DE_德国_2_8@33
      - 🇩🇪_DE_德国_9@12
      - 🇺🇦_UA_乌克兰->🇬🇧_GB_英国_2_9@31
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_2_10@7
      - 🇨🇳_CN_中国->🇵🇭_PH_菲律宾_10@17
      - 🇫🇷_FR_法国_10@32
      - 🇩🇪_DE_德国_11@1
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_11@15
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_11@17
      - 🇧🇿_BZ_伯利兹->🇺🇦_UA_乌克兰_12@26
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_12@33
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_12@36
      - 🇮🇱_IL_以色列_13@29
      - 🇱🇻_LV_拉脱维亚_13@32
      - 🇮🇷_IR_伊朗->🇹🇷_TR_土耳其_14@23
      - 🇰🇿_KZ_哈萨克斯坦_14@24
      - 🇱🇻_LV_拉脱维亚_14@31
      - 🇨🇳_CN_中国_15@35
      - 🇫🇷_FR_法国_16@24
      - 🇨🇷_CR_哥斯达黎加_16@25
      - 🇩🇪_DE_德国_17@25
      - 🇫🇷_FR_法国_17@37
      - 🇨🇳_CN_中国_17@38
      - 🇮🇪_IE_爱尔兰_17@40
      - 🇨🇳_CN_中国->🇹🇷_TR_土耳其_18@23
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_18@24
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_18@35
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_19@21
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_19@26
      - 🇨🇳_CN_中国->🇱🇺_LU_卢森堡_19@30
      - 🇨🇳_CN_中国_19@33
      - 🇫🇷_FR_法国_20@2
      - 🇷🇺_RU_俄罗斯联邦_20@7
      - 🇮🇩_ID_印度尼西亚_20@17
      - 🇨🇳_CN_中国_20@22
      - 🇺🇦_UA_乌克兰->🇩🇪_DE_德国_21@12
      - 🇨🇳_CN_中国_2_21@13
      - 🇨🇾_CY_塞浦路斯->🇬🇧_GB_英国_21@14
      - 🇨🇳_CN_中国_5_21@21
      - 🇨🇦_CA_加拿大_22@1
      - 🇮🇳_IN_印度_22@25
      - 🇻🇳_VN_越南_22@26
      - 🇨🇳_CN_中国->🇧🇬_BG_保加利亚_23@0
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_1_23@4
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_1_23@6
      - 🇨🇳_CN_中国->🇳🇱_NL_荷兰_23@7
      - 🇨🇳_CN_中国->🇦🇺_AU_澳大利亚_23@8
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_1_23@9
      - 🇨🇳_CN_中国->🇩🇪_DE_德国_23@10
      - 🇨🇳_CN_中国->🇷🇺_RU_俄罗斯联邦_23@12
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_2_23@13
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_3_23@17
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_4_23@18
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_5_23@19
      - 🇨🇳_CN_中国->🇨🇭_CH_瑞士_23@20
      - 🇨🇳_CN_中国->🇨🇦_CA_加拿大_23@22
      - 🇨🇳_CN_中国->🇮🇩_ID_印度尼西亚_23@23
      - 🇨🇳_CN_中国->🇮🇳_IN_印度_2_23@24
      - 🇨🇳_CN_中国->🇻🇳_VN_越南_23@25
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_6_23@26
      - 🇨🇳_CN_中国->🇵🇱_PL_波兰_2_23@27
      - 🇨🇳_CN_中国->🇺🇦_UA_乌克兰_23@28
      - 🇨🇳_CN_中国_2_23@30
      - 🇩🇪_DE_德国_24@4
      - 🇷🇺_RU_俄罗斯联邦_24@6
      - 🇨🇳_CN_中国->🇬🇧_GB_英国_24@11
      - 🇳🇱_NL_荷兰_24@20
      - 🇨🇳_CN_中国_4_24@34
rules:
  - DOMAIN-SUFFIX,jdev.tw,🥷PROXY
  - DOMAIN-SUFFIX,omnivore.app,🥷PROXY
  - RULE-SET,youtube,🎎YouTube
  - RULE-SET,netflix,📽Netflix
  - RULE-SET,openai,🤖OpenAI
  - RULE-SET,bing,🔍Bing
  - RULE-SET,bilibiliintl,🛀Bilibiliintl
  - RULE-SET,twitter,🦤Twitter
  - RULE-SET,github,🥷PROXY
  - RULE-SET,applications,DIRECT
  - DOMAIN,clash.razord.top,DIRECT
  - DOMAIN,yacd.haishan.me,DIRECT
  - RULE-SET,private,DIRECT
  - RULE-SET,reject,🚦AD
  - RULE-SET,icloud,DIRECT
  - RULE-SET,apple,DIRECT
  - RULE-SET,google,🚅Google
  - RULE-SET,googledrive,🚅Google
  - RULE-SET,googlesearch,🚅Google
  - RULE-SET,tld-not-cn,🥷PROXY
  - RULE-SET,gfw,🥷PROXY
  - RULE-SET,greatfire,🥷PROXY
  - RULE-SET,telegramcidr,🥷PROXY
  - RULE-SET,lancidr,DIRECT
  - RULE-SET,cncidr,DIRECT
  - GEOIP,,DIRECT
  - GEOIP,CN,DIRECT
  - RULE-SET,direct,DIRECT
  - RULE-SET,proxy,🥷PROXY
  - MATCH,👆SELECT
proxy-providers: {}
rule-providers:
  reject:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/reject.txt
    path: ./ruleset/reject.yaml
    interval: 86400
  icloud:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/icloud.txt
    path: ./ruleset/icloud.yaml
    interval: 86400
  apple:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/apple.txt
    path: ./ruleset/apple.yaml
    interval: 86400
  google:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Google/Google.yaml
    path: ./ruleset/google.yaml
    interval: 86400
  googledrive:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GoogleDrive/GoogleDrive.yaml
    path: ./ruleset/googledrive.yaml
    interval: 86400
  googlesearch:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GoogleSearch/GoogleSearch.yaml
    path: ./ruleset/googlesearch.yaml
    interval: 86400
  proxy:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/proxy.txt
    path: ./ruleset/proxy.yaml
    interval: 86400
  direct:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/direct.txt
    path: ./ruleset/direct.yaml
    interval: 86400
  private:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/private.txt
    path: ./ruleset/private.yaml
    interval: 86400
  gfw:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/gfw.txt
    path: ./ruleset/gfw.yaml
    interval: 86400
  greatfire:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/greatfire.txt
    path: ./ruleset/greatfire.yaml
    interval: 86400
  tld-not-cn:
    type: http
    behavior: domain
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/tld-not-cn.txt
    path: ./ruleset/tld-not-cn.yaml
    interval: 86400
  telegramcidr:
    type: http
    behavior: ipcidr
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/telegramcidr.txt
    path: ./ruleset/telegramcidr.yaml
    interval: 86400
  cncidr:
    type: http
    behavior: ipcidr
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/cncidr.txt
    path: ./ruleset/cncidr.yaml
    interval: 86400
  lancidr:
    type: http
    behavior: ipcidr
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/lancidr.txt
    path: ./ruleset/lancidr.yaml
    interval: 86400
  applications:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/Loyalsoldier/clash-rules/release/applications.txt
    path: ./ruleset/applications.yaml
    interval: 86400
  netflix:
    type: http
    behavior: classical
    url: https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/release/rule/Clash/Netflix/Netflix.yaml
    path: ./ruleset/netflix.yaml
    interval: 86400
  bing:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Bing/Bing.yaml
    path: ./ruleset/bing.yaml
    interval: 86400
  openai:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/OpenAI/OpenAI.yaml
    path: ./ruleset/openai.yaml
    interval: 86400
  youtube:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/YouTube/YouTube.yaml
    path: ./ruleset/youtube.yaml
    interval: 86400
  bilibiliintl:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/BiliBiliIntl/BiliBiliIntl.yaml
    path: ./ruleset/bilibiliintl.yaml
    interval: 86400
  twitter:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/Twitter/Twitter.yaml
    path: ./ruleset/twitter.yaml
    interval: 86400
  github:
    type: http
    behavior: classical
    url: https://raw.fastgit.org/blackmatrix7/ios_rule_script/master/rule/Clash/GitHub/GitHub.yaml
    path: ./ruleset/github.yaml
    interval: 86400
iczrac commented 11 months ago

Profile:

allow-lan: true

老友,这样会泄漏你的账号啊,赶紧重置一下机场连接吧! 你的问题很有可能是你修改的连接问题,具体的连接都到blackmatrix7老大的库里去找吧,每个都有对应的,这个给个bing的参考位置 ios_rule_script/rule/Clash/Bing at master · blackmatrix7/ios_rule_script