-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClash.yaml
2238 lines (2238 loc) · 133 KB
/
Clash.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
port: 7890
socks-port: 7891
allow-lan: true
mode: Rule
log-level: info
external-controller: 127.0.0.1:9090
dns:
enable: true
ipv6: false
enhanced-mode: fake-ip
fake-ip-range: 198.18.0.1/16
fake-ip-filter:
- "*.lan"
- "*.local"
- dns.msftncsi.com
- www.msftncsi.com
- www.msftconnecttest.com
- stun.*.*.*
- stun.*.*
- miwifi.com
- music.163.com
- "*.music.163.com"
- "*.126.net"
- api-jooxtt.sanook.com
- api.joox.com
- joox.com
- y.qq.com
- "*.y.qq.com"
- streamoc.music.tc.qq.com
- mobileoc.music.tc.qq.com
- isure.stream.qqmusic.qq.com
- dl.stream.qqmusic.qq.com
- aqqmusic.tc.qq.com
- amobile.music.tc.qq.com
- "*.xiami.com"
- "*.music.migu.cn"
- music.migu.cn
- netis.cc
- router.asus.com
- repeater.asus.com
- routerlogin.com
- routerlogin.net
- tendawifi.com
- tendawifi.net
- tplinklogin.net
- tplinkwifi.net
- tplinkrepeater.net
- "*.ntp.org.cn"
- "*.openwrt.pool.ntp.org"
- "*.msftconnecttest.com"
- "*.msftncsi.com"
- localhost.ptlogin2.qq.com
- "*.*.*.srv.nintendo.net"
- "*.*.stun.playstation.net"
- xbox.*.*.microsoft.com
- "*.ipv6.microsoft.com"
- "*.*.xboxlive.com"
- speedtest.cros.wr.pvp.net
default-nameserver:
- 114.114.114.114
- 9.9.9.9
nameserver:
- 1.2.4.8
- 210.2.4.8
- 223.5.5.5
- 223.6.6.6
- 52.80.52.52
- 117.50.10.10
- 180.76.76.76
- 119.28.28.28
- 119.29.29.29
- 114.114.114.114
- 114.114.115.115
- 101.226.4.6
- 218.30.118.6
- 123.125.81.6
- 140.207.198.6
- 202.38.64.1
- 202.112.20.131
- 202.141.160.95
- 202.141.160.99
- 202.141.176.95
- 202.141.176.99
- tls://dot.pub:853
- tls://1.12.12.12:853
- tls://120.53.53.53:853
- https://doh.pub/dns-query
- https://sm2.doh.pub/dns-query
- https://1.12.12.12/dns-query
- https://120.53.53.53/dns-query
- https://dns.alidns.com/dns-query
- https://doh.dns.sb/dns-query
- https://dns.rubyfish.cn/dns-query
fallback:
- 9.9.9.9
- 149.112.112.112
- 8.8.4.4
- 8.8.8.8
- 1.0.0.1
- 1.1.1.1
- 208.67.220.220
- 208.67.220.222
- 208.67.222.220
- 208.67.222.222
- 195.46.39.39
- 195.46.39.40
- 168.95.1.1
- 203.80.96.10
- 168.95.192.1
- 164.124.101.2
- 164.124.107.9
- 203.248.252.2
- 203.248.242.2
- 80.80.80.80
- 80.80.81.81
- 199.85.126.10
- 199.85.127.10
- 168.126.63.1
- 168.126.63.2
- 139.175.252.16
- 139.175.55.244
- 202.45.84.58
- 202.45.84.59
- 8.26.56.26
- 23.253.163.53
- 77.88.8.1
- 77.88.8.8
- 89.233.43.71
- 91.239.100.100
- 198.101.242.72
- 8.20.247.20
- 64.6.64.6
- 64.6.65.6
- 209.244.0.3
- 209.244.0.4
- 210.220.163.82
- 219.250.36.130
- 202.14.67.4
- 84.200.69.80
- 84.200.70.40
- 202.14.67.14
- 156.154.70.1
- 156.154.71.1
- 216.146.35.35
- 216.146.36.36
- 77.109.148.136
- 77.109.148.137
- 101.101.101.101
- 101.102.103.104
- 74.82.42.42
- 66.220.18.42
- https://dns.quad9.net/dns-query
- https://dns9.quad9.net/dns-query
- tls://dns.google:853
- https://8.8.4.4/dns-query
- https://8.8.8.8/dns-query
- https://dns.google/dns-query
- tls://1.0.0.1:853
- tls://1.1.1.1:853
- tls://one.one.one.one
- tls://1dot1dot1dot1.cloudflare-dns.com
- https://1.0.0.1/dns-query
- https://1.1.1.1/dns-query
- https://cloudflare-dns.com/dns-query
- https://dns.daycat.space/dns-query
- https://dns.adguard.com/dns-query
- https://dns-family.adguard.com/dns-query
- https://dns-unfiltered.adguard.com/dns-query
- tls://b.iqiq.io:853
- tls://h.iqiq.io:853
- tls://j.iqiq.io:853
- tls://c.passcloud.xyz:853
- tls://x.passcloud.xyz:853
- https://a.passcloud.xyz/hk
- https://a.passcloud.xyz/am
- https://a.passcloud.xyz/us
- https://a.passcloud.xyz/sz
- https://a.passcloud.xyz/cdn
- https://a.passcloud.xyz/dns-query
- https://worldwide.passcloud.xyz/dns-query
fallback-filter:
geoip: true
geoip-code: CN
ipcidr:
- 240.0.0.0/4
- 127.0.0.1/8
- 0.0.0.0/32
domain:
- +.google.com
- +.github.com
- +.facebook.com
- +.twitter.com
- +.youtube.com
- +.google.cn
- +.googleapis.cn
- +.googleapis.com
- +.gvt1.com
proxies:
- {name: BE 1 → tg@nicevpn123, server: 57.180.10.14, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: MO 1 → tg@nicevpn123, server: 45.64.22.55, port: 443, type: trojan, password: KLF0qOU0ZZGw5Tnu, sni: swift.protocolbuffer.com, skip-cert-verify: true, udp: true}
- {name: MO 2 → tg@nicevpn123, server: 45.64.22.55, port: 443, type: trojan, password: Ty33ylFA4u6A5e0NE3wRFp3DIa8lZOzC87CeKnxYgpSOSa2ZaXBjDDSY9qCcxR, sni: flowery.meijireform.com, skip-cert-verify: true, udp: true}
- {name: MO 3 → tg@nicevpn123, server: 45.64.22.55, port: 443, type: trojan, password: ZDAAFTxBNu5j9pl3Re834a3xSXwOZYeIlE30Dp86qc7yYgKaDCaROCSSnz2FCy, sni: csharp.protocolbuffer.com, skip-cert-verify: true, udp: true}
- {name: MO 4 → tg@nicevpn123, server: macau.hapchung.com, port: 10443, type: trojan, password: 5eb5bdf9-4a70-4890-b2ca-8b2b79792639, skip-cert-verify: true, udp: true}
- {name: RW 1 → tg@nicevpn123, server: 23.142.200.149, port: 11129, type: vmess, uuid: 2c69c823-4dad-4dc1-89df-6eeab1dc5fe5, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: RW 2 → tg@nicevpn123, server: 174.136.207.168, port: 12842, type: vmess, uuid: d7e439a8-9cb4-4c62-9a6a-d36824689a04, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: RW 3 → tg@nicevpn123, server: 23.142.200.149, port: 11129, type: vmess, uuid: 2c69c823-4dad-4dc1-89df-6eeab1dc5fe5, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: RW 4 → tg@nicevpn123, server: 174.136.207.168, port: 12842, type: vmess, uuid: d7e439a8-9cb4-4c62-9a6a-d36824689a04, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: RW 5 → tg@nicevpn123, server: 174.136.207.168, port: 12842, type: vmess, uuid: d7e439a8-9cb4-4c62-9a6a-d36824689a04, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇦 CA 1 → tg@nicevpn123, server: 47.128.77.190, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇨🇦 CA 10 → tg@nicevpn123, server: 47.128.72.85, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇨🇦 CA 11 → tg@nicevpn123, server: 47.129.9.69, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇨🇦 CA 12 → tg@nicevpn123, server: 198.57.27.218, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: 🇨🇦 CA 13 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 14 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%25252525252525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 15 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%252525252525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 16 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%2525252525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 17 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%25252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 18 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%25252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 19 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%2Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 2 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%25252525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 3 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%252525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 4 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%2525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 5 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%2525252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 6 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%2525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 7 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 8 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%25252525252525252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇦 CA 9 → tg@nicevpn123, server: 23.227.38.11, port: 443, type: trojan, password: b17fa17d-13a0-4e8a-a398-8e549ea8b208, sni: syndication-statutes-wanted-logo.trycloudflare.com, skip-cert-verify: true, network: ws, ws-opts: {path: "%252Fargox-tr", headers: {Host: syndication-statutes-wanted-logo.trycloudflare.com}}, udp: true}
- {name: 🇨🇳 CN 1 → tg@nicevpn123, server: sui.forlive.live, port: 27506, type: vmess, uuid: 4f54dd30-df4a-4c36-a20c-486b7381382a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 10 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14341, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 100 → tg@nicevpn123, server: hkscdn02.dorabbb.top, port: 44803, type: vmess, uuid: 74568086-29d6-4e71-a2a5-5bba72ca01d1, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 101 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14405, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 102 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14503, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 103 → tg@nicevpn123, server: 98899.xef9wvmj31-gc3qil6-jp02.my777999.top, port: 38998, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 104 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14495, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 105 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14515, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 106 → tg@nicevpn123, server: 7879va.xikv2dvn-3g5erg0-us01.my777999.top, port: 33999, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 107 → tg@nicevpn123, server: 789rmi3z.chytenciz-jgufv-sg02.my777999.top, port: 37998, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 108 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14432, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 109 → tg@nicevpn123, server: 120.210.205.82, port: 50002, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 11 → tg@nicevpn123, server: dxcdn02.dorabbb.top, port: 48821, type: vmess, uuid: 74568086-29d6-4e71-a2a5-5bba72ca01d1, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 110 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14508, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 111 → tg@nicevpn123, server: 7898o4m.bof21ze13u-vn01.my777999.top, port: 40999, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 112 → tg@nicevpn123, server: 8789-kf49kc85w.uy2w4vf-sg03.my777999.top, port: 37997, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 113 → tg@nicevpn123, server: sui.forlive.live, port: 19446, type: vmess, uuid: 8c3ab3aa-ec03-4fb0-8c7d-0e69ae497253, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 114 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14414, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 115 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14404, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 116 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14511, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 117 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14520, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 118 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14505, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 119 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14351, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 12 → tg@nicevpn123, server: 879xhl1.hsspr5bu1-tw02.my777999.top, port: 34998, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 120 → tg@nicevpn123, server: 7569erzy.of08zo0-et55lpt-uk01.my777999.top, port: 41999, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 121 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14492, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 122 → tg@nicevpn123, server: gran.efnwgood.top, port: 28891, type: ss, cipher: chacha20-ietf-poly1305, password: 9bc1eddf-1674-40f1-ad64-00a6fc5c2054, udp: true}
- {name: 🇨🇳 CN 123 → tg@nicevpn123, server: 14.18.91.151, port: 50004, type: vmess, uuid: 1d8963ab-0cd8-4091-93ca-4c6a7dbcd1f2, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 13 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14497, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 14 → tg@nicevpn123, server: 529y.6bp4susm-97imynr-vn02.my777999.top, port: 40998, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 15 → tg@nicevpn123, server: 90778990.okc94l-zleouxmco-tw01.my777999.top, port: 34999, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 16 → tg@nicevpn123, server: db.quanstring.top, port: 14791, type: ss, cipher: chacha20-ietf-poly1305, password: e50dd0c1-b1bc-4910-aa3e-7237d55043c1, udp: true}
- {name: 🇨🇳 CN 17 → tg@nicevpn123, server: db.quanstring.top, port: 44723, type: ss, cipher: chacha20-ietf-poly1305, password: e50dd0c1-b1bc-4910-aa3e-7237d55043c1, udp: true}
- {name: 🇨🇳 CN 18 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14501, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 19 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14491, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 2 → tg@nicevpn123, server: mwd-mfzj777rc1.x7kp-hk02.my777999.top, port: 35997, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 20 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14510, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 21 → tg@nicevpn123, server: gg.efnwgood.top, port: 27893, type: ss, cipher: chacha20-ietf-poly1305, password: 9bc1eddf-1674-40f1-ad64-00a6fc5c2054, udp: true}
- {name: 🇨🇳 CN 22 → tg@nicevpn123, server: sgp3.network-cdn-gw.cc, port: 45508, type: ss, cipher: chacha20-ietf-poly1305, password: 3ae13eaa-7e79-4079-9821-6178d35029ff, udp: true}
- {name: 🇨🇳 CN 23 → tg@nicevpn123, server: x.y49t1kh1.5ebf71z0-tro1.my777999.top, port: 21991, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 24 → tg@nicevpn123, server: sui.forlive.live, port: 19700, type: vmess, uuid: 8c3ab3aa-ec03-4fb0-8c7d-0e69ae497253, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 25 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14434, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 26 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14423, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 27 → tg@nicevpn123, server: 14.18.91.151, port: 50004, type: vmess, uuid: 1d8963ab-0cd8-4091-93ca-4c6a7dbcd1f2, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 28 → tg@nicevpn123, server: dxshmwy.domiw.com, port: 39822, type: ss, cipher: chacha20-ietf-poly1305, password: e5984f73-1977-4c95-a684-6fc5eea58947, udp: true}
- {name: 🇨🇳 CN 29 → tg@nicevpn123, server: 120.27.160.136, port: 50002, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 3 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14436, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 30 → tg@nicevpn123, server: 8987-3i640t6rlj4n.zpveerb-jp03.my777999.top, port: 38997, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 31 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14441, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 32 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14509, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 33 → tg@nicevpn123, server: rk2.izoizoizo.top, port: 34507, type: ss, cipher: chacha20-ietf-poly1305, password: 3bf7be43-e331-4dad-856c-8d312dedea90, udp: true}
- {name: 🇨🇳 CN 34 → tg@nicevpn123, server: hkp8.network-cdn-gw.cc, port: 48808, type: ss, cipher: chacha20-ietf-poly1305, password: 3ae13eaa-7e79-4079-9821-6178d35029ff, udp: true}
- {name: 🇨🇳 CN 35 → tg@nicevpn123, server: rk2.izoizoizo.top, port: 46091, type: ss, cipher: chacha20-ietf-poly1305, password: 3bf7be43-e331-4dad-856c-8d312dedea90, udp: true}
- {name: 🇨🇳 CN 36 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14502, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 37 → tg@nicevpn123, server: gran.efnwgood.top, port: 28894, type: ss, cipher: chacha20-ietf-poly1305, password: 9bc1eddf-1674-40f1-ad64-00a6fc5c2054, udp: true}
- {name: 🇨🇳 CN 38 → tg@nicevpn123, server: sui.forlive.live, port: 15757, type: vmess, uuid: 8c3ab3aa-ec03-4fb0-8c7d-0e69ae497253, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 39 → tg@nicevpn123, server: sui.forlive.live, port: 15757, type: vmess, uuid: 4f54dd30-df4a-4c36-a20c-486b7381382a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 4 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14422, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 40 → tg@nicevpn123, server: 786huix-ee.dc-zix4ssc1-hk03.my777999.top, port: 35996, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 41 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14401, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 42 → tg@nicevpn123, server: 9898.fz-6-0-kcet8y0fd-so04.my777999.top, port: 37996, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 43 → tg@nicevpn123, server: rk2.izoizoizo.top, port: 31583, type: ss, cipher: chacha20-ietf-poly1305, password: 3bf7be43-e331-4dad-856c-8d312dedea90, udp: true}
- {name: 🇨🇳 CN 44 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14402, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 45 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14435, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 46 → tg@nicevpn123, server: 8980k6.ceova9qgbqsqmfdy-jp01.my777999.top, port: 38999, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 47 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14462, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 48 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14516, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 49 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14412, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 5 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14321, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 50 → tg@nicevpn123, server: rk.izoizoizo.top, port: 31583, type: ss, cipher: chacha20-ietf-poly1305, password: 3bf7be43-e331-4dad-856c-8d312dedea90, udp: true}
- {name: 🇨🇳 CN 51 → tg@nicevpn123, server: sui.forlive.live, port: 19700, type: vmess, uuid: 4f54dd30-df4a-4c36-a20c-486b7381382a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 52 → tg@nicevpn123, server: rk.izoizoizo.top, port: 34507, type: ss, cipher: chacha20-ietf-poly1305, password: 3bf7be43-e331-4dad-856c-8d312dedea90, udp: true}
- {name: 🇨🇳 CN 53 → tg@nicevpn123, server: j90r55t0im2kfwz6.3a-sg01.my777999.top, port: 37999, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 54 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14494, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 55 → tg@nicevpn123, server: 47.104.186.133, port: 50002, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 56 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14518, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 57 → tg@nicevpn123, server: sui.forlive.live, port: 27506, type: vmess, uuid: 8c3ab3aa-ec03-4fb0-8c7d-0e69ae497253, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 58 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14424, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 59 → tg@nicevpn123, server: xdtw.cokecloud.top, port: 29299, type: vmess, uuid: 80ba30cc-10bb-42d5-b867-059e649ef16f, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 6 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14431, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 60 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14504, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 61 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14451, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 62 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14425, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 63 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14442, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 64 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14413, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 65 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14411, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 66 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14403, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 67 → tg@nicevpn123, server: sui.forlive.live, port: 19446, type: vmess, uuid: 4f54dd30-df4a-4c36-a20c-486b7381382a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 68 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14499, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 69 → tg@nicevpn123, server: 8879v-rmyielu.qlh9n89kw-v17.my777999.top, port: 38996, type: vmess, uuid: 861de7db-5ada-4b36-903c-0ad6ba25d75a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 7 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14415, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 70 → tg@nicevpn123, server: gfoq.b4-h5a6gq7.h3w-kr01.my777999.top, port: 32999, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 71 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14433, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 72 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14517, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 73 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14507, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 74 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14323, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 75 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14500, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 76 → tg@nicevpn123, server: qs9.anpxrc7hk-l2mcmp7-hk01.my777999.top, port: 35998, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 77 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14498, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 78 → tg@nicevpn123, server: sui.forlive.live, port: 16569, type: vmess, uuid: 8c3ab3aa-ec03-4fb0-8c7d-0e69ae497253, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 79 → tg@nicevpn123, server: fg5d.84bbo0t-olimkrx-kr02.my777999.top, port: 32998, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 8 → tg@nicevpn123, server: sgp05.network-cdn-gw.cc, port: 45510, type: ss, cipher: chacha20-ietf-poly1305, password: 3ae13eaa-7e79-4079-9821-6178d35029ff, udp: true}
- {name: 🇨🇳 CN 80 → tg@nicevpn123, server: 14.18.91.151, port: 50004, type: vmess, uuid: 1d8963ab-0cd8-4091-93ca-4c6a7dbcd1f2, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 81 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14506, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 82 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14461, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 83 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14512, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 84 → tg@nicevpn123, server: zf.lalayun.cyou, port: 47931, type: vmess, uuid: 612f2c37-923e-337b-96ec-7911055b2a68, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /v2ray, headers: {Host: zf.lalayun.cyou}}, udp: true}
- {name: 🇨🇳 CN 85 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14496, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 86 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14452, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 87 → tg@nicevpn123, server: xctransfer1st.cokecloud.top, port: 45449, type: vmess, uuid: 80ba30cc-10bb-42d5-b867-059e649ef16f, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 88 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14324, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 89 → tg@nicevpn123, server: 39.103.165.178, port: 52033, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 9 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14519, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 90 → tg@nicevpn123, server: db.quanstring.top, port: 42107, type: ss, cipher: chacha20-ietf-poly1305, password: e50dd0c1-b1bc-4910-aa3e-7237d55043c1, udp: true}
- {name: 🇨🇳 CN 91 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14493, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 92 → tg@nicevpn123, server: bepbjbgp01.004837963.xyz, port: 14513, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 93 → tg@nicevpn123, server: sui.forlive.live, port: 16569, type: vmess, uuid: 4f54dd30-df4a-4c36-a20c-486b7381382a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: sui.forlive.live}}, udp: true}
- {name: 🇨🇳 CN 94 → tg@nicevpn123, server: 4349ufu.54jvd5y6ojams-us02.my777999.top, port: 33998, type: ss, cipher: chacha20-ietf-poly1305, password: 861de7db-5ada-4b36-903c-0ad6ba25d75a, udp: true}
- {name: 🇨🇳 CN 95 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14421, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 96 → tg@nicevpn123, server: 120.232.242.74, port: 50002, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 97 → tg@nicevpn123, server: bepgzbgp01.004837963.xyz, port: 14514, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 98 → tg@nicevpn123, server: bepshbgp01.004837963.xyz, port: 14322, type: trojan, password: 277E0712-F3F1-0435-CEC5-9177070F30FF, sni: mpvideo.qpic.cn, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 CN 99 → tg@nicevpn123, server: hk09.network-cdn-gw.cc, port: 47709, type: ss, cipher: chacha20-ietf-poly1305, password: 3ae13eaa-7e79-4079-9821-6178d35029ff, udp: true}
- {name: 🇨🇳 TW 1 → tg@nicevpn123, server: 211.72.35.155, port: 3389, type: trojan, password: 0cc6b4268dea0ba8, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 10 → tg@nicevpn123, server: 211.72.35.155, port: 3389, type: trojan, password: b84d16a244460e09, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 11 → tg@nicevpn123, server: b13.ntbq.dynu.net, port: 9489, type: trojan, password: 5425aa49-ec9d-4df3-aaad-878270e78635, sni: b13.ntbq.dynu.net, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 12 → tg@nicevpn123, server: b24.ntbq.dynu.net, port: 3271, type: trojan, password: 5425aa49-ec9d-4df3-aaad-878270e78635, sni: b24.ntbq.dynu.net, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 13 → tg@nicevpn123, server: ty12t.twty.dynu.net, port: 18912, type: trojan, password: 5425aa49-ec9d-4df3-aaad-878270e78635, sni: ty12t.twty.dynu.net, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 14 → tg@nicevpn123, server: b12.ntbq.dynu.net, port: 9755, type: trojan, password: 158141ca-528d-407d-88f2-c0ddca399b26, sni: b12.ntbq.dynu.net, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 2 → tg@nicevpn123, server: 211.72.35.152, port: 3389, type: trojan, password: 26a663656e575c0b, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 3 → tg@nicevpn123, server: 211.72.35.155, port: 3389, type: trojan, password: 26a663656e575c0b, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 4 → tg@nicevpn123, server: 211.72.35.157, port: 3389, type: trojan, password: 26a663656e575c0b, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 5 → tg@nicevpn123, server: 211.72.35.155, port: 3389, type: trojan, password: 3febb05ea76a940f, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 6 → tg@nicevpn123, server: 211.72.35.152, port: 3389, type: trojan, password: 4bacb8f1a089763b, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 7 → tg@nicevpn123, server: 211.72.35.155, port: 3389, type: trojan, password: 7b06d22a8a7c764f, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 8 → tg@nicevpn123, server: 211.72.35.157, port: 3389, type: trojan, password: 8b475d9e868e43e0, skip-cert-verify: true, udp: true}
- {name: 🇨🇳 TW 9 → tg@nicevpn123, server: 211.72.35.157, port: 3389, type: trojan, password: b09d2aaa443af97a, skip-cert-verify: true, udp: true}
- {name: 🇫🇷 FR 1 → tg@nicevpn123, server: ca-trojan.bonds.id, port: 443, type: trojan, password: bc7593fe-0604-4fbe-a70bYWVzLTI1Ni1nY206Q1VuZFNabllzUEtjdTaclWNFc1RmRBNk5NQU5KSnga3fa58ac5a3ef0-b4ab-11eb-b65e-1239d0255272, skip-cert-verify: true, udp: true}
- {name: 🇫🇷 FR 2 → tg@nicevpn123, server: 94.140.0.110, port: 8880, type: vmess, uuid: 0d1bf26a-ce97-4707-a270-7f4d2ae37334, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇬🇧 GB 1 → tg@nicevpn123, server: jp.mjt000.com, port: 443, type: trojan, password: d0774966-fb63-4aca-9478-16c3f32be220, sni: jp.mjt000.com, skip-cert-verify: true, udp: true}
- {name: 🇬🇧 GB 2 → tg@nicevpn123, server: kr.mjt000.com, port: 443, type: trojan, password: d0774966-fb63-4aca-9478-16c3f32be220, sni: kr.mjt000.com, skip-cert-verify: true, udp: true}
- {name: 🇬🇧 GB 3 → tg@nicevpn123, server: waphk.mjt000.com, port: 443, type: trojan, password: d0774966-fb63-4aca-9478-16c3f32be220, sni: waphk.mjt000.com, skip-cert-verify: true, udp: true}
- {name: 🇬🇧 GB 4 → tg@nicevpn123, server: sg.mjt000.com, port: 443, type: trojan, password: d0774966-fb63-4aca-9478-16c3f32be220, sni: sg.mjt000.com, skip-cert-verify: true, udp: true}
- {name: 🇭🇰 HK 1 → tg@nicevpn123, server: 202.81.231.30, port: 55576, type: vmess, uuid: 32daf1ff-4b08-4c22-b997-1c24ff34c43a, alterId: 0, cipher: auto, tls: true, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇮🇳 IN 1 → tg@nicevpn123, server: 1.forlive.live, port: 61007, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 10 → tg@nicevpn123, server: 5.forlive.live, port: 60004, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 2 → tg@nicevpn123, server: 5.forlive.live, port: 60033, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 3 → tg@nicevpn123, server: 1.forlive.live, port: 61008, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 4 → tg@nicevpn123, server: 4.forlive.live, port: 61001, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 5 → tg@nicevpn123, server: 4.forlive.live, port: 61002, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 6 → tg@nicevpn123, server: 3.forlive.live, port: 61019, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 7 → tg@nicevpn123, server: 3.forlive.live, port: 61020, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 8 → tg@nicevpn123, server: 2.forlive.live, port: 61005, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇮🇳 IN 9 → tg@nicevpn123, server: 2.forlive.live, port: 61006, type: ss, cipher: chacha20-ietf-poly1305, password: 835d21b0-5322-4a77-8aff-4aff633642b0, udp: true}
- {name: 🇯🇵 JP 1 → tg@nicevpn123, server: 52.194.214.99, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 10 → tg@nicevpn123, server: cm5hi-g05.jp04-3771-vm0.entry.fr0307a.art, port: 448, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 11 → tg@nicevpn123, server: 2ssti-g01.jp04-3771-vm0.entry.fr0307a.art, port: 444, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 12 → tg@nicevpn123, server: 52.195.10.194, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 13 → tg@nicevpn123, server: 7gqt4-g01.jp04-3771-vm0.entry.fr0307a.art, port: 444, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 14 → tg@nicevpn123, server: h3qa5-g06.jp04-3771-vm0.entry.fr0307a.art, port: 449, type: vmess, uuid: 2278146c-8fb0-3683-8300-342238f8a9d0, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 15 → tg@nicevpn123, server: od7ld-g03.jp04-3771-vm0.entry.fr0307a.art, port: 446, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 16 → tg@nicevpn123, server: 43.201.56.52, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 17 → tg@nicevpn123, server: 43.202.41.139, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 18 → tg@nicevpn123, server: 18.177.138.167, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 19 → tg@nicevpn123, server: 54.238.182.167, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 2 → tg@nicevpn123, server: 54.249.1.223, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 20 → tg@nicevpn123, server: 43.201.104.145, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 21 → tg@nicevpn123, server: 13.115.234.77, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 22 → tg@nicevpn123, server: 3.112.241.19, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 23 → tg@nicevpn123, server: 54.199.15.70, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 24 → tg@nicevpn123, server: 52.195.237.101, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 25 → tg@nicevpn123, server: cm5hi-g05.jp04-3771-vm0.entry.fr0307a.art, port: 448, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 26 → tg@nicevpn123, server: 2ssti-g01.jp04-3771-vm0.entry.fr0307a.art, port: 444, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 27 → tg@nicevpn123, server: 7gqt4-g01.jp04-3771-vm0.entry.fr0307a.art, port: 444, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 28 → tg@nicevpn123, server: h3qa5-g06.jp04-3771-vm0.entry.fr0307a.art, port: 449, type: vmess, uuid: 2278146c-8fb0-3683-8300-342238f8a9d0, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 29 → tg@nicevpn123, server: od7ld-g03.jp04-3771-vm0.entry.fr0307a.art, port: 446, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇯🇵 JP 3 → tg@nicevpn123, server: 43.203.201.192, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 4 → tg@nicevpn123, server: 52.195.225.184, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 5 → tg@nicevpn123, server: 52.69.81.42, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 6 → tg@nicevpn123, server: 43.207.80.176, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 7 → tg@nicevpn123, server: 13.112.216.180, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 8 → tg@nicevpn123, server: 43.206.237.42, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇯🇵 JP 9 → tg@nicevpn123, server: 54.248.173.222, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 1 → tg@nicevpn123, server: 54.180.133.185, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 10 → tg@nicevpn123, server: 211.201.169.70, port: 54345, type: ss, cipher: aes-256-cfb, password: qwerREWQ@@, udp: true}
- {name: 🇰🇷 KR 11 → tg@nicevpn123, server: 54.180.138.72, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 2 → tg@nicevpn123, server: 13.125.127.101, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 3 → tg@nicevpn123, server: p110.panda001.net, port: 54345, type: ss, cipher: aes-256-cfb, password: qwerREWQ@@, udp: true}
- {name: 🇰🇷 KR 4 → tg@nicevpn123, server: 13.125.25.193, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 5 → tg@nicevpn123, server: 54.180.9.46, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 6 → tg@nicevpn123, server: 13.125.19.50, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 7 → tg@nicevpn123, server: 54.180.156.133, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 8 → tg@nicevpn123, server: 13.209.11.98, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇰🇷 KR 9 → tg@nicevpn123, server: 218.237.185.230, port: 54345, type: ss, cipher: aes-256-cfb, password: qwerREWQ@@, udp: true}
- {name: 🇸🇬 SG 1 → tg@nicevpn123, server: 52.221.183.250, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 10 → tg@nicevpn123, server: 3.0.50.219, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 11 → tg@nicevpn123, server: 52.221.231.138, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 12 → tg@nicevpn123, server: 8.218.136.67, port: 34237, type: vmess, uuid: 345c1562-1449-36ca-adf6-d3d683476712, alterId: 0, cipher: auto, tls: true, skip-cert-verify: true, network: ws, ws-opts: {path: /db00}, udp: true}
- {name: 🇸🇬 SG 2 → tg@nicevpn123, server: 13.250.61.18, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 3 → tg@nicevpn123, server: 13.228.23.150, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 4 → tg@nicevpn123, server: 18.142.56.221, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 5 → tg@nicevpn123, server: 13.229.57.68, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 6 → tg@nicevpn123, server: 18.141.207.80, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 7 → tg@nicevpn123, server: 13.229.184.181, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 8 → tg@nicevpn123, server: 54.179.101.194, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇸🇬 SG 9 → tg@nicevpn123, server: 13.250.63.15, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 1 → tg@nicevpn123, server: tj2.dalazhi.cyou, port: 443, type: trojan, password: 8f70fde3-a04c-4f6a-b705-aef7406f6ac1, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 10 → tg@nicevpn123, server: admin.arzonhost.ir, port: 2086, type: vmess, uuid: 7d93e992-48cf-42d4-84f8-75768e815a4c, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: admin.arzonhost.ir}}, udp: true}
- {name: 🇺🇸 US 11 → tg@nicevpn123, server: 18.183.228.15, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 12 → tg@nicevpn123, server: s1c.v2.v001sss.xyz, port: 2082, type: vmess, uuid: 112ac36f-3f53-4e26-8371-d25c028e1b9a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: s1c.v2.v001sss.xyz}}, udp: true}
- {name: 🇺🇸 US 13 → tg@nicevpn123, server: 104.21.238.2, port: 80, type: vmess, uuid: c6b76370-e614-11ee-b531-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 14 → tg@nicevpn123, server: 104.21.238.130, port: 80, type: vmess, uuid: c6b76370-e614-11ee-b531-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 15 → tg@nicevpn123, server: 34.219.76.253, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 16 → tg@nicevpn123, server: us1.laobideng.xyz, port: 8880, type: vmess, uuid: f9c92e9c-5f92-4ff7-99a1-91a973b6ec57, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: us1.laobideng.xyz}}, udp: true}
- {name: 🇺🇸 US 17 → tg@nicevpn123, server: 104.21.8.157, port: 2082, type: vmess, uuid: 112ac36f-3f53-4e26-8371-d25c028e1b9a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇺🇸 US 18 → tg@nicevpn123, server: 172.67.130.140, port: 2082, type: vmess, uuid: 112ac36f-3f53-4e26-8371-d25c028e1b9a, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇺🇸 US 19 → tg@nicevpn123, server: 35.89.8.123, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 2 → tg@nicevpn123, server: en.laobideng.xyz, port: 8080, type: vmess, uuid: f9c92e9c-5f92-4ff7-99a1-91a973b6ec57, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: en.laobideng.xyz}}, udp: true}
- {name: 🇺🇸 US 20 → tg@nicevpn123, server: 35.86.136.148, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 21 → tg@nicevpn123, server: 54.187.81.197, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 22 → tg@nicevpn123, server: 54.218.30.121, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 23 → tg@nicevpn123, server: 18.246.240.239, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 24 → tg@nicevpn123, server: 104.21.237.160, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 25 → tg@nicevpn123, server: 35.87.36.143, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 26 → tg@nicevpn123, server: 154.23.190.162, port: 443, type: vmess, uuid: b9984674-f771-4e67-a198-c7e60720ba2c, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇺🇸 US 27 → tg@nicevpn123, server: 18.183.180.49, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 28 → tg@nicevpn123, server: 35.91.56.83, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 29 → tg@nicevpn123, server: 35.91.125.206, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 3 → tg@nicevpn123, server: 18.246.209.149, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 30 → tg@nicevpn123, server: us2.laobideng.xyz, port: 8080, type: vmess, uuid: f9c92e9c-5f92-4ff7-99a1-91a973b6ec57, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: us2.laobideng.xyz}}, udp: true}
- {name: 🇺🇸 US 31 → tg@nicevpn123, server: 35.77.89.124, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 32 → tg@nicevpn123, server: 34.216.106.166, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 33 → tg@nicevpn123, server: 18.237.116.67, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 34 → tg@nicevpn123, server: 34.222.20.208, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 35 → tg@nicevpn123, server: 104.21.235.6, port: 80, type: vmess, uuid: f4c98b50-e614-11ee-b430-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 36 → tg@nicevpn123, server: 104.21.238.66, port: 80, type: vmess, uuid: c6b76370-e614-11ee-b531-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 37 → tg@nicevpn123, server: 18.183.146.49, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 38 → tg@nicevpn123, server: 104.21.237.134, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 39 → tg@nicevpn123, server: 104.21.238.200, port: 80, type: vmess, uuid: c6b76370-e614-11ee-b531-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 4 → tg@nicevpn123, server: 104.21.237.124, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 40 → tg@nicevpn123, server: 104.21.237.26, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 41 → tg@nicevpn123, server: 35.77.92.181, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 42 → tg@nicevpn123, server: 104.21.235.46, port: 80, type: vmess, uuid: f4c98b50-e614-11ee-b430-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 43 → tg@nicevpn123, server: 104.21.237.189, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 44 → tg@nicevpn123, server: 104.21.237.191, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 45 → tg@nicevpn123, server: yhnsb3.shabijichang.com, port: 80, type: vmess, uuid: 56278a1a-c7cc-459f-b00c-3037e4f99590, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: yhnsb3.shabijichang.com}}, udp: true}
- {name: 🇺🇸 US 46 → tg@nicevpn123, server: 38.59.245.114, port: 15981, type: trojan, password: onBbMV6Bt9, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 47 → tg@nicevpn123, server: 35.87.1.148, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 48 → tg@nicevpn123, server: 18.183.101.186, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 49 → tg@nicevpn123, server: gyqdl-g05.jp01-0986-vm0.entry.fr0307a.art, port: 21585, type: vmess, uuid: e2f2f030-57c0-3849-8893-3898c46764d6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 5 → tg@nicevpn123, server: 104.21.84.38, port: 8880, type: vmess, uuid: f9c92e9c-5f92-4ff7-99a1-91a973b6ec57, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /}, udp: true}
- {name: 🇺🇸 US 50 → tg@nicevpn123, server: raniw-g05.jp02-9a99-vm0.entry.fr0307a.art, port: 11777, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 51 → tg@nicevpn123, server: tmq5u-g05.jp02-9a99-vm0.entry.fr0307a.art, port: 11777, type: vmess, uuid: e2f2f030-57c0-3849-8893-3898c46764d6, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 52 → tg@nicevpn123, server: t45a7-g03.jp02-9a99-vm0.entry.fr0307a.art, port: 11775, type: vmess, uuid: b37b7415-1608-3fcd-aa25-d9cc4aae5ded, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 53 → tg@nicevpn123, server: 1dk1l-g05.jp03-7d22-vm0.entry.fr0307a.art, port: 21585, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 54 → tg@nicevpn123, server: 01eb6-g01.jp03-7d22-vm0.entry.fr0307a.art, port: 21581, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 55 → tg@nicevpn123, server: b834o-g01.jp03-7d22-vm0.entry.fr0307a.art, port: 21581, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 56 → tg@nicevpn123, server: 104.21.237.184, port: 80, type: vmess, uuid: d31c39e0-e614-11ee-b333-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 57 → tg@nicevpn123, server: 0i4ui-g03.jp03-7d22-vm0.entry.fr0307a.art, port: 21583, type: vmess, uuid: b37b7415-1608-3fcd-aa25-d9cc4aae5ded, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 58 → tg@nicevpn123, server: 9azvt-g05.jp05-6786-vm0.entry.fr0307a.art, port: 46486, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 59 → tg@nicevpn123, server: oe6wc-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 6 → tg@nicevpn123, server: 104.21.235.170, port: 80, type: vmess, uuid: f4c98b50-e614-11ee-b430-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 60 → tg@nicevpn123, server: vt50k-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 61 → tg@nicevpn123, server: en7a5-g03.jp05-6786-vm0.entry.fr0307a.art, port: 46484, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 62 → tg@nicevpn123, server: 3wihp-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 63 → tg@nicevpn123, server: vo20e-g01.jp06-7c5a-vm0.entry.fr0307a.art, port: 28783, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 64 → tg@nicevpn123, server: 1ridh-g06.jp06-7c5a-vm0.entry.fr0307a.art, port: 28788, type: vmess, uuid: 2278146c-8fb0-3683-8300-342238f8a9d0, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 65 → tg@nicevpn123, server: lotn9-g03.jp06-7c5a-vm0.entry.fr0307a.art, port: 28785, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 66 → tg@nicevpn123, server: 7oi23-g04.jp06-7c5a-vm0.entry.fr0307a.art, port: 28786, type: vmess, uuid: e147ce52-2598-31b0-950d-6b12c306b360, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 67 → tg@nicevpn123, server: mizban.arzonhost.ir, port: 2086, type: vmess, uuid: e690ff9e-1676-4be3-d136-dcae586cb1e7, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: /, headers: {Host: mizban.arzonhost.ir}}, udp: true}
- {name: 🇺🇸 US 68 → tg@nicevpn123, server: tfu6i-g01.jp06-7c5a-vm0.entry.fr0307a.art, port: 28783, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 69 → tg@nicevpn123, server: 3.34.200.94, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 7 → tg@nicevpn123, server: 104.21.238.159, port: 80, type: vmess, uuid: c6b76370-e614-11ee-b531-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, skip-cert-verify: true, network: ws, ws-opts: {path: "/?ed=2048"}, udp: true}
- {name: 🇺🇸 US 70 → tg@nicevpn123, server: 54.245.36.10, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 71 → tg@nicevpn123, server: 47.243.28.9, port: 26927, type: vmess, uuid: 4db02294-d433-4ffa-ee5c-50fbc9e8f28f, alterId: 0, cipher: auto, tls: true, skip-cert-verify: true, network: ws, ws-opts: {path: /4db02294}, udp: true}
- {name: 🇺🇸 US 72 → tg@nicevpn123, server: 54.202.195.163, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 73 → tg@nicevpn123, server: gyqdl-g05.jp01-0986-vm0.entry.fr0307a.art, port: 21585, type: vmess, uuid: e2f2f030-57c0-3849-8893-3898c46764d6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 74 → tg@nicevpn123, server: raniw-g05.jp02-9a99-vm0.entry.fr0307a.art, port: 11777, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 75 → tg@nicevpn123, server: tmq5u-g05.jp02-9a99-vm0.entry.fr0307a.art, port: 11777, type: vmess, uuid: e2f2f030-57c0-3849-8893-3898c46764d6, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 76 → tg@nicevpn123, server: t45a7-g03.jp02-9a99-vm0.entry.fr0307a.art, port: 11775, type: vmess, uuid: b37b7415-1608-3fcd-aa25-d9cc4aae5ded, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 77 → tg@nicevpn123, server: 1dk1l-g05.jp03-7d22-vm0.entry.fr0307a.art, port: 21585, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 78 → tg@nicevpn123, server: 01eb6-g01.jp03-7d22-vm0.entry.fr0307a.art, port: 21581, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 79 → tg@nicevpn123, server: b834o-g01.jp03-7d22-vm0.entry.fr0307a.art, port: 21581, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 8 → tg@nicevpn123, server: 52.33.243.193, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 80 → tg@nicevpn123, server: 0i4ui-g03.jp03-7d22-vm0.entry.fr0307a.art, port: 21583, type: vmess, uuid: b37b7415-1608-3fcd-aa25-d9cc4aae5ded, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 81 → tg@nicevpn123, server: 9azvt-g05.jp05-6786-vm0.entry.fr0307a.art, port: 46486, type: vmess, uuid: 4b991d1c-f7a2-348e-b785-8daf386b6864, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 82 → tg@nicevpn123, server: oe6wc-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 83 → tg@nicevpn123, server: vt50k-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: 7a6cb59b-fbcd-3f50-b5f2-a2534326c4c8, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 84 → tg@nicevpn123, server: en7a5-g03.jp05-6786-vm0.entry.fr0307a.art, port: 46484, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 85 → tg@nicevpn123, server: 3wihp-g01.jp05-6786-vm0.entry.fr0307a.art, port: 46482, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: false, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 86 → tg@nicevpn123, server: vo20e-g01.jp06-7c5a-vm0.entry.fr0307a.art, port: 28783, type: vmess, uuid: b52da429-91a0-3834-a4e0-0ed299ba8121, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 87 → tg@nicevpn123, server: 1ridh-g06.jp06-7c5a-vm0.entry.fr0307a.art, port: 28788, type: vmess, uuid: 2278146c-8fb0-3683-8300-342238f8a9d0, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 88 → tg@nicevpn123, server: lotn9-g03.jp06-7c5a-vm0.entry.fr0307a.art, port: 28785, type: vmess, uuid: dd121fb6-3fbc-3a11-bf1d-5532a767af7e, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 89 → tg@nicevpn123, server: 7oi23-g04.jp06-7c5a-vm0.entry.fr0307a.art, port: 28786, type: vmess, uuid: e147ce52-2598-31b0-950d-6b12c306b360, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
- {name: 🇺🇸 US 9 → tg@nicevpn123, server: 18.236.72.6, port: 443, type: ss, cipher: aes-256-cfb, password: amazonskr05, udp: true}
- {name: 🇺🇸 US 90 → tg@nicevpn123, server: tfu6i-g01.jp06-7c5a-vm0.entry.fr0307a.art, port: 28783, type: vmess, uuid: daa811f7-7e7e-3089-9361-d2de712e59b6, alterId: 1, cipher: auto, tls: true, skip-cert-verify: true, udp: true}
proxy-groups:
- name: 🌐 节点选择
type: select
proxies:
- ✋ 手动选择
- 💡 自动选择
- 🪜 故障转移
- 🇭🇰 香港节点
- 🇯🇵 日本节点
- 🇺🇲 美国节点
- 🇹🇼 台湾节点
- 🇸🇬 狮城节点
- 🇰🇷 韩国节点
- 🌍 其他地区
- name: ✋ 手动选择
type: select
proxies:
- BE 1 → tg@nicevpn123
- MO 1 → tg@nicevpn123
- MO 2 → tg@nicevpn123
- MO 3 → tg@nicevpn123
- MO 4 → tg@nicevpn123
- RW 1 → tg@nicevpn123
- RW 2 → tg@nicevpn123
- RW 3 → tg@nicevpn123
- RW 4 → tg@nicevpn123
- RW 5 → tg@nicevpn123
- 🇨🇦 CA 1 → tg@nicevpn123
- 🇨🇦 CA 10 → tg@nicevpn123
- 🇨🇦 CA 11 → tg@nicevpn123
- 🇨🇦 CA 12 → tg@nicevpn123
- 🇨🇦 CA 13 → tg@nicevpn123
- 🇨🇦 CA 14 → tg@nicevpn123
- 🇨🇦 CA 15 → tg@nicevpn123
- 🇨🇦 CA 16 → tg@nicevpn123
- 🇨🇦 CA 17 → tg@nicevpn123
- 🇨🇦 CA 18 → tg@nicevpn123
- 🇨🇦 CA 19 → tg@nicevpn123
- 🇨🇦 CA 2 → tg@nicevpn123
- 🇨🇦 CA 3 → tg@nicevpn123
- 🇨🇦 CA 4 → tg@nicevpn123
- 🇨🇦 CA 5 → tg@nicevpn123
- 🇨🇦 CA 6 → tg@nicevpn123
- 🇨🇦 CA 7 → tg@nicevpn123
- 🇨🇦 CA 8 → tg@nicevpn123
- 🇨🇦 CA 9 → tg@nicevpn123
- 🇨🇳 CN 1 → tg@nicevpn123
- 🇨🇳 CN 10 → tg@nicevpn123
- 🇨🇳 CN 100 → tg@nicevpn123
- 🇨🇳 CN 101 → tg@nicevpn123
- 🇨🇳 CN 102 → tg@nicevpn123
- 🇨🇳 CN 103 → tg@nicevpn123
- 🇨🇳 CN 104 → tg@nicevpn123
- 🇨🇳 CN 105 → tg@nicevpn123
- 🇨🇳 CN 106 → tg@nicevpn123
- 🇨🇳 CN 107 → tg@nicevpn123
- 🇨🇳 CN 108 → tg@nicevpn123
- 🇨🇳 CN 109 → tg@nicevpn123
- 🇨🇳 CN 11 → tg@nicevpn123
- 🇨🇳 CN 110 → tg@nicevpn123
- 🇨🇳 CN 111 → tg@nicevpn123
- 🇨🇳 CN 112 → tg@nicevpn123
- 🇨🇳 CN 113 → tg@nicevpn123
- 🇨🇳 CN 114 → tg@nicevpn123
- 🇨🇳 CN 115 → tg@nicevpn123
- 🇨🇳 CN 116 → tg@nicevpn123
- 🇨🇳 CN 117 → tg@nicevpn123
- 🇨🇳 CN 118 → tg@nicevpn123
- 🇨🇳 CN 119 → tg@nicevpn123
- 🇨🇳 CN 12 → tg@nicevpn123
- 🇨🇳 CN 120 → tg@nicevpn123
- 🇨🇳 CN 121 → tg@nicevpn123
- 🇨🇳 CN 122 → tg@nicevpn123
- 🇨🇳 CN 123 → tg@nicevpn123
- 🇨🇳 CN 13 → tg@nicevpn123
- 🇨🇳 CN 14 → tg@nicevpn123
- 🇨🇳 CN 15 → tg@nicevpn123
- 🇨🇳 CN 16 → tg@nicevpn123
- 🇨🇳 CN 17 → tg@nicevpn123
- 🇨🇳 CN 18 → tg@nicevpn123
- 🇨🇳 CN 19 → tg@nicevpn123
- 🇨🇳 CN 2 → tg@nicevpn123
- 🇨🇳 CN 20 → tg@nicevpn123
- 🇨🇳 CN 21 → tg@nicevpn123
- 🇨🇳 CN 22 → tg@nicevpn123
- 🇨🇳 CN 23 → tg@nicevpn123
- 🇨🇳 CN 24 → tg@nicevpn123
- 🇨🇳 CN 25 → tg@nicevpn123
- 🇨🇳 CN 26 → tg@nicevpn123
- 🇨🇳 CN 27 → tg@nicevpn123
- 🇨🇳 CN 28 → tg@nicevpn123
- 🇨🇳 CN 29 → tg@nicevpn123
- 🇨🇳 CN 3 → tg@nicevpn123
- 🇨🇳 CN 30 → tg@nicevpn123
- 🇨🇳 CN 31 → tg@nicevpn123
- 🇨🇳 CN 32 → tg@nicevpn123
- 🇨🇳 CN 33 → tg@nicevpn123
- 🇨🇳 CN 34 → tg@nicevpn123
- 🇨🇳 CN 35 → tg@nicevpn123
- 🇨🇳 CN 36 → tg@nicevpn123
- 🇨🇳 CN 37 → tg@nicevpn123
- 🇨🇳 CN 38 → tg@nicevpn123
- 🇨🇳 CN 39 → tg@nicevpn123
- 🇨🇳 CN 4 → tg@nicevpn123
- 🇨🇳 CN 40 → tg@nicevpn123
- 🇨🇳 CN 41 → tg@nicevpn123
- 🇨🇳 CN 42 → tg@nicevpn123
- 🇨🇳 CN 43 → tg@nicevpn123
- 🇨🇳 CN 44 → tg@nicevpn123
- 🇨🇳 CN 45 → tg@nicevpn123
- 🇨🇳 CN 46 → tg@nicevpn123
- 🇨🇳 CN 47 → tg@nicevpn123
- 🇨🇳 CN 48 → tg@nicevpn123
- 🇨🇳 CN 49 → tg@nicevpn123
- 🇨🇳 CN 5 → tg@nicevpn123
- 🇨🇳 CN 50 → tg@nicevpn123
- 🇨🇳 CN 51 → tg@nicevpn123
- 🇨🇳 CN 52 → tg@nicevpn123
- 🇨🇳 CN 53 → tg@nicevpn123
- 🇨🇳 CN 54 → tg@nicevpn123
- 🇨🇳 CN 55 → tg@nicevpn123
- 🇨🇳 CN 56 → tg@nicevpn123
- 🇨🇳 CN 57 → tg@nicevpn123
- 🇨🇳 CN 58 → tg@nicevpn123
- 🇨🇳 CN 59 → tg@nicevpn123
- 🇨🇳 CN 6 → tg@nicevpn123
- 🇨🇳 CN 60 → tg@nicevpn123
- 🇨🇳 CN 61 → tg@nicevpn123
- 🇨🇳 CN 62 → tg@nicevpn123
- 🇨🇳 CN 63 → tg@nicevpn123
- 🇨🇳 CN 64 → tg@nicevpn123
- 🇨🇳 CN 65 → tg@nicevpn123
- 🇨🇳 CN 66 → tg@nicevpn123
- 🇨🇳 CN 67 → tg@nicevpn123
- 🇨🇳 CN 68 → tg@nicevpn123
- 🇨🇳 CN 69 → tg@nicevpn123
- 🇨🇳 CN 7 → tg@nicevpn123
- 🇨🇳 CN 70 → tg@nicevpn123
- 🇨🇳 CN 71 → tg@nicevpn123
- 🇨🇳 CN 72 → tg@nicevpn123
- 🇨🇳 CN 73 → tg@nicevpn123
- 🇨🇳 CN 74 → tg@nicevpn123
- 🇨🇳 CN 75 → tg@nicevpn123
- 🇨🇳 CN 76 → tg@nicevpn123
- 🇨🇳 CN 77 → tg@nicevpn123
- 🇨🇳 CN 78 → tg@nicevpn123
- 🇨🇳 CN 79 → tg@nicevpn123
- 🇨🇳 CN 8 → tg@nicevpn123
- 🇨🇳 CN 80 → tg@nicevpn123
- 🇨🇳 CN 81 → tg@nicevpn123
- 🇨🇳 CN 82 → tg@nicevpn123
- 🇨🇳 CN 83 → tg@nicevpn123
- 🇨🇳 CN 84 → tg@nicevpn123
- 🇨🇳 CN 85 → tg@nicevpn123
- 🇨🇳 CN 86 → tg@nicevpn123
- 🇨🇳 CN 87 → tg@nicevpn123
- 🇨🇳 CN 88 → tg@nicevpn123
- 🇨🇳 CN 89 → tg@nicevpn123
- 🇨🇳 CN 9 → tg@nicevpn123
- 🇨🇳 CN 90 → tg@nicevpn123
- 🇨🇳 CN 91 → tg@nicevpn123
- 🇨🇳 CN 92 → tg@nicevpn123
- 🇨🇳 CN 93 → tg@nicevpn123
- 🇨🇳 CN 94 → tg@nicevpn123
- 🇨🇳 CN 95 → tg@nicevpn123
- 🇨🇳 CN 96 → tg@nicevpn123
- 🇨🇳 CN 97 → tg@nicevpn123
- 🇨🇳 CN 98 → tg@nicevpn123
- 🇨🇳 CN 99 → tg@nicevpn123
- 🇨🇳 TW 1 → tg@nicevpn123
- 🇨🇳 TW 10 → tg@nicevpn123
- 🇨🇳 TW 11 → tg@nicevpn123
- 🇨🇳 TW 12 → tg@nicevpn123
- 🇨🇳 TW 13 → tg@nicevpn123
- 🇨🇳 TW 14 → tg@nicevpn123
- 🇨🇳 TW 2 → tg@nicevpn123
- 🇨🇳 TW 3 → tg@nicevpn123
- 🇨🇳 TW 4 → tg@nicevpn123
- 🇨🇳 TW 5 → tg@nicevpn123
- 🇨🇳 TW 6 → tg@nicevpn123
- 🇨🇳 TW 7 → tg@nicevpn123
- 🇨🇳 TW 8 → tg@nicevpn123
- 🇨🇳 TW 9 → tg@nicevpn123
- 🇫🇷 FR 1 → tg@nicevpn123
- 🇫🇷 FR 2 → tg@nicevpn123
- 🇬🇧 GB 1 → tg@nicevpn123
- 🇬🇧 GB 2 → tg@nicevpn123
- 🇬🇧 GB 3 → tg@nicevpn123
- 🇬🇧 GB 4 → tg@nicevpn123
- 🇭🇰 HK 1 → tg@nicevpn123
- 🇮🇳 IN 1 → tg@nicevpn123
- 🇮🇳 IN 10 → tg@nicevpn123
- 🇮🇳 IN 2 → tg@nicevpn123
- 🇮🇳 IN 3 → tg@nicevpn123
- 🇮🇳 IN 4 → tg@nicevpn123
- 🇮🇳 IN 5 → tg@nicevpn123
- 🇮🇳 IN 6 → tg@nicevpn123
- 🇮🇳 IN 7 → tg@nicevpn123
- 🇮🇳 IN 8 → tg@nicevpn123
- 🇮🇳 IN 9 → tg@nicevpn123
- 🇯🇵 JP 1 → tg@nicevpn123
- 🇯🇵 JP 10 → tg@nicevpn123
- 🇯🇵 JP 11 → tg@nicevpn123
- 🇯🇵 JP 12 → tg@nicevpn123
- 🇯🇵 JP 13 → tg@nicevpn123
- 🇯🇵 JP 14 → tg@nicevpn123
- 🇯🇵 JP 15 → tg@nicevpn123
- 🇯🇵 JP 16 → tg@nicevpn123
- 🇯🇵 JP 17 → tg@nicevpn123
- 🇯🇵 JP 18 → tg@nicevpn123
- 🇯🇵 JP 19 → tg@nicevpn123
- 🇯🇵 JP 2 → tg@nicevpn123
- 🇯🇵 JP 20 → tg@nicevpn123
- 🇯🇵 JP 21 → tg@nicevpn123
- 🇯🇵 JP 22 → tg@nicevpn123
- 🇯🇵 JP 23 → tg@nicevpn123
- 🇯🇵 JP 24 → tg@nicevpn123
- 🇯🇵 JP 25 → tg@nicevpn123
- 🇯🇵 JP 26 → tg@nicevpn123
- 🇯🇵 JP 27 → tg@nicevpn123
- 🇯🇵 JP 28 → tg@nicevpn123
- 🇯🇵 JP 29 → tg@nicevpn123
- 🇯🇵 JP 3 → tg@nicevpn123
- 🇯🇵 JP 4 → tg@nicevpn123
- 🇯🇵 JP 5 → tg@nicevpn123
- 🇯🇵 JP 6 → tg@nicevpn123
- 🇯🇵 JP 7 → tg@nicevpn123
- 🇯🇵 JP 8 → tg@nicevpn123
- 🇯🇵 JP 9 → tg@nicevpn123
- 🇰🇷 KR 1 → tg@nicevpn123
- 🇰🇷 KR 10 → tg@nicevpn123
- 🇰🇷 KR 11 → tg@nicevpn123
- 🇰🇷 KR 2 → tg@nicevpn123
- 🇰🇷 KR 3 → tg@nicevpn123
- 🇰🇷 KR 4 → tg@nicevpn123
- 🇰🇷 KR 5 → tg@nicevpn123
- 🇰🇷 KR 6 → tg@nicevpn123
- 🇰🇷 KR 7 → tg@nicevpn123
- 🇰🇷 KR 8 → tg@nicevpn123
- 🇰🇷 KR 9 → tg@nicevpn123
- 🇸🇬 SG 1 → tg@nicevpn123
- 🇸🇬 SG 10 → tg@nicevpn123
- 🇸🇬 SG 11 → tg@nicevpn123
- 🇸🇬 SG 12 → tg@nicevpn123
- 🇸🇬 SG 2 → tg@nicevpn123
- 🇸🇬 SG 3 → tg@nicevpn123
- 🇸🇬 SG 4 → tg@nicevpn123
- 🇸🇬 SG 5 → tg@nicevpn123
- 🇸🇬 SG 6 → tg@nicevpn123
- 🇸🇬 SG 7 → tg@nicevpn123
- 🇸🇬 SG 8 → tg@nicevpn123
- 🇸🇬 SG 9 → tg@nicevpn123
- 🇺🇸 US 1 → tg@nicevpn123
- 🇺🇸 US 10 → tg@nicevpn123
- 🇺🇸 US 11 → tg@nicevpn123
- 🇺🇸 US 12 → tg@nicevpn123
- 🇺🇸 US 13 → tg@nicevpn123
- 🇺🇸 US 14 → tg@nicevpn123
- 🇺🇸 US 15 → tg@nicevpn123
- 🇺🇸 US 16 → tg@nicevpn123
- 🇺🇸 US 17 → tg@nicevpn123
- 🇺🇸 US 18 → tg@nicevpn123
- 🇺🇸 US 19 → tg@nicevpn123
- 🇺🇸 US 2 → tg@nicevpn123
- 🇺🇸 US 20 → tg@nicevpn123
- 🇺🇸 US 21 → tg@nicevpn123
- 🇺🇸 US 22 → tg@nicevpn123
- 🇺🇸 US 23 → tg@nicevpn123
- 🇺🇸 US 24 → tg@nicevpn123
- 🇺🇸 US 25 → tg@nicevpn123
- 🇺🇸 US 26 → tg@nicevpn123
- 🇺🇸 US 27 → tg@nicevpn123
- 🇺🇸 US 28 → tg@nicevpn123
- 🇺🇸 US 29 → tg@nicevpn123
- 🇺🇸 US 3 → tg@nicevpn123
- 🇺🇸 US 30 → tg@nicevpn123
- 🇺🇸 US 31 → tg@nicevpn123
- 🇺🇸 US 32 → tg@nicevpn123
- 🇺🇸 US 33 → tg@nicevpn123
- 🇺🇸 US 34 → tg@nicevpn123
- 🇺🇸 US 35 → tg@nicevpn123
- 🇺🇸 US 36 → tg@nicevpn123
- 🇺🇸 US 37 → tg@nicevpn123
- 🇺🇸 US 38 → tg@nicevpn123
- 🇺🇸 US 39 → tg@nicevpn123
- 🇺🇸 US 4 → tg@nicevpn123
- 🇺🇸 US 40 → tg@nicevpn123
- 🇺🇸 US 41 → tg@nicevpn123
- 🇺🇸 US 42 → tg@nicevpn123
- 🇺🇸 US 43 → tg@nicevpn123
- 🇺🇸 US 44 → tg@nicevpn123
- 🇺🇸 US 45 → tg@nicevpn123
- 🇺🇸 US 46 → tg@nicevpn123
- 🇺🇸 US 47 → tg@nicevpn123
- 🇺🇸 US 48 → tg@nicevpn123
- 🇺🇸 US 49 → tg@nicevpn123
- 🇺🇸 US 5 → tg@nicevpn123
- 🇺🇸 US 50 → tg@nicevpn123
- 🇺🇸 US 51 → tg@nicevpn123
- 🇺🇸 US 52 → tg@nicevpn123
- 🇺🇸 US 53 → tg@nicevpn123
- 🇺🇸 US 54 → tg@nicevpn123
- 🇺🇸 US 55 → tg@nicevpn123
- 🇺🇸 US 56 → tg@nicevpn123
- 🇺🇸 US 57 → tg@nicevpn123
- 🇺🇸 US 58 → tg@nicevpn123
- 🇺🇸 US 59 → tg@nicevpn123
- 🇺🇸 US 6 → tg@nicevpn123
- 🇺🇸 US 60 → tg@nicevpn123
- 🇺🇸 US 61 → tg@nicevpn123
- 🇺🇸 US 62 → tg@nicevpn123
- 🇺🇸 US 63 → tg@nicevpn123
- 🇺🇸 US 64 → tg@nicevpn123
- 🇺🇸 US 65 → tg@nicevpn123
- 🇺🇸 US 66 → tg@nicevpn123
- 🇺🇸 US 67 → tg@nicevpn123
- 🇺🇸 US 68 → tg@nicevpn123
- 🇺🇸 US 69 → tg@nicevpn123
- 🇺🇸 US 7 → tg@nicevpn123
- 🇺🇸 US 70 → tg@nicevpn123
- 🇺🇸 US 71 → tg@nicevpn123
- 🇺🇸 US 72 → tg@nicevpn123
- 🇺🇸 US 73 → tg@nicevpn123
- 🇺🇸 US 74 → tg@nicevpn123
- 🇺🇸 US 75 → tg@nicevpn123
- 🇺🇸 US 76 → tg@nicevpn123
- 🇺🇸 US 77 → tg@nicevpn123
- 🇺🇸 US 78 → tg@nicevpn123
- 🇺🇸 US 79 → tg@nicevpn123
- 🇺🇸 US 8 → tg@nicevpn123
- 🇺🇸 US 80 → tg@nicevpn123
- 🇺🇸 US 81 → tg@nicevpn123
- 🇺🇸 US 82 → tg@nicevpn123
- 🇺🇸 US 83 → tg@nicevpn123
- 🇺🇸 US 84 → tg@nicevpn123
- 🇺🇸 US 85 → tg@nicevpn123
- 🇺🇸 US 86 → tg@nicevpn123
- 🇺🇸 US 87 → tg@nicevpn123
- 🇺🇸 US 88 → tg@nicevpn123
- 🇺🇸 US 89 → tg@nicevpn123
- 🇺🇸 US 9 → tg@nicevpn123
- 🇺🇸 US 90 → tg@nicevpn123
- name: 💡 自动选择
type: url-test
url: https://www.google.com/generate_204
interval: 300
tolerance: 50
proxies:
- BE 1 → tg@nicevpn123
- MO 1 → tg@nicevpn123
- MO 2 → tg@nicevpn123
- MO 3 → tg@nicevpn123
- MO 4 → tg@nicevpn123
- RW 1 → tg@nicevpn123
- RW 2 → tg@nicevpn123
- RW 3 → tg@nicevpn123
- RW 4 → tg@nicevpn123
- RW 5 → tg@nicevpn123
- 🇨🇦 CA 1 → tg@nicevpn123
- 🇨🇦 CA 10 → tg@nicevpn123
- 🇨🇦 CA 11 → tg@nicevpn123
- 🇨🇦 CA 12 → tg@nicevpn123
- 🇨🇦 CA 13 → tg@nicevpn123
- 🇨🇦 CA 14 → tg@nicevpn123
- 🇨🇦 CA 15 → tg@nicevpn123
- 🇨🇦 CA 16 → tg@nicevpn123
- 🇨🇦 CA 17 → tg@nicevpn123
- 🇨🇦 CA 18 → tg@nicevpn123
- 🇨🇦 CA 19 → tg@nicevpn123
- 🇨🇦 CA 2 → tg@nicevpn123
- 🇨🇦 CA 3 → tg@nicevpn123
- 🇨🇦 CA 4 → tg@nicevpn123
- 🇨🇦 CA 5 → tg@nicevpn123
- 🇨🇦 CA 6 → tg@nicevpn123
- 🇨🇦 CA 7 → tg@nicevpn123
- 🇨🇦 CA 8 → tg@nicevpn123
- 🇨🇦 CA 9 → tg@nicevpn123
- 🇨🇳 CN 1 → tg@nicevpn123
- 🇨🇳 CN 10 → tg@nicevpn123
- 🇨🇳 CN 100 → tg@nicevpn123
- 🇨🇳 CN 101 → tg@nicevpn123
- 🇨🇳 CN 102 → tg@nicevpn123
- 🇨🇳 CN 103 → tg@nicevpn123
- 🇨🇳 CN 104 → tg@nicevpn123
- 🇨🇳 CN 105 → tg@nicevpn123
- 🇨🇳 CN 106 → tg@nicevpn123
- 🇨🇳 CN 107 → tg@nicevpn123
- 🇨🇳 CN 108 → tg@nicevpn123
- 🇨🇳 CN 109 → tg@nicevpn123
- 🇨🇳 CN 11 → tg@nicevpn123
- 🇨🇳 CN 110 → tg@nicevpn123
- 🇨🇳 CN 111 → tg@nicevpn123
- 🇨🇳 CN 112 → tg@nicevpn123
- 🇨🇳 CN 113 → tg@nicevpn123
- 🇨🇳 CN 114 → tg@nicevpn123
- 🇨🇳 CN 115 → tg@nicevpn123
- 🇨🇳 CN 116 → tg@nicevpn123
- 🇨🇳 CN 117 → tg@nicevpn123
- 🇨🇳 CN 118 → tg@nicevpn123
- 🇨🇳 CN 119 → tg@nicevpn123
- 🇨🇳 CN 12 → tg@nicevpn123
- 🇨🇳 CN 120 → tg@nicevpn123
- 🇨🇳 CN 121 → tg@nicevpn123
- 🇨🇳 CN 122 → tg@nicevpn123
- 🇨🇳 CN 123 → tg@nicevpn123
- 🇨🇳 CN 13 → tg@nicevpn123
- 🇨🇳 CN 14 → tg@nicevpn123
- 🇨🇳 CN 15 → tg@nicevpn123
- 🇨🇳 CN 16 → tg@nicevpn123
- 🇨🇳 CN 17 → tg@nicevpn123
- 🇨🇳 CN 18 → tg@nicevpn123
- 🇨🇳 CN 19 → tg@nicevpn123
- 🇨🇳 CN 2 → tg@nicevpn123
- 🇨🇳 CN 20 → tg@nicevpn123
- 🇨🇳 CN 21 → tg@nicevpn123
- 🇨🇳 CN 22 → tg@nicevpn123
- 🇨🇳 CN 23 → tg@nicevpn123
- 🇨🇳 CN 24 → tg@nicevpn123
- 🇨🇳 CN 25 → tg@nicevpn123
- 🇨🇳 CN 26 → tg@nicevpn123
- 🇨🇳 CN 27 → tg@nicevpn123
- 🇨🇳 CN 28 → tg@nicevpn123
- 🇨🇳 CN 29 → tg@nicevpn123
- 🇨🇳 CN 3 → tg@nicevpn123
- 🇨🇳 CN 30 → tg@nicevpn123
- 🇨🇳 CN 31 → tg@nicevpn123
- 🇨🇳 CN 32 → tg@nicevpn123
- 🇨🇳 CN 33 → tg@nicevpn123
- 🇨🇳 CN 34 → tg@nicevpn123
- 🇨🇳 CN 35 → tg@nicevpn123
- 🇨🇳 CN 36 → tg@nicevpn123
- 🇨🇳 CN 37 → tg@nicevpn123
- 🇨🇳 CN 38 → tg@nicevpn123
- 🇨🇳 CN 39 → tg@nicevpn123
- 🇨🇳 CN 4 → tg@nicevpn123
- 🇨🇳 CN 40 → tg@nicevpn123
- 🇨🇳 CN 41 → tg@nicevpn123
- 🇨🇳 CN 42 → tg@nicevpn123
- 🇨🇳 CN 43 → tg@nicevpn123
- 🇨🇳 CN 44 → tg@nicevpn123
- 🇨🇳 CN 45 → tg@nicevpn123
- 🇨🇳 CN 46 → tg@nicevpn123
- 🇨🇳 CN 47 → tg@nicevpn123
- 🇨🇳 CN 48 → tg@nicevpn123
- 🇨🇳 CN 49 → tg@nicevpn123
- 🇨🇳 CN 5 → tg@nicevpn123
- 🇨🇳 CN 50 → tg@nicevpn123
- 🇨🇳 CN 51 → tg@nicevpn123
- 🇨🇳 CN 52 → tg@nicevpn123
- 🇨🇳 CN 53 → tg@nicevpn123
- 🇨🇳 CN 54 → tg@nicevpn123
- 🇨🇳 CN 55 → tg@nicevpn123
- 🇨🇳 CN 56 → tg@nicevpn123
- 🇨🇳 CN 57 → tg@nicevpn123
- 🇨🇳 CN 58 → tg@nicevpn123
- 🇨🇳 CN 59 → tg@nicevpn123
- 🇨🇳 CN 6 → tg@nicevpn123
- 🇨🇳 CN 60 → tg@nicevpn123
- 🇨🇳 CN 61 → tg@nicevpn123
- 🇨🇳 CN 62 → tg@nicevpn123
- 🇨🇳 CN 63 → tg@nicevpn123
- 🇨🇳 CN 64 → tg@nicevpn123
- 🇨🇳 CN 65 → tg@nicevpn123
- 🇨🇳 CN 66 → tg@nicevpn123
- 🇨🇳 CN 67 → tg@nicevpn123
- 🇨🇳 CN 68 → tg@nicevpn123
- 🇨🇳 CN 69 → tg@nicevpn123
- 🇨🇳 CN 7 → tg@nicevpn123
- 🇨🇳 CN 70 → tg@nicevpn123
- 🇨🇳 CN 71 → tg@nicevpn123
- 🇨🇳 CN 72 → tg@nicevpn123
- 🇨🇳 CN 73 → tg@nicevpn123
- 🇨🇳 CN 74 → tg@nicevpn123
- 🇨🇳 CN 75 → tg@nicevpn123
- 🇨🇳 CN 76 → tg@nicevpn123
- 🇨🇳 CN 77 → tg@nicevpn123
- 🇨🇳 CN 78 → tg@nicevpn123