forked from Flikify/getNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clash.yaml
12842 lines (12842 loc) · 691 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: :9090
proxies:
- {name: 🇺🇸 _US_美国->🇳🇱_NL_荷兰, server: 45.199.138.191, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696251522438}}
- {name: 🇫🇷 _FR_法国_1, server: 51.158.200.72, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇫🇷 _FR_法国_2, server: 51.158.54.209, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇫🇷 _FR_法国_3, server: 51.159.221.227, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇵🇰 _PK_巴基斯坦, server: jp1-reality.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen, port: 443, client-fingerprint: chrome, type: trojan, password: a3f221f8-43d6-4363-8624-ce62d3db0202, sni: 13-231-155-134.nhost.00cdn.com, skip-cert-verify: false}
- {name: 🇺🇸 _US_美国_1, server: wnd3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: wnd3.shabijichang.com}}}
- {name: 🇩🇪 _DE_德国, server: 49.13.115.8, port: 46818, client-fingerprint: chrome, type: vmess, uuid: 42776ed6-aac6-4f94-daa5-c6bd198d09b2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vpnv2rayspeed}}
- {name: 🇫🇷 _FR_法国_4, server: 51.159.221.219, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇫🇷 _FR_法国_5, server: 51.159.222.35, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇫🇷 _FR_法国_6, server: 62.210.88.168, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇺🇸 _US_美国_2, server: 89.187.181.179, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇫🇷 _FR_法国_7, server: 62.210.88.148, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇺🇸 _US_美国_3, server: lt1.992688.xyz, port: 2052, client-fingerprint: chrome, type: vmess, uuid: fa5fc74f-0f0b-4221-82ba-dc7cd24e24e5, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: lt1.992688.xyz}}}
- {name: 🇺🇸 _US_美国_4, server: sbl2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: sbl2.shabijichang.com}}}
- {name: 🇺🇸 _US_美国_5, server: 172.67.184.13, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 🇺🇸 _US_美国_6, server: jd2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: 56278a1a-c7cc-459f-b00c-3037e4f99590, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: jd2.shabijichang.com}}}
- {name: 🇺🇸 _US_美国_7, server: 5.161.159.21, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3d1fab6e-3bd6-472b-8d9c-9934c04eaf40, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: http, http-opts: {method: GET, path: [/]}}
- {name: 🇺🇸 _US_美国_8, server: 104.21.75.246, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 🇺🇸 _US_美国->🇮🇳_IN_印度_1, server: mm2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm2.shabijichang.com}}}
- {name: 🇺🇸 _US_美国_9, server: 156.225.67.104, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 29a5d48e-24f1-48fd-a5e1-9a46cb31032f, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696944806961}}
- {name: 🇺🇸 _US_美国->🇬🇧_GB_英国, server: ld2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: ld2.shabijichang.com}}}
- {name: 🇺🇸 _US_美国->🇿🇦_ZA_南非, server: yhnsb3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: yhnsb3.shabijichang.com}}}
- {name: 🇫🇷 _FR_法国_8, server: 54.36.173.159, port: 443, client-fingerprint: chrome, type: trojan, password: e4f288433b, sni: pol1.connecton.surf, skip-cert-verify: false}
- {name: 🇫🇷 _FR_法国->🇳🇱_NL_荷兰, server: 156.249.18.4, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 84d1de11-ce12-4a15-8312-1338356d4ac4, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: www.57424349.xyz, network: ws, ws-opts: {path: /path/1697719506275}}
- {name: 🇺🇸 _US_美国_10, server: asb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: asb2.shabijichang.com}}}
- {name: 🇺🇸 _US_美国->🇸🇦_SA_沙特阿拉伯, server: jd3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: jd3.shabijichang.com}}}
- {name: 🇺🇸 _US_美国->🇮🇳_IN_印度_2, server: mm3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm3.shabijichang.com}}}
- {name: 🇷🇴 _RO_罗马尼亚, server: 5.182.37.119, port: 12581, client-fingerprint: chrome, type: vmess, uuid: 51554d87-7fd0-4dd1-9277-bcbb2d12b64b, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 美国-康涅狄格-0-ss-13.213.46.196:443, server: 13.213.46.196, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇯🇵 日本-东京都-东京-ss-54.199.83.239:2333, server: 54.199.83.239, port: 2333, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: doub.io, tfo: false}
- {name: 🇸🇬 新加坡-0-0-ss-54.251.168.143:443, server: 54.251.168.143, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 0-0-内网IP-ss-wqfuinwqffq.dfcloud.xyz:30818, server: wqfuinwqffq.dfcloud.xyz, port: 30818, client-fingerprint: chrome, type: ss, cipher: chacha20-ietf-poly1305, password: 8e949d75-3510-4678-8593-3c5032dd931a, tfo: false}
- {name: 0-0-内网IP-ss-s400l.ddns1.pw:26001, server: s400l.ddns1.pw, port: 26001, client-fingerprint: chrome, type: ss, cipher: chacha20-ietf-poly1305, password: dc49f295-653a-4f3c-84d5-8626d6b3efde, tfo: false}
- {name: 0-0-内网IP-v2ray-xt.ylks01.eu.org:2095, server: xt.ylks01.eu.org, port: 2095, client-fingerprint: chrome, type: vmess, uuid: b710770a-fdaf-41fb-bbe4-68a6c41e2605, alterId: 4, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /blue, headers: {Host: xt.ylks01.eu.org}}}
- {name: 0-0-内网IP-v2ray-aaaa.wxx.gay:443, server: aaaa.wxx.gay, port: 443, client-fingerprint: chrome, type: vmess, uuid: 8237ec34-143a-11ee-8019-000017022008, alterId: 4, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /look, headers: {Host: aaaa.wxx.gay}}}
- {name: 🇺🇸 美国-德克萨斯-0-v2ray-159.223.94.156:80, server: 159.223.94.156, port: 80, client-fingerprint: chrome, type: vmess, uuid: 533724ad-58ef-4147-88dc-9da523c15fc4, alterId: 4, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /anti13.zingfast.vn}}
- {name: 0-0-内网IP-v2ray-hkd1.quickerlink.xyz:443, server: hkd1.quickerlink.xyz, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3853a2ab-6bec-4503-89b9-d3cbcc6b69c9, alterId: 4, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /h6jr23x9h3lqiitg, headers: {Host: hkd1.quickerlink.xyz}}}
- {name: 🇺🇸 美国-0-0-v2ray-51.158.98.130:443, server: 51.158.98.130, port: 443, client-fingerprint: chrome, type: vmess, uuid: 8ec62dcf-9ead-48d6-afec-4aa4ed264a95, alterId: 4, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 0-0-内网IP-v2ray-jp1.quickerlink.xyz:443, server: jp1.quickerlink.xyz, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3853a2ab-6bec-4503-89b9-d3cbcc6b69c9, alterId: 4, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /pxqdjmdjm74qrnwo, headers: {Host: jp1.quickerlink.xyz}}}
- {name: 🇳🇴 挪威-0-0-v2ray-141.145.196.253:80, server: 141.145.196.253, port: 80, client-fingerprint: chrome, type: vmess, uuid: e9ee407f-2500-3e9d-bc00-26722f99ed06, alterId: 4, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /v2ray}}
- {name: 0-0-内网IP-v2ray-sg4.zingfast.vn:80, server: sg4.zingfast.vn, port: 80, client-fingerprint: chrome, type: vmess, uuid: 533724ad-58ef-4147-88dc-9da523c15fc4, alterId: 4, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /anti13.zingfast.vn, headers: {Host: sg4.zingfast.vn}}}
- {name: "🇺🇸 0,2,3,4,19|🇺🇸_US_美国->🇬🇧_GB_英国_由快嘴科技提供;kkz...", server: mrb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mrb2.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #20", server: 104.21.75.246, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: sbl2.shabijichang.com}}}
- {name: "🇩🇪 0,2,3,4,6,11,12|🇩🇪_DE_德国 #3", server: 49.13.115.8, port: 46818, client-fingerprint: chrome, type: vmess, uuid: 42776ed6-aac6-4f94-daa5-c6bd198d09b2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vpnv2rayspeed, headers: {Host: pve-asiatech-1.management.arvancdn.ir}}}
- {name: "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #17", server: 172.67.184.13, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: sbl2.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇩🇪_DE_德国 #1", server: flkf2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: flkf2.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #8", server: mm2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm2.shabijichang.com}}}
- {name: "🇫🇷 0,3|🇫🇷 _FR_法国->🇳🇱_NL_荷兰 #1", server: 156.249.18.4, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 84d1de11-ce12-4a15-8312-1338356d4ac4, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: "🇿🇦 0,2,3,4,6,11|github.com/freefq - 南非 5", server: 156.225.67.104, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 29a5d48e-24f1-48fd-a5e1-9a46cb31032f, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696944806961, headers: {Host: www.41758112.xyz}}}
- {name: "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #14", server: wnd3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: wnd3.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #5", server: 104.17.18.26, port: 80, client-fingerprint: chrome, type: vmess, uuid: 5180444a-4756-43b4-960b-49eb9052e4e8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: a.109420.xyz}}}
- {name: "🇺🇸 0,1,2,3,4,6,19|🇺🇸_US_美国_由快嘴科技提供;kkzui.com_3", server: 5.161.159.21, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3d1fab6e-3bd6-472b-8d9c-9934c04eaf40, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: http, http-opts: {method: GET, path: [/]}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #6", server: hdlb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: hdlb2.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #9", server: mm3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm3.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国 #12", server: wnd2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: wnd2.shabijichang.com}}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国 #13", server: 45.199.138.186, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 4ec0ae62-de09-4029-904a-0313d4628ecf, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696682720138, headers: {Host: www.19229362.xyz}}}
- {name: "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇭🇺_HU_匈牙利 #1", server: www.speedtest.net, port: 80, client-fingerprint: chrome, type: vmess, uuid: 62515af2-1dd9-467b-9dd3-774abefb6a62, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: hu1.xv2ray.net}}}
- {name: 1|_US_->_GB_, server: mrb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mrb2.shabijichang.com}}}
- {name: 1|_US__1, server: 104.21.75.246, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 1|_DE__1, server: 49.13.115.8, port: 46818, client-fingerprint: chrome, type: vmess, uuid: 42776ed6-aac6-4f94-daa5-c6bd198d09b2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vpnv2rayspeed}}
- {name: 1|_US__2, server: 172.67.184.13, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 1|_US_->_DE_, server: flkf2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: flkf2.shabijichang.com}}}
- {name: 1|_US_->_IN__1, server: mm2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm2.shabijichang.com}}}
- {name: "🇫🇷 1,2,4|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #1", server: 156.249.18.4, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 84d1de11-ce12-4a15-8312-1338356d4ac4, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 1|_FR_, server: 13.37.163.17, port: 22222, client-fingerprint: chrome, type: trojan, password: telegram-id-privatevpns, sni: trj.rollingnext.co.uk, skip-cert-verify: false}
- {name: 1|_US__3, server: 156.225.67.104, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 29a5d48e-24f1-48fd-a5e1-9a46cb31032f, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696944806961}}
- {name: 1|_US__4, server: wnd3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: wnd3.shabijichang.com}}}
- {name: 1|_US_->_IN__2, server: 104.17.18.26, port: 80, client-fingerprint: chrome, type: vmess, uuid: 5180444a-4756-43b4-960b-49eb9052e4e8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 1|_US_->_IN__3, server: hdlb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: hdlb2.shabijichang.com}}}
- {name: 1|_DE__2, server: 3.66.186.194, port: 22222, client-fingerprint: chrome, type: trojan, password: telegram-id-privatevpns, sni: trj.rollingnext.co.uk, skip-cert-verify: false}
- {name: 1|_US_->_IN__4, server: mm3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: mm3.shabijichang.com}}}
- {name: 1|_US__6, server: wnd2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: wnd2.shabijichang.com}}}
- {name: 1|_US__7, server: 45.199.138.186, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 4ec0ae62-de09-4029-904a-0313d4628ecf, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696682720138}}
- {name: 1|_US_->_HU_, server: www.speedtest.net, port: 80, client-fingerprint: chrome, type: vmess, uuid: 62515af2-1dd9-467b-9dd3-774abefb6a62, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: www.speedtest.net}}}
- {name: 1|_PK_, server: hk1-reality.fp3kemyh-cm4s-2hak-2gb9-w3534umy2sq5.9d8f269f96b25232-759cbb36d6548597.kaufen, port: 443, client-fingerprint: chrome, type: trojan, password: a3f221f8-43d6-4363-8624-ce62d3db0202, sni: 13-231-155-134.nhost.00cdn.com, skip-cert-verify: false}
- {name: 🇺🇸 6|🇺🇸_US_美国->🇳🇱_NL_荷兰, server: 45.199.138.191, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696251522438, headers: {Host: www.42077230.xyz}}}
- {name: "🇺🇸 6,11|github.com/freefq - 美国CloudFla... #5", server: lt1.992688.xyz, port: 2052, client-fingerprint: chrome, type: vmess, uuid: fa5fc74f-0f0b-4221-82ba-dc7cd24e24e5, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: vcus2.vpn66.eu.org}}}
- {name: "🇺🇸 6|🇺🇸_US_美国 #16", server: sbl2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: sbl2.shabijichang.com}}}
- {name: "🇺🇸 6|🇺🇸_US_美国 #18", server: jd2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: 56278a1a-c7cc-459f-b00c-3037e4f99590, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: jd2.shabijichang.com}}}
- {name: "🇺🇸 6|🇺🇸_US_美国->🇬🇧_GB_英国 #2", server: ld2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: ld2.shabijichang.com}}}
- {name: 🇺🇸 6|🇺🇸_US_美国->🇿🇦_ZA_南非, server: yhnsb3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: yhnsb3.shabijichang.com}}}
- {name: "🇫🇷 6|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #2", server: 156.249.18.4, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 84d1de11-ce12-4a15-8312-1338356d4ac4, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697719506275}}
- {name: "🇺🇸 6|🇺🇸_US_美国 #22", server: asb2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: asb2.shabijichang.com}}}
- {name: 🇺🇸 6|🇺🇸_US_美国->🇸🇦_SA_沙特阿拉伯, server: jd3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: jd3.shabijichang.com}}}
- {name: "🇺🇦 6,11|github.com/freefq - 乌克兰 1", server: 5.182.37.119, port: 12581, client-fingerprint: chrome, type: vmess, uuid: 51554d87-7fd0-4dd1-9277-bcbb2d12b64b, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇸🇬 7|「节点冠名招商 @nodpai」🇸🇬 SG 01, server: zjxc.pmxu.link, port: 44361, client-fingerprint: chrome, type: vmess, uuid: 87cb41c3-67e3-36e2-ae08-71411af27b6b, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: "🇭🇰 7,8|「starnet,老牌公益机场」🇭🇰 HK 01 #1", server: 47.242.109.138, port: 443, client-fingerprint: chrome, type: vmess, uuid: 9dc41e4b-53a8-a442-e911-4bc5f490f2cd, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /myblog}}
- {name: "7,8|「www.starnetcn.com 年付85折 不定期抽U... #1", server: 198.2.203.153, port: 443, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1691837402073}}
- {name: "🇺🇸 7,8|中转 🇺🇸 United States 02 @nodpai #1", server: 198.2.203.152, port: 443, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1691750259012}}
- {name: "🇭🇰 8,14|🇭🇰 香港2|@ripaojiedian", server: 112.29.94.22, port: 53300, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇰🇷 8|「线路包含IEPL,中转,覆盖冷门地区」🇰🇷 KR 01, server: 43.200.7.213, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇰🇷 8|🇰🇷 South Korea 02 @nodpai, server: 13.125.176.168, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇯🇵 9|🇯🇵日本04, server: 1j8p04.abzoones.xyz, port: 36116, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp04.abpilot.xyz}
- {name: 🇯🇵 9|🇯🇵日本05, server: 1j8p05.abzoones.xyz, port: 36106, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp05.abpilot.xyz}
- {name: 🇯🇵 9|🇯🇵日本06, server: 1j8p06.abzoones.xyz, port: 36111, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp06.abpilot.xyz}
- {name: 🇭🇰 9|🇭🇰香港04, server: 8h2k04.abzoones.xyz, port: 36601, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk04.abpilot.xyz}
- {name: 🇭🇰 9|🇭🇰香港05, server: 8h2k05.abzoones.xyz, port: 36606, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk05.abpilot.xyz}
- {name: 🇭🇰 9|🇭🇰香港06, server: 8h2k06.abzoones.xyz, port: 36611, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk06.abpilot.xyz}
- {name: 🇨🇳 9|🇹🇼台湾04, server: 8t6w04.abzoones.xyz, port: 36301, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw04.abpilot.xyz}
- {name: 🇨🇳 9|🇹🇼台湾05, server: 8t6w05.abzoones.xyz, port: 36306, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw05.abpilot.xyz}
- {name: 🇨🇳 9|🇹🇼台湾06, server: 8t6w06.abzoones.xyz, port: 36311, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw06.abpilot.xyz}
- {name: 🇸🇬 9|🇸🇬新加坡04, server: 9s5g04.abzoones.xyz, port: 36201, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg04.abpilot.xyz}
- {name: 🇸🇬 9|🇸🇬新加坡05, server: 9s5g05.abzoones.xyz, port: 36206, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg05.abpilot.xyz}
- {name: 🇸🇬 9|🇸🇬新加坡06, server: 9s5g06.abzoones.xyz, port: 36211, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg06.abpilot.xyz}
- {name: 🇺🇸 9|🇺🇸美国04, server: 3u1s04.abzoones.xyz, port: 36501, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us04.abpilot.xyz}
- {name: 🇺🇸 9|🇺🇸美国05, server: 3u1s05.abzoones.xyz, port: 36506, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us05.abpilot.xyz}
- {name: 🇺🇸 9|🇺🇸美国06, server: 3u1s06.abzoones.xyz, port: 36511, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us06.abpilot.xyz}
- {name: 🇷🇺 9|🇷🇺俄罗斯04, server: 8r5u04.abzoones.xyz, port: 36851, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ru04.abpilot.xyz}
- {name: 🇲🇾 9|🇲🇾马来西亚04, server: 8m6y01.abzoones.xyz, port: 36887, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: my04.abpilot.xyz}
- {name: 🇹🇭 9|🇹🇭泰国04, server: 1t8h04.abzoones.xyz, port: 36904, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: th04.abpilot.xyz}
- {name: 🇵🇭 9|🇵🇭菲律宾04, server: 7p3h04.abzoones.xyz, port: 36801, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ph04.abpilot.xyz}
- {name: 🇰🇷 9|🇰🇷韩国04, server: 8k2r04.abzoones.xyz, port: 36401, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: kr04.abpilot.xyz}
- {name: 🇮🇳 9|🇮🇳印度04, server: 7i4n04.abzoones.xyz, port: 36831, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: in04.abpilot.xyz}
- {name: 🇧🇷 9|🇧🇷巴西04, server: 6i2r04.abzoones.xyz, port: 36877, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: br04.abpilot.xyz}
- {name: 🇻🇳 9|🇻🇳越南04, server: 3v4n04.abzoones.xyz, port: 36874, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: vn04.abpilot.xyz}
- {name: 🇭🇺 9|🇭🇺匈牙利04, server: 2h4u04.abzoones.xyz, port: 36864, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hu04.abpilot.xyz}
- {name: 🇦🇷 9|🇦🇷阿根廷04, server: 9a8r04.abzoones.xyz, port: 36861, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ar04.abpilot.xyz}
- {name: 🇹🇷 9|🇹🇷土耳其04, server: 2t1u04.abzoones.xyz, port: 36868, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tr04.abpilot.xyz}
- {name: 🇺🇦 9|🇺🇦乌克兰04, server: 8u9a04.abzoones.xyz, port: 36871, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ua04.abpilot.xyz}
- {name: 🇦🇺 9|🇦🇺澳大利亚04, server: 5a4u04.abzoones.xyz, port: 36821, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: au04.abpilot.xyz}
- {name: 🇬🇧 9|🇬🇧英国04, server: 2u3k04.abzoones.xyz, port: 36811, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: uk04.abpilot.xyz}
- {name: 🇩🇪 9|🇩🇪德国04, server: 3d6e04.abzoones.xyz, port: 36841, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: de04.abpilot.xyz}
- {name: 🇵🇹 9|🇵🇹葡萄牙04, server: 4p2t01.abzoones.xyz, port: 36881, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: pt04.abpilot.xyz}
- {name: 🇨🇦 9|🇨🇦加拿大04, server: 5c1a04.abzoones.xyz, port: 36701, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ca04.abpilot.xyz}
- {name: 🇪🇸 9|🇪🇸西班牙04, server: 6e2s04.abzoones.xyz, port: 36884, client-fingerprint: chrome, type: vmess, uuid: 1e7a5f9b-43fb-407b-a910-1ca239e2223a, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: es04.abpilot.xyz}
- {name: 🇺🇸 11|github.com/freefq - 美国加利福尼亚州洛杉..., server: 198.2.215.119, port: 443, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697980101249, headers: {Host: www.72795025.xyz}}}
- {name: 🇿🇦 11|github.com/freefq - 南非豪登省约翰内斯堡..., server: 156.249.18.4, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 84d1de11-ce12-4a15-8312-1338356d4ac4, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697719506275, headers: {Host: www.57424349.xyz}}}
- {name: 🇺🇸 11|github.com/freefq - 美国 6, server: 150.230.97.54, port: 80, client-fingerprint: chrome, type: vmess, uuid: a6824d8a-3112-4123-9344-798112b1a1c3, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /dsabhdsa, headers: {Host: tms.dingtalk.com}}}
- {name: 🇺🇸 11|github.com/freefq - 美国CloudFla..., server: www.speedtest.net, port: 80, client-fingerprint: chrome, type: vmess, uuid: 4d868558-0166-4083-baf0-720daf24f6e6, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: fi1.xv2ray.net}}}
- {name: 🇺🇸 11|github.com/freefq - 美国加利福尼亚州圣何..., server: 45.199.138.186, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 4ec0ae62-de09-4029-904a-0313d4628ecf, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697376782879, headers: {Host: www.19229362.xyz}}}
- {name: "🇺🇸 11,12|🇺🇸_US_美国_yui科技_274", server: v118a.ai88888.top, port: 80, client-fingerprint: chrome, type: vmess, uuid: c97cf46e-1554-36cb-8b36-c3556b883dc4, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /526-dekDP6Otf, headers: {Host: v118a.ai88888.top}}}
- {name: "🇺🇸 11|github.com/freefq - 美国CloudFla... #2", server: 104.16.67.38, port: 80, client-fingerprint: chrome, type: vmess, uuid: 56278a1a-c7cc-459f-b00c-3037e4f99590, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: se5.shabijichang.com}}}
- {name: "🇺🇸 11|github.com/freefq - 美国CloudFla... #3", server: ml2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: 10ea3b2a-b615-45f1-b1b7-c62bafe8c80c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: ml2.shabijichang.com}}}
- {name: "🇺🇸 11|github.com/freefq - 美国CloudFla... #4", server: se5.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: se5.shabijichang.com}}}
- {name: 🇭🇰 11|github.com/freefq - 香港城市电讯有限公司..., server: hktddns.aikunapp.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: 1e63f999-7553-46c0-93eb-65b6553e1bde, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /hkbn, headers: {Host: sanmao17.hkbn.n.optage.moe}}}
- {name: 🇺🇸 12|美国-1023, server: rontall.com, port: 13856, client-fingerprint: chrome, type: vmess, uuid: 20be612e-3fcb-491e-85fb-477bca86a652, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false}
- {name: 12|↩️8@oneclickvpnkeys, server: octavi.cfd, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: octavi.cfd, network: ws, ws-opts: {path: linkvws, headers: {Host: octavi.cfd}}}
- {name: 🇺🇸 12|🇺🇸 美国 339, server: cdn.narutos.top, port: 8880, client-fingerprint: chrome, type: vmess, uuid: 4b5e4565-322f-4223-a891-78a84f189726, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /SMNxcwVdTTzcou9yQftDyZcCGQui9a, headers: {Host: paris.yj2022.gq}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_297, server: 172.67.187.109, port: 80, client-fingerprint: chrome, type: vmess, uuid: 2e87cebc-977b-4fec-b079-b1ddc55b19c8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vmess, headers: {Host: ee1.xv2ray.net}}}
- {name: 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-140.83.63.38..., server: 140.83.63.38, port: 24445, client-fingerprint: chrome, type: vmess, uuid: 94c5ef37-4d82-49f9-c624-f01259374a17, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国 332, server: 104.21.88.226, port: 8443, client-fingerprint: chrome, type: vmess, uuid: 874a60cd-f099-499a-8aee-e4606ccf3e86, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: nomore.hideip.tk}}}
- {name: 12|🔒 VM-WS-NA 🏴☠️ NA-104.17.84.8..., server: 104.17.84.82, port: 8880, client-fingerprint: chrome, type: vmess, uuid: 4b5e4565-322f-4223-a891-78a84f189726, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /XQ2WCa29jfDM25GBcbnQ, headers: {Host: poland.yj2022.gq}}}
- {name: 🇺🇸 12|美国-0525, server: rontall.com, port: 55655, client-fingerprint: chrome, type: vmess, uuid: 81a5a508-a6b4-48b5-c92c-df95c2654544, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国_1024391, server: 45.77.167.137, port: 80, client-fingerprint: chrome, type: vmess, uuid: ff85a2eb-5cef-49a3-e969-f527ff8f4167, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: 45.77.167.137}}}
- {name: 12|🔒 VM-WS-NA 🇵🇭 PH-109.248.25.59..., server: 109.248.25.59, port: 29064, client-fingerprint: chrome, type: vmess, uuid: 8958440c-aa86-4ff1-8e88-5c7a052d5961, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /ss, headers: {Host: 109.248.25.59}}}
- {name: 🇰🇷 12|🇰🇷 韩国_1024070, server: ora-kr4.cou.gay, port: 24602, client-fingerprint: chrome, type: vmess, uuid: fc9099c7-be48-4dd5-8c5a-fd6fa14e74c2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 12|🇺🇸白嫖-041, server: 129.146.133.157, port: 51009, client-fingerprint: chrome, type: vmess, uuid: 81714cef-9bde-4a08-aa50-d6bc0172d78b, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇸🇬 12|🔒 VM-WS-NA 🇸🇬 SG-139.180.155.2..., server: 139.180.155.222, port: 38056, client-fingerprint: chrome, type: vmess, uuid: 136d8557-7656-4224-9168-3b0473760e16, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /SHALANA, headers: {Host: m.zoom.us}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_283, server: 104.31.16.120, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: edeen.makeup}}}
- {name: 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_080, server: ophelia.mom, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: ophelia.mom}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_wmt_37, server: welfare.kk-proxy.pro, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3190f0de-ef9f-416d-89e7-502a0f276f91, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /ec3a017507e0/, headers: {Host: sgfree01.mikuproxy.pro}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_wmt_36, server: laravel.com, port: 443, client-fingerprint: chrome, type: vmess, uuid: 4548b8de-c6f5-41f2-8cb6-723c8db8ed03, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /us.binghe.design:443/, headers: {Host: sub.xn--9kq89d4y0g.top}}}
- {name: 12|↙️1@oneclickvpnkeys, server: sw-141.95.75.148.nip.io, port: 443, client-fingerprint: chrome, type: vmess, uuid: ce76d32e-3bc7-4a4f-bf2c-abddb893bed7, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_318, server: cloudflare.binghe.design, port: 443, client-fingerprint: chrome, type: vmess, uuid: 4548b8de-c6f5-41f2-8cb6-723c8db8ed03, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: us.binghe.design}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_277, server: 104.21.4.29, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: oliv.beauty}}}
- {name: 🇨🇦 12|🇨🇦_CA_加拿大, server: 108.181.10.17, port: 80, client-fingerprint: chrome, type: vmess, uuid: 474e8680-701f-11ee-b436-205c6d5f5d78, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /0vixdm74, headers: {Host: teams.microsoft.com}}}
- {name: 🇺🇸 12|🇺🇸 US 404, server: 104.21.3.4, port: 80, client-fingerprint: chrome, type: vmess, uuid: c97cf46e-1554-36cb-8b36-c3556b883dc4, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /526-dekDP6Otf, headers: {Host: v118a.ai88888.top}}}
- {name: 🇳🇱 12|🇳🇱_NL_荷兰_yui科技_285, server: 188.114.97.1, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: odelia.autos}}}
- {name: 12|🇯🇵白嫖-053, server: 152.69.197.60, port: 1069, client-fingerprint: chrome, type: vmess, uuid: ac8e26fe-8150-4b60-ae64-82fc77eba2cf, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: "🇭🇰 12,15|香港2|@ripaojiedian", server: 112.29.94.22, port: 53300, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国 177, server: ming2.kiwireich.com, port: 443, client-fingerprint: chrome, type: vmess, uuid: 18e5f40f-bda6-4c15-9334-e87cda6047af, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /ray, headers: {Host: ming2.kiwireich.com}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_293, server: 159.246.55.180, port: 443, client-fingerprint: chrome, type: vmess, uuid: 1af4ba3d-e60f-4f83-b38b-23fc181f676d, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /11201, headers: {Host: franc.digires.shop}}}
- {name: 🇯🇵 12|🇯🇵 日本_1016151, server: 45.88.43.163, port: 51801, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国 232, server: x.36d.gay, port: 2052, client-fingerprint: chrome, type: vmess, uuid: 865897ad-8d07-4021-b7c3-d8eb4a29ee8d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /xtsmol, headers: {Host: x.36d.gay}}}
- {name: 🇺🇸 12|🇺🇸 美国 337, server: 104.21.76.121, port: 2052, client-fingerprint: chrome, type: vmess, uuid: 865897ad-8d07-4021-b7c3-d8eb4a29ee8d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /xtsmol, headers: {Host: x.36d.gay}}}
- {name: 🇭🇰 12|🇭🇰 中国香港 12, server: 154.198.209.52, port: 80, client-fingerprint: chrome, type: vmess, uuid: ee14f6e0-e652-4260-ffb5-c2a7fd4db35a, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 12|thavecpc-47, server: 23.26.98.93, port: 36894, client-fingerprint: chrome, type: vmess, uuid: 337affdc-7836-41fa-c636-573095a3e3d6, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 🇸🇬 12|🇸🇬 新加坡_1011095, server: 139.180.143.251, port: 8080, client-fingerprint: chrome, type: vmess, uuid: e918ba7d-5092-40dd-bfa5-7c3ecd13c68c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /}}
- {name: 🇺🇸 12|🇺🇸 美国 364 2, server: 188.114.99.29, port: 2053, client-fingerprint: chrome, type: vmess, uuid: 72f76c36-3e3c-45b3-a61f-d8f017345958, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: b5.iraniancp.click}}}
- {name: 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-45.88.43.143..., server: 45.88.43.143, port: 51801, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_268, server: 23.94.136.9, port: 80, client-fingerprint: chrome, type: vmess, uuid: cd1a8e9e-292e-499c-8266-79d636c28de5, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /acc}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_270, server: 104.21.53.12, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: ophelia.mom}}}
- {name: 🇯🇵 12|🇯🇵 日本_1024227, server: ora-jp5.cou.gay, port: 20402, client-fingerprint: chrome, type: vmess, uuid: fc9099c7-be48-4dd5-8c5a-fd6fa14e74c2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇬🇧 12|🇬🇧 英国 55, server: 172.99.190.109, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws}}
- {name: 🇺🇸 12|🇺🇸 美国 144, server: 104.17.77.94, port: 2053, client-fingerprint: chrome, type: vmess, uuid: 72f76c36-3e3c-45b3-a61f-d8f017345958, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: b5.iraniancp.click}}}
- {name: 🇺🇸 12|🇺🇸 美国 272, server: 142.4.125.84, port: 59614, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 12|未知_1024588, server: 162.159.153.237, port: 2052, client-fingerprint: chrome, type: vmess, uuid: b63efdd5-bdb8-4eb4-f918-9846cd7321e6, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: vcus1.vpn66.eu.org}}}
- {name: 12|1, server: 23.224.36.133, port: 37869, client-fingerprint: chrome, type: vmess, uuid: 4c90d167-e65b-4419-d455-eb635724d2ed, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_131 3, server: waynn.makeup, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: waynn.makeup}}}
- {name: 🇺🇸 12|🇺🇸 美国 5, server: cc3.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: cc3.shabijichang.com}}}
- {name: 🇮🇱 12|🇮🇱_IL_以色列_6@5, server: 83.229.70.215, port: 13337, client-fingerprint: chrome, type: vmess, uuid: bdd22841-c4d2-4aa8-acf2-95aa9125f159, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ta-2.trollfunny.net, network: ws, ws-opts: {path: /}}
- {name: 🇺🇸 12|🇺🇸_US_美国_wmt_7, server: api.jquery.com, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /octavi.cfd:443/linkvws, headers: {Host: sub.xn--9kq89d4y0g.top}}}
- {name: 🇺🇸 12|🇺🇸 VM-TCP-NA 🇺🇸 US-129.146.46...., server: 129.146.46.181, port: 52408, client-fingerprint: chrome, type: vmess, uuid: a797ff7b-8161-40a6-d577-1b2c213b3885, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 12|↔️1@oneclickvpnkeys, server: v2line.telegram.channel.1329.fr8678825324247b8176d59f83c30bd94d23d2e3ac5cd4a743bkwqeikvdyufr.cyou, port: 443, client-fingerprint: chrome, type: vmess, uuid: 691aed00-01a8-4b04-b8dc-ce2266d41952, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 12|↔️14@oneclickvpnkeys, server: 104.24.208.25, port: 2053, client-fingerprint: chrome, type: vmess, uuid: 72f76c36-3e3c-45b3-a61f-d8f017345958, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: b5.iraniancp.click, network: ws, ws-opts: {path: "/?ed=2048", headers: {Host: b5.iraniancp.click}}}
- {name: 12|↔️3@oneclickvpnkeys, server: dns1.vipturk.ir, port: 30788, client-fingerprint: chrome, type: vmess, uuid: 75fcfcce-7d0e-4dea-ef59-58c89ab23aaa, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸|US|美国|@wxgqlfx|26, server: dx1.992688.xyz, port: 2052, client-fingerprint: chrome, type: vmess, uuid: b63efdd5-bdb8-4eb4-f918-9846cd7321e6, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: vcus1.vpn66.eu.org}}}
- {name: 🇺🇸 12|🇺🇸 美国 234, server: 104.26.7.180, port: 2095, client-fingerprint: chrome, type: vmess, uuid: 865897ad-8d07-4021-b7c3-d8eb4a29ee8d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /xtsmol, headers: {Host: x.36d.gay}}}
- {name: 🇺🇸 12|🇺🇸 美国 172, server: cloudconeaaa.gorgorchicken.one, port: 8443, client-fingerprint: chrome, type: vmess, uuid: 1cec1ebc-b489-4769-f2d9-e079b5832a60, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /cloudconeaaa, headers: {Host: cloudconeaaa.gorgorchicken.one}}}
- {name: 🇰🇷 12|🇰🇷 韩国 25, server: 3.38.108.255, port: 80, client-fingerprint: chrome, type: vmess, uuid: 02d84ca9-ec5c-42e4-9571-aa1b4f274ffb, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: tms.dingtalk.com}}}
- {name: 🇺🇸 12|🔒 VM-WS-TLS 🇺🇸 US-172.67.179.3..., server: 172.67.179.37, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: octavi.cfd, network: ws, ws-opts: {path: linkvws, headers: {Host: octavi.cfd}}}
- {name: 🇺🇸 12|🇺🇸 美国 249, server: 104.21.31.183, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: octavi.cfd}}}
- {name: 🇺🇸 12|🇺🇸 美国 324, server: 172.67.229.28, port: 8880, client-fingerprint: chrome, type: vmess, uuid: 617c9bc4-4116-41c6-99e0-ace49a38fcdb, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /Jnv8ViZOUVgijjOh0p5uGjHnXIiY, headers: {Host: fr7.tehme100.fun}}}
- {name: 🇰🇷 12|🇰🇷 韩国_1017059, server: 3.38.115.106, port: 80, client-fingerprint: chrome, type: vmess, uuid: 2d8c7bd6-7a3e-4a9a-d486-1192d3a999a7, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: tms.dingtalk.com}}}
- {name: 12|🔒 VM-TCP-NA 🇷🇸 RS-37.120.193.1..., server: 37.120.193.102, port: 52920, client-fingerprint: chrome, type: vmess, uuid: 57170ff0-7180-4664-8f61-8debdda345f7, alterId: 64, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_172 2, server: edeen.makeup, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: edeen.makeup}}}
- {name: 12|🇯🇵白嫖-061, server: 138.2.44.211, port: 20081, client-fingerprint: chrome, type: vmess, uuid: 593b8525-0c48-4b0f-d9af-2d73a9148973, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_234, server: 104.18.40.89, port: 80, client-fingerprint: chrome, type: vmess, uuid: 12357ee8-39c0-4256-ad1a-155ea72235d9, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vmess, headers: {Host: dk1.xv2ray.net}}}
- {name: 🇩🇪 12|🔒 VM-TCP-NA 🇩🇪 DE-49.13.115.8:..., server: 49.13.115.8, port: 30788, client-fingerprint: chrome, type: vmess, uuid: 75fcfcce-7d0e-4dea-ef59-58c89ab23aaa, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇮🇳 12|🔒 VM-TCP-NA 🇮🇳 IN-172.105.60.2..., server: 172.105.60.230, port: 8442, client-fingerprint: chrome, type: vmess, uuid: e683cbc4-4407-4616-b074-d7d29018c518, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: "🇨🇳 12,14,15|台湾|@ripaojiedian", server: cfcdn1.sanfencdn9.com, port: 2052, client-fingerprint: chrome, type: vmess, uuid: 4c0699aa-790e-4ccc-b9aa-5cff4b1165e3, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /video/MNBrTghv, headers: {Host: tw135037538.pkmkwvxqnn.xyz}}}
- {name: 🇰🇷 12|🇰🇷 韩国_1013081, server: cc1.clare88.tk, port: 12653, client-fingerprint: chrome, type: vmess, uuid: fce96161-0c58-4ba9-8430-660d84083888, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国 V2CROSS.COM 3, server: 104.31.16.196, port: 2053, client-fingerprint: chrome, type: vmess, uuid: 72f76c36-3e3c-45b3-a61f-d8f017345958, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: b5.iraniancp.click}}}
- {name: 12|🇺🇸TG频道 @oeo12 =US_5, server: 137.175.3.44, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697980101249}}
- {name: 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-206.168.190.2..., server: 206.168.190.219, port: 2082, client-fingerprint: chrome, type: vmess, uuid: e31ca750-71f7-11ee-b920-1239d0255272, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /vmws}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_38, server: 137.175.22.133, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697892739836, headers: {Host: www.84913025.xyz}}}
- {name: 🇨🇳 12|🇨🇳 台湾_1024047, server: y1ktw1.kozow.com, port: 12290, client-fingerprint: chrome, type: vmess, uuid: fc9099c7-be48-4dd5-8c5a-fd6fa14e74c2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 US 406, server: 104.31.16.58, port: 2053, client-fingerprint: chrome, type: vmess, uuid: 72f76c36-3e3c-45b3-a61f-d8f017345958, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: b5.iraniancp.click}}}
- {name: 🇺🇸 12|🔒 VM-TCP-NA 🇺🇸 US-89.116.38.20..., server: 89.116.38.201, port: 3456, client-fingerprint: chrome, type: vmess, uuid: 32e49539-f569-403d-b4b6-a8978c040d5d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 12|🇺🇸 美国 334, server: 104.16.67.38, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: alvvin.click}}}
- {name: 🇳🇱 12|🔒 VM-WS-NA 🇳🇱 NL-185.162.235.2..., server: 185.162.235.250, port: 2054, client-fingerprint: chrome, type: vmess, uuid: 6f117af4-cd52-40f8-9236-7c5e3f357cc8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /socket.io, headers: {Host: internet.life.com.by}}}
- {name: 🇺🇸 12|🇺🇸 美国 247, server: 162.159.58.78, port: 443, client-fingerprint: chrome, type: vmess, uuid: 865897ad-8d07-4021-b7c3-d8eb4a29ee8d, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /xtsmol, headers: {Host: x.36d.gay}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_19, server: 142.4.115.155, port: 443, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697980101249, headers: {Host: www.60321304.xyz}}}
- {name: 🇺🇸 12|🇺🇸 US 346, server: 104.21.36.26, port: 8443, client-fingerprint: chrome, type: vmess, uuid: 1cec1ebc-b489-4769-f2d9-e079b5832a60, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /cloudconeaaa, headers: {Host: cloudconeaaa.gorgorchicken.one}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_8, server: 137.175.21.131, port: 443, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1697980101249, headers: {Host: www.19401390.xyz}}}
- {name: 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-129.80.185.15..., server: 129.80.185.15, port: 32733, client-fingerprint: chrome, type: vmess, uuid: fb9da0cf-5f31-47e7-f7ad-1270173faab1, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /fb9da0cf}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_272, server: 104.21.75.246, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /ophelia.mom:443/linkvws, headers: {Host: cf.tonyluk.link}}}
- {name: 🇺🇸 12|🇺🇸_US_美国_yui科技_269, server: 172.67.131.150, port: 443, client-fingerprint: chrome, type: vmess, uuid: 03fcc618-b93d-6796-6aed-8a38c975d581, alterId: 1, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: linkvws, headers: {Host: oliv.beauty}}}
- {name: 12|Phone4, server: d02.dechuanglihua.xyz, port: 29276, client-fingerprint: chrome, type: vmess, uuid: c47ee447-fa17-4b37-bba7-4b56b07197a3, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false}
- {name: 12|↩️1@oneclickvpnkeys, server: 5.75.163.18, port: 443, client-fingerprint: chrome, type: vmess, uuid: 4799f9e3-94c8-4b3e-a2c8-f32145f8fbb2, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇯🇵 13|日本 04 | 1x JP, server: 6w7j3p04.mcfront.xyz, port: 31116, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp04.lovemc.xyz}
- {name: 🇯🇵 13|日本 05 | 1x JP, server: 6w7j3p05.mcfront.xyz, port: 31106, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp05.lovemc.xyz}
- {name: 🇯🇵 13|日本 06 | 1x JP, server: 6w7j3p06.mcfront.xyz, port: 31111, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: jp06.lovemc.xyz}
- {name: 🇭🇰 13|香港 04 | 1x HK, server: 5m4h0k04.mcfront.xyz, port: 31601, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk04.lovemc.xyz}
- {name: 🇭🇰 13|香港 05 | 1x HK, server: 5m4h0k05.mcfront.xyz, port: 31606, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk05.lovemc.xyz}
- {name: 🇭🇰 13|香港 06 | 1x HK, server: 5m4h0k06.mcfront.xyz, port: 31611, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hk06.lovemc.xyz}
- {name: 🇨🇳 13|台湾 04 | 1x TWN, server: 2d1t5w04.mcfront.xyz, port: 31301, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw04.lovemc.xyz}
- {name: 🇨🇳 13|台湾 05 | 1x TWN, server: 2d1t5w05.mcfront.xyz, port: 31306, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw05.lovemc.xyz}
- {name: 🇨🇳 13|台湾 06 | 1x TWN, server: 2d1t5w06.mcfront.xyz, port: 31311, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tw06.lovemc.xyz}
- {name: 🇸🇬 13|新加坡 04 | 1x SG, server: 1c7s2g04.mcfront.xyz, port: 31201, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg04.lovemc.xyz}
- {name: 🇸🇬 13|新加坡 05 | 1x SG, server: 1c7s2g05.mcfront.xyz, port: 31206, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg05.lovemc.xyz}
- {name: 🇸🇬 13|新加坡 06 | 1x SG, server: 1c7s2g06.mcfront.xyz, port: 31211, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: sg06.lovemc.xyz}
- {name: 🇺🇸 13|美国 04 | 1x US, server: 4a2u0a04.mcfront.xyz, port: 31501, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us04.lovemc.xyz}
- {name: 🇺🇸 13|美国 05 | 1x US, server: 4a2u0a05.mcfront.xyz, port: 31506, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us05.lovemc.xyz}
- {name: 🇺🇸 13|美国 06 | 1x US, server: 4a2u0a06.mcfront.xyz, port: 31511, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: us06.lovemc.xyz}
- {name: 🇰🇷 13|韩国 02 | 1x KR, server: 8l2k1r04.mcfront.xyz, port: 31401, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: kr04.lovemc.xyz}
- {name: 🇵🇭 13|菲律宾 04 | 1x PH, server: 1a4p0h04.mcfront.xyz, port: 31801, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ph04.lovemc.xyz}
- {name: 🇷🇺 13|俄罗斯 04 | 1x RU, server: 4t1r5u04.mcfront.xyz, port: 31851, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ru04.lovemc.xyz}
- {name: 🇲🇾 13|马来西亚 04 | 1x MY, server: 6e3m6y04.mcfront.xyz, port: 31887, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: my04.lovemc.xyz}
- {name: 🇹🇭 13|泰国 04 | 1x TH, server: 2c2t8h04.mcfront.xyz, port: 31904, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: th04.lovemc.xyz}
- {name: 🇦🇷 13|阿根廷 04 | 1x AR, server: 7c1a1r04.mcfront.xyz, port: 31861, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ar04.lovemc.xyz}
- {name: 🇭🇺 13|匈牙利 04 | 1x HU, server: 3c2h4u04.mcfront.xyz, port: 31864, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: hu04.lovemc.xyz}
- {name: 🇹🇷 13|土耳其 04 | 1x TR, server: 4t1u6r04.mcfront.xyz, port: 31868, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: tr04.lovemc.xyz}
- {name: 🇺🇦 13|乌克兰 04 | 1x UA, server: 4w7u4a04.mcfront.xyz, port: 31871, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ua04.lovemc.xyz}
- {name: 🇻🇳 13|越南 04 | 1x VN, server: 2w8u2a04.mcfront.xyz, port: 31874, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: vn04.lovemc.xyz}
- {name: 🇧🇷 13|巴西 04 | 1x BR, server: 7c6i2r04.mcfront.xyz, port: 31877, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: br04.lovemc.xyz}
- {name: 🇮🇳 13|印度 04 | 1x IN, server: 6q3i1n04.mcfront.xyz, port: 31831, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: in04.lovemc.xyz}
- {name: 🇦🇺 13|澳大利亚 04 | 1x AU, server: 4o5a3u04.mcfront.xyz, port: 31821, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: au04.lovemc.xyz}
- {name: 🇬🇧 13|英国 04 | 1x UK, server: 3a4u0k04.mcfront.xyz, port: 31811, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: uk04.lovemc.xyz}
- {name: 🇦🇺 13|德国 04 | 1x AU, server: 9t1d5e04.mcfront.xyz, port: 31841, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: de04.lovemc.xyz}
- {name: 🇵🇹 13|葡萄牙 04 | 1x PT, server: 4c3p1t01.mcfront.xyz, port: 31881, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: pt04.lovemc.xyz}
- {name: 🇨🇦 13|加拿大 02 | 1x CA, server: 3d1c4a04.mcfront.xyz, port: 31701, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: ca04.lovemc.xyz}
- {name: 🇪🇸 13|西班牙 02 | 1x ES, server: 2d3e6s01.mcfront.xyz, port: 31884, client-fingerprint: chrome, type: vmess, uuid: b7dd8365-d63e-4e25-9488-abcb1bf97c5c, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: es04.lovemc.xyz}
- {name: 14|纽约测试|@ripaojiedian, server: 216.52.183.243, port: 1002, client-fingerprint: chrome, type: ss, cipher: aes-128-gcm, password: 83XvX4Vo%*3a, tfo: false}
- {name: 🇯🇵 14|🇯🇵 日本KT|@ripaojiedian, server: 183.232.170.32, port: 20011, client-fingerprint: chrome, type: ss, cipher: aes-128-gcm, password: g12sQi#ss#&1, tfo: false}
- {name: 🇯🇵 14|🇯🇵 日本KT2|@ripaojiedian, server: 183.232.170.32, port: 30013, client-fingerprint: chrome, type: ss, cipher: aes-128-gcm, password: g12sQi#ss#&1, tfo: false}
- {name: 🇭🇰 14|🇭🇰 香港KT2|@ripaojiedian, server: 223.95.40.85, port: 20299, client-fingerprint: chrome, type: ss, cipher: aes-128-gcm, password: a-wym4ovY4Yw, tfo: false}
- {name: 🇭🇰 14|🇭🇰 香港KT1|@ripaojiedian, server: 8.210.119.75, port: 80, client-fingerprint: chrome, type: ss, cipher: aes-128-gcm, password: a-wym4ovY4Yw, tfo: false}
- {name: "🇭🇰 14,15|香港3|@ripaojiedian", server: n1697765772.izwhvan.cn, port: 443, client-fingerprint: chrome, type: vmess, uuid: ba984678-ca81-4443-a9da-58adea43d5b0, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: n1697765772.izwhvan.cn, network: ws, ws-opts: {path: /, headers: {Host: n1697765772.izwhvan.cn}}}
- {name: "🇯🇵 14,15|日本2|@ripaojiedian", server: oci.donpau.com, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3C02DC15-56AE-7889-8936-9A2EA8FF8666, alterId: 0, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, servername: oci.donpau.com, network: ws, ws-opts: {path: /cone, headers: {Host: oci.donpau.com}}}
- {name: 🇺🇸 14|🇺🇸 美国1|@ripaojiedian, server: 185.47.255.219, port: 989, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, tfo: false}
- {name: "🇩🇪 14,15|德国|@ripaojiedian", server: 172.67.164.209, port: 2082, client-fingerprint: chrome, type: vmess, uuid: 8c188497-269f-4aa0-cd19-63e93a83d6da, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /wdsk, headers: {Host: dg01.mianfenyun012.eu.org}}}
- {name: "🇺🇸 14,15|美国2|@ripaojiedian", server: 104.26.8.44, port: 80, client-fingerprint: chrome, type: vmess, uuid: 5180444a-4756-43b4-960b-49eb9052e4e8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: a.109420.xyz}}}
- {name: 14|订阅永久免费, server: 51.158.195.96, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: asdKkaskJKfnsa, tfo: false}
- {name: 🇰🇷 14|🇰🇷 韩国特殊|@ripaojiedian, server: 43.201.31.159, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇸🇬 14|🇸🇬 狮城特殊|@ripaojiedian, server: 54.151.244.95, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇸🇬 14|🇸🇬 新加坡特殊|@ripaojiedian, server: 13.212.101.70, port: 443, client-fingerprint: chrome, type: ss, cipher: aes-256-cfb, password: amazonskr05, tfo: false}
- {name: 🇮🇱 15|以色列|@ripaojiedian, server: 183.232.170.11, port: 30032, client-fingerprint: chrome, type: vmess, uuid: c0d47762-e779-4eef-87a7-df1ebba142e4, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 15|美国3|@ripaojiedian, server: 5.161.159.21, port: 443, client-fingerprint: chrome, type: vmess, uuid: 3d1fab6e-3bd6-472b-8d9c-9934c04eaf40, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇭🇰 15|香港1|@ripaojiedian, server: 03.kccic2pa.xyz, port: 50003, client-fingerprint: chrome, type: vmess, uuid: d5b6a6b1-feee-4318-b33b-51378f5787e8, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false}
- {name: 🇺🇸 16|JCBB_ 美国01【vip1】, server: gzyd.jcnode.top, port: 38381, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzyd.jcnode.top}}}
- {name: 🇺🇸 16|JCBB_ 美国02_1【vip1】, server: gzdx01.jcnode.top, port: 20153, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzdx01.jcnode.top}}}
- {name: 🇺🇸 16|JCBB_ 美国02【vip1】, server: gzdx.jcnode.top, port: 28204, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzdx.jcnode.top}}}
- {name: 🇺🇸 16|JCBB_ 美国 03【vip1】, server: gzyd.jcnode.top, port: 21036, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzyd.jcnode.top}}}
- {name: 🇺🇸 16|JCBB_ 美国 04_1【vip1】, server: gzdx01.jcnode.top, port: 26611, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzdx01.jcnode.top}}}
- {name: 🇺🇸 16|JCBB_ 美国 04【vip1】, server: gzdx.jcnode.top, port: 62684, client-fingerprint: chrome, type: vmess, uuid: 2d95d0c5-4dc7-41a1-b411-bb88fa2bd99d, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: gzdx.jcnode.top}}}
- {name: 🇺🇸 19|🇺🇸_US_美国_2_7, server: fhc2.shabijichang.com, port: 80, client-fingerprint: chrome, type: vmess, uuid: c458695d-6908-45c3-9512-e0c46418454c, alterId: 0, cipher: auto, tls: false, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /, headers: {Host: fhc2.shabijichang.com}}}
- {name: 🇺🇸 19|🇺🇸_US_美国->🇳🇱_NL_荷兰_由快嘴科技提供;kkz..., server: 45.199.138.191, port: 30000, client-fingerprint: chrome, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, tfo: false, skip-cert-verify: false, network: ws, ws-opts: {path: /path/1696251522438}}
proxy-groups:
- name: 🔰 节点选择
type: select
proxies:
- ♻️ 自动选择
- 🎯 全球直连
- 🇺🇸 _US_美国->🇳🇱_NL_荷兰
- 🇫🇷 _FR_法国_1
- 🇫🇷 _FR_法国_2
- 🇫🇷 _FR_法国_3
- 🇵🇰 _PK_巴基斯坦
- 🇺🇸 _US_美国_1
- 🇩🇪 _DE_德国
- 🇫🇷 _FR_法国_4
- 🇫🇷 _FR_法国_5
- 🇫🇷 _FR_法国_6
- 🇺🇸 _US_美国_2
- 🇫🇷 _FR_法国_7
- 🇺🇸 _US_美国_3
- 🇺🇸 _US_美国_4
- 🇺🇸 _US_美国_5
- 🇺🇸 _US_美国_6
- 🇺🇸 _US_美国_7
- 🇺🇸 _US_美国_8
- 🇺🇸 _US_美国->🇮🇳_IN_印度_1
- 🇺🇸 _US_美国_9
- 🇺🇸 _US_美国->🇬🇧_GB_英国
- 🇺🇸 _US_美国->🇿🇦_ZA_南非
- 🇫🇷 _FR_法国_8
- 🇫🇷 _FR_法国->🇳🇱_NL_荷兰
- 🇺🇸 _US_美国_10
- 🇺🇸 _US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇸 _US_美国->🇮🇳_IN_印度_2
- 🇷🇴 _RO_罗马尼亚
- 🇺🇸 美国-康涅狄格-0-ss-13.213.46.196:443
- 🇯🇵 日本-东京都-东京-ss-54.199.83.239:2333
- 🇸🇬 新加坡-0-0-ss-54.251.168.143:443
- 0-0-内网IP-ss-wqfuinwqffq.dfcloud.xyz:30818
- 0-0-内网IP-ss-s400l.ddns1.pw:26001
- 0-0-内网IP-v2ray-xt.ylks01.eu.org:2095
- 0-0-内网IP-v2ray-aaaa.wxx.gay:443
- 🇺🇸 美国-德克萨斯-0-v2ray-159.223.94.156:80
- 0-0-内网IP-v2ray-hkd1.quickerlink.xyz:443
- 🇺🇸 美国-0-0-v2ray-51.158.98.130:443
- 0-0-内网IP-v2ray-jp1.quickerlink.xyz:443
- 🇳🇴 挪威-0-0-v2ray-141.145.196.253:80
- 0-0-内网IP-v2ray-sg4.zingfast.vn:80
- 🇺🇸 0,2,3,4,19|🇺🇸_US_美国->🇬🇧_GB_英国_由快嘴科技提供;kkz...
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #20"
- "🇩🇪 0,2,3,4,6,11,12|🇩🇪_DE_德国 #3"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #17"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇩🇪_DE_德国 #1"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #8"
- "🇫🇷 0,3|🇫🇷 _FR_法国->🇳🇱_NL_荷兰 #1"
- 🇿🇦 0,2,3,4,6,11|github.com/freefq - 南非 5
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #14"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #5"
- 🇺🇸 0,1,2,3,4,6,19|🇺🇸_US_美国_由快嘴科技提供;kkzui.com_3
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #6"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #9"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #12"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #13"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇭🇺_HU_匈牙利 #1"
- 1|_US_->_GB_
- 1|_US__1
- 1|_DE__1
- 1|_US__2
- 1|_US_->_DE_
- 1|_US_->_IN__1
- "🇫🇷 1,2,4|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #1"
- 1|_FR_
- 1|_US__3
- 1|_US__4
- 1|_US_->_IN__2
- 1|_US_->_IN__3
- 1|_DE__2
- 1|_US_->_IN__4
- 1|_US__6
- 1|_US__7
- 1|_US_->_HU_
- 1|_PK_
- 🇺🇸 6|🇺🇸_US_美国->🇳🇱_NL_荷兰
- "🇺🇸 6,11|github.com/freefq - 美国CloudFla... #5"
- "🇺🇸 6|🇺🇸_US_美国 #16"
- "🇺🇸 6|🇺🇸_US_美国 #18"
- "🇺🇸 6|🇺🇸_US_美国->🇬🇧_GB_英国 #2"
- 🇺🇸 6|🇺🇸_US_美国->🇿🇦_ZA_南非
- "🇫🇷 6|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #2"
- "🇺🇸 6|🇺🇸_US_美国 #22"
- 🇺🇸 6|🇺🇸_US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇦 6,11|github.com/freefq - 乌克兰 1
- 🇸🇬 7|「节点冠名招商 @nodpai」🇸🇬 SG 01
- "🇭🇰 7,8|「starnet,老牌公益机场」🇭🇰 HK 01 #1"
- "7,8|「www.starnetcn.com 年付85折 不定期抽U... #1"
- "🇺🇸 7,8|中转 🇺🇸 United States 02 @nodpai #1"
- 🇭🇰 8,14|🇭🇰 香港2|@ripaojiedian
- 🇰🇷 8|「线路包含IEPL,中转,覆盖冷门地区」🇰🇷 KR 01
- 🇰🇷 8|🇰🇷 South Korea 02 @nodpai
- 🇯🇵 9|🇯🇵日本04
- 🇯🇵 9|🇯🇵日本05
- 🇯🇵 9|🇯🇵日本06
- 🇭🇰 9|🇭🇰香港04
- 🇭🇰 9|🇭🇰香港05
- 🇭🇰 9|🇭🇰香港06
- 🇨🇳 9|🇹🇼台湾04
- 🇨🇳 9|🇹🇼台湾05
- 🇨🇳 9|🇹🇼台湾06
- 🇸🇬 9|🇸🇬新加坡04
- 🇸🇬 9|🇸🇬新加坡05
- 🇸🇬 9|🇸🇬新加坡06
- 🇺🇸 9|🇺🇸美国04
- 🇺🇸 9|🇺🇸美国05
- 🇺🇸 9|🇺🇸美国06
- 🇷🇺 9|🇷🇺俄罗斯04
- 🇲🇾 9|🇲🇾马来西亚04
- 🇹🇭 9|🇹🇭泰国04
- 🇵🇭 9|🇵🇭菲律宾04
- 🇰🇷 9|🇰🇷韩国04
- 🇮🇳 9|🇮🇳印度04
- 🇧🇷 9|🇧🇷巴西04
- 🇻🇳 9|🇻🇳越南04
- 🇭🇺 9|🇭🇺匈牙利04
- 🇦🇷 9|🇦🇷阿根廷04
- 🇹🇷 9|🇹🇷土耳其04
- 🇺🇦 9|🇺🇦乌克兰04
- 🇦🇺 9|🇦🇺澳大利亚04
- 🇬🇧 9|🇬🇧英国04
- 🇩🇪 9|🇩🇪德国04
- 🇵🇹 9|🇵🇹葡萄牙04
- 🇨🇦 9|🇨🇦加拿大04
- 🇪🇸 9|🇪🇸西班牙04
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州洛杉...
- 🇿🇦 11|github.com/freefq - 南非豪登省约翰内斯堡...
- 🇺🇸 11|github.com/freefq - 美国 6
- 🇺🇸 11|github.com/freefq - 美国CloudFla...
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州圣何...
- 🇺🇸 11,12|🇺🇸_US_美国_yui科技_274
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #2"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #3"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #4"
- 🇭🇰 11|github.com/freefq - 香港城市电讯有限公司...
- 🇺🇸 12|美国-1023
- 12|↩️8@oneclickvpnkeys
- 🇺🇸 12|🇺🇸 美国 339
- 🇺🇸 12|🇺🇸_US_美国_yui科技_297
- 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-140.83.63.38...
- 🇺🇸 12|🇺🇸 美国 332
- 12|🔒 VM-WS-NA 🏴☠️ NA-104.17.84.8...
- 🇺🇸 12|美国-0525
- 🇺🇸 12|🇺🇸 美国_1024391
- 12|🔒 VM-WS-NA 🇵🇭 PH-109.248.25.59...
- 🇰🇷 12|🇰🇷 韩国_1024070
- 12|🇺🇸白嫖-041
- 🇸🇬 12|🔒 VM-WS-NA 🇸🇬 SG-139.180.155.2...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_283
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_080
- 🇺🇸 12|🇺🇸_US_美国_wmt_37
- 🇺🇸 12|🇺🇸_US_美国_wmt_36
- 12|↙️1@oneclickvpnkeys
- 🇺🇸 12|🇺🇸_US_美国_yui科技_318
- 🇺🇸 12|🇺🇸_US_美国_yui科技_277
- 🇨🇦 12|🇨🇦_CA_加拿大
- 🇺🇸 12|🇺🇸 US 404
- 🇳🇱 12|🇳🇱_NL_荷兰_yui科技_285
- 12|🇯🇵白嫖-053
- 🇭🇰 12,15|香港2|@ripaojiedian
- 🇺🇸 12|🇺🇸 美国 177
- 🇺🇸 12|🇺🇸_US_美国_yui科技_293
- 🇯🇵 12|🇯🇵 日本_1016151
- 🇺🇸 12|🇺🇸 美国 232
- 🇺🇸 12|🇺🇸 美国 337
- 🇭🇰 12|🇭🇰 中国香港 12
- 12|thavecpc-47
- 🇸🇬 12|🇸🇬 新加坡_1011095
- 🇺🇸 12|🇺🇸 美国 364 2
- 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-45.88.43.143...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_268
- 🇺🇸 12|🇺🇸_US_美国_yui科技_270
- 🇯🇵 12|🇯🇵 日本_1024227
- 🇬🇧 12|🇬🇧 英国 55
- 🇺🇸 12|🇺🇸 美国 144
- 🇺🇸 12|🇺🇸 美国 272
- 12|未知_1024588
- 12|1
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_131 3
- 🇺🇸 12|🇺🇸 美国 5
- 🇮🇱 12|🇮🇱_IL_以色列_6@5
- 🇺🇸 12|🇺🇸_US_美国_wmt_7
- 🇺🇸 12|🇺🇸 VM-TCP-NA 🇺🇸 US-129.146.46....
- 12|↔️1@oneclickvpnkeys
- 12|↔️14@oneclickvpnkeys
- 12|↔️3@oneclickvpnkeys
- 🇺🇸 12|🇺🇸|US|美国|@wxgqlfx|26
- 🇺🇸 12|🇺🇸 美国 234
- 🇺🇸 12|🇺🇸 美国 172
- 🇰🇷 12|🇰🇷 韩国 25
- 🇺🇸 12|🔒 VM-WS-TLS 🇺🇸 US-172.67.179.3...
- 🇺🇸 12|🇺🇸 美国 249
- 🇺🇸 12|🇺🇸 美国 324
- 🇰🇷 12|🇰🇷 韩国_1017059
- 12|🔒 VM-TCP-NA 🇷🇸 RS-37.120.193.1...
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_172 2
- 12|🇯🇵白嫖-061
- 🇺🇸 12|🇺🇸_US_美国_yui科技_234
- 🇩🇪 12|🔒 VM-TCP-NA 🇩🇪 DE-49.13.115.8:...
- 🇮🇳 12|🔒 VM-TCP-NA 🇮🇳 IN-172.105.60.2...
- 🇨🇳 12,14,15|台湾|@ripaojiedian
- 🇰🇷 12|🇰🇷 韩国_1013081
- 🇺🇸 12|🇺🇸 美国 V2CROSS.COM 3
- 12|🇺🇸TG频道 @oeo12 =US_5
- 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-206.168.190.2...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_38
- 🇨🇳 12|🇨🇳 台湾_1024047
- 🇺🇸 12|🇺🇸 US 406
- 🇺🇸 12|🔒 VM-TCP-NA 🇺🇸 US-89.116.38.20...
- 🇺🇸 12|🇺🇸 美国 334
- 🇳🇱 12|🔒 VM-WS-NA 🇳🇱 NL-185.162.235.2...
- 🇺🇸 12|🇺🇸 美国 247
- 🇺🇸 12|🇺🇸_US_美国_yui科技_19
- 🇺🇸 12|🇺🇸 US 346
- 🇺🇸 12|🇺🇸_US_美国_yui科技_8
- 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-129.80.185.15...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_272
- 🇺🇸 12|🇺🇸_US_美国_yui科技_269
- 12|Phone4
- 12|↩️1@oneclickvpnkeys
- 🇯🇵 13|日本 04 | 1x JP
- 🇯🇵 13|日本 05 | 1x JP
- 🇯🇵 13|日本 06 | 1x JP
- 🇭🇰 13|香港 04 | 1x HK
- 🇭🇰 13|香港 05 | 1x HK
- 🇭🇰 13|香港 06 | 1x HK
- 🇨🇳 13|台湾 04 | 1x TWN
- 🇨🇳 13|台湾 05 | 1x TWN
- 🇨🇳 13|台湾 06 | 1x TWN
- 🇸🇬 13|新加坡 04 | 1x SG
- 🇸🇬 13|新加坡 05 | 1x SG
- 🇸🇬 13|新加坡 06 | 1x SG
- 🇺🇸 13|美国 04 | 1x US
- 🇺🇸 13|美国 05 | 1x US
- 🇺🇸 13|美国 06 | 1x US
- 🇰🇷 13|韩国 02 | 1x KR
- 🇵🇭 13|菲律宾 04 | 1x PH
- 🇷🇺 13|俄罗斯 04 | 1x RU
- 🇲🇾 13|马来西亚 04 | 1x MY
- 🇹🇭 13|泰国 04 | 1x TH
- 🇦🇷 13|阿根廷 04 | 1x AR
- 🇭🇺 13|匈牙利 04 | 1x HU
- 🇹🇷 13|土耳其 04 | 1x TR
- 🇺🇦 13|乌克兰 04 | 1x UA
- 🇻🇳 13|越南 04 | 1x VN
- 🇧🇷 13|巴西 04 | 1x BR
- 🇮🇳 13|印度 04 | 1x IN
- 🇦🇺 13|澳大利亚 04 | 1x AU
- 🇬🇧 13|英国 04 | 1x UK
- 🇦🇺 13|德国 04 | 1x AU
- 🇵🇹 13|葡萄牙 04 | 1x PT
- 🇨🇦 13|加拿大 02 | 1x CA
- 🇪🇸 13|西班牙 02 | 1x ES
- 14|纽约测试|@ripaojiedian
- 🇯🇵 14|🇯🇵 日本KT|@ripaojiedian
- 🇯🇵 14|🇯🇵 日本KT2|@ripaojiedian
- 🇭🇰 14|🇭🇰 香港KT2|@ripaojiedian
- 🇭🇰 14|🇭🇰 香港KT1|@ripaojiedian
- 🇭🇰 14,15|香港3|@ripaojiedian
- 🇯🇵 14,15|日本2|@ripaojiedian
- 🇺🇸 14|🇺🇸 美国1|@ripaojiedian
- 🇩🇪 14,15|德国|@ripaojiedian
- 🇺🇸 14,15|美国2|@ripaojiedian
- 14|订阅永久免费
- 🇰🇷 14|🇰🇷 韩国特殊|@ripaojiedian
- 🇸🇬 14|🇸🇬 狮城特殊|@ripaojiedian
- 🇸🇬 14|🇸🇬 新加坡特殊|@ripaojiedian
- 🇮🇱 15|以色列|@ripaojiedian
- 🇺🇸 15|美国3|@ripaojiedian
- 🇭🇰 15|香港1|@ripaojiedian
- 🇺🇸 16|JCBB_ 美国01【vip1】
- 🇺🇸 16|JCBB_ 美国02_1【vip1】
- 🇺🇸 16|JCBB_ 美国02【vip1】
- 🇺🇸 16|JCBB_ 美国 03【vip1】
- 🇺🇸 16|JCBB_ 美国 04_1【vip1】
- 🇺🇸 16|JCBB_ 美国 04【vip1】
- 🇺🇸 19|🇺🇸_US_美国_2_7
- 🇺🇸 19|🇺🇸_US_美国->🇳🇱_NL_荷兰_由快嘴科技提供;kkz...
- name: ♻️ 自动选择
type: url-test
url: http://www.gstatic.com/generate_204
interval: 300
proxies:
- 🇺🇸 _US_美国->🇳🇱_NL_荷兰
- 🇫🇷 _FR_法国_1
- 🇫🇷 _FR_法国_2
- 🇫🇷 _FR_法国_3
- 🇵🇰 _PK_巴基斯坦
- 🇺🇸 _US_美国_1
- 🇩🇪 _DE_德国
- 🇫🇷 _FR_法国_4
- 🇫🇷 _FR_法国_5
- 🇫🇷 _FR_法国_6
- 🇺🇸 _US_美国_2
- 🇫🇷 _FR_法国_7
- 🇺🇸 _US_美国_3
- 🇺🇸 _US_美国_4
- 🇺🇸 _US_美国_5
- 🇺🇸 _US_美国_6
- 🇺🇸 _US_美国_7
- 🇺🇸 _US_美国_8
- 🇺🇸 _US_美国->🇮🇳_IN_印度_1
- 🇺🇸 _US_美国_9
- 🇺🇸 _US_美国->🇬🇧_GB_英国
- 🇺🇸 _US_美国->🇿🇦_ZA_南非
- 🇫🇷 _FR_法国_8
- 🇫🇷 _FR_法国->🇳🇱_NL_荷兰
- 🇺🇸 _US_美国_10
- 🇺🇸 _US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇸 _US_美国->🇮🇳_IN_印度_2
- 🇷🇴 _RO_罗马尼亚
- 🇺🇸 美国-康涅狄格-0-ss-13.213.46.196:443
- 🇯🇵 日本-东京都-东京-ss-54.199.83.239:2333
- 🇸🇬 新加坡-0-0-ss-54.251.168.143:443
- 0-0-内网IP-ss-wqfuinwqffq.dfcloud.xyz:30818
- 0-0-内网IP-ss-s400l.ddns1.pw:26001
- 0-0-内网IP-v2ray-xt.ylks01.eu.org:2095
- 0-0-内网IP-v2ray-aaaa.wxx.gay:443
- 🇺🇸 美国-德克萨斯-0-v2ray-159.223.94.156:80
- 0-0-内网IP-v2ray-hkd1.quickerlink.xyz:443
- 🇺🇸 美国-0-0-v2ray-51.158.98.130:443
- 0-0-内网IP-v2ray-jp1.quickerlink.xyz:443
- 🇳🇴 挪威-0-0-v2ray-141.145.196.253:80
- 0-0-内网IP-v2ray-sg4.zingfast.vn:80
- 🇺🇸 0,2,3,4,19|🇺🇸_US_美国->🇬🇧_GB_英国_由快嘴科技提供;kkz...
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #20"
- "🇩🇪 0,2,3,4,6,11,12|🇩🇪_DE_德国 #3"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #17"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇩🇪_DE_德国 #1"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #8"
- "🇫🇷 0,3|🇫🇷 _FR_法国->🇳🇱_NL_荷兰 #1"
- 🇿🇦 0,2,3,4,6,11|github.com/freefq - 南非 5
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #14"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #5"
- 🇺🇸 0,1,2,3,4,6,19|🇺🇸_US_美国_由快嘴科技提供;kkzui.com_3
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #6"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #9"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #12"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #13"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇭🇺_HU_匈牙利 #1"
- 1|_US_->_GB_
- 1|_US__1
- 1|_DE__1
- 1|_US__2
- 1|_US_->_DE_
- 1|_US_->_IN__1
- "🇫🇷 1,2,4|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #1"
- 1|_FR_
- 1|_US__3
- 1|_US__4
- 1|_US_->_IN__2
- 1|_US_->_IN__3
- 1|_DE__2
- 1|_US_->_IN__4
- 1|_US__6
- 1|_US__7
- 1|_US_->_HU_
- 1|_PK_
- 🇺🇸 6|🇺🇸_US_美国->🇳🇱_NL_荷兰
- "🇺🇸 6,11|github.com/freefq - 美国CloudFla... #5"
- "🇺🇸 6|🇺🇸_US_美国 #16"
- "🇺🇸 6|🇺🇸_US_美国 #18"
- "🇺🇸 6|🇺🇸_US_美国->🇬🇧_GB_英国 #2"
- 🇺🇸 6|🇺🇸_US_美国->🇿🇦_ZA_南非
- "🇫🇷 6|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #2"
- "🇺🇸 6|🇺🇸_US_美国 #22"
- 🇺🇸 6|🇺🇸_US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇦 6,11|github.com/freefq - 乌克兰 1
- 🇸🇬 7|「节点冠名招商 @nodpai」🇸🇬 SG 01
- "🇭🇰 7,8|「starnet,老牌公益机场」🇭🇰 HK 01 #1"
- "7,8|「www.starnetcn.com 年付85折 不定期抽U... #1"
- "🇺🇸 7,8|中转 🇺🇸 United States 02 @nodpai #1"
- 🇭🇰 8,14|🇭🇰 香港2|@ripaojiedian
- 🇰🇷 8|「线路包含IEPL,中转,覆盖冷门地区」🇰🇷 KR 01
- 🇰🇷 8|🇰🇷 South Korea 02 @nodpai
- 🇯🇵 9|🇯🇵日本04
- 🇯🇵 9|🇯🇵日本05
- 🇯🇵 9|🇯🇵日本06
- 🇭🇰 9|🇭🇰香港04
- 🇭🇰 9|🇭🇰香港05
- 🇭🇰 9|🇭🇰香港06
- 🇨🇳 9|🇹🇼台湾04
- 🇨🇳 9|🇹🇼台湾05
- 🇨🇳 9|🇹🇼台湾06
- 🇸🇬 9|🇸🇬新加坡04
- 🇸🇬 9|🇸🇬新加坡05
- 🇸🇬 9|🇸🇬新加坡06
- 🇺🇸 9|🇺🇸美国04
- 🇺🇸 9|🇺🇸美国05
- 🇺🇸 9|🇺🇸美国06
- 🇷🇺 9|🇷🇺俄罗斯04
- 🇲🇾 9|🇲🇾马来西亚04
- 🇹🇭 9|🇹🇭泰国04
- 🇵🇭 9|🇵🇭菲律宾04
- 🇰🇷 9|🇰🇷韩国04
- 🇮🇳 9|🇮🇳印度04
- 🇧🇷 9|🇧🇷巴西04
- 🇻🇳 9|🇻🇳越南04
- 🇭🇺 9|🇭🇺匈牙利04
- 🇦🇷 9|🇦🇷阿根廷04
- 🇹🇷 9|🇹🇷土耳其04
- 🇺🇦 9|🇺🇦乌克兰04
- 🇦🇺 9|🇦🇺澳大利亚04
- 🇬🇧 9|🇬🇧英国04
- 🇩🇪 9|🇩🇪德国04
- 🇵🇹 9|🇵🇹葡萄牙04
- 🇨🇦 9|🇨🇦加拿大04
- 🇪🇸 9|🇪🇸西班牙04
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州洛杉...
- 🇿🇦 11|github.com/freefq - 南非豪登省约翰内斯堡...
- 🇺🇸 11|github.com/freefq - 美国 6
- 🇺🇸 11|github.com/freefq - 美国CloudFla...
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州圣何...
- 🇺🇸 11,12|🇺🇸_US_美国_yui科技_274
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #2"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #3"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #4"
- 🇭🇰 11|github.com/freefq - 香港城市电讯有限公司...
- 🇺🇸 12|美国-1023
- 12|↩️8@oneclickvpnkeys
- 🇺🇸 12|🇺🇸 美国 339
- 🇺🇸 12|🇺🇸_US_美国_yui科技_297
- 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-140.83.63.38...
- 🇺🇸 12|🇺🇸 美国 332
- 12|🔒 VM-WS-NA 🏴☠️ NA-104.17.84.8...
- 🇺🇸 12|美国-0525
- 🇺🇸 12|🇺🇸 美国_1024391
- 12|🔒 VM-WS-NA 🇵🇭 PH-109.248.25.59...
- 🇰🇷 12|🇰🇷 韩国_1024070
- 12|🇺🇸白嫖-041
- 🇸🇬 12|🔒 VM-WS-NA 🇸🇬 SG-139.180.155.2...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_283
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_080
- 🇺🇸 12|🇺🇸_US_美国_wmt_37
- 🇺🇸 12|🇺🇸_US_美国_wmt_36
- 12|↙️1@oneclickvpnkeys
- 🇺🇸 12|🇺🇸_US_美国_yui科技_318
- 🇺🇸 12|🇺🇸_US_美国_yui科技_277
- 🇨🇦 12|🇨🇦_CA_加拿大
- 🇺🇸 12|🇺🇸 US 404
- 🇳🇱 12|🇳🇱_NL_荷兰_yui科技_285
- 12|🇯🇵白嫖-053
- 🇭🇰 12,15|香港2|@ripaojiedian
- 🇺🇸 12|🇺🇸 美国 177
- 🇺🇸 12|🇺🇸_US_美国_yui科技_293
- 🇯🇵 12|🇯🇵 日本_1016151
- 🇺🇸 12|🇺🇸 美国 232
- 🇺🇸 12|🇺🇸 美国 337
- 🇭🇰 12|🇭🇰 中国香港 12
- 12|thavecpc-47
- 🇸🇬 12|🇸🇬 新加坡_1011095
- 🇺🇸 12|🇺🇸 美国 364 2
- 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-45.88.43.143...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_268
- 🇺🇸 12|🇺🇸_US_美国_yui科技_270
- 🇯🇵 12|🇯🇵 日本_1024227
- 🇬🇧 12|🇬🇧 英国 55
- 🇺🇸 12|🇺🇸 美国 144
- 🇺🇸 12|🇺🇸 美国 272
- 12|未知_1024588
- 12|1
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_131 3
- 🇺🇸 12|🇺🇸 美国 5
- 🇮🇱 12|🇮🇱_IL_以色列_6@5
- 🇺🇸 12|🇺🇸_US_美国_wmt_7
- 🇺🇸 12|🇺🇸 VM-TCP-NA 🇺🇸 US-129.146.46....
- 12|↔️1@oneclickvpnkeys
- 12|↔️14@oneclickvpnkeys
- 12|↔️3@oneclickvpnkeys
- 🇺🇸 12|🇺🇸|US|美国|@wxgqlfx|26
- 🇺🇸 12|🇺🇸 美国 234
- 🇺🇸 12|🇺🇸 美国 172
- 🇰🇷 12|🇰🇷 韩国 25
- 🇺🇸 12|🔒 VM-WS-TLS 🇺🇸 US-172.67.179.3...
- 🇺🇸 12|🇺🇸 美国 249
- 🇺🇸 12|🇺🇸 美国 324
- 🇰🇷 12|🇰🇷 韩国_1017059
- 12|🔒 VM-TCP-NA 🇷🇸 RS-37.120.193.1...
- 🇺🇸 12|🇺🇸 US(AzadNet.t.me)_172 2
- 12|🇯🇵白嫖-061
- 🇺🇸 12|🇺🇸_US_美国_yui科技_234
- 🇩🇪 12|🔒 VM-TCP-NA 🇩🇪 DE-49.13.115.8:...
- 🇮🇳 12|🔒 VM-TCP-NA 🇮🇳 IN-172.105.60.2...
- 🇨🇳 12,14,15|台湾|@ripaojiedian
- 🇰🇷 12|🇰🇷 韩国_1013081
- 🇺🇸 12|🇺🇸 美国 V2CROSS.COM 3
- 12|🇺🇸TG频道 @oeo12 =US_5
- 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-206.168.190.2...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_38
- 🇨🇳 12|🇨🇳 台湾_1024047
- 🇺🇸 12|🇺🇸 US 406
- 🇺🇸 12|🔒 VM-TCP-NA 🇺🇸 US-89.116.38.20...
- 🇺🇸 12|🇺🇸 美国 334
- 🇳🇱 12|🔒 VM-WS-NA 🇳🇱 NL-185.162.235.2...
- 🇺🇸 12|🇺🇸 美国 247
- 🇺🇸 12|🇺🇸_US_美国_yui科技_19
- 🇺🇸 12|🇺🇸 US 346
- 🇺🇸 12|🇺🇸_US_美国_yui科技_8
- 🇺🇸 12|🔒 VM-WS-NA 🇺🇸 US-129.80.185.15...
- 🇺🇸 12|🇺🇸_US_美国_yui科技_272
- 🇺🇸 12|🇺🇸_US_美国_yui科技_269
- 12|Phone4
- 12|↩️1@oneclickvpnkeys
- 🇯🇵 13|日本 04 | 1x JP
- 🇯🇵 13|日本 05 | 1x JP
- 🇯🇵 13|日本 06 | 1x JP
- 🇭🇰 13|香港 04 | 1x HK
- 🇭🇰 13|香港 05 | 1x HK
- 🇭🇰 13|香港 06 | 1x HK
- 🇨🇳 13|台湾 04 | 1x TWN
- 🇨🇳 13|台湾 05 | 1x TWN
- 🇨🇳 13|台湾 06 | 1x TWN
- 🇸🇬 13|新加坡 04 | 1x SG
- 🇸🇬 13|新加坡 05 | 1x SG
- 🇸🇬 13|新加坡 06 | 1x SG
- 🇺🇸 13|美国 04 | 1x US
- 🇺🇸 13|美国 05 | 1x US
- 🇺🇸 13|美国 06 | 1x US
- 🇰🇷 13|韩国 02 | 1x KR
- 🇵🇭 13|菲律宾 04 | 1x PH
- 🇷🇺 13|俄罗斯 04 | 1x RU
- 🇲🇾 13|马来西亚 04 | 1x MY
- 🇹🇭 13|泰国 04 | 1x TH
- 🇦🇷 13|阿根廷 04 | 1x AR
- 🇭🇺 13|匈牙利 04 | 1x HU
- 🇹🇷 13|土耳其 04 | 1x TR
- 🇺🇦 13|乌克兰 04 | 1x UA
- 🇻🇳 13|越南 04 | 1x VN
- 🇧🇷 13|巴西 04 | 1x BR
- 🇮🇳 13|印度 04 | 1x IN
- 🇦🇺 13|澳大利亚 04 | 1x AU
- 🇬🇧 13|英国 04 | 1x UK
- 🇦🇺 13|德国 04 | 1x AU
- 🇵🇹 13|葡萄牙 04 | 1x PT
- 🇨🇦 13|加拿大 02 | 1x CA
- 🇪🇸 13|西班牙 02 | 1x ES
- 14|纽约测试|@ripaojiedian
- 🇯🇵 14|🇯🇵 日本KT|@ripaojiedian
- 🇯🇵 14|🇯🇵 日本KT2|@ripaojiedian
- 🇭🇰 14|🇭🇰 香港KT2|@ripaojiedian
- 🇭🇰 14|🇭🇰 香港KT1|@ripaojiedian
- 🇭🇰 14,15|香港3|@ripaojiedian
- 🇯🇵 14,15|日本2|@ripaojiedian
- 🇺🇸 14|🇺🇸 美国1|@ripaojiedian
- 🇩🇪 14,15|德国|@ripaojiedian
- 🇺🇸 14,15|美国2|@ripaojiedian
- 14|订阅永久免费
- 🇰🇷 14|🇰🇷 韩国特殊|@ripaojiedian
- 🇸🇬 14|🇸🇬 狮城特殊|@ripaojiedian
- 🇸🇬 14|🇸🇬 新加坡特殊|@ripaojiedian
- 🇮🇱 15|以色列|@ripaojiedian
- 🇺🇸 15|美国3|@ripaojiedian
- 🇭🇰 15|香港1|@ripaojiedian
- 🇺🇸 16|JCBB_ 美国01【vip1】
- 🇺🇸 16|JCBB_ 美国02_1【vip1】
- 🇺🇸 16|JCBB_ 美国02【vip1】
- 🇺🇸 16|JCBB_ 美国 03【vip1】
- 🇺🇸 16|JCBB_ 美国 04_1【vip1】
- 🇺🇸 16|JCBB_ 美国 04【vip1】
- 🇺🇸 19|🇺🇸_US_美国_2_7
- 🇺🇸 19|🇺🇸_US_美国->🇳🇱_NL_荷兰_由快嘴科技提供;kkz...
- name: 🎥 NETFLIX
type: select
proxies:
- 🔰 节点选择
- ♻️ 自动选择
- 🎯 全球直连
- 🇺🇸 _US_美国->🇳🇱_NL_荷兰
- 🇫🇷 _FR_法国_1
- 🇫🇷 _FR_法国_2
- 🇫🇷 _FR_法国_3
- 🇵🇰 _PK_巴基斯坦
- 🇺🇸 _US_美国_1
- 🇩🇪 _DE_德国
- 🇫🇷 _FR_法国_4
- 🇫🇷 _FR_法国_5
- 🇫🇷 _FR_法国_6
- 🇺🇸 _US_美国_2
- 🇫🇷 _FR_法国_7
- 🇺🇸 _US_美国_3
- 🇺🇸 _US_美国_4
- 🇺🇸 _US_美国_5
- 🇺🇸 _US_美国_6
- 🇺🇸 _US_美国_7
- 🇺🇸 _US_美国_8
- 🇺🇸 _US_美国->🇮🇳_IN_印度_1
- 🇺🇸 _US_美国_9
- 🇺🇸 _US_美国->🇬🇧_GB_英国
- 🇺🇸 _US_美国->🇿🇦_ZA_南非
- 🇫🇷 _FR_法国_8
- 🇫🇷 _FR_法国->🇳🇱_NL_荷兰
- 🇺🇸 _US_美国_10
- 🇺🇸 _US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇸 _US_美国->🇮🇳_IN_印度_2
- 🇷🇴 _RO_罗马尼亚
- 🇺🇸 美国-康涅狄格-0-ss-13.213.46.196:443
- 🇯🇵 日本-东京都-东京-ss-54.199.83.239:2333
- 🇸🇬 新加坡-0-0-ss-54.251.168.143:443
- 0-0-内网IP-ss-wqfuinwqffq.dfcloud.xyz:30818
- 0-0-内网IP-ss-s400l.ddns1.pw:26001
- 0-0-内网IP-v2ray-xt.ylks01.eu.org:2095
- 0-0-内网IP-v2ray-aaaa.wxx.gay:443
- 🇺🇸 美国-德克萨斯-0-v2ray-159.223.94.156:80
- 0-0-内网IP-v2ray-hkd1.quickerlink.xyz:443
- 🇺🇸 美国-0-0-v2ray-51.158.98.130:443
- 0-0-内网IP-v2ray-jp1.quickerlink.xyz:443
- 🇳🇴 挪威-0-0-v2ray-141.145.196.253:80
- 0-0-内网IP-v2ray-sg4.zingfast.vn:80
- 🇺🇸 0,2,3,4,19|🇺🇸_US_美国->🇬🇧_GB_英国_由快嘴科技提供;kkz...
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #20"
- "🇩🇪 0,2,3,4,6,11,12|🇩🇪_DE_德国 #3"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #17"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇩🇪_DE_德国 #1"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #8"
- "🇫🇷 0,3|🇫🇷 _FR_法国->🇳🇱_NL_荷兰 #1"
- 🇿🇦 0,2,3,4,6,11|github.com/freefq - 南非 5
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国 #14"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #5"
- 🇺🇸 0,1,2,3,4,6,19|🇺🇸_US_美国_由快嘴科技提供;kkzui.com_3
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇮🇳_IN_印度 #6"
- "🇺🇸 0,2,3,4,6|🇺🇸_US_美国->🇮🇳_IN_印度 #9"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #12"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国 #13"
- "🇺🇸 0,2,3,4|🇺🇸_US_美国->🇭🇺_HU_匈牙利 #1"
- 1|_US_->_GB_
- 1|_US__1
- 1|_DE__1
- 1|_US__2
- 1|_US_->_DE_
- 1|_US_->_IN__1
- "🇫🇷 1,2,4|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #1"
- 1|_FR_
- 1|_US__3
- 1|_US__4
- 1|_US_->_IN__2
- 1|_US_->_IN__3
- 1|_DE__2
- 1|_US_->_IN__4
- 1|_US__6
- 1|_US__7
- 1|_US_->_HU_
- 1|_PK_
- 🇺🇸 6|🇺🇸_US_美国->🇳🇱_NL_荷兰
- "🇺🇸 6,11|github.com/freefq - 美国CloudFla... #5"
- "🇺🇸 6|🇺🇸_US_美国 #16"
- "🇺🇸 6|🇺🇸_US_美国 #18"
- "🇺🇸 6|🇺🇸_US_美国->🇬🇧_GB_英国 #2"
- 🇺🇸 6|🇺🇸_US_美国->🇿🇦_ZA_南非
- "🇫🇷 6|🇫🇷_FR_法国->🇳🇱_NL_荷兰 #2"
- "🇺🇸 6|🇺🇸_US_美国 #22"
- 🇺🇸 6|🇺🇸_US_美国->🇸🇦_SA_沙特阿拉伯
- 🇺🇦 6,11|github.com/freefq - 乌克兰 1
- 🇸🇬 7|「节点冠名招商 @nodpai」🇸🇬 SG 01
- "🇭🇰 7,8|「starnet,老牌公益机场」🇭🇰 HK 01 #1"
- "7,8|「www.starnetcn.com 年付85折 不定期抽U... #1"
- "🇺🇸 7,8|中转 🇺🇸 United States 02 @nodpai #1"
- 🇭🇰 8,14|🇭🇰 香港2|@ripaojiedian
- 🇰🇷 8|「线路包含IEPL,中转,覆盖冷门地区」🇰🇷 KR 01
- 🇰🇷 8|🇰🇷 South Korea 02 @nodpai
- 🇯🇵 9|🇯🇵日本04
- 🇯🇵 9|🇯🇵日本05
- 🇯🇵 9|🇯🇵日本06
- 🇭🇰 9|🇭🇰香港04
- 🇭🇰 9|🇭🇰香港05
- 🇭🇰 9|🇭🇰香港06
- 🇨🇳 9|🇹🇼台湾04
- 🇨🇳 9|🇹🇼台湾05
- 🇨🇳 9|🇹🇼台湾06
- 🇸🇬 9|🇸🇬新加坡04
- 🇸🇬 9|🇸🇬新加坡05
- 🇸🇬 9|🇸🇬新加坡06
- 🇺🇸 9|🇺🇸美国04
- 🇺🇸 9|🇺🇸美国05
- 🇺🇸 9|🇺🇸美国06
- 🇷🇺 9|🇷🇺俄罗斯04
- 🇲🇾 9|🇲🇾马来西亚04
- 🇹🇭 9|🇹🇭泰国04
- 🇵🇭 9|🇵🇭菲律宾04
- 🇰🇷 9|🇰🇷韩国04
- 🇮🇳 9|🇮🇳印度04
- 🇧🇷 9|🇧🇷巴西04
- 🇻🇳 9|🇻🇳越南04
- 🇭🇺 9|🇭🇺匈牙利04
- 🇦🇷 9|🇦🇷阿根廷04
- 🇹🇷 9|🇹🇷土耳其04
- 🇺🇦 9|🇺🇦乌克兰04
- 🇦🇺 9|🇦🇺澳大利亚04
- 🇬🇧 9|🇬🇧英国04
- 🇩🇪 9|🇩🇪德国04
- 🇵🇹 9|🇵🇹葡萄牙04
- 🇨🇦 9|🇨🇦加拿大04
- 🇪🇸 9|🇪🇸西班牙04
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州洛杉...
- 🇿🇦 11|github.com/freefq - 南非豪登省约翰内斯堡...
- 🇺🇸 11|github.com/freefq - 美国 6
- 🇺🇸 11|github.com/freefq - 美国CloudFla...
- 🇺🇸 11|github.com/freefq - 美国加利福尼亚州圣何...
- 🇺🇸 11,12|🇺🇸_US_美国_yui科技_274
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #2"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #3"
- "🇺🇸 11|github.com/freefq - 美国CloudFla... #4"
- 🇭🇰 11|github.com/freefq - 香港城市电讯有限公司...
- 🇺🇸 12|美国-1023
- 12|↩️8@oneclickvpnkeys
- 🇺🇸 12|🇺🇸 美国 339
- 🇺🇸 12|🇺🇸_US_美国_yui科技_297
- 🇯🇵 12|🔒 VM-TCP-NA 🇯🇵 JP-140.83.63.38...
- 🇺🇸 12|🇺🇸 美国 332
- 12|🔒 VM-WS-NA 🏴☠️ NA-104.17.84.8...