Code Monkey home page Code Monkey logo

mihomo's Introduction

mihomo

A simple python pydantic model (type hint and autocompletion support) for Honkai: Star Rail parsed data from the Mihomo API.

API url: https://api.mihomo.me/sr_info_parsed/{UID}?lang={LANG}

Installation

pip install -U git+https://github.com/KT-Yeh/mihomo.git

Usage

Basic

There are two parsed data formats:

If you don't want to use client.get_icon_url to get the image url everytime, you can use client.fetch_user(800333171, replace_icon_name_with_url=True) to get the parsed data with asset urls.

Example

import asyncio

from mihomo import Language, MihomoAPI
from mihomo.models import StarrailInfoParsed
from mihomo.models.v1 import StarrailInfoParsedV1

client = MihomoAPI(language=Language.EN)


async def v1():
    data: StarrailInfoParsedV1 = await client.fetch_user_v1(800333171)

    print(f"Name: {data.player.name}")
    print(f"Level: {data.player.level}")
    print(f"Signature: {data.player.signature}")
    print(f"Achievements: {data.player_details.achievements}")
    print(f"Characters count: {data.player_details.characters}")
    print(f"Profile picture url: {client.get_icon_url(data.player.icon)}")
    for character in data.characters:
        print("-----------")
        print(f"Name: {character.name}")
        print(f"Rarity: {character.rarity}")
        print(f"Level: {character.level}")
        print(f"Avatar url: {client.get_icon_url(character.icon)}")
        print(f"Preview url: {client.get_icon_url(character.preview)}")
        print(f"Portrait url: {client.get_icon_url(character.portrait)}")


async def v2():
    data: StarrailInfoParsed = await client.fetch_user(800333171, replace_icon_name_with_url=True)

    print(f"Name: {data.player.name}")
    print(f"Level: {data.player.level}")
    print(f"Signature: {data.player.signature}")
    print(f"Profile picture url: {data.player.avatar.icon}")
    for character in data.characters:
        print("-----------")
        print(f"Name: {character.name}")
        print(f"Rarity: {character.rarity}")
        print(f"Portrait url: {character.portrait}")

asyncio.run(v1())
asyncio.run(v2())

Tools

from mihomo import tools

Remove Duplicate Character

    data = await client.fetch_user(800333171)
    data = tools.remove_duplicate_character(data)

Merge Character Data

    old_data = await client.fetch_user(800333171)

    # Change characters in game and wait for the API to refresh
    # ...

    new_data = await client.fetch_user(800333171)
    data = tools.merge_character_data(new_data, old_data)

Data Persistence

Take pickle and json as an example

import pickle
import zlib
from mihomo import MihomoAPI, Language, StarrailInfoParsed

client = MihomoAPI(language=Language.EN)
data = await client.fetch_user(800333171)

# Save
pickle_data = zlib.compress(pickle.dumps(data))
print(len(pickle_data))
json_data = data.json(by_alias=True, ensure_ascii=False)
print(len(json_data))

# Load
data_from_pickle = pickle.loads(zlib.decompress(pickle_data))
data_from_json = StarrailInfoParsed.parse_raw(json_data)
print(type(data_from_pickle))
print(type(data_from_json))

mihomo's People

Contributors

github-actions[bot] avatar kt-yeh avatar seriaati avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

mihomo's Issues

dns-hijack无法截获系统dns

IMG_20220521_224846_062
如图,dns以明文方式直接和路由器交互,未经过clash core转为doh.
平台为Android12,kernel是4.19.157-perf+,clash版本是v1.11.1,私人DNS功能未开启。开启clash-core的方式是Clash for Magisk魔改版。

tun:
enable: false
device: Meta
stack: gvisor # system
dns-hijack:
- 'any:53'
auto-route: false
auto-detect-interface: false

最新的beta版,在OpenWRT上内核崩溃

2022-05-08 12:44:55 守护程序:检测到 Clash 内核崩溃,重启中...
gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/forwarder.go:94 +0x2b8
created by gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*Forwarder).HandlePacket
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/tcp.go:69 +0x148
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.withTCPHandler.func1.1(0x40005b8200)
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/tcp.go:88 +0x3c
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.setSocketOptions(0x40005b8200?, {0xad49c8, 0x4000ae4000})
gvisor.dev/[email protected]/pkg/tcpip/socketops.go:338 +0x3c
gvisor.dev/gvisor/pkg/tcpip.(*SocketOptions).SetKeepAlive(0x400034bbf0?, 0x0?)
gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/endpoint.go:1731 +0x30
gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*endpoint).OnKeepAliveSet(0x5ac?, 0x7?)
gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/connect.go:1331 +0x9c
gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*endpoint).resetKeepaliveTimer(0x4000ae4000, 0x1)
gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/timer.go:141 +0x2c
gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*timer).enable(0x4000ae42e0, 0x702ab4?)
goroutine 5728 [running]:
[signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0x71ee0c]
panic: runtime error: invalid memory address or nil pointer dereference

ruleset里不能用逻辑规则吗?

payload:

  • NOT,(OR,((SRC-IP-CIDR,x.x.x.x/xx),(SRC-IP-CIDR,x.x.x.x/xx),(SRC-IP-CIDR,x.x.x.x/xx)))

rule provider里类似这样写,配置文件里用ruleset调用,但是匹配不了。

规则同时包含AND和SRC-IP-CIDR时内核崩溃

  • 版本alpha-g21446ba

  • 规则如下:

- AND,((SRC-IP-CIDR,192.168.1.1/32),(NETWORK,UDP),(DST-PORT,10001-65535)),DIRECT

内核启动崩溃,报错日志如下:
github.com/Dreamacro/clash/main.go:105 +0x7cb main.main() github.com/Dreamacro/clash/hub/hub.go:31 +0x3d github.com/Dreamacro/clash/hub.Parse({0x0, 0x0, 0xdb3837?}) github.com/Dreamacro/clash/hub/executor/executor.go:54 github.com/Dreamacro/clash/hub/executor.Parse(...) github.com/Dreamacro/clash/hub/executor/executor.go:64 +0x3c github.com/Dreamacro/clash/hub/executor.ParseWithPath({0x7ffe22a66acc?, 0xc0000d3e48?}) github.com/Dreamacro/clash/hub/executor/executor.go:69 github.com/Dreamacro/clash/hub/executor.ParseWithBytes(...) github.com/Dreamacro/clash/config/config.go:230 +0x36 github.com/Dreamacro/clash/config.Parse({0xc0002c6000?, 0x1a?, 0x7f82a48295b8?}) github.com/Dreamacro/clash/config/config.go:334 +0x26d github.com/Dreamacro/clash/config.ParseRawConfig(0xc0000ee900) github.com/Dreamacro/clash/config/config.go:573 +0x78d github.com/Dreamacro/clash/config.parseRules(0xc0000ee900, 0xc57fe0?) github.com/Dreamacro/clash/rule/parser.go:49 +0x368 github.com/Dreamacro/clash/rule.ParseRule({0xc0000cb040?, 0xc000319ef0?}, {0xc0000cb810, 0x43}, {0xc0000cb089, 0x6}, {0x0?, 0x0, 0x0}) github.com/Dreamacro/clash/rule/logic/and.go:24 +0xc9 github.com/Dreamacro/clash/rule/logic.NewAND({0xc0000cb810, 0x43}, {0xc0000cb089, 0x6}) github.com/Dreamacro/clash/rule/logic/common.go:35 +0x24e github.com/Dreamacro/clash/rule/logic.parseRuleByPayload({0xc0000cb810, 0x43}, 0x1) github.com/Dreamacro/clash/rule/logic/common.go:71 +0x189 github.com/Dreamacro/clash/rule/logic.payloadToRule({0xc0000cb812?, 0xc000310e28?}) github.com/Dreamacro/clash/rule/logic/common.go:96 +0x3e7 github.com/Dreamacro/clash/rule/logic.parseRule({0xc0000cb812?, 0x10?}, {0xc0000cb81e, 0x10}, {0xc00037f030?, 0x0, 0x0}) github.com/Dreamacro/clash/rule/common/ipcidr.go:71 +0xff github.com/Dreamacro/clash/rule/common.NewIPCIDR({0xc0000cb81e?, 0x203000?}, {0x0, 0x0}, {0xc0000d3668, 0x3, 0x0?}) goroutine 1 [running]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x7b43ff] panic: runtime error: invalid memory address or nil pointer dereference

最新的Release用Tun会崩溃

panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xc0000005 code=0x0 addr=0x20 pc=0x88831b]
goroutine 124115 [running]:
github.com/Dreamacro/clash/adapter/inbound.NewSocket({0xc00140a2e8?, 0xc00018e780?, 0x4?}, {0x1d9cd7b10c0?, 0xc003649140}, 0xc)
github.com/Dreamacro/clash/adapter/inbound/socket.go:16 +0x5b
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.(*GVHandler).HandleTCP(0xc003997ef0, {0xe1a038, 0xc003649140})
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/handler.go:77 +0x21d
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.withTCPHandler.func1.1(0xc0006a8040)
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/tcp.go:61 +0x22c
created by gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*Forwarder).HandlePacket
gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/forwarder.go:94 +0x3b0

IPv6 后缀匹配支持

目标,支持如下配置方式

- SRC-IP-CIDR,::b1b/-64,DIRECT

运营商通常会分配一下 /56 的前缀地址,设备出口 IP 会不断的变化,造成无法使用前缀来进行准确的规则匹配

通常设备的 IPv6 地址后缀是固定的,https://ccie.lol/knowledge-base/ipv6-use-eui-64-convert-link-local-address/

所以可以根据后缀匹配,之前在上游提过一个 PR,不过没有合并 https://github.com/Dreamacro/clash/pull/1329

另外观察到现在地址匹配用了新的包 netip,之前的修改是基于旧实现改的

开启sniffer会连不上ssh

最新内核arm64 alpha 815a060 开启sniff后会连不上xshell和MobaXterm enable: false 后则正常 ssh服务器直接用ip(试了下用域名也是连接失败和提示嗅探失败) 开启sniff的时候会有个警告提示嗅探失败其他纯ip例如tg也有这样的提示(题外enable: false ssh正常连接)force 参数开关也是连不上 1.10不用clash dns服务很多ip和一些域名 alpha 815a060 基本都是域名可以抛弃clash内置dns的水平 就是连ssh失败目前感受

规则集中配置 geodata 格式的 Cloudflare 规则不生效,但单独在配置文件中写出来就生效

我启用了 geodata-mode,下载了 Loyalsoldier 的 geoip 和 geosite 文件,并在一个规则集中配置了:

payload:
  - GEOIP,cloudflare
  - GEOSITE,cloudflare
  - GEOIP,twitter

此规则集被设置为代理,且放在规则的第一条。

在查看 log 时,发现访问任意一个 Cloudflare 网站都不会被匹配到此规则集,而是会一路顺到兜底的 Match 规则:
[2022-05-18 00:30:01][INFO] [TCP] 127.0.0.1:53642(Google Chrome Helper) --> www.cloudflare.com:443 match Match using 未知[Vultr 首尔2 Xray]
但我访问 Twitter 网站,却会被正确地匹配到该规则集。

然后我将 Cloudflare 的规则从那个规则集中删除,并单独作为一个规则写在第一条:
- GEOIP,cloudflare,代理
再次访问 Cloudflare 网站,查看 log,此时发现 Cloudflare被匹配到了这条独立规则,不再匹配兜底规则:
[2022-05-18 00:30:01][INFO] [TCP] 127.0.0.1:53642(Google Chrome Helper) --> www.cloudflare.com:443 match GeoIP(cloudflare) using 代理[Vultr 首尔2 Xray]

这一情况在 geosite:cloudflare 和 geoip:cloudflare 这两个类别中都发生了。且当作独立规则出现时,两个规则都可以生效,说明不是本地的 geodata 文件不支持 Cloudflare 类别,而是规则集的问题。同时,同一规则集中的 geoip:twitter 可以生效,也印证了这个问题。

这是因为Rule-Set的机制就如此吗?还是什么原因?

PASS规则

请问PASS规则该怎么写啊?百度和google都没搜到
2022-05-05_195848

退出 ClashMeta 不会清除 iptables

ctrl + c 退出,会清除 iptables ,
直接关闭终端窗口,不会清除。

systemctl stop clash-meta 会清除
systemctl disable --now clash-meta 不会清除

使用DOQ时若通过代理组则超时

换成DOH则不会,版本是 Clash.Meta-windows-amd64v3-v1.11.0

log如下

[2022-05-16 00:44:27][DEBUG] opening session to dns.adguard.com:784
[2022-05-16 00:44:27][INFO] [TCP] 198.18.0.1:62176(firefox.exe) --> clash.metacubex.one:80 match Match using Final[🇭🇰 Hong Kong 09]
[2022-05-16 00:44:30][DEBUG] [Process] heartbeat.dm.origin.com from process \Device\HarddiskVolume2\Program Files (x86)\Origin\OriginWebHelperService.exe
[2022-05-16 00:44:31][DEBUG] [Process] 198.18.255.255 from process \Device\HarddiskVolume2\Program Files\LGHUB\lghub_agent.exe
[2022-05-16 00:44:35][DEBUG] opening session to dns.adguard.com:784
[2022-05-16 00:44:35][DEBUG] [Process] heartbeat.dm.origin.com from process \Device\HarddiskVolume2\Program Files (x86)\Origin\OriginWebHelperService.exe
[2022-05-16 00:44:36][DEBUG] [Process] 198.18.255.255 from process \Device\HarddiskVolume2\Program Files\LGHUB\lghub_agent.exe
[2022-05-16 00:44:39][DEBUG] [Process] 192.168.0.86 from process \Device\HarddiskVolume2\Users\Koko\AppData\Local\Programs\Microsoft VS Code\Code.exe
[2022-05-16 00:44:39][DEBUG] [Process] 198.18.255.255 from process \Device\HarddiskVolume2\Program Files\LGHUB\lghub_agent.exe
[2022-05-16 00:44:40][DEBUG] [Process] heartbeat.dm.origin.com from process \Device\HarddiskVolume2\Program Files (x86)\Origin\OriginWebHelperService.exe
[2022-05-16 00:44:41][DEBUG] [Process] 198.18.255.255 from process \Device\HarddiskVolume2\Program Files\LGHUB\lghub_agent.exe
[2022-05-16 00:44:42][DEBUG] [TUN] hijack dns udp: 198.18.0.2:53
[2022-05-16 00:44:42][DEBUG] [TUN] hijack dns udp: 198.18.0.2:53
[2022-05-16 00:44:42][DEBUG] [Process] ctldl.windowsupdate.com from process \Device\HarddiskVolume2\Windows\System32\svchost.exe
[2022-05-16 00:44:42][DEBUG] [Process] 198.18.255.255 from process \Device\HarddiskVolume2\Program Files\LGHUB\lghub_agent.exe
[2022-05-16 00:44:43][DEBUG] opening session to dns.adguard.com:784
[2022-05-16 00:44:43][DEBUG] [DNS] resolve play.google.com error: all DNS requests failed, first error: failed to open new stream to dns.adguard.com:784

PASS 这样使用是否正确

wiki的example里面找不到范例 不知是不是这样设计的

proxy-groups:
  - name: manual
    type: select
    proxies:
      - PASS
      - DIRECT
      - Proxies


rules:
  - SRC-IP-CIDR,192.168.1.99/32,manual

版本号问题

Screenshot_2022-06-08-06-36-53-131_com microsoft emmx

Screenshot_2022-06-08-06-37-02-333_com microsoft emmx

以上三个版本究竟哪个最新?建议更改版本命名规则,便于分清版本顺序。
此外,r2s的404大佬用的是哪里的版本?版本号为什么与此页面上的不同?

README中systemctl service文件权限给得不足?

我之前是root启动的,换成用systemctl加普通用户启动后,什么地址都连不上,
看到

connect error: dial tcp4: lookup invalid IP: no such host
...
listen udp :0: operation not permitted

等错误

后来试着把 /etc/systemd/system/Clash-Meta.service 中两行替换一下,增加权限就完全正常了

CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE

之前只有

CapabilityBoundingSet=cap_net_admin
AmbientCapabilities=cap_net_admin

这两个权限。

能否更新一下README.MD(顺便把dashboard的地址也更新了)

请问下自定义嗅探要怎么设置

openclash用了meta内核ps5的nat检测一直失败 用的是混合模式 之前不用meta内核没有这个问题 请问下要怎么设置自定义嗅探让ps5nat能正常

vless+h2好像不支持

我看手册里面只有vless+tcp、vless+ws
好像没有vless+h2,vless+kcp的是不是还没支持?
谢谢

代理端口无法转发局域网流量

代理端口无法转发局域网流量

curl --socks5 192.168.100.1:1090 http://192.168.100.2 -U user:pwd -I -v 
*   Trying 192.168.100.1:1090...
* SOCKS5 connect to IPv4 192.168.100.2:80 (locally resolved)
* SOCKS5 request granted.
* Connected to 192.168.100.1 (192.168.100.1) port 1090 (#0)
> HEAD / HTTP/1.1
> Host: 192.168.100.2
> User-Agent: curl/7.74.0
> Accept: */*
> 
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer

clash日志

[2022-04-07 17:32:23][WARNING] [TCP] dial DIRECT (match IPCIDR/192.168.100.0/24) to 192.168.100.2:80 error: dial tcp4 192.168.100.2:80: i/o timeout

版本

Clash Meta v1.10.0 linux arm64 with go1.18 Sat Apr  2 13:56:18 UTC 2022
Linux RT-AX86U-A908 4.1.52 #2 SMP PREEMPT Sun Mar 27 02:44:22 CST 2022 aarch64 ASUSWRT-Merlin-KoolShare

1.09更新到1.10后无法连接

配置文件在1.09可用,只更新了主程序到1.10,更新后就无法连接了。是哪里出了问题?更新程序后需要修改配置文件吗?
config:

# Yaml : config.yaml
external-controller: 127.0.0.1:9090
mixed-port: 1080
allow-lan: false
mode: Rule
# info / warning / error / debug / silent
log-level: debug
# RESTful API for clash
dns:
  enable: true
  ipv6: false
  listen: :53
  enhanced-mode: fake-ip #redir-host #
  nameserver:
    - https://223.5.5.5/dns-query
    - https://doh.pub/dns-query
  fallback:
    - 'https://cloudflare-dns.com/dns-query#PROXY'
    - 'https://dns.google/dns-query#PROXY'
    - 'tls://dns.google:853#PROXY'
  fake-ip-filter:
    - "dns.msftncsi.com"
    - "www.msftconnecttest.com"
    - "www.msftncsi.com"
  fallback-filter:
#    geoip: cn
    geosite:
      - geolocation-!cn  # `geosite` filter only use fallback server to resolve ip, prevent DNS leaks to unsafe DNS providers.
    domain:
#      - +.example.com
    ipcidr:
    #   - 0.0.0.0/32
tun:
  enable: true
  stack: gvisor #system #
  dns-hijack:
    - 198.18.0.2:53
  auto-route: true # auto set global route
  auto-detect-interface: true # conflict with interface-name

proxies:
      ---------
proxy-groups:
    - name: "PROXY"
      type: select
      proxies:
      ---------
    - name: "YouTube"
      type: select
      proxies:
      ---------   
    - name: "Final"
      type: select
      proxies:
        - "PROXY"

rule-providers:
  tencent:
    type: http
    behavior: ipcidr
    url: "*"
    path: ./ruleset/tencent.yaml
    interval: 86400
  alibaba:
    type: http
    behavior: ipcidr
    url: "*"
    path: ./ruleset/alibaba.yaml
    interval: 86400
  youtube:
    type: http
    behavior: classical
    url: "*"
    path: ./ruleset/youtube.yaml
    interval: 86400
    
rules:
    - PROCESS-NAME,v2ray.exe,DIRECT
    - PROCESS-NAME,ss-local,DIRECT
    - PROCESS-NAME,privoxy,DIRECT
    - PROCESS-NAME,v2rayN.exe,DIRECT
    - PROCESS-NAME,wvray.exe,DIRECT
    - DOMAIN-SUFFIX,google.com,PROXY
    - GEOSITE,private,DIRECT,no-resolve
    - GEOIP,private,DIRECT,no-resolve
    - GEOSITE,category-ads-all,REJECT
    - RULE-SET,tencent,DIRECT
    - RULE-SET,alibaba,DIRECT
    - RULE-SET,youtube,YouTube
    - DOMAIN-SUFFIX,cn,DIRECT
    - GEOSITE,icloud@cn,DIRECT
    - GEOSITE,apple@cn,DIRECT
    - GEOSITE,apple-cn,DIRECT
    - GEOSITE,microsoft@cn,DIRECT
    - GEOSITE,category-games@cn,DIRECT
    - GEOSITE,geolocation-cn,DIRECT
    - GEOIP,cn,DIRECT
    - MATCH,Final

log:

time="2022-04-07T11:23:46+08:00" level=info msg="Start initial configuration in progress"
time="2022-04-07T11:23:46+08:00" level=warning msg="Auto detect interface: WLAN"
time="2022-04-07T11:23:46+08:00" level=info msg="Geodata Loader mode: memconservative"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule private => DIRECT, records: 14"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule category-ads-all => REJECT, records: 55156"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule icloud@cn => DIRECT, records: 6"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule apple@cn => DIRECT, records: 222"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule apple-cn => DIRECT, records: 125"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule microsoft@cn => DIRECT, records: 45"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule category-games@cn => DIRECT, records: 51"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite rule geolocation-cn => DIRECT, records: 2710"
time="2022-04-07T11:23:46+08:00" level=info msg="Start initial GeoSite dns fallback filter `geolocation-!cn`, records: 30176"
time="2022-04-07T11:23:46+08:00" level=info msg="Initial configuration complete, total time: 277ms"
time="2022-04-07T11:23:46+08:00" level=info msg="RESTful API listening at: 127.0.0.1:9090"
time="2022-04-07T11:23:46+08:00" level=info msg="DNS server listening at: [::]:53"
time="2022-04-07T11:23:46+08:00" level=info msg="Use interface name: WLAN"
time="2022-04-07T11:23:46+08:00" level=info msg="Mixed(http+socks) proxy listening at: 127.0.0.1:1080"
2022/04/07 11:23:46 Using existing driver 0.14
2022/04/07 11:23:46 Creating adapter
time="2022-04-07T11:23:47+08:00" level=info msg="TUN stack listening at: Meta(198.18.0.1), mtu: 9000, auto route: true, ip stack: gVisor"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial compatible provider default"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial compatible provider PROXY"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial compatible provider YouTube"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial compatible provider Final"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial provider tencent"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial provider alibaba"
time="2022-04-07T11:23:47+08:00" level=info msg="Start initial provider youtube"
time="2022-04-07T11:23:47+08:00" level=debug msg="[TUN] hijack dns udp: 198.18.0.2:53"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] find process 224.0.0.252: process not found"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:47+08:00" level=debug msg="[TUN] hijack dns udp: 198.18.0.2:53"
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] dmd.metaservices.microsoft.com from process \\Device\\HarddiskVolume3\\Windows\\System32\\svchost.exe"
time="2022-04-07T11:23:47+08:00" level=debug msg="[TUN] hijack dns udp: 
time="2022-04-07T11:23:47+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:48+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:48+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:48+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:48+08:00" level=debug msg="[TUN] hijack dns udp: 198.18.0.2:53"
time="2022-04-07T11:23:48+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:48+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:49+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:49+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:49+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:49+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:49+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:50+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:51+08:00" level=debug msg="[TUN] hijack dns udp: 198.18.0.2:53"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Windows\\System32\\svchost.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] 224.0.0.251 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:51+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:52+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:52+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:52+08:00" level=debug msg="[Process] 198.18.255.255 from process :System"
time="2022-04-07T11:23:53+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:54+08:00" level=debug msg="[Process] 239.255.255.250 from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:54+08:00" level=debug msg="[Process] chrome.cloudflare-dns.com from process \\Device\\HarddiskVolume3\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
time="2022-04-07T11:23:54+08:00" level=warning msg="Clash shutting down"

开启Tun后,CPU 占用100%

更新到最新版:v1.11.0,开启Tun后,CPU 占用100%

QQ图片20220516232513

LOG里面全都是这样的

time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50980(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50997(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50993(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51000(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51002(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50988(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51005(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51004(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50991(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50989(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51001(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50992(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51016(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51006(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50999(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51024(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51007(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51008(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51010(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51014(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51011(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51009(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51012(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51013(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51015(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51021(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51018(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51020(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51026(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51037(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51019(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51030(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51027(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51025(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51031(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51023(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51036(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51017(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51035(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51034(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51040(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51022(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51029(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51028(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51041(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51033(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51052(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:51044(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51047(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51032(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51038(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51060(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51043(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51046(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51049(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51050(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51042(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51045(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51054(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51061(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:54765(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51063(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51300(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:16+08:00" level=info msg="[TCP] 198.18.0.1:50954(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51058(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51039(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51056(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51048(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51059(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51070(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51062(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51051(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51068(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51067(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51078(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51074(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51064(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51053(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51080(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51066(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51081(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51065(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51086(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51073(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51055(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51057(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51069(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51088(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51089(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51079(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51072(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51077(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51087(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51075(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51082(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51076(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51084(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:54767(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:54766(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51095(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51083(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51112(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51071(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51097(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51104(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51094(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51090(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51098(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51092(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:54768(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51085(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51091(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51105(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51109(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51102(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51118(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51117(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51106(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51115(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51114(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51093(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51108(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51110(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51122(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51100(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51111(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51099(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51101(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51107(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51096(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51103(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51116(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51113(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51124(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51120(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51133(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51125(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51121(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51131(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51150(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51144(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51127(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51130(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51119(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51147(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51123(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51128(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51141(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51135(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51132(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51151(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51134(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51148(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51140(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51146(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51126(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51139(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51149(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51158(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51137(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51154(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51129(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51157(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51138(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51136(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51153(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51142(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51145(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51171(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51163(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51167(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51168(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51155(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51156(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51162(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51143(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51169(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51165(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51164(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51176(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51172(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51161(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51160(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51175(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51170(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51174(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51166(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51159(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51180(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51179(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51193(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51178(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51177(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51186(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51187(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51183(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51189(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51182(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51196(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51185(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51192(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51173(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51201(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51181(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51184(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51194(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51197(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51188(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51195(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51210(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51204(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51191(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51199(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51200(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51209(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51211(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51221(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51215(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51206(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51208(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51202(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:52417(chrome.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51203(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51198(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51207(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51220(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51229(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51205(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51225(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51190(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51214(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51224(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51212(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51213(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51223(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51217(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51232(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51219(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51234(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51236(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51227(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51230(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51216(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51228(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51218(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51242(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51239(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51240(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51246(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51247(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51245(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51241(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51252(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51253(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51250(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51237(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51251(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51254(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51258(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51273(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51276(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51243(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51256(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51238(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51264(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51260(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51259(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51262(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51271(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51265(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51272(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51255(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51277(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51268(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51270(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51275(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51261(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51269(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51279(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51278(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51263(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51274(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51290(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51249(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51248(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51231(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51244(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51222(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51226(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51235(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51233(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51257(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51267(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51282(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51293(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51281(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51266(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51294(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51286(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51296(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51289(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51292(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51284(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51285(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51287(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51288(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51280(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51298(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51283(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51302(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51299(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51311(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51295(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51310(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51301(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51304(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51297(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51303(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51320(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51313(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51309(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51307(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51308(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51337(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51314(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51327(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51319(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51315(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51305(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51330(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51312(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51324(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51333(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51317(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51306(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51322(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51336(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51331(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51338(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51335(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51332(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51339(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51321(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51323(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51340(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51334(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51326(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51316(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51318(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51354(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51343(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51342(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51329(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51325(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51341(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51328(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51345(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51363(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51347(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51372(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51351(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51349(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51346(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51348(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51352(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51355(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51344(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51350(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51358(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51356(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51357(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51362(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51361(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51365(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51375(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51384(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51360(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51378(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51366(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51373(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51359(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51364(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51368(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51369(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51376(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51389(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51388(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51383(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51386(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51382(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51391(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51374(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51370(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51379(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51385(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51377(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51394(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51397(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51403(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51387(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51393(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51381(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51380(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51367(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51353(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:52413(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51390(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51371(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51399(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51417(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51396(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51407(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51395(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51404(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51392(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51398(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51402(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51406(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51405(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:52414(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51400(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51401(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51409(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51413(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51408(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51418(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51412(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51419(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51416(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51430(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51423(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:52415(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51420(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51421(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51414(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51411(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51427(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51425(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51431(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51410(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51424(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51486(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51426(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51429(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51428(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51440(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51493(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51507(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51648(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51662(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51668(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51651(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51663(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51570(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51655(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51643(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51612(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51654(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51616(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51594(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52426(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51634(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51666(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51658(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51664(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51635(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51691(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51439(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51432(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51436(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51435(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51449(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51452(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51478(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51447(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51438(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51444(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51463(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51455(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51445(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51442(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51461(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51453(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51468(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51477(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51465(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51473(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51460(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51470(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51472(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51471(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51490(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51480(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51474(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51479(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51451(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51422(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51434(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51450(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51433(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51415(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51464(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51446(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51448(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[UDP] 198.18.0.1:52416(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51481(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51469(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51466(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51499(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51488(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51485(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51467(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51492(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51498(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51500(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51483(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51475(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51476(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51496(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51495(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51497(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51501(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51503(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51489(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51482(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51504(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51487(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51494(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51491(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51509(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51506(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51437(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51441(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51443(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51458(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51459(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51457(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51456(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51454(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51484(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51462(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51513(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51512(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51502(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51514(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51515(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51548(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51505(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51520(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51508(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51534(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51518(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51540(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51511(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51541(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51522(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51527(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51545(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51538(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51517(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51525(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51526(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51542(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51510(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51553(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51519(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51523(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51535(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51528(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51530(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51531(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51536(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51539(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51543(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51533(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51521(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51551(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51544(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51546(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51554(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51524(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51555(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51547(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51532(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51552(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51537(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51529(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51557(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51559(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51558(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51550(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51516(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51597(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51680(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51661(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51649(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51652(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51592(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51670(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51672(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51677(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51676(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51619(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51591(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51601(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51600(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51586(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51657(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51605(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51606(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51653(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51609(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51604(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51596(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51614(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51607(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51610(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51593(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51582(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51688(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51638(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51617(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51659(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51584(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51660(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51599(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51667(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51693(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51630(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51618(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51624(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51640(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51603(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51665(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51631(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51620(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51698(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51671(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51673(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51674(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51700(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51683(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51686(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51687(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51690(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51669(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51684(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51678(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51681(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51679(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51682(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51689(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51615(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51602(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51709(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51625(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51695(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51645(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51565(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51613(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51623(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51611(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51621(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51632(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51622(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51627(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51633(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51639(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51641(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51628(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51626(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51637(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51636(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51650(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51629(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51646(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51642(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51644(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51656(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51696(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51647(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51562(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51549(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51556(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51568(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51564(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51701(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51585(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51589(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51566(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51579(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51577(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51575(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51580(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51567(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51588(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51561(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51563(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51574(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51572(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51578(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51590(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51560(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51573(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51569(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:17+08:00" level=info msg="[TCP] 198.18.0.1:51571(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51583(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51587(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51581(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51576(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51608(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51598(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51595(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52419(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51715(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51705(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51710(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51699(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51702(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51711(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51724(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51725(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51712(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51721(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51697(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51703(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51761(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51739(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51749(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51731(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51744(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51746(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51754(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51734(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51743(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51742(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51745(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51760(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51753(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51770(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51768(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51757(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51758(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51756(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51755(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51738(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51751(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51775(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51779(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51773(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51771(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51752(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51772(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51765(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51767(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51780(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51774(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51763(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51707(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51685(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51704(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51714(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51713(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51708(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51706(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51723(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51718(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51728(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51747(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51733(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51737(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51732(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51717(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51741(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51736(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51729(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51716(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51719(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51748(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51722(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51740(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51730(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51720(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51727(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51778(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51776(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51783(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51791(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51762(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51759(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51792(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51784(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51787(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51769(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51803(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51790(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51766(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51781(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51788(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51786(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51764(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51777(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51797(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51795(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51818(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51804(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51796(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51805(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51799(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51793(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51782(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51789(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51750(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51726(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51735(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51675(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51692(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51694(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51823(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51802(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51785(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51825(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51822(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51800(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51826(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51801(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51806(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51794(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51807(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51798(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51821(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51811(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51817(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51810(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51815(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51813(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51820(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51808(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51812(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51827(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51814(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51816(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51834(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51849(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51809(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51846(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51831(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51851(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51828(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51830(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51837(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51835(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51850(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51819(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51832(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52424(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52425(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52068(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51829(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51842(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51836(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51838(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51833(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51839(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51852(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51860(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51863(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51861(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51843(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51868(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51876(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51869(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51865(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51944(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51959(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51946(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51993(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51960(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:52430(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:52429(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51938(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52096(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51931(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51969(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51862(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51964(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51982(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51999(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51998(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52019(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51985(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52102(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52099(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52107(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51961(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52000(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55052(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51977(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52431(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51867(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51866(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51872(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51870(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51875(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51874(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51902(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51904(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51899(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51905(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51877(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51884(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51879(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51903(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51888(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51892(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51883(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51882(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51886(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51887(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51894(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51873(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51895(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51840(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51881(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51878(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51855(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51885(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51845(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51891(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51901(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51847(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51908(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51844(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51898(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51880(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51897(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51896(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51853(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51890(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51854(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51889(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51910(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51856(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51893(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51841(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51918(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51907(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51871(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51906(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51858(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51859(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51917(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51864(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51857(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51848(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51923(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51928(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51909(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51933(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52427(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51924(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51912(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51900(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51930(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51911(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51929(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51914(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51824(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51968(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51926(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51913(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51927(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51921(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51983(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51957(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51962(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51955(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51974(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51949(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51979(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51953(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51951(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51954(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51945(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51941(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51947(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51932(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51919(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51920(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51922(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51915(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51935(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51952(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51925(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51940(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51937(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51936(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51916(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51943(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51942(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51939(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51950(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51934(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51956(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51948(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51990(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51997(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51992(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51991(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51981(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52001(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51980(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52003(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52002(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52010(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52024(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52031(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52007(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52004(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52021(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51972(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52015(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52011(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52013(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52009(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52005(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52006(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52018(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52014(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52025(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52034(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52029(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52023(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52037(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52022(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52027(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52017(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52020(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52026(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52008(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52016(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52028(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52054(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52039(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52040(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52047(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52035(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52038(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51976(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51967(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52057(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52058(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51965(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52043(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52032(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51973(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52036(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51958(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52042(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52050(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51971(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52041(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52059(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51988(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52044(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51987(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52052(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52033(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52053(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52056(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51986(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51996(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51984(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52055(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51989(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51994(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52012(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51970(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51975(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52083(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52066(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52063(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52045(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52061(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52067(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52051(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52049(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52046(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52060(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52065(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52073(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52077(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52048(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51978(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51966(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52062(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52078(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52072(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52069(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52064(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[UDP] 198.18.0.1:52428(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52081(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52080(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52084(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52070(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52071(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52091(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52075(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51995(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:52030(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:18+08:00" level=info msg="[TCP] 198.18.0.1:51963(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55051(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52103(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52082(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52092(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52095(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52090(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52085(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52110(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52100(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52205(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52212(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52208(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52209(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52094(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52109(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52087(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52076(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52086(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52089(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52074(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52101(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52088(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52108(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52093(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52098(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52079(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52104(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52118(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55053(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52105(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52120(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52097(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52122(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52106(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52112(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52111(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52129(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52123(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52113(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52170(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52182(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52167(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52168(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52114(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52177(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52162(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52239(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52160(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52181(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52174(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52117(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52165(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52184(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52173(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52202(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52187(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52121(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52175(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52139(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52132(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52188(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52185(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52197(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52199(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52176(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52204(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52180(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52189(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52194(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52171(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52198(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52193(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55054(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52183(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52191(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52172(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55050(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52178(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52186(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52136(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52201(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52195(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52128(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52125(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52148(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52116(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:52432(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52119(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52115(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52126(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52144(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52145(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52124(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52227(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52157(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52140(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52234(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52220(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52192(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52282(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52228(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52244(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52268(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52247(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52238(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52273(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52252(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52137(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52155(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52154(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52156(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52130(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52158(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52143(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52166(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52169(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52151(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52163(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52164(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52149(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52161(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52153(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52159(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52260(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52211(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52190(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52224(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52146(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52138(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52179(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52131(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52206(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52142(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52147(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52135(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52152(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52150(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52134(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52141(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52133(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52127(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52262(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55057(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52240(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52272(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52251(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52343(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52363(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52351(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52346(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52265(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52334(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52256(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52249(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52356(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52354(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52263(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55064(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52232(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55058(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52254(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52255(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52258(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52246(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52259(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52253(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52248(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52245(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52243(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52233(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52257(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52237(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52229(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52261(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52242(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52236(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55056(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52200(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55059(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52225(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52214(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52221(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52223(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52222(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52217(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55055(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52215(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52219(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52235(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52207(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52226(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52216(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52218(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52231(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52203(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52213(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52210(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52196(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52348(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52250(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52230(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52270(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52278(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52241(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52266(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52399(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52301(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52309(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52305(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52293(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52306(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52310(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52314(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52296(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52308(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52431(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52440(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52297(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52300(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52302(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52304(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52312(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52320(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52326(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52331(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52307(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52318(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52328(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52329(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52324(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52316(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52321(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52322(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52311(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52315(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52319(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52317(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52269(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52281(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52288(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52276(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52277(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52274(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52295(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52286(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52280(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52275(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52294(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52287(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52290(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52292(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52285(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52264(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52267(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52291(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52271(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52284(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52303(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52298(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52289(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52332(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52330(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52337(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52339(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52333(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52336(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52335(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52313(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52325(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52338(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52327(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52323(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52345(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52361(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52340(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52341(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52360(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52362(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52368(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52358(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52344(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52350(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52357(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52355(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52372(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52383(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52353(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52364(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52359(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52373(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52342(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52283(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52349(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52352(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52347(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52279(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52374(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52500(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52367(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52371(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52489(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55065(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52366(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55061(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52380(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52385(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52395(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52390(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52398(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52402(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52389(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52384(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52401(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52387(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52409(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52397(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52405(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52417(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52375(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52396(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52406(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52419(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52433(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52430(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52404(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52408(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52403(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52432(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52411(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52410(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52407(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52414(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52422(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52413(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52412(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52400(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52421(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52415(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52460(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52420(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52418(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52436(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52437(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52441(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52438(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55060(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52426(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52365(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52464(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52509(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52470(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52490(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52484(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52370(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52394(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52388(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52369(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55062(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55063(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52379(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52506(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52392(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52377(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52391(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52393(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52376(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52378(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52382(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52416(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52386(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52381(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55070(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52496(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52508(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52487(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55066(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52478(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52476(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52423(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52424(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52439(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52444(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52429(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52447(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52442(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52454(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52435(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52522(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52517(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52531(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52538(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52529(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52528(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52450(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52425(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52458(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52428(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52482(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52449(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52451(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52434(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52427(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52536(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52461(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52466(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52456(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52457(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52468(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52446(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52465(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52455(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52448(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52474(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52445(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52483(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52471(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52462(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52479(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52472(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52475(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52467(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52443(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52504(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52463(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52469(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52452(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52473(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52453(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52477(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52488(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52459(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52485(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52503(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52507(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52498(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52505(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:60861(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52486(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52535(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52547(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52554(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52537(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52480(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52527(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52512(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60865(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52510(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52495(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60867(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52497(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52526(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52555(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52556(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52569(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52521(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52493(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52494(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52492(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52501(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52518(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55068(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55067(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52560(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52553(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52515(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52544(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52565(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52549(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52564(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52545(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52520(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60862(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52577(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52595(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52579(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:55069(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52513(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52523(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52532(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52516(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52511(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52499(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52481(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[UDP] 198.18.0.1:60860(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52502(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52514(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52533(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52541(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52540(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52561(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52559(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52543(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52524(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52525(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52491(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:19+08:00" level=info msg="[TCP] 198.18.0.1:52519(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52530(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52550(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52546(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52563(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52629(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52617(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52542(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52568(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52552(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52557(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52562(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52539(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52567(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52551(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52570(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52534(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52572(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52592(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60868(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52548(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52558(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52566 --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52576(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52574(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52581(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52590(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52573(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52578(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52580(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52571(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52606(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52575(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52599(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60863(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52600(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52598(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52586(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52603(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52601(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52605(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52589(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52604(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52582(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52602(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52608(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52622(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52612(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52610(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52609(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52594(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52596(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52584(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52620(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52614(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52611(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52587(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52588(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52621(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60870(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60864(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60866(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52616(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52585(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52625(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52597(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52607(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52591(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52615(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52626(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52631(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52593(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52633(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52705(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52638(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52649(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52637(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52663(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52643(chrome.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52655(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60874(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52691(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52647(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52636(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52624(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52583(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52642(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52641(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52634(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52618(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52619(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52650(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52628(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52632(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52613(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52646(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52627(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52623(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52648(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52630(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52669(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52644(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52645(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52635(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52657(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52651(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52664(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52654(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52660(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52671(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52656(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52658(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52652(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52665(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52670(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52653(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52668(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52678(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52680(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52673(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52697(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52688(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52696(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52672(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52674(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52666(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52684(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52677(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52687(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52690(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52676(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52689(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52686(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60871(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52700(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52675(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52692(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52679(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52713(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52681(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52706(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52701(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52682(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52695(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52685(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52683(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52639(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52640(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52662(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52667(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52661(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52659(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60869(Clash.exe) --> 224.0.0.252:5355 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52784(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52719(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52698(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52722(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52709(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52715(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52712(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52750(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60877(Clash.exe) --> 198.18.255.255:137 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52702(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52757(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52707(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52703(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52726(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52731(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52721(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52723(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52704(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52714(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52724(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52727(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52732(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52737(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52738(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52720(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52725(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52735(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52718(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52733(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52728(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60872(Clash.exe) --> 239.255.255.250:1900 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52734(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[UDP] 198.18.0.1:60873(Clash.exe) --> 224.0.0.251:5353 match  using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52699(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52693(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52716(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52710(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52708(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52717(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52694(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52711(Clash.exe) --> 172.67.220.104:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52745(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52744(Clash.exe) --> 185.253.46.121:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52761(Clash.exe) --> 154.17.20.78:8080 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52760(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52749(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52746(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52751(Clash.exe) --> 172.67.220.104:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52740(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52752(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52742(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52743(Clash.exe) --> 150.230.249.169:8888 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52748(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52753(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52729(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52736(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52739(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52756(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52730(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52766(Clash.exe) --> 208.109.188.195:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52754(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52755(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52759(Clash.exe) --> 154.17.21.223:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52747(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52772(Clash.exe) --> 45.142.167.26:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52765(Clash.exe) --> 185.253.46.105:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52741(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52758(Clash.exe) --> 61.222.202.140:33792 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52774(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52764(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52776(Clash.exe) --> 185.219.132.223:31256 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52775(Clash.exe) --> 188.166.245.14:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52788(Clash.exe) --> 154.17.23.31:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52777(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52782(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52773(Clash.exe) --> 185.253.47.79:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52771(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52768(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52762(Clash.exe) --> 61.222.202.140:15789 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52781(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52783(Clash.exe) --> 208.109.189.58:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52770(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52769(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52763(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52780(Clash.exe) --> 154.17.6.157:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52792(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52778(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52805(Clash.exe) --> 185.253.46.40:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52791(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52767(Clash.exe) --> 154.17.19.155:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52787(Clash.exe) --> 154.17.22.182:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52828(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52826(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52807(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"
time="2022-05-16T23:35:20+08:00" level=info msg="[TCP] 198.18.0.1:52811(Clash.exe) --> 43.154.169.30:443 match Match using DIRECT"

使用mate内核或新版内核 手游分流异常

新版mate内核或DEV内核都存在手游分流异常的问题,主要是针对《和平精英》,进不去服务器,或者网络波动异常,或者与服务器通讯时断时续,严重影响运行。目前不使用mate内核,DEV内核回滚至v1.7.1-5-gced9749,fake-ip增强模式,游戏基本正常!恳请作者予以关注,谢谢!!!

可能是DNS相关问题

1.10.0版本,开启服务大概率出现下面这种,然后连不上

"[TCP] dial Proxy (match GeoIP/TELEGRAM) to 149.154.167.51:443 error: 节点域名:端口 connect error: all DNS requests failed, first error: Post "https://dns.adguard.com/dns-query\": couldn't find ip"

之前使用的alpha-611ce5f版本正常,没有这个问题

个人的config.yaml头部如下,win平台。

mixed-port: 1083
geodata-mode: true
tun:
enable: true
stack: gvisor # only gvisor
dns-hijack:
- 198.18.0.2:53
auto-route: true # auto set global route
interfacename: "WLAN"
allow-lan: true
ipv6: true
dns:
enable: true
listen: 127.0.0.1:1053
ipv6: true
enhanced-mode: redir-host
fake-ip-range: 198.18.0.1/16
fake-ip-filter:
nameserver:
- https://rubyfish.cn/dns-query
- https://dns.alidns.com/dns-query
- https://doh.pub/dns-query
fallback:
- https://doh.opendns.com/dns-query#Proxy
- https://dns.adguard.com/dns-query#Proxy
- https://doh.dns.sb/dns-query#Proxy
- https://dns64.dns.google/dns-query#Proxy
- https://dns.google/dns-query#Proxy

fallback-filter:
geoip: true
geoip-code: CN
geosite:
- GFW

Tun Mode crash occasionally

##Basic
port: 7890
socks-port: 7891
log-level: info
external-controller: 127.0.0.1:9090
allow-lan: false
##TUN
tun:
  enable: true
  stack: gvisor
  dns-hijack:
  - 0.0.0.0:53
  auto-route: true
##DNS
dns:
  enable: true
  use-hosts: true
  ipv6: true
  enhanced-mode: redir-host #fake-ip or redir-host
  fake-ip-range: 198.18.0.1/16
  listen: 127.0.0.1:6868
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xc0000005 code=0x0 addr=0x0 pc=0xa18620]

goroutine 61097 [running]:
gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*endpoint).SocketOptions(0x0?)
        gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/endpoint.go:3175
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.setSocketOptions(0xc0099d67c0?, {0xdc4d08, 0x0})
        github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/tcp.go:84 +0x33
github.com/Dreamacro/clash/listener/tun/ipstack/gvisor.withTCPHandler.func1.1(0xc0099d67c0)
        github.com/Dreamacro/clash/listener/tun/ipstack/gvisor/tcp.go:69 +0x1b4
created by gvisor.dev/gvisor/pkg/tcpip/transport/tcp.(*Forwarder).HandlePacket
        gvisor.dev/[email protected]/pkg/tcpip/transport/tcp/forwarder.go:94 +0x3b0

auto-detect-interface inaccurate on android devices

Devices: Redmi Note 9 (Merlin) | Mediatek
Kernel used: v1.11.1 android arm64

auto-detect-interface using ap0 which is Hotspot interface if Hotspot turned ON, instead of ccmni0 or ccmni1 which is data cellular. in v1.11.0 working fine.

error: not rule must contain one rule

规则如下:

AND,((SRC-IP-CIDR,192.168.2.192/26),(OR,(NETWORK,TCP),(NOT,(DST-PORT,123)))),REJECT
在最新版中报错:error: not rule must contain one rule

截图如下:

image

版本为alpha-g01d2e88(来自OpenClash),之前版本可以正常使用

openclash启用meta内核后xshell无法连接

使用meta内核并且启用流量(域名)探测以后会导致xshell无法连上ssh。其他ssh软件正常。确认不是节点问题。xshell提示Connection closed by foreign host

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.