forked from Ruk1ng001/freeSub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclash.yaml
1852 lines (1832 loc) · 154 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:
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-70684847","network":"ws","port":2086,"server":"104.16.149.244","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"HK😈github.com/Ruk1ng001_135100751","network":"ws","port":2052,"server":"cfcdn2.sanfencdn9.com","servername":"zTrUWkzLhk1.wzjwkqya.xyz","skip-cert-verify":true,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"HOST":"zTrUWkzLhk1.wzjwkqya.xyz"},"path":"/video/epGXsEeR"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"AU😈github.com/Ruk1ng001_-803483864","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31411,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_-1635192526","password":"XJLSHUkevoRHmidSp5xeGd8gwuBBBTTp1yVYCg6kYBA2FgJbMwGjnLuTnqcmNKWKdgPDH8d7m9ag7VfsBBhW1rMc47cgX5up","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_-1554642912","network":"ws","port":2086,"server":"172.64.166.12","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_489540736","network":"ws","port":2086,"server":"104.19.38.62","servername":"ip005.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip005.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"name":"FR😈github.com/Ruk1ng001_-1798623546","network":"tcp","password":"telegram-id-privatevpns","port":22222,"server":"35.180.222.127","skip-cert-verify":true,"sni":"trojan.burgerip.co.uk","tls":true,"type":"trojan","udp":true}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1628484194","network":"ws","port":2086,"server":"104.19.46.59","servername":"ip1.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1440257245","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20001,"server":"hk1.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1460529048","network":"ws","port":2086,"server":"104.19.47.27","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-563138543","network":"ws","port":443,"server":"n1721189690.ryjml.cn","tls":true,"type":"vmess","uuid":"c4eb4393-02c4-4e89-af37-48467f777ac7","ws-opts":{"path":"/"}}
- {"alterId":0,"cipher":"auto","name":"CH😈github.com/Ruk1ng001_671850795","network":"ws","port":13600,"server":"111.247.1.24","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"4532d6f9-d47c-4ab3-b3b4-df8623e8bbb0","ws-opts":{"path":"/"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"HK😈github.com/Ruk1ng001_-1208291020","password":"1404585b-fe61-4f4d-9680-f63d2002b429","port":27466,"server":"gdyddx500.xiyunchen.cn","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-1855455087","password":"qwerREWQ@@","port":37907,"server":"p233.panda004.net","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"BZ😈github.com/Ruk1ng001_1002903819","network":"ws","port":80,"server":"45.131.208.182","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"1cd676ac-744d-11ef-8810-f324c6043e28","ws-opts":{"headers":{"Host":"dl3.wwwiransell.ir.烏克爾聖.yркельпасаетcанту.wonkacapitano.buzz."},"path":"/vmess#Telegram - id - @FreeV2rng"}}
- {"alterId":64,"cipher":"auto","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_-167449875","password":"cf8c51d3-e692-46a6-b351-4c5ef0b5efc3","port":13018,"server":"naiu-jp.05vr9nyqg5.download","skip-cert-verify":false,"sni":"cloudflare.node-ssl.cdn-alibaba.com","tfo":false,"tls":false,"type":"trojan","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":64,"cipher":"none","name":"Other😈github.com/Ruk1ng001_1699610525","port":54104,"server":"183.236.51.23","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1619373299","password":"FjgGNNHQiELzxXmaHRxxtQbxDDvGXFxYdTbYe91JKZsjvKLHoY9rn9ruYE45377WjtU3m4kmXQZDXiHBJsgVfhmpawEoGvq9","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_-774687686","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20021,"server":"14.215.169.69","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-286799384","port":50002,"server":"114.55.132.202","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":64,"cipher":"none","name":"Other😈github.com/Ruk1ng001_233140273","port":50002,"server":"47.116.173.76","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CA😈github.com/Ruk1ng001_1617152841","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31171,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"Other😈github.com/Ruk1ng001_-910520410","network":"tcp","port":12953,"server":"63.lwdh.us","skip-cert-verify":true,"tls":true,"type":"vmess","uuid":"a32313ad-5e39-4f9a-9cad-512041790050"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🏁 ZZ","name":"NO😈github.com/Ruk1ng001_-2038435400","password":"iZDJs2CDckHKqJ5W7cpvCq2veqsqWn95iqs6Kr6F3YNnyMsk2uPdRrChQfShvH1v56Br1qWEW44qJna5QcMcZF7RCJmdvwuq","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":0,"cipher":"auto","http-opts":{"method":"GET","path":["/"]},"name":"IT😈github.com/Ruk1ng001_-2113746822","network":"http","port":2098,"server":"185.247.184.115","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"83876222-64a4-4912-aa18-b7d9d34959de"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_932836545","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40220,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_676871241","obfs":"plain","obfs-param":"8195986416.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40206,"protocol":"auth_aes128_md5","protocol-param":"86416:SlZFuy","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1724453202","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20017,"server":"hk5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_-1811385365","password":"BpFieMT6SobpqRiKFefvYu7eXk99XfCeWfjpntzSh81FfMx9R7rJW6LTmzH78StTEhCd7w32ZMxbGJZS98gpn1ozr9jAbMoa","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-107637019","network":"ws","port":2086,"server":"104.19.51.232","servername":"ip006.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip006.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_-170316280","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20030,"server":"14.215.169.69","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1673887547","network":"ws","port":2086,"server":"104.22.37.243","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_673973698","network":"ws","port":2086,"server":"172.67.75.194","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_20664107","password":"amazonskr05","port":443,"server":"13.229.232.1","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1186465953","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20009,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_1873915727","port":50004,"server":"112.132.212.19","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"Euro😈github.com/Ruk1ng001_1991831602","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31471,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-424023012","network":"ws","port":2086,"server":"104.26.5.88","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"UM😈github.com/Ruk1ng001_-1814989780","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40263,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"JP😈github.com/Ruk1ng001_-1795409383","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31113,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_2036570167","password":"27BEHEQe68MwwhgusnZkLFvPTpqnU2Uwqsw9uSz2Wo3bQ56sfUW47SiZv1FETJzSJep4vtwJzMxQYrYxogE9FGbi31PVGcYS","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"none","name":"Euro😈github.com/Ruk1ng001_-712446921","network":"ws","port":80,"server":"95.179.128.114","type":"vmess","uuid":"a6292090-afe1-4640-97a7-4f1d1d877cf1","ws-opts":{"path":"/Av8czorIlYicU6D349brWUw6a"}}
- {"alterId":-1,"name":"CH😈github.com/Ruk1ng001_1691813948","password":"cf8c51d3-e692-46a6-b351-4c5ef0b5efc3","port":13018,"server":"naiu-jp.05vr9nyqg5.download","skip-cert-verify":false,"sni":"cloudflare.node-ssl.cdn-alibaba.com","type":"trojan"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_192934526","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40221,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-600585359","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20027,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_876316394","network":"ws","port":2095,"server":"cfcdn1.sanfencdn9.com","servername":"us82pRzxDMb.fzbqfrse.xyz","skip-cert-verify":true,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"HOST":"us82pRzxDMb.fzbqfrse.xyz"},"path":"/video/qYZue4zaWS"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"Other😈github.com/Ruk1ng001_648535491","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20010,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_911139846","password":"TmqCDzMR1YH5WaWS9GrJka6BCtPGaznG2zwWwrJnL81zuVkqcEeNL7M3eCpiJoNzDsyy3nd42eoKWbv974LtTzuX1f8WdHyc","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1625631274","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20009,"server":"tw4.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_1898804856","password":"28qiyq1L4vKsTegcgDdasTUnbCv4B66cx7uWJfHt24Ti3ry9fggm9c4Jg4izjECfWWRmcNfoGCARDy9CaCVmuZi8ovoPDLCH","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_-1875762085","obfs":"plain","obfs-param":"8195986416.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40209,"protocol":"auth_aes128_md5","protocol-param":"86416:SlZFuy","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"HK😈github.com/Ruk1ng001_1893425806","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31145,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_138861297","password":"amazonskr05","port":443,"server":"13.213.74.11","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_1396487999","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40208,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1542762135","network":"ws","port":8080,"server":"104.19.44.174","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"3fdf9d48-578a-42dc-9fdd-0dfcefa3d0c5","ws-opts":{"headers":{"Host":"amd2.720208.xyz"},"path":"/"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CA😈github.com/Ruk1ng001_-1212588693","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31173,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"UM😈github.com/Ruk1ng001_1064261228","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31217,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"KR😈github.com/Ruk1ng001_1292294737","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31315,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_405877980","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20009,"server":"14.215.169.69","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1436279177","network":"ws","port":2086,"server":"104.26.5.57","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":64,"cipher":"auto","name":"CN😈github.com/Ruk1ng001_-1004404201","port":50002,"server":"47.104.186.133","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_479988501","network":"ws","port":443,"server":"n1721280111.ryjml.cn","tls":true,"type":"vmess","uuid":"ad0e296e-ebbc-4500-9d91-776adfcd23d3","ws-opts":{"path":"/"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-294863317","network":"ws","port":2086,"server":"104.19.46.22","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_-1141966209","network":"ws","port":2086,"server":"malaysia.com","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_139598830","network":"ws","port":2086,"server":"172.64.198.249","servername":"ip1.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1668193911","password":"UoaSgFv5z3i7XKz6h1KXCSZQmCa463i1smTuZv5tqVnRQvHa3RBFCXuefGzjGCDikoMNz64kELgiC8i7WtXy6t6CNzsd8kLG","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-460669441","password":"GaKXVig9GWGeCeTvSv3npvU3qYCgbbAMypPQUY9Wm9xJTNCQGCCGKcpg4vYeH6AxwYNY4mLqKrBWvoyNb43CGU3d1sd8tfRp","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-1443916682","network":"ws","port":2086,"server":"23.227.38.6","servername":"ip006.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip006.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1360685149","network":"ws","port":2086,"server":"104.19.46.39","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1845856196","password":"YLpDMwoLZi9Dvkr7Q6PCfkwCKJt23MkhD1LHDjnKVjS1R9Z4dD9vY5FffuYCtDVcSzHJLdicZbm4Dh6p8Nsd5d88gzAWYrQY","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_594610969","network":"ws","port":8880,"server":"104.16.61.8","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"edbb1059-1633-4271-b66e-ed4fba47a1bf","ws-opts":{"headers":{"Host":"worgold21yagranghadeyaakbarshokretbozorg.abza.workers.dev"},"path":"/linde06.indiavideo.sbs/linkws"}}
- {"alterId":64,"cipher":"auto","country":"🇨🇳CN","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_-1509473673","network":"tcp","port":50002,"server":"114.55.132.202","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":-1,"country":"🏁ZZ","fingerprint":"chrome","name":"CA😈github.com/Ruk1ng001_-356504328","network":"ws","password":"Watashi_VPN","port":8443,"server":"104.18.27.94","sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","type":"trojan","udp":true,"ws-opts":{"headers":{"Host":"t-watashi-r-jacket-o-people-jan.watashi-java.ir"},"path":"/"}}
- {"alterId":-1,"country":"🏁ZZ","fingerprint":"randomized","name":"CA😈github.com/Ruk1ng001_1400289752","network":"ws","password":"auto","port":8443,"server":"104.18.41.190","sni":"547c921f-c9b1-4d57-bb25-ff5c79749783.a09c5a67-316e-45c6-a051-e6066737fd47.theworkpc.com","type":"trojan","udp":true,"ws-opts":{"headers":{"Host":"547c921f-c9b1-4d57-bb25-ff5c79749783.a09c5a67-316e-45c6-a051-e6066737fd47.theworkpc.com"},"path":"/abbas.ab841vpn.workers.dev/?ed=2560"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_863204814","password":"2DvuGfaUJ7oM9E6mHWkZN9dAjPxtpndv4ckpPpyuexJxKLn6SpDQdBBJDFE6Gqj9MXpRHPDwYfNAqKgpBWTCWPrG4eDmnGTZ","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-983745252","port":54629,"server":"120.232.153.8","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_-1866811388","network":"ws","port":2086,"server":"172.64.167.8","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_389800579","network":"ws","port":2086,"server":"172.64.167.10","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"HK😈github.com/Ruk1ng001_1229034476","password":"1404585b-fe61-4f4d-9680-f63d2002b429","port":58774,"server":"gdyddx500.xiyunchen.cn","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","country":"🇨🇳CN","name":"CN😈github.com/Ruk1ng001_911977573","password":"uYhVA160ZoSg3AI5","port":6700,"server":"61.171.112.82","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_-1357074406","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40214,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🏁 ZZ","name":"CN😈github.com/Ruk1ng001_430125258","password":"dc6eda41-d81f-4aef-972e-bf0c09672e46","port":42031,"server":"120.232.81.12","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_619157408","network":"ws","port":2086,"server":"104.18.14.19","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-48061195","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20009,"server":"sg2.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1207960561","network":"ws","port":2086,"server":"104.26.5.145","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"name":"IE😈github.com/Ruk1ng001_-178999121","network":"tcp","password":"telegram-id-privatevpns","port":22222,"server":"52.210.13.233","skip-cert-verify":true,"sni":"trojan.burgerip.co.uk","tls":true,"type":"trojan","udp":true}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-1495350348","password":"qwerREWQ@@","port":53419,"server":"p229.panda004.net","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_190281273","password":"24YvzBvWgTyqqTtSVNiFi9shqi6v5RTQViYJVJXbQHrnTe4CzpZMK9aHmGw8ENt5LWGegR92vyn64KJP1v1v12QKngYgDKpa","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-1777630","network":"ws","port":443,"server":"n1723960458.ryjml.cn","tls":true,"type":"vmess","uuid":"77bcad64-8bb9-47a8-81f5-9086c6040b63","ws-opts":{"path":"/"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_711691225","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40203,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"name":"FR😈github.com/Ruk1ng001_-805233594","password":"telegram-id-directvpn","port":22222,"server":"15.237.167.178","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1948895319","network":"ws","port":2086,"server":"104.20.19.168","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"Asia😈github.com/Ruk1ng001_314498641","network":"ws","port":2095,"server":"cfcdn1.sanfencdn9.com","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"Host":"us82pRzxDMb.fzbqfrse.xyz"},"path":"/video/qYZue4zaWS"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_547951812","network":"ws","port":2086,"server":"104.19.21.71","sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_2069308993","network":"ws","port":2086,"server":"104.26.5.103","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_932837277","network":"ws","port":2086,"server":"162.159.140.56","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-gcm","name":"Other😈github.com/Ruk1ng001_1419821410","password":"e4FCWrgpkji3QY","port":9101,"server":"69.50.95.39","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-433703721","network":"ws","port":2086,"server":"104.19.46.42","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-983356899","password":"qwerREWQ@@","port":41715,"server":"p226.panda004.net","type":"ss"}
- {"alterId":-1,"name":"Other😈github.com/Ruk1ng001_-872788282","password":"telegram-id-privatevpns","port":22222,"server":"52.211.202.112","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":0,"cipher":"none","name":"Euro😈github.com/Ruk1ng001_-596906734","network":"ws","port":80,"server":"hdfy8d1.cpionline.co","type":"vmess","uuid":"a6292090-afe1-4640-97a7-4f1d1d877cf1","ws-opts":{"path":"/Av8czorIlYicU6D349brWUw6a"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"JP😈github.com/Ruk1ng001_-1104719142","password":"amazonskr05","port":443,"server":"35.72.14.86","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇨🇦CA","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_408976710","network":"ws","port":2086,"server":"23.227.38.3","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-450063044","password":"Ag9Q4j87WAWH6dygoH5Jzgv9ppjCtHCaJ6eG3hJHidyHFETkDN8g7StPxRDjuPsoH6pEdSsnuXNfXURibG9vwizcLJ5Ff5zz","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"name":"US😈github.com/Ruk1ng001_-1420628713","password":"telegram-id-directvpn","port":22222,"server":"44.214.239.114","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":0,"cipher":"auto","country":"🇮🇹 IT","h2-opts":{},"http-opts":{"method":"GET","path":["/"]},"name":"Euro😈github.com/Ruk1ng001_636853635","network":"http","port":2098,"server":"f41.maryam1500.top","servername":"f41.maryam1500.top","skip-cert-verify":true,"type":"vmess","uuid":"83876222-64a4-4912-aa18-b7d9d34959de"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1891180947","network":"ws","port":2086,"server":"104.19.45.11","servername":"ip1.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-1729552676","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20005,"server":"hk2.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-300430007","network":"ws","port":443,"server":"n1721189676.ryjml.cn","tls":true,"type":"vmess","uuid":"8238c168-a9dc-4f63-8086-9109768a20ab","ws-opts":{"path":"/"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_235161225","password":"AmxHJ6RVjmwKnuVo513Wt4Lmwh3i8cdTLXmqF35NnBGL1Ko6AYF7dvNAZNWCcBifbtLJHQxNVcc3PwgtLbxKPLrMhkDRTFab","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_-1805268900","password":"amazonskr05","port":443,"server":"54.151.132.62","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_-230361071","network":"ws","port":2086,"server":"172.64.166.28","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"Americas😈github.com/Ruk1ng001_2018148914","network":"ws","port":2086,"server":"104.19.47.122","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"name":"CA😈github.com/Ruk1ng001_626624684","network":"ws","password":"Watashi_VPN","port":443,"server":"172.67.155.165","skip-cert-verify":true,"sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","type":"trojan","udp":true}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_509657506","network":"ws","port":2086,"server":"104.19.47.65","servername":"ip11-2.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11-2.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-707476998","network":"ws","port":443,"server":"n1726709801.ryjml.cn","tls":true,"type":"vmess","uuid":"4bb95c0c-0bff-4f54-9d29-61c84e959505","ws-opts":{"path":"/"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_573994731","network":"ws","port":2086,"server":"172.64.167.25","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-gcm","country":"🇺🇸US","name":"US😈github.com/Ruk1ng001_1923218439","password":"e4FCWrgpkji3QY","port":9102,"server":"139.64.165.155","type":"ss"}
- {"alterId":64,"cipher":"auto","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_-195404888","network":"tcp","port":50004,"server":"112.132.212.19","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-548049498","password":"qwerREWQ@@","port":37403,"server":"p239.panda004.net","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-1716386168","port":50002,"server":"47.104.186.133","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_1811530524","network":"ws","port":2086,"server":"172.64.167.15","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"US😈github.com/Ruk1ng001_790602604","password":"amazonskr05","port":443,"server":"35.93.49.236","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_1699171288","password":"qwerREWQ@@","port":9664,"server":"p221.panda001.net","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1134953909","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20005,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_-355151149","network":"ws","port":2052,"server":"cfcdn2.sanfencdn9.com","servername":"","skip-cert-verify":false,"tfo":false,"tls":false,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"Host":"zTrUWkzLhk1.wzjwkqya.xyz"},"path":"/video/epGXsEeR"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"US😈github.com/Ruk1ng001_-1652039839","password":"amazonskr05","port":443,"server":"54.202.63.166","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_31240124","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20028,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1832205955","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20024,"server":"tw4.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1802021358","network":"ws","port":2086,"server":"104.19.38.62","skip-cert-verify":false,"sni":"ip005.3196772.xyz","type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"host":"ip005.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_1776200002","network":"ws","port":2086,"server":"172.64.167.22","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_1948258663","network":"ws","port":443,"server":"n1721189686.afjian.cn","tls":true,"type":"vmess","uuid":"c04ec998-b12c-4c9b-9d78-e116ae8b5be8","ws-opts":{"path":"/"}}
- {"alterId":-1,"cipher":"aes-256-gcm","country":"🇺🇸US","name":"US😈github.com/Ruk1ng001_-1609364345","password":"XKFKl2rULjIp74","port":8008,"server":"69.50.95.103","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-807110109","network":"ws","port":2086,"server":"104.26.0.56","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"TW😈github.com/Ruk1ng001_399015250","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":41227,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1762758403","network":"ws","port":2086,"server":"104.19.47.77","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-1570665313","password":"qwerREWQ@@","port":19647,"server":"p220.panda001.net","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_325597721","port":50002,"server":"120.210.205.82","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-371927640","network":"ws","port":443,"server":"n1721280112.ryjml.cn","tls":true,"type":"vmess","uuid":"6f654fe9-5cf8-4793-b244-458a6e9a5352","ws-opts":{"path":"/"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_-1711796129","network":"ws","port":2052,"server":"cfcdn1.sanfencdn9.com","servername":"tw1eskJpKcA.inivtrak.xyz","skip-cert-verify":true,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"HOST":"tw1eskJpKcA.inivtrak.xyz"},"path":"/video/WNMicnDh"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1778934161","password":"w78Sda3RQciJY89Vkk8zrvTphxBg4RKVLXujHreZp6MjXCKzmQ3RVc7xFLSpbRcCwtyLdU3MtUWVGgcNnCKxePfXdNy8Znz3","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-627998723","network":"ws","port":2086,"server":"104.19.38.8","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-1017820359","network":"ws","port":2086,"server":"104.19.32.46","servername":"ip006.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip006.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"US😈github.com/Ruk1ng001_1553602564","password":"amazonskr05","port":443,"server":"34.222.42.9","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-gcm","country":"🏁 ZZ","name":"US😈github.com/Ruk1ng001_928875436","password":"kDWvXYZoTBcGkC4","port":8882,"server":"69.50.95.103","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_1593040328","port":31778,"server":"183.236.48.161","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-619558743","password":"qwerREWQ@@","port":34997,"server":"p235.panda004.net","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"Euro😈github.com/Ruk1ng001_-1363370158","network":"ws","port":443,"server":"cdn.cngfw.online","servername":"eu3.kunkunbuku.me","skip-cert-verify":true,"tls":true,"type":"vmess","uuid":"cab438c4-9c5a-43fd-a623-ce81cb93085c","ws-opts":{"headers":{"HOST":"eu3.kunkunbuku.me"},"path":"/ikun"}}
- {"alterId":-1,"cipher":"aes-256-gcm","country":"🏁 ZZ","name":"US😈github.com/Ruk1ng001_1250440735","password":"RexnBgU7EV5ADxG","port":7002,"server":"15.204.87.225","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-372122310","password":"qwerREWQ@@","port":51473,"server":"p222.panda001.net","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1650884680","network":"ws","port":2086,"server":"104.19.32.88","servername":"ip5-4.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip5-4.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-212818882","network":"ws","port":2086,"server":"104.19.42.49","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-2085567441","network":"ws","port":2086,"server":"104.19.57.4","servername":"ip11.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_1309713867","password":"amazonskr05","port":443,"server":"54.255.150.206","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-438177000","network":"ws","port":2086,"server":"104.19.45.19","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸 US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1011188123","network":"ws","port":2095,"server":"104.16.61.8","servername":"ep-sunset-9b11.kekic13319.workers.dev","skip-cert-verify":true,"type":"vmess","uuid":"441da342-ce90-441e-bff9-d2ceb55e68ca","ws-opts":{"headers":{"HOST":"ep-sunset-9b11.kekic13319.workers.dev"},"path":"/ivideos.sbs/linkws"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1252535775","network":"ws","port":443,"server":"104.21.21.21","skip-cert-verify":true,"tls":true,"type":"vmess","uuid":"73dfe5b1-9ced-4be7-949b-e731d54ba801","ws-opts":{"headers":{"host":"laxfree.starsea.vip"},"path":"/?ed=2048"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1459890246","network":"ws","port":8080,"server":"104.17.147.22","servername":"www.speedtest.net.ftp.debian.org.irna.ir.irancell.ir.speedtest1.shatel.ir.emerg.biatogoshii.ir","skip-cert-verify":true,"type":"vmess","uuid":"313de662-3951-4354-b5e8-1552f2ccfcee","ws-opts":{"headers":{"HOST":"www.speedtest.net.ftp.debian.org.irna.ir.irancell.ir.speedtest1.shatel.ir.emerg.biatogoshii.ir"},"path":"/comm?ed=1024"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-46194588","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20028,"server":"hk5.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_429051995","network":"ws","port":2086,"server":"104.19.46.63","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_388059469","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20002,"server":"14.215.169.69","type":"ss"}
- {"alterId":-1,"country":"🏁 ZZ","name":"Other😈github.com/Ruk1ng001_289763968","password":"94d219c9-1afc-4d42-b090-8b3794764380","port":443,"server":"std1.loadingip.com","skip-cert-verify":true,"type":"trojan","udp":true}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_165174204","network":"ws","port":2086,"server":"162.159.140.91","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","client-fingerprint":"chrome","name":"TW😈github.com/Ruk1ng001_-167904798","network":"ws","port":2052,"server":"cfcdn1.sanfencdn9.com","servername":"","skip-cert-verify":false,"tfo":false,"tls":false,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"Host":"tw1eskJpKcA.inivtrak.xyz"},"path":"/video/WNMicnDh"}}
- {"alterId":0,"cipher":"auto","country":"🇳🇱NL","h2-opts":{},"http-opts":{},"name":"NL😈github.com/Ruk1ng001_1394398930","network":"ws","port":80,"server":"95.179.128.114","servername":"95.179.128.114","skip-cert-verify":true,"type":"vmess","uuid":"a6292090-afe1-4640-97a7-4f1d1d877cf1","ws-opts":{"headers":{"HOST":"95.179.128.114"},"path":"/Av8czorIlYicU6D349brWUw6a"}}
- {"alterId":0,"cipher":"auto","name":"US😈github.com/Ruk1ng001_-1183722776","network":"ws","port":2086,"server":"172.64.167.8","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","client-fingerprint":"chrome","name":"UM😈github.com/Ruk1ng001_-572543273","network":"ws","port":2095,"server":"cfcdn1.sanfencdn9.com","servername":"","skip-cert-verify":false,"tfo":false,"tls":false,"type":"vmess","uuid":"cfa71038-632b-4a8f-859d-cce4d91c1082","ws-opts":{"headers":{"Host":"us82pRzxDMb.fzbqfrse.xyz"},"path":"/video/qYZue4zaWS"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-1002223462","network":"ws","port":2086,"server":"104.19.51.232","servername":"ip006.freegradely.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip006.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"name":"IE😈github.com/Ruk1ng001_-1685804297","password":"telegram-id-privatevpns","port":22222,"server":"52.210.13.233","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":0,"name":"Other😈github.com/Ruk1ng001_1938448308","network":"ws","password":"auto","port":443,"server":"104.20.6.134","skip-cert-verify":true,"sni":"e9464f45.trauma-2r4.pages.dev","tls":true,"type":"trojan","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1522816308","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20028,"server":"jp2.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-241008696","network":"ws","port":2086,"server":"104.26.13.31","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇷🇺RU","name":"NL😈github.com/Ruk1ng001_90605486","password":"lU6*V8=shP","port":59529,"server":"77.221.154.33","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1661492773","password":"iZDJs2CDckHKqJ5W7cpvCq2veqsqWn95iqs6Kr6F3YNnyMsk2uPdRrChQfShvH1v56Br1qWEW44qJna5QcMcZF7RCJmdvwuq","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"name":"DE😈github.com/Ruk1ng001_23567771","password":"telegram-id-privatevpns","port":22222,"server":"18.158.202.14","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-809786485","network":"ws","port":2086,"server":"104.26.5.123","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-134518508","network":"ws","port":2086,"server":"104.19.46.36","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_699813159","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20028,"server":"tw4.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_-432775502","network":"ws","port":2086,"server":"172.67.71.187","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_65492314","password":"amazonskr05","port":443,"server":"47.129.53.7","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-2129480278","port":45020,"server":"183.236.51.23","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"auto","name":"Americas😈github.com/Ruk1ng001_1591553187","network":"ws","port":2086,"server":"japan.com","tls":false,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-863310960","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20027,"server":"sg5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-505116468","password":"2WJbjavFHQv7vgKhyHEMg7oYTLzQ98GqTTU7LmW2ZuCHy9eZLBkojcCygB1GydiWYmDiwhGHun3Xi9Dm4s9Ho9QSnCMeHaPH","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-1354540667","network":"ws","port":2086,"server":"104.19.47.36","servername":"ip2.1457230.xyz","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"name":"Other😈github.com/Ruk1ng001_1902618786","network":"tcp","password":"telegram-id-privatevpns","port":22222,"server":"18.175.102.194","skip-cert-verify":true,"sni":"trojan.burgerip.co.uk","tls":true,"type":"trojan","udp":true}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-1069624585","port":50002,"server":"112.132.215.12","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"NO😈github.com/Ruk1ng001_-1869136462","password":"FjgGNNHQiELzxXmaHRxxtQbxDDvGXFxYdTbYe91JKZsjvKLHoY9rn9ruYE45377WjtU3m4kmXQZDXiHBJsgVfhmpawEoGvq9","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1690549655","password":"2DvuGfaUJ7oM9E6mHWkZN9dAjPxtpndv4ckpPpyuexJxKLn6SpDQdBBJDFE6Gqj9MXpRHPDwYfNAqKgpBWTCWPrG4eDmnGTZ","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_958573687","password":"VZGpJiYpqsqrwx3ACRV1vX2qNSG8Jignq4SMn1qCpBKyBWiihvK3MsdFtFdTcGevaHQzjhJ1L9qzVf8SQG7c4ygHtudNNSPk","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":-1,"name":"IE😈github.com/Ruk1ng001_122598355","password":"telegram-id-privatevpns","port":22222,"server":"54.75.152.117","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":64,"cipher":"auto","name":"HK😈github.com/Ruk1ng001_-39740073","port":31778,"server":"183.236.48.161","skip-cert-verify":false,"tfo":false,"tls":false,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":64,"cipher":"auto","country":"🇨🇳CN","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_-1850491645","network":"tcp","port":59003,"server":"183.236.51.36","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_826455897","password":"2UNhq6bcq57shMzvVCgmWrnbobjgW3au5pv658oUHkJS7CRkMLpdu1WnYBzaVZDt66x6dmbJ3k9zeNKKth4mG8pstXRUnQaT","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_1978528688","password":"2Kt8E86x2tVtKbtpsgVpHHE11rU3XWuhC8WzM6KAUwwwpDLcJF6vqWvyR8VHg2LDbJQQjVA1wA6TMq8JSx17ZcKVxcAPGnur","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"UM😈github.com/Ruk1ng001_-1666767954","network":"ws","port":2086,"server":"malaysia.com","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1318797052","password":"3ZR2BwKryGCdvPUL35h1YbSzAp3fgwunRLH5YAiAsMHQY8WXmfsTB2kTsV2L73vFJn8KMhGU27z6RAwabfkncrdgc1yxPFoC","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1322725135","network":"ws","port":2086,"server":"104.16.148.244","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip006.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_1525730229","password":"tRVH6ZVjtjWCvREPvSgTx6jwmensa6of9w26NwnZ5n1V3bWeNBsq2A86K3RWGRyjA89Tqibnri4HuDtvE24KU2Sb65RUeVJz","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1238772858","network":"ws","port":2086,"server":"104.16.148.244","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_-801234006","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20018,"server":"14.215.169.69","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1821742565","network":"ws","port":2086,"server":"104.19.46.17","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_1714560524","password":"qwerREWQ@@","port":38256,"server":"p227.panda004.net","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_676686047","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20029,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1834388871","password":"28meQdVpma7JkCtsEUWcS6gieKmFXiawCwgFMcJqCXMqS2d9WrGpucynNaiy6mUasdbkMiRVDJ5BhSrrAugCuCJnXubRBHez","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-2140125472","network":"ws","port":2086,"server":"104.26.12.140","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇦🇷 AR","h2-opts":{},"http-opts":{},"name":"Americas😈github.com/Ruk1ng001_1304344029","network":"tcp","port":15074,"server":"15074.kuaiyin02.top","servername":"15074.kuaiyin02.top","skip-cert-verify":true,"type":"vmess","uuid":"9f513161-576b-3abc-9c98-06e52c3a24c6"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_269672396","port":58831,"server":"120.232.153.27","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":64,"cipher":"auto","country":"🇨🇳CN","h2-opts":{},"http-opts":{},"name":"CH😈github.com/Ruk1ng001_-1397354413","network":"tcp","port":54629,"server":"120.232.153.8","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":-1,"name":"Other😈github.com/Ruk1ng001_919032809","password":"cf8c51d3-e692-46a6-b351-4c5ef0b5efc3","port":13035,"server":"naiu-other.05vr9nyqg5.download","sni":"cloudflare.node-ssl.cdn-alibaba.com","type":"trojan"}
- {"alterId":-1,"name":"CA😈github.com/Ruk1ng001_553251765","password":"telegram-id-directvpn","port":22222,"server":"15.156.237.221","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"UM😈github.com/Ruk1ng001_123086233","obfs":"plain","obfs-param":"8195986416.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40211,"protocol":"auth_aes128_md5","protocol-param":"86416:SlZFuy","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-219416821","password":"7TYPgynLAQr2uHr4wUqw3KZzH9Uyb89ExvNTKvWEmimnygAzj7E6FGfh8VijxNh5scjUtV4s1wS4B4ihvPnuDLCAHjRUbjMC","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_-1101363954","password":"amazonskr05","port":443,"server":"13.213.43.236","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1502641888","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20002,"server":"tw5.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1785824018","network":"ws","port":2082,"server":"33.6bnw.top","type":"vmess","uuid":"9bc3d207-3f67-4283-905a-f88e275ac842","ws-opts":{"headers":{"Host":"aksg.6bnw.top"},"path":"/cctv?ed=2048"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_109057220","network":"ws","port":2086,"server":"104.19.45.15","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"UM😈github.com/Ruk1ng001_157875692","network":"ws","port":2086,"server":"icook.tw","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_1054813220","password":"YZvzh9FMJh6ac6moh8xtkMogmwEZDL5nF99PSFDk7NffhikzuHe3CUUYzudGcaLW5vMzECV29QiH856gj62VnAcgQ2oHY5DV","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-1207479668","port":59003,"server":"183.236.51.36","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-309525366","network":"ws","port":2086,"server":"104.19.55.49","skip-cert-verify":false,"sni":"ip2.1457230.xyz","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1830081272","network":"ws","port":2086,"server":"104.20.25.146","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_1690895570","network":"ws","port":2086,"server":"japan.com","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"CA😈github.com/Ruk1ng001_199360578","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40251,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":64,"cipher":"auto","name":"CN😈github.com/Ruk1ng001_1691194673","network":"tcp","port":31778,"server":"183.236.48.161","servername":"","tls":false,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":0,"cipher":"auto","name":"US😈github.com/Ruk1ng001_1949336235","network":"ws","port":2086,"server":"172.64.167.5","tls":false,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1826119005","network":"ws","port":2086,"server":"104.18.57.111","servername":"ip11.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-gcm","name":"US😈github.com/Ruk1ng001_-1207909926","password":"e4FCWrgpkji3QY","port":9101,"server":"69.50.95.103","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1471006155","network":"ws","port":2086,"server":"23.227.38.8","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip5-10.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-952980193","network":"ws","port":2086,"server":"23.227.38.6","servername":"ip005.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip005.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"US😈github.com/Ruk1ng001_-1263801234","password":"amazonskr05","port":443,"server":"54.203.38.83","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","country":"🇨🇳CN","name":"CN😈github.com/Ruk1ng001_-1845180119","password":"uYhVA160ZoSg3AI5","port":6700,"server":"36.134.115.217","type":"ss"}
- {"alterId":0,"cipher":"auto","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_223770517","password":"cf8c51d3-e692-46a6-b351-4c5ef0b5efc3","port":13018,"server":"naiu-jp.05vr9nyqg5.download","skip-cert-verify":false,"sni":"cloudflare.node-ssl.cdn-alibaba.com","tfo":false,"tls":false,"type":"trojan","uuid":"2302fd7b-1b02-4b1b-8391-782f4c99b7b3"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1653915641","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20027,"server":"jp2.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_-1695976317","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40201,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":0,"cipher":"chacha20-ietf-poly1305","name":"HK😈github.com/Ruk1ng001_13229846","password":"1404585b-fe61-4f4d-9680-f63d2002b429","port":58774,"server":"gdyddx500.xiyunchen.cn","skip-cert-verify":true,"tls":true,"type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_-2060077234","network":"ws","port":2086,"server":"www.visa.com","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_1112914115","network":"ws","port":2086,"server":"172.64.167.5","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1922561286","network":"ws","port":8080,"server":"104.19.44.151","skip-cert-verify":true,"tls":false,"type":"vmess","udp":true,"uuid":"3fdf9d48-578a-42dc-9fdd-0dfcefa3d0c5","ws-opts":{"headers":{"Host":"amd2.720208.xyz"},"path":"/"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-96490335","network":"ws","port":2086,"server":"104.26.5.66","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_471165517","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20028,"server":"sg5.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-113558617","password":"vWgVt4dL6bwFutKm1D8WrjaAs2AWT535GfVMttHBg7rg6ZBFUAxGpvHc6hXjoBRKsyeyTESc1uU6y3BP3oenkTv9aefi27VN","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_916189776","network":"ws","port":2086,"server":"162.159.140.56","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CN😈github.com/Ruk1ng001_413563049","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20024,"server":"14.215.169.69","type":"ss"}
- {"alterId":64,"cipher":"auto","country":"🇨🇳CN","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_1698251682","network":"tcp","port":50002,"server":"47.116.173.76","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1632790652","network":"ws","port":2086,"server":"104.20.17.186","servername":"ip11.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"name":"CA😈github.com/Ruk1ng001_-765438636","network":"ws","password":"Watashi_VPN","port":8443,"server":"104.18.12.229","skip-cert-verify":true,"sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","tls":true,"type":"trojan","udp":true}
- {"alterId":-1,"cipher":"aes-128-gcm","name":"GB😈github.com/Ruk1ng001_-1338012212","password":"shadowsocks","port":443,"server":"212.102.53.194","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"FR😈github.com/Ruk1ng001_-2018865823","network":"ws","port":2095,"server":"qxcstxwbcvb_cdn.hfhfb.homes","servername":"frcdn.fask511.cfd","skip-cert-verify":true,"type":"vmess","uuid":"4eb976a3-ace5-41f5-a096-4c64cf08a79f","ws-opts":{"headers":{"HOST":"frcdn.fask511.cfd"},"path":"/?ed=1024"}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1455172129","network":"ws","port":2086,"server":"162.159.140.89","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-490451684","network":"ws","port":443,"server":"n1721118448.ryjml.cn","tls":true,"type":"vmess","uuid":"690f0d7a-4050-4b2b-9e44-a12d67905274","ws-opts":{"path":"/"}}
- {"alterId":0,"cipher":"auto","name":"Americas😈github.com/Ruk1ng001_480155780","network":"ws","port":2086,"server":"russia.com","tls":false,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-625539331","password":"XJLSHUkevoRHmidSp5xeGd8gwuBBBTTp1yVYCg6kYBA2FgJbMwGjnLuTnqcmNKWKdgPDH8d7m9ag7VfsBBhW1rMc47cgX5up","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"name":"CA😈github.com/Ruk1ng001_1737841527","network":"ws","password":"Watashi_VPN","port":8443,"server":"104.18.26.94","skip-cert-verify":true,"sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","tls":true,"type":"trojan","udp":true}
- {"alterId":64,"cipher":"auto","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_-720627691","network":"tcp","port":50002,"server":"47.92.152.169","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_-1790086163","network":"ws","port":2086,"server":"172.64.194.76","servername":"ip11.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-638152776","password":"VZGpJiYpqsqrwx3ACRV1vX2qNSG8Jignq4SMn1qCpBKyBWiihvK3MsdFtFdTcGevaHQzjhJ1L9qzVf8SQG7c4ygHtudNNSPk","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-975088698","password":"2NX7UBibQeMpRYPzBqkQnR8HCbKa8NSHY8o4nPUCyamDmMfDAr5VtkEvaM6xRXHD8wYyND7LKugheWcHCEKeccGFLTnpXZFc","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_702763766","network":"ws","port":2086,"server":"172.64.166.32","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"chacha20-ietf-poly1305","name":"HK😈github.com/Ruk1ng001_-1012852802","password":"1404585b-fe61-4f4d-9680-f63d2002b429","port":27466,"server":"gdyddx500.xiyunchen.cn","skip-cert-verify":true,"tls":true,"type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"HK😈github.com/Ruk1ng001_529981789","obfs":"plain","obfs-param":"8195986416.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40207,"protocol":"auth_aes128_md5","protocol-param":"86416:SlZFuy","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"US😈github.com/Ruk1ng001_1742641737","network":"ws","port":2086,"server":"172.64.166.33","servername":"ip2.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip2.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1765820923","password":"MvZwz7VFNZjSX8QEuWn359dG3AreAoWrmgK9Ut8DZzLK2Rk1EyLAFj8SrRqtoQU3bEJhUT51ETmqmyYFiFbmu1RPvinLZqgL","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_149592492","password":"2R1pPsQKFKubZZQKKZcSKKdner7TPcyXwEnaG5jA67XiTZh8nBHEjSbuUBqadevcUJYV78JVsFFvVtrfPhgo1RV6ajJ7Vqo3","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-1459221881","network":"ws","port":2086,"server":"104.19.21.230","servername":"ip11.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip11.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_-508194230","password":"qwerREWQ@@","port":53419,"server":"p196.panda001.net","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1265245309","network":"ws","port":2086,"server":"104.19.47.122","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"Other😈github.com/Ruk1ng001_1085000792","network":"ws","port":2086,"server":"104.19.51.232","servername":"ip005.3196772.xyz","tls":false,"type":"vmess","uuid":"29eebb60-b27b-4a9d-bba5-947763d9205e","ws-opts":{"headers":{"Host":"ip005.3196772.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"name":"CA😈github.com/Ruk1ng001_-806232567","network":"ws","password":"0ab6c98dae3b48e8b9c4a776b6c9c19a","port":443,"server":"104.16.192.1","skip-cert-verify":true,"sni":"sherasheba.com","type":"trojan","udp":true,"ws-opts":{"headers":{"Host":"sherasheba.com"},"path":"/6b777a91"}}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"Other😈github.com/Ruk1ng001_1526592711","password":"qwerREWQ@@","port":34596,"server":"p234.panda004.net","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-426557200","network":"ws","port":2086,"server":"104.26.5.113","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1564473052","network":"ws","port":2086,"server":"162.159.140.45","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"US😈github.com/Ruk1ng001_445023364","password":"lWaGPVFjmnag","port":443,"server":"205.134.180.139","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-139052383","network":"ws","port":2086,"server":"104.26.5.88","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-873041012","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20009,"server":"jp1.mhw7e2.online","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_1561999032","network":"ws","port":2086,"server":"fbi.gov","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"name":"GB😈github.com/Ruk1ng001_-381885333","password":"telegram-id-privatevpns","port":22222,"server":"18.135.130.42","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"Americas😈github.com/Ruk1ng001_1923200833","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31441,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_-1217602740","network":"ws","port":2086,"server":"104.16.149.244","skip-cert-verify":false,"tls":false,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"Host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"JP😈github.com/Ruk1ng001_1113542382","obfs":"plain","obfs-param":"8195986416.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40218,"protocol":"auth_aes128_md5","protocol-param":"86416:SlZFuy","server":"7438974b54cf5c57.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"JP😈github.com/Ruk1ng001_-1992225538","password":"amazonskr05","port":443,"server":"43.207.213.253","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1426942681","network":"ws","port":2086,"server":"104.19.45.42","servername":"ip14.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip14.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1123489496","password":"hdUkyS4wGoL5n3yaBhm5JUAeXcwrCek2hQ7G6nh6GyYpwvU7JqRpJWLkVUQYzYXQ9MMb4YvSPvrCidN9VVgmTUvfkZBghCqr","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_17696890","network":"ws","port":2086,"server":"104.26.5.56","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":64,"cipher":"auto","country":"🇨🇳CN","h2-opts":{},"http-opts":{},"name":"CN😈github.com/Ruk1ng001_543224176","network":"tcp","port":50002,"server":"112.132.215.12","skip-cert-verify":true,"type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24"}
- {"alterId":-1,"name":"Euro😈github.com/Ruk1ng001_-1880678319","password":"cf8c51d3-e692-46a6-b351-4c5ef0b5efc3","port":13033,"server":"naiu-sg.05vr9nyqg5.download","skip-cert-verify":false,"sni":"cloudflare.node-ssl.cdn-alibaba.com","type":"trojan"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1611834584","password":"qYu8NKq5EHv1UTYWye2Fc2kdsEk6jBEXt8Ar9E26nBCijhrWejwCYkGz4wK7oXT9V75SjLTiSjBsEShWJ3J5HeF14JRAKnqC","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"name":"Other😈github.com/Ruk1ng001_2048102641","password":"telegram-id-privatevpns","port":22222,"server":"13.39.253.109","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":-1,"cipher":"aes-256-cfb","name":"SG😈github.com/Ruk1ng001_385230145","password":"amazonskr05","port":443,"server":"54.179.45.59","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"Euro😈github.com/Ruk1ng001_-1454082640","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31741,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_2114470797","password":"7ART74PanTrQWCuZkr93h5NKsQrdvyCQw8CBquCKEGNtXa4ziiQWhcppgGBe33gUZe8KNXmTZiaLQ5yQcLAJtqoWvngbBkTq","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-85973108","password":"2976kAmfLwdNpCtfWXxo3PmijgKToEYnVNUZ7Wqq8XgbM8NBB8GcvktWdaG77ZkG1z6awQeTKFFin44Re8fK7dZXgT5ez6ZH","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_58977329","network":"ws","port":2086,"server":"104.19.45.90","servername":"ip13.freegradely.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip13.freegradely.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"UM😈github.com/Ruk1ng001_-26711623","network":"ws","port":2086,"server":"russia.com","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_1163474628","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20029,"server":"tw4.mhw7e2.online","type":"ss"}
- {"alterId":-1,"name":"Other😈github.com/Ruk1ng001_-1738820401","password":"telegram-id-directvpn","port":22222,"server":"13.48.102.192","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":-1,"country":"🏁ZZ","fingerprint":"chrome","name":"UM😈github.com/Ruk1ng001_-125875807","network":"ws","password":"Watashi_VPN","port":8443,"server":"www.visa.com.sg","sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","type":"trojan","udp":true,"ws-opts":{"headers":{"Host":"t-watashi-r-jacket-o-people-jan.watashi-java.ir"},"path":"/?ed=2560"}}
- {"alterId":-1,"cipher":"rc4-md5","client-fingerprint":"chrome","name":"UM😈github.com/Ruk1ng001_280405591","obfs":"plain","obfs-param":"cd5ed74592.6602b8463464108506.microsoft.com","password":"ENZ52K","port":40205,"protocol":"auth_aes128_md5","protocol-param":"74592:o4fbeopsgcf","server":"95b1cd85a0968ff2.cdn.jiashule.com","type":"ssr","udp":true}
- {"alterId":0,"cipher":"auto","country":"🇺🇸US","h2-opts":{},"http-opts":{},"name":"Americas😈github.com/Ruk1ng001_801271353","network":"ws","port":2086,"server":"ip.sb","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":0,"cipher":"none","name":"Other😈github.com/Ruk1ng001_-984251344","network":"ws","port":443,"server":"n1721189684.ryjml.cn","tls":true,"type":"vmess","uuid":"42fd8d4a-9a59-40da-8958-05a7fc04d916","ws-opts":{"path":"/"}}
- {"alterId":64,"cipher":"none","name":"CN😈github.com/Ruk1ng001_-366810650","port":50002,"server":"47.92.152.169","type":"vmess","uuid":"418048af-a293-4b99-9b0c-98ca3580dd24","ws-opts":{}}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_1153486540","network":"ws","port":2086,"server":"162.159.140.19","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-cfb","country":"🇭🇰HK","group":"Update-二爷","name":"HK😈github.com/Ruk1ng001_44098467","obfs":"tls1.2_ticket_auth","password":"iFqnzSscN","port":8083,"protocol":"origin","server":"150.107.46.21","type":"ssr"}
- {"alterId":0,"cipher":"auto","name":"CA😈github.com/Ruk1ng001_1050853009","network":"ws","port":2086,"server":"104.26.8.156","skip-cert-verify":true,"sni":"","type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"host":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"aes-256-gcm","name":"US😈github.com/Ruk1ng001_-1318446862","password":"g5MeD6Ft3CWlJId","port":5003,"server":"139.64.165.155","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-277447266","network":"ws","port":2086,"server":"162.159.140.93","servername":"ip1.1789034.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1789034.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CA😈github.com/Ruk1ng001_-1352794891","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31175,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":0,"cipher":"none","name":"AU😈github.com/Ruk1ng001_-1520902253","port":12953,"server":"63.lwdh.us","tls":true,"type":"vmess","uuid":"a32313ad-5e39-4f9a-9cad-512041790050","ws-opts":{}}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"Asia😈github.com/Ruk1ng001_1067153463","password":"317a584d-2f58-4e7a-8ee0-ad2e827e702a","port":31371,"server":"free.2apzhfa.xyz","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","name":"CH😈github.com/Ruk1ng001_-2003216939","password":"70747514-fb14-4f31-8390-e1f0453eff6d","port":20023,"server":"jp2.mhw7e2.online","type":"ss"}
- {"alterId":-1,"cipher":"rc4-md5","country":"🇨🇳CN","name":"CN😈github.com/Ruk1ng001_268595513","password":"uYhVA160ZoSg3AI5","port":6700,"server":"1.12.237.86","type":"ss"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"UK😈github.com/Ruk1ng001_-1537675039","password":"iBnyuBxYFgJF3RrQYiRVQmhYFufXMGR1zwqR5MLJAKpc3QL4GF3iNC7y2E3kvPQqYx6j7pmCDWDzvuzbNFLdrB7az7f7ys3C","port":55988,"server":"mx2.drawnrisha.one","type":"ss"}
- {"alterId":-1,"cipher":"aes-256-cfb","country":"🏁 ZZ","name":"ChatGPT😈github.com/Ruk1ng001_-2052711301","password":"UTJA57ypk2XKQpnm","port":9033,"server":"217.30.10.18","type":"ss"}
- {"alterId":0,"cipher":"auto","country":"🏁ZZ","h2-opts":{},"http-opts":{},"name":"CA😈github.com/Ruk1ng001_-759391679","network":"ws","port":2086,"server":"104.19.47.88","servername":"ip1.1457230.xyz","skip-cert-verify":true,"type":"vmess","uuid":"e9e3cc13-db48-4cc1-8c24-7626439a5339","ws-opts":{"headers":{"HOST":"ip1.1457230.xyz"},"path":"github.com/Alvin9999"}}
- {"alterId":-1,"name":"IE😈github.com/Ruk1ng001_-757583851","password":"telegram-id-privatevpns","port":22222,"server":"52.19.61.91","sni":"trojan.burgerip.co.uk","type":"trojan"}
- {"alterId":-1,"cipher":"chacha20-ietf-poly1305","country":"🇬🇧GB","name":"NO😈github.com/Ruk1ng001_1251895668","password":"bg9rGNza4dcmnDAXMiBaa4pUf9q8fc2EDePQ96UDfJrmohfvK7L27bLsJW2jikJPw97LYW76ypYK347TtUKZ6ebkw5Zf6C4s","port":55988,"server":"185.5.38.111","type":"ss"}
- {"alterId":-1,"country":"🏁ZZ","fingerprint":"chrome","name":"CA😈github.com/Ruk1ng001_1142831069","network":"ws","password":"Watashi_VPN","port":2053,"server":"104.18.12.229","sni":"t-watashi-r-jacket-o-people-jan.watashi-java.ir","type":"trojan","udp":true,"ws-opts":{"headers":{"Host":"t-watashi-r-jacket-o-people-jan.watashi-java.ir"},"path":"/"}}
proxy-groups:
- name: ️手动选择
type: select
proxies:
- ♻️国外媒体
- ♻️自动选择
- CA😈github.com/Ruk1ng001_-70684847
- HK😈github.com/Ruk1ng001_135100751
- AU😈github.com/Ruk1ng001_-803483864
- NO😈github.com/Ruk1ng001_-1635192526
- US😈github.com/Ruk1ng001_-1554642912
- CA😈github.com/Ruk1ng001_489540736
- FR😈github.com/Ruk1ng001_-1798623546
- CA😈github.com/Ruk1ng001_-1628484194
- CH😈github.com/Ruk1ng001_1440257245
- CA😈github.com/Ruk1ng001_-1460529048
- Other😈github.com/Ruk1ng001_-563138543
- CH😈github.com/Ruk1ng001_671850795
- HK😈github.com/Ruk1ng001_-1208291020
- Other😈github.com/Ruk1ng001_-1855455087
- BZ😈github.com/Ruk1ng001_1002903819
- JP😈github.com/Ruk1ng001_-167449875
- Other😈github.com/Ruk1ng001_1699610525
- UK😈github.com/Ruk1ng001_-1619373299
- CN😈github.com/Ruk1ng001_-774687686
- CN😈github.com/Ruk1ng001_-286799384
- Other😈github.com/Ruk1ng001_233140273
- CA😈github.com/Ruk1ng001_1617152841
- Other😈github.com/Ruk1ng001_-910520410
- NO😈github.com/Ruk1ng001_-2038435400
- IT😈github.com/Ruk1ng001_-2113746822
- JP😈github.com/Ruk1ng001_932836545
- HK😈github.com/Ruk1ng001_676871241
- CH😈github.com/Ruk1ng001_1724453202
- NO😈github.com/Ruk1ng001_-1811385365
- CA😈github.com/Ruk1ng001_-107637019
- CN😈github.com/Ruk1ng001_-170316280
- CA😈github.com/Ruk1ng001_-1673887547
- CA😈github.com/Ruk1ng001_673973698
- SG😈github.com/Ruk1ng001_20664107
- CH😈github.com/Ruk1ng001_1186465953
- CN😈github.com/Ruk1ng001_1873915727
- Euro😈github.com/Ruk1ng001_1991831602
- CA😈github.com/Ruk1ng001_-424023012
- UM😈github.com/Ruk1ng001_-1814989780
- JP😈github.com/Ruk1ng001_-1795409383
- UK😈github.com/Ruk1ng001_2036570167
- Euro😈github.com/Ruk1ng001_-712446921
- CH😈github.com/Ruk1ng001_1691813948
- JP😈github.com/Ruk1ng001_192934526
- CH😈github.com/Ruk1ng001_-600585359
- UM😈github.com/Ruk1ng001_876316394
- Other😈github.com/Ruk1ng001_648535491
- UK😈github.com/Ruk1ng001_911139846
- CH😈github.com/Ruk1ng001_1625631274
- UK😈github.com/Ruk1ng001_1898804856
- HK😈github.com/Ruk1ng001_-1875762085
- HK😈github.com/Ruk1ng001_1893425806
- SG😈github.com/Ruk1ng001_138861297
- HK😈github.com/Ruk1ng001_1396487999
- CA😈github.com/Ruk1ng001_1542762135
- CA😈github.com/Ruk1ng001_-1212588693
- UM😈github.com/Ruk1ng001_1064261228
- KR😈github.com/Ruk1ng001_1292294737
- CN😈github.com/Ruk1ng001_405877980
- CA😈github.com/Ruk1ng001_1436279177
- CN😈github.com/Ruk1ng001_-1004404201
- Other😈github.com/Ruk1ng001_479988501
- CA😈github.com/Ruk1ng001_-294863317
- UM😈github.com/Ruk1ng001_-1141966209
- US😈github.com/Ruk1ng001_139598830
- UK😈github.com/Ruk1ng001_-1668193911
- UK😈github.com/Ruk1ng001_-460669441
- CA😈github.com/Ruk1ng001_-1443916682
- CA😈github.com/Ruk1ng001_1360685149
- UK😈github.com/Ruk1ng001_-1845856196
- CA😈github.com/Ruk1ng001_594610969
- CN😈github.com/Ruk1ng001_-1509473673
- CA😈github.com/Ruk1ng001_-356504328
- CA😈github.com/Ruk1ng001_1400289752
- NO😈github.com/Ruk1ng001_863204814
- CN😈github.com/Ruk1ng001_-983745252
- US😈github.com/Ruk1ng001_-1866811388
- US😈github.com/Ruk1ng001_389800579
- HK😈github.com/Ruk1ng001_1229034476
- CN😈github.com/Ruk1ng001_911977573
- HK😈github.com/Ruk1ng001_-1357074406
- CN😈github.com/Ruk1ng001_430125258
- CA😈github.com/Ruk1ng001_619157408
- CH😈github.com/Ruk1ng001_-48061195
- CA😈github.com/Ruk1ng001_-1207960561
- IE😈github.com/Ruk1ng001_-178999121
- Other😈github.com/Ruk1ng001_-1495350348
- UK😈github.com/Ruk1ng001_190281273
- Other😈github.com/Ruk1ng001_-1777630
- JP😈github.com/Ruk1ng001_711691225
- FR😈github.com/Ruk1ng001_-805233594
- CA😈github.com/Ruk1ng001_-1948895319
- Asia😈github.com/Ruk1ng001_314498641
- CA😈github.com/Ruk1ng001_547951812
- CA😈github.com/Ruk1ng001_2069308993
- CA😈github.com/Ruk1ng001_932837277
- Other😈github.com/Ruk1ng001_1419821410
- CA😈github.com/Ruk1ng001_-433703721
- Other😈github.com/Ruk1ng001_-983356899
- Other😈github.com/Ruk1ng001_-872788282
- Euro😈github.com/Ruk1ng001_-596906734
- JP😈github.com/Ruk1ng001_-1104719142
- CA😈github.com/Ruk1ng001_408976710
- UK😈github.com/Ruk1ng001_-450063044
- US😈github.com/Ruk1ng001_-1420628713
- Euro😈github.com/Ruk1ng001_636853635
- CA😈github.com/Ruk1ng001_-1891180947
- CH😈github.com/Ruk1ng001_-1729552676
- Other😈github.com/Ruk1ng001_-300430007
- UK😈github.com/Ruk1ng001_235161225
- SG😈github.com/Ruk1ng001_-1805268900
- US😈github.com/Ruk1ng001_-230361071
- Americas😈github.com/Ruk1ng001_2018148914
- CA😈github.com/Ruk1ng001_626624684
- CA😈github.com/Ruk1ng001_509657506
- Other😈github.com/Ruk1ng001_-707476998
- US😈github.com/Ruk1ng001_573994731
- US😈github.com/Ruk1ng001_1923218439
- CN😈github.com/Ruk1ng001_-195404888
- Other😈github.com/Ruk1ng001_-548049498
- CN😈github.com/Ruk1ng001_-1716386168
- US😈github.com/Ruk1ng001_1811530524
- US😈github.com/Ruk1ng001_790602604
- Other😈github.com/Ruk1ng001_1699171288
- CH😈github.com/Ruk1ng001_1134953909
- HK😈github.com/Ruk1ng001_-355151149
- US😈github.com/Ruk1ng001_-1652039839
- CH😈github.com/Ruk1ng001_31240124
- CH😈github.com/Ruk1ng001_1832205955
- CA😈github.com/Ruk1ng001_1802021358
- US😈github.com/Ruk1ng001_1776200002
- Other😈github.com/Ruk1ng001_1948258663
- US😈github.com/Ruk1ng001_-1609364345
- CA😈github.com/Ruk1ng001_-807110109
- TW😈github.com/Ruk1ng001_399015250
- CA😈github.com/Ruk1ng001_1762758403
- Other😈github.com/Ruk1ng001_-1570665313
- CN😈github.com/Ruk1ng001_325597721
- Other😈github.com/Ruk1ng001_-371927640
- UM😈github.com/Ruk1ng001_-1711796129
- UK😈github.com/Ruk1ng001_-1778934161
- CA😈github.com/Ruk1ng001_-627998723
- CA😈github.com/Ruk1ng001_-1017820359
- US😈github.com/Ruk1ng001_1553602564
- US😈github.com/Ruk1ng001_928875436
- CN😈github.com/Ruk1ng001_1593040328
- Other😈github.com/Ruk1ng001_-619558743
- Euro😈github.com/Ruk1ng001_-1363370158
- US😈github.com/Ruk1ng001_1250440735
- Other😈github.com/Ruk1ng001_-372122310
- CA😈github.com/Ruk1ng001_-1650884680
- CA😈github.com/Ruk1ng001_-212818882
- CA😈github.com/Ruk1ng001_-2085567441
- SG😈github.com/Ruk1ng001_1309713867
- CA😈github.com/Ruk1ng001_-438177000
- CA😈github.com/Ruk1ng001_1011188123
- CA😈github.com/Ruk1ng001_1252535775
- CA😈github.com/Ruk1ng001_-1459890246
- CH😈github.com/Ruk1ng001_-46194588
- CA😈github.com/Ruk1ng001_429051995
- CN😈github.com/Ruk1ng001_388059469
- Other😈github.com/Ruk1ng001_289763968
- CA😈github.com/Ruk1ng001_165174204
- TW😈github.com/Ruk1ng001_-167904798
- NL😈github.com/Ruk1ng001_1394398930
- US😈github.com/Ruk1ng001_-1183722776
- UM😈github.com/Ruk1ng001_-572543273
- CA😈github.com/Ruk1ng001_-1002223462
- IE😈github.com/Ruk1ng001_-1685804297
- Other😈github.com/Ruk1ng001_1938448308
- CH😈github.com/Ruk1ng001_1522816308
- CA😈github.com/Ruk1ng001_-241008696
- NL😈github.com/Ruk1ng001_90605486
- UK😈github.com/Ruk1ng001_-1661492773
- DE😈github.com/Ruk1ng001_23567771
- CA😈github.com/Ruk1ng001_-809786485
- CA😈github.com/Ruk1ng001_-134518508
- CH😈github.com/Ruk1ng001_699813159
- UM😈github.com/Ruk1ng001_-432775502
- SG😈github.com/Ruk1ng001_65492314
- CN😈github.com/Ruk1ng001_-2129480278
- Americas😈github.com/Ruk1ng001_1591553187
- CH😈github.com/Ruk1ng001_-863310960
- UK😈github.com/Ruk1ng001_-505116468
- CA😈github.com/Ruk1ng001_-1354540667
- Other😈github.com/Ruk1ng001_1902618786
- CN😈github.com/Ruk1ng001_-1069624585
- NO😈github.com/Ruk1ng001_-1869136462
- UK😈github.com/Ruk1ng001_-1690549655
- NO😈github.com/Ruk1ng001_958573687
- IE😈github.com/Ruk1ng001_122598355
- HK😈github.com/Ruk1ng001_-39740073
- CN😈github.com/Ruk1ng001_-1850491645
- UK😈github.com/Ruk1ng001_826455897
- UK😈github.com/Ruk1ng001_1978528688
- UM😈github.com/Ruk1ng001_-1666767954
- UK😈github.com/Ruk1ng001_-1318797052
- CA😈github.com/Ruk1ng001_1322725135
- UK😈github.com/Ruk1ng001_1525730229
- CA😈github.com/Ruk1ng001_-1238772858
- CN😈github.com/Ruk1ng001_-801234006
- CA😈github.com/Ruk1ng001_-1821742565
- Other😈github.com/Ruk1ng001_1714560524
- CH😈github.com/Ruk1ng001_676686047
- UK😈github.com/Ruk1ng001_-1834388871
- CA😈github.com/Ruk1ng001_-2140125472
- Americas😈github.com/Ruk1ng001_1304344029
- CN😈github.com/Ruk1ng001_269672396
- CH😈github.com/Ruk1ng001_-1397354413
- Other😈github.com/Ruk1ng001_919032809
- CA😈github.com/Ruk1ng001_553251765
- UM😈github.com/Ruk1ng001_123086233
- UK😈github.com/Ruk1ng001_-219416821
- SG😈github.com/Ruk1ng001_-1101363954
- CH😈github.com/Ruk1ng001_1502641888
- CA😈github.com/Ruk1ng001_-1785824018
- CA😈github.com/Ruk1ng001_109057220
- UM😈github.com/Ruk1ng001_157875692
- NO😈github.com/Ruk1ng001_1054813220
- CN😈github.com/Ruk1ng001_-1207479668
- CA😈github.com/Ruk1ng001_-309525366
- CA😈github.com/Ruk1ng001_1830081272
- UM😈github.com/Ruk1ng001_1690895570
- CA😈github.com/Ruk1ng001_199360578
- CN😈github.com/Ruk1ng001_1691194673
- US😈github.com/Ruk1ng001_1949336235
- CA😈github.com/Ruk1ng001_-1826119005
- US😈github.com/Ruk1ng001_-1207909926
- CA😈github.com/Ruk1ng001_1471006155
- CA😈github.com/Ruk1ng001_-952980193
- US😈github.com/Ruk1ng001_-1263801234
- CN😈github.com/Ruk1ng001_-1845180119
- JP😈github.com/Ruk1ng001_223770517
- CH😈github.com/Ruk1ng001_1653915641
- JP😈github.com/Ruk1ng001_-1695976317
- HK😈github.com/Ruk1ng001_13229846
- UM😈github.com/Ruk1ng001_-2060077234
- US😈github.com/Ruk1ng001_1112914115
- CA😈github.com/Ruk1ng001_1922561286
- CA😈github.com/Ruk1ng001_-96490335
- CH😈github.com/Ruk1ng001_471165517
- UK😈github.com/Ruk1ng001_-113558617
- CA😈github.com/Ruk1ng001_916189776
- CN😈github.com/Ruk1ng001_413563049
- CN😈github.com/Ruk1ng001_1698251682
- CA😈github.com/Ruk1ng001_-1632790652
- CA😈github.com/Ruk1ng001_-765438636
- GB😈github.com/Ruk1ng001_-1338012212
- FR😈github.com/Ruk1ng001_-2018865823
- CA😈github.com/Ruk1ng001_1455172129
- Other😈github.com/Ruk1ng001_-490451684
- Americas😈github.com/Ruk1ng001_480155780
- UK😈github.com/Ruk1ng001_-625539331
- CA😈github.com/Ruk1ng001_1737841527
- CN😈github.com/Ruk1ng001_-720627691
- US😈github.com/Ruk1ng001_-1790086163
- UK😈github.com/Ruk1ng001_-638152776
- UK😈github.com/Ruk1ng001_-975088698
- US😈github.com/Ruk1ng001_702763766
- HK😈github.com/Ruk1ng001_-1012852802
- HK😈github.com/Ruk1ng001_529981789
- US😈github.com/Ruk1ng001_1742641737
- UK😈github.com/Ruk1ng001_-1765820923
- UK😈github.com/Ruk1ng001_149592492
- CA😈github.com/Ruk1ng001_-1459221881
- Other😈github.com/Ruk1ng001_-508194230
- CA😈github.com/Ruk1ng001_1265245309
- Other😈github.com/Ruk1ng001_1085000792
- CA😈github.com/Ruk1ng001_-806232567
- Other😈github.com/Ruk1ng001_1526592711
- CA😈github.com/Ruk1ng001_-426557200
- CA😈github.com/Ruk1ng001_1564473052
- US😈github.com/Ruk1ng001_445023364
- CA😈github.com/Ruk1ng001_-139052383
- CH😈github.com/Ruk1ng001_-873041012
- UM😈github.com/Ruk1ng001_1561999032
- GB😈github.com/Ruk1ng001_-381885333
- Americas😈github.com/Ruk1ng001_1923200833
- CA😈github.com/Ruk1ng001_-1217602740
- JP😈github.com/Ruk1ng001_1113542382
- JP😈github.com/Ruk1ng001_-1992225538
- CA😈github.com/Ruk1ng001_1426942681
- UK😈github.com/Ruk1ng001_-1123489496
- CA😈github.com/Ruk1ng001_17696890
- CN😈github.com/Ruk1ng001_543224176
- Euro😈github.com/Ruk1ng001_-1880678319
- UK😈github.com/Ruk1ng001_-1611834584
- Other😈github.com/Ruk1ng001_2048102641
- SG😈github.com/Ruk1ng001_385230145
- Euro😈github.com/Ruk1ng001_-1454082640
- UK😈github.com/Ruk1ng001_2114470797
- UK😈github.com/Ruk1ng001_-85973108
- CA😈github.com/Ruk1ng001_58977329
- UM😈github.com/Ruk1ng001_-26711623
- CH😈github.com/Ruk1ng001_1163474628
- Other😈github.com/Ruk1ng001_-1738820401
- UM😈github.com/Ruk1ng001_-125875807
- UM😈github.com/Ruk1ng001_280405591
- Americas😈github.com/Ruk1ng001_801271353
- Other😈github.com/Ruk1ng001_-984251344
- CN😈github.com/Ruk1ng001_-366810650
- CA😈github.com/Ruk1ng001_1153486540
- HK😈github.com/Ruk1ng001_44098467
- CA😈github.com/Ruk1ng001_1050853009
- US😈github.com/Ruk1ng001_-1318446862
- CA😈github.com/Ruk1ng001_-277447266
- CA😈github.com/Ruk1ng001_-1352794891
- AU😈github.com/Ruk1ng001_-1520902253
- Asia😈github.com/Ruk1ng001_1067153463
- CH😈github.com/Ruk1ng001_-2003216939
- CN😈github.com/Ruk1ng001_268595513
- UK😈github.com/Ruk1ng001_-1537675039
- ChatGPT😈github.com/Ruk1ng001_-2052711301
- CA😈github.com/Ruk1ng001_-759391679
- IE😈github.com/Ruk1ng001_-757583851
- NO😈github.com/Ruk1ng001_1251895668
- CA😈github.com/Ruk1ng001_1142831069
- name: ♻️自动选择
type: url-test
url: http://www.gstatic.com/generate_204
interval: 300
tolerance: 50
proxies:
- CA😈github.com/Ruk1ng001_-70684847
- HK😈github.com/Ruk1ng001_135100751
- AU😈github.com/Ruk1ng001_-803483864
- NO😈github.com/Ruk1ng001_-1635192526
- US😈github.com/Ruk1ng001_-1554642912
- CA😈github.com/Ruk1ng001_489540736
- FR😈github.com/Ruk1ng001_-1798623546
- CA😈github.com/Ruk1ng001_-1628484194
- CH😈github.com/Ruk1ng001_1440257245
- CA😈github.com/Ruk1ng001_-1460529048
- Other😈github.com/Ruk1ng001_-563138543
- CH😈github.com/Ruk1ng001_671850795
- HK😈github.com/Ruk1ng001_-1208291020
- Other😈github.com/Ruk1ng001_-1855455087
- BZ😈github.com/Ruk1ng001_1002903819
- JP😈github.com/Ruk1ng001_-167449875
- Other😈github.com/Ruk1ng001_1699610525
- UK😈github.com/Ruk1ng001_-1619373299
- CN😈github.com/Ruk1ng001_-774687686
- CN😈github.com/Ruk1ng001_-286799384
- Other😈github.com/Ruk1ng001_233140273
- CA😈github.com/Ruk1ng001_1617152841
- Other😈github.com/Ruk1ng001_-910520410
- NO😈github.com/Ruk1ng001_-2038435400
- IT😈github.com/Ruk1ng001_-2113746822
- JP😈github.com/Ruk1ng001_932836545
- HK😈github.com/Ruk1ng001_676871241
- CH😈github.com/Ruk1ng001_1724453202
- NO😈github.com/Ruk1ng001_-1811385365
- CA😈github.com/Ruk1ng001_-107637019
- CN😈github.com/Ruk1ng001_-170316280
- CA😈github.com/Ruk1ng001_-1673887547
- CA😈github.com/Ruk1ng001_673973698
- SG😈github.com/Ruk1ng001_20664107
- CH😈github.com/Ruk1ng001_1186465953
- CN😈github.com/Ruk1ng001_1873915727
- Euro😈github.com/Ruk1ng001_1991831602
- CA😈github.com/Ruk1ng001_-424023012
- UM😈github.com/Ruk1ng001_-1814989780
- JP😈github.com/Ruk1ng001_-1795409383
- UK😈github.com/Ruk1ng001_2036570167
- Euro😈github.com/Ruk1ng001_-712446921
- CH😈github.com/Ruk1ng001_1691813948
- JP😈github.com/Ruk1ng001_192934526
- CH😈github.com/Ruk1ng001_-600585359
- UM😈github.com/Ruk1ng001_876316394
- Other😈github.com/Ruk1ng001_648535491
- UK😈github.com/Ruk1ng001_911139846
- CH😈github.com/Ruk1ng001_1625631274
- UK😈github.com/Ruk1ng001_1898804856
- HK😈github.com/Ruk1ng001_-1875762085
- HK😈github.com/Ruk1ng001_1893425806
- SG😈github.com/Ruk1ng001_138861297
- HK😈github.com/Ruk1ng001_1396487999
- CA😈github.com/Ruk1ng001_1542762135
- CA😈github.com/Ruk1ng001_-1212588693
- UM😈github.com/Ruk1ng001_1064261228
- KR😈github.com/Ruk1ng001_1292294737
- CN😈github.com/Ruk1ng001_405877980
- CA😈github.com/Ruk1ng001_1436279177
- CN😈github.com/Ruk1ng001_-1004404201
- Other😈github.com/Ruk1ng001_479988501
- CA😈github.com/Ruk1ng001_-294863317
- UM😈github.com/Ruk1ng001_-1141966209
- US😈github.com/Ruk1ng001_139598830
- UK😈github.com/Ruk1ng001_-1668193911
- UK😈github.com/Ruk1ng001_-460669441
- CA😈github.com/Ruk1ng001_-1443916682
- CA😈github.com/Ruk1ng001_1360685149
- UK😈github.com/Ruk1ng001_-1845856196
- CA😈github.com/Ruk1ng001_594610969
- CN😈github.com/Ruk1ng001_-1509473673
- CA😈github.com/Ruk1ng001_-356504328
- CA😈github.com/Ruk1ng001_1400289752
- NO😈github.com/Ruk1ng001_863204814
- CN😈github.com/Ruk1ng001_-983745252
- US😈github.com/Ruk1ng001_-1866811388
- US😈github.com/Ruk1ng001_389800579
- HK😈github.com/Ruk1ng001_1229034476
- CN😈github.com/Ruk1ng001_911977573
- HK😈github.com/Ruk1ng001_-1357074406
- CN😈github.com/Ruk1ng001_430125258
- CA😈github.com/Ruk1ng001_619157408
- CH😈github.com/Ruk1ng001_-48061195
- CA😈github.com/Ruk1ng001_-1207960561
- IE😈github.com/Ruk1ng001_-178999121
- Other😈github.com/Ruk1ng001_-1495350348
- UK😈github.com/Ruk1ng001_190281273
- Other😈github.com/Ruk1ng001_-1777630
- JP😈github.com/Ruk1ng001_711691225
- FR😈github.com/Ruk1ng001_-805233594
- CA😈github.com/Ruk1ng001_-1948895319
- Asia😈github.com/Ruk1ng001_314498641
- CA😈github.com/Ruk1ng001_547951812
- CA😈github.com/Ruk1ng001_2069308993
- CA😈github.com/Ruk1ng001_932837277
- Other😈github.com/Ruk1ng001_1419821410
- CA😈github.com/Ruk1ng001_-433703721
- Other😈github.com/Ruk1ng001_-983356899
- Other😈github.com/Ruk1ng001_-872788282
- Euro😈github.com/Ruk1ng001_-596906734
- JP😈github.com/Ruk1ng001_-1104719142
- CA😈github.com/Ruk1ng001_408976710
- UK😈github.com/Ruk1ng001_-450063044
- US😈github.com/Ruk1ng001_-1420628713
- Euro😈github.com/Ruk1ng001_636853635
- CA😈github.com/Ruk1ng001_-1891180947
- CH😈github.com/Ruk1ng001_-1729552676
- Other😈github.com/Ruk1ng001_-300430007
- UK😈github.com/Ruk1ng001_235161225
- SG😈github.com/Ruk1ng001_-1805268900
- US😈github.com/Ruk1ng001_-230361071
- Americas😈github.com/Ruk1ng001_2018148914
- CA😈github.com/Ruk1ng001_626624684
- CA😈github.com/Ruk1ng001_509657506
- Other😈github.com/Ruk1ng001_-707476998
- US😈github.com/Ruk1ng001_573994731
- US😈github.com/Ruk1ng001_1923218439
- CN😈github.com/Ruk1ng001_-195404888
- Other😈github.com/Ruk1ng001_-548049498
- CN😈github.com/Ruk1ng001_-1716386168
- US😈github.com/Ruk1ng001_1811530524
- US😈github.com/Ruk1ng001_790602604
- Other😈github.com/Ruk1ng001_1699171288
- CH😈github.com/Ruk1ng001_1134953909
- HK😈github.com/Ruk1ng001_-355151149
- US😈github.com/Ruk1ng001_-1652039839
- CH😈github.com/Ruk1ng001_31240124
- CH😈github.com/Ruk1ng001_1832205955
- CA😈github.com/Ruk1ng001_1802021358
- US😈github.com/Ruk1ng001_1776200002
- Other😈github.com/Ruk1ng001_1948258663
- US😈github.com/Ruk1ng001_-1609364345
- CA😈github.com/Ruk1ng001_-807110109
- TW😈github.com/Ruk1ng001_399015250
- CA😈github.com/Ruk1ng001_1762758403
- Other😈github.com/Ruk1ng001_-1570665313
- CN😈github.com/Ruk1ng001_325597721
- Other😈github.com/Ruk1ng001_-371927640
- UM😈github.com/Ruk1ng001_-1711796129
- UK😈github.com/Ruk1ng001_-1778934161
- CA😈github.com/Ruk1ng001_-627998723
- CA😈github.com/Ruk1ng001_-1017820359
- US😈github.com/Ruk1ng001_1553602564
- US😈github.com/Ruk1ng001_928875436
- CN😈github.com/Ruk1ng001_1593040328
- Other😈github.com/Ruk1ng001_-619558743
- Euro😈github.com/Ruk1ng001_-1363370158
- US😈github.com/Ruk1ng001_1250440735
- Other😈github.com/Ruk1ng001_-372122310
- CA😈github.com/Ruk1ng001_-1650884680
- CA😈github.com/Ruk1ng001_-212818882
- CA😈github.com/Ruk1ng001_-2085567441
- SG😈github.com/Ruk1ng001_1309713867
- CA😈github.com/Ruk1ng001_-438177000
- CA😈github.com/Ruk1ng001_1011188123
- CA😈github.com/Ruk1ng001_1252535775
- CA😈github.com/Ruk1ng001_-1459890246
- CH😈github.com/Ruk1ng001_-46194588
- CA😈github.com/Ruk1ng001_429051995
- CN😈github.com/Ruk1ng001_388059469
- Other😈github.com/Ruk1ng001_289763968
- CA😈github.com/Ruk1ng001_165174204
- TW😈github.com/Ruk1ng001_-167904798
- NL😈github.com/Ruk1ng001_1394398930
- US😈github.com/Ruk1ng001_-1183722776
- UM😈github.com/Ruk1ng001_-572543273
- CA😈github.com/Ruk1ng001_-1002223462
- IE😈github.com/Ruk1ng001_-1685804297
- Other😈github.com/Ruk1ng001_1938448308
- CH😈github.com/Ruk1ng001_1522816308
- CA😈github.com/Ruk1ng001_-241008696
- NL😈github.com/Ruk1ng001_90605486
- UK😈github.com/Ruk1ng001_-1661492773
- DE😈github.com/Ruk1ng001_23567771
- CA😈github.com/Ruk1ng001_-809786485
- CA😈github.com/Ruk1ng001_-134518508
- CH😈github.com/Ruk1ng001_699813159
- UM😈github.com/Ruk1ng001_-432775502
- SG😈github.com/Ruk1ng001_65492314
- CN😈github.com/Ruk1ng001_-2129480278
- Americas😈github.com/Ruk1ng001_1591553187
- CH😈github.com/Ruk1ng001_-863310960
- UK😈github.com/Ruk1ng001_-505116468
- CA😈github.com/Ruk1ng001_-1354540667
- Other😈github.com/Ruk1ng001_1902618786
- CN😈github.com/Ruk1ng001_-1069624585
- NO😈github.com/Ruk1ng001_-1869136462
- UK😈github.com/Ruk1ng001_-1690549655
- NO😈github.com/Ruk1ng001_958573687
- IE😈github.com/Ruk1ng001_122598355
- HK😈github.com/Ruk1ng001_-39740073
- CN😈github.com/Ruk1ng001_-1850491645
- UK😈github.com/Ruk1ng001_826455897
- UK😈github.com/Ruk1ng001_1978528688
- UM😈github.com/Ruk1ng001_-1666767954
- UK😈github.com/Ruk1ng001_-1318797052
- CA😈github.com/Ruk1ng001_1322725135
- UK😈github.com/Ruk1ng001_1525730229
- CA😈github.com/Ruk1ng001_-1238772858
- CN😈github.com/Ruk1ng001_-801234006
- CA😈github.com/Ruk1ng001_-1821742565
- Other😈github.com/Ruk1ng001_1714560524
- CH😈github.com/Ruk1ng001_676686047
- UK😈github.com/Ruk1ng001_-1834388871
- CA😈github.com/Ruk1ng001_-2140125472
- Americas😈github.com/Ruk1ng001_1304344029
- CN😈github.com/Ruk1ng001_269672396
- CH😈github.com/Ruk1ng001_-1397354413
- Other😈github.com/Ruk1ng001_919032809
- CA😈github.com/Ruk1ng001_553251765
- UM😈github.com/Ruk1ng001_123086233
- UK😈github.com/Ruk1ng001_-219416821
- SG😈github.com/Ruk1ng001_-1101363954
- CH😈github.com/Ruk1ng001_1502641888
- CA😈github.com/Ruk1ng001_-1785824018
- CA😈github.com/Ruk1ng001_109057220
- UM😈github.com/Ruk1ng001_157875692
- NO😈github.com/Ruk1ng001_1054813220
- CN😈github.com/Ruk1ng001_-1207479668
- CA😈github.com/Ruk1ng001_-309525366
- CA😈github.com/Ruk1ng001_1830081272
- UM😈github.com/Ruk1ng001_1690895570
- CA😈github.com/Ruk1ng001_199360578
- CN😈github.com/Ruk1ng001_1691194673
- US😈github.com/Ruk1ng001_1949336235
- CA😈github.com/Ruk1ng001_-1826119005
- US😈github.com/Ruk1ng001_-1207909926
- CA😈github.com/Ruk1ng001_1471006155
- CA😈github.com/Ruk1ng001_-952980193
- US😈github.com/Ruk1ng001_-1263801234
- CN😈github.com/Ruk1ng001_-1845180119
- JP😈github.com/Ruk1ng001_223770517
- CH😈github.com/Ruk1ng001_1653915641
- JP😈github.com/Ruk1ng001_-1695976317
- HK😈github.com/Ruk1ng001_13229846
- UM😈github.com/Ruk1ng001_-2060077234
- US😈github.com/Ruk1ng001_1112914115
- CA😈github.com/Ruk1ng001_1922561286
- CA😈github.com/Ruk1ng001_-96490335
- CH😈github.com/Ruk1ng001_471165517
- UK😈github.com/Ruk1ng001_-113558617
- CA😈github.com/Ruk1ng001_916189776
- CN😈github.com/Ruk1ng001_413563049
- CN😈github.com/Ruk1ng001_1698251682
- CA😈github.com/Ruk1ng001_-1632790652
- CA😈github.com/Ruk1ng001_-765438636
- GB😈github.com/Ruk1ng001_-1338012212
- FR😈github.com/Ruk1ng001_-2018865823
- CA😈github.com/Ruk1ng001_1455172129
- Other😈github.com/Ruk1ng001_-490451684
- Americas😈github.com/Ruk1ng001_480155780
- UK😈github.com/Ruk1ng001_-625539331
- CA😈github.com/Ruk1ng001_1737841527
- CN😈github.com/Ruk1ng001_-720627691
- US😈github.com/Ruk1ng001_-1790086163
- UK😈github.com/Ruk1ng001_-638152776
- UK😈github.com/Ruk1ng001_-975088698
- US😈github.com/Ruk1ng001_702763766
- HK😈github.com/Ruk1ng001_-1012852802
- HK😈github.com/Ruk1ng001_529981789
- US😈github.com/Ruk1ng001_1742641737
- UK😈github.com/Ruk1ng001_-1765820923
- UK😈github.com/Ruk1ng001_149592492
- CA😈github.com/Ruk1ng001_-1459221881
- Other😈github.com/Ruk1ng001_-508194230
- CA😈github.com/Ruk1ng001_1265245309
- Other😈github.com/Ruk1ng001_1085000792
- CA😈github.com/Ruk1ng001_-806232567
- Other😈github.com/Ruk1ng001_1526592711
- CA😈github.com/Ruk1ng001_-426557200
- CA😈github.com/Ruk1ng001_1564473052
- US😈github.com/Ruk1ng001_445023364
- CA😈github.com/Ruk1ng001_-139052383
- CH😈github.com/Ruk1ng001_-873041012
- UM😈github.com/Ruk1ng001_1561999032
- GB😈github.com/Ruk1ng001_-381885333
- Americas😈github.com/Ruk1ng001_1923200833
- CA😈github.com/Ruk1ng001_-1217602740
- JP😈github.com/Ruk1ng001_1113542382
- JP😈github.com/Ruk1ng001_-1992225538
- CA😈github.com/Ruk1ng001_1426942681
- UK😈github.com/Ruk1ng001_-1123489496
- CA😈github.com/Ruk1ng001_17696890
- CN😈github.com/Ruk1ng001_543224176
- Euro😈github.com/Ruk1ng001_-1880678319
- UK😈github.com/Ruk1ng001_-1611834584
- Other😈github.com/Ruk1ng001_2048102641
- SG😈github.com/Ruk1ng001_385230145
- Euro😈github.com/Ruk1ng001_-1454082640
- UK😈github.com/Ruk1ng001_2114470797
- UK😈github.com/Ruk1ng001_-85973108
- CA😈github.com/Ruk1ng001_58977329
- UM😈github.com/Ruk1ng001_-26711623
- CH😈github.com/Ruk1ng001_1163474628
- Other😈github.com/Ruk1ng001_-1738820401
- UM😈github.com/Ruk1ng001_-125875807
- UM😈github.com/Ruk1ng001_280405591
- Americas😈github.com/Ruk1ng001_801271353
- Other😈github.com/Ruk1ng001_-984251344
- CN😈github.com/Ruk1ng001_-366810650
- CA😈github.com/Ruk1ng001_1153486540
- HK😈github.com/Ruk1ng001_44098467
- CA😈github.com/Ruk1ng001_1050853009
- US😈github.com/Ruk1ng001_-1318446862
- CA😈github.com/Ruk1ng001_-277447266
- CA😈github.com/Ruk1ng001_-1352794891
- AU😈github.com/Ruk1ng001_-1520902253
- Asia😈github.com/Ruk1ng001_1067153463
- CH😈github.com/Ruk1ng001_-2003216939
- CN😈github.com/Ruk1ng001_268595513
- UK😈github.com/Ruk1ng001_-1537675039
- ChatGPT😈github.com/Ruk1ng001_-2052711301
- CA😈github.com/Ruk1ng001_-759391679
- IE😈github.com/Ruk1ng001_-757583851
- NO😈github.com/Ruk1ng001_1251895668
- CA😈github.com/Ruk1ng001_1142831069
- name: ♻️国外媒体
type: url-test
url: http://www.gstatic.com/generate_204
interval: 300
tolerance: 50
proxies:
- AU😈github.com/Ruk1ng001_-803483864
- Other😈github.com/Ruk1ng001_-563138543
- Other😈github.com/Ruk1ng001_-1855455087
- CN😈github.com/Ruk1ng001_-286799384
- Other😈github.com/Ruk1ng001_233140273
- CA😈github.com/Ruk1ng001_1617152841
- SG😈github.com/Ruk1ng001_20664107
- CN😈github.com/Ruk1ng001_1873915727
- JP😈github.com/Ruk1ng001_-1795409383
- UM😈github.com/Ruk1ng001_876316394
- HK😈github.com/Ruk1ng001_1893425806
- SG😈github.com/Ruk1ng001_138861297
- CA😈github.com/Ruk1ng001_1542762135
- CA😈github.com/Ruk1ng001_-1212588693
- KR😈github.com/Ruk1ng001_1292294737
- CN😈github.com/Ruk1ng001_-1004404201
- Other😈github.com/Ruk1ng001_479988501
- CA😈github.com/Ruk1ng001_1360685149
- CN😈github.com/Ruk1ng001_-1509473673
- CA😈github.com/Ruk1ng001_-356504328
- CN😈github.com/Ruk1ng001_430125258