-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEP71.yaml
14647 lines (14647 loc) · 699 KB
/
EP71.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: 0.0.0.0:9090
proxies:
- {name: 'default_name_1', server: 20.205.106.28, port: 443, type: vmess, uuid: a8910831-f56b-4ac4-c68f-e4dd83f71e60, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/sakura/", host: zero1.a-yu.xyz }}
- {name: '🇺🇸_US_美国_2', server: 38.114.114.69, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_3', server: 38.75.136.45, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_4', server: 66.55.92.101, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: NK4wZejCzDfPdWXTK4FW}
- {name: '🇺🇸_US_美国_5', server: 38.75.137.187, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_6', server: 38.75.136.45, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_7', server: 38.114.114.69, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_8', server: 167.88.61.109, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_9', server: 66.55.92.101, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: NK4wZejCzDfPdWXTK4FW}
- {name: '🇺🇸_US_美国_10', server: 38.75.137.187, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_11', server: 38.75.137.187, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_12', server: 38.114.114.49, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_13', server: 38.114.114.69, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_14', server: 38.114.114.49, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_15', server: 38.75.136.45, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_16', server: 38.114.114.69, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_17', server: 38.75.137.187, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_18', server: 38.114.114.49, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_19', server: 38.114.114.69, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_20', server: 38.75.136.45, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_21', server: 38.75.137.187, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_22', server: 169.197.143.52, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_23', server: 169.197.143.52, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_24', server: 167.88.61.109, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_25', server: 38.75.137.66, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_26', server: 167.88.62.34, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_27', server: 38.75.136.58, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_28', server: 167.88.62.34, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_29', server: 38.68.134.37, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_30', server: v1.ssrsub.com, port: 8443, type: vmess, uuid: 974aeac3-c27c-4e20-86e4-03f526faaccd, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇺🇸_US_美国_31', server: 38.75.136.58, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_32', server: 38.68.134.37, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_33', server: 38.75.137.66, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_34', server: 38.68.135.93, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_35', server: 38.68.134.37, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_36', server: 38.75.136.58, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_37', server: 167.88.62.34, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_38', server: 38.68.134.191, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_39', server: 38.75.136.58, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_40', server: 38.68.135.93, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_41', server: 38.68.135.93, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_42', server: 38.75.136.58, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_43', server: 38.68.134.37, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_44', server: 38.68.134.191, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_45', server: 38.68.134.37, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_46', server: 167.88.62.34, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_47', server: 167.88.62.34, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_48', server: 167.88.62.34, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_49', server: 38.68.134.37, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_50', server: 38.68.135.93, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_51', server: 38.68.134.191, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_52', server: 38.143.66.55, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_53', server: 167.88.62.34, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_54', server: 38.68.135.93, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_55', server: 38.68.134.37, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_56', server: 38.68.134.191, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_57', server: 38.68.134.23, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_58', server: 38.75.137.66, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_59', server: 38.68.134.23, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_60', server: 38.91.100.199, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_61', server: 38.68.134.190, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_62', server: 167.88.63.60, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_63', server: 38.68.134.190, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇯🇵_JP_日本_64', server: 139.162.116.154, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇺🇸_US_美国_65', server: 142.202.48.77, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_66', server: 38.68.134.190, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_67', server: 142.202.48.77, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇯🇵_JP_日本_68', server: awsrb3.moonfree.top, port: 443, type: vmess, uuid: 348f0186-e84e-4eec-b57f-03b988d2c498, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/", host: awsrb3.moonfree.top }}
- {name: '🇨🇦_CA_加拿大_69', server: 134.195.196.51, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_70', server: 142.202.48.77, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇺🇸_US_美国_71', server: 142.202.48.77, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇺🇸_US_美国_72', server: 96.47.224.2, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: YDNYJcNdH5xuLrhyr7Fj}
- {name: '🇨🇦_CA_加拿大_73', server: 134.195.196.51, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_74', server: 38.68.134.190, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_75', server: 134.195.196.51, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_76', server: 134.195.196.193, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_77', server: 134.195.196.51, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_78', server: 134.195.196.51, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_79', server: 198.57.27.191, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_80', server: 38.68.134.23, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_81', server: 169.197.141.240, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇨🇦_CA_加拿大_82', server: 134.195.196.51, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇺🇸_US_美国_83', server: 38.75.136.45, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_84', server: 134.195.196.193, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_85', server: 38.68.134.190, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_86', server: 134.195.196.60, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_87', server: 167.88.63.60, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_88', server: 134.195.196.24, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_89', server: 142.202.48.58, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_90', server: 169.197.143.52, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_91', server: 134.195.196.24, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_92', server: 134.195.196.51, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_93', server: 142.202.48.77, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_94', server: 142.202.48.34, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_95', server: 134.195.196.81, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_96', server: 142.202.48.77, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_97', server: 142.202.48.77, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_98', server: 134.195.196.81, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_99', server: 198.57.27.152, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_100', server: 38.107.226.48, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_101', server: 38.121.43.71, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_102', server: 134.195.196.202, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_103', server: 198.57.27.184, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_104', server: 38.68.134.190, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_105', server: 38.121.43.71, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_106', server: 134.195.196.3, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_107', server: 142.202.48.77, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_108', server: 198.57.27.184, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_109', server: 134.195.196.51, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_110', server: 167.88.61.109, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_111', server: 134.195.196.110, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_112', server: 198.57.27.191, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_113', server: 134.195.196.51, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_114', server: 198.57.27.184, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_115', server: 38.68.134.23, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_116', server: 134.195.196.51, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇨🇦_CA_加拿大_117', server: 134.195.196.193, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_118', server: 38.107.226.48, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_119', server: 198.57.27.152, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_120', server: 169.197.141.91, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_121', server: 38.68.135.93, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_122', server: 169.197.141.91, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_123', server: 142.202.48.58, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_124', server: 134.195.196.60, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_125', server: 38.107.226.241, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_126', server: 38.75.136.58, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_127', server: 38.121.43.71, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_128', server: 167.88.63.60, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_129', server: 134.195.196.193, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_130', server: 134.195.196.71, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_131', server: 134.195.196.214, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇨🇦_CA_加拿大_132', server: 134.195.196.71, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_133', server: 142.202.48.58, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_134', server: 134.195.196.110, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_135', server: 134.195.196.3, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_136', server: 142.202.48.77, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_137', server: 169.197.141.91, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇺🇸_US_美国_138', server: 38.121.43.71, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_139', server: 38.121.43.71, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_140', server: 142.202.48.58, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_141', server: 142.202.48.34, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_142', server: 142.202.48.58, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_143', server: 142.202.48.58, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_144', server: 38.107.226.159, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_145', server: 142.202.48.58, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_146', server: 212.38.189.174, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_147', server: 134.195.196.24, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_148', server: 134.195.196.3, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_149', server: 134.195.196.24, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_150', server: 198.57.27.184, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_151', server: 134.195.196.202, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_152', server: 167.88.63.60, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_153', server: 134.195.196.3, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_154', server: 198.57.27.152, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_155', server: 38.68.134.37, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_156', server: 38.107.226.49, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_157', server: 38.75.136.93, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇺🇸_US_美国_158', server: 38.107.226.241, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_159', server: 134.195.196.214, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_160', server: 134.195.196.214, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇨🇭_CH_瑞士_161', server: 37.120.137.82, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: EGTHtnGhcnggx5yBYSqS}
- {name: '🇩🇪_DE_德国_162', server: 45.141.152.178, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: FTvsfXCvXLPFEMKNSADr}
- {name: '🇺🇸_US_美国_163', server: 38.91.101.11, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_164', server: 142.202.48.7, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_165', server: 198.57.27.241, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_166', server: 167.88.62.34, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_167', server: 198.57.27.172, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_168', server: 134.195.196.71, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_169', server: 134.195.196.179, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_170', server: 198.57.27.184, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_171', server: 134.195.196.71, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_172', server: 134.195.196.81, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_173', server: 38.107.226.48, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_174', server: 134.195.196.214, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇺🇸_US_美国_175', server: 38.91.101.11, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_176', server: 198.57.27.241, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_177', server: 134.195.196.71, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇨🇦_CA_加拿大_178', server: 134.195.196.60, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇱🇺_LU_卢森堡_179', server: 5.253.204.194, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: qLzS7DF9qRYxJTHfckhC}
- {name: '🇺🇸_US_美国_180', server: 38.107.226.238, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_181', server: 142.202.48.34, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇩🇪_DE_德国_182', server: 193.108.118.34, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: 'default_name_183', server: 198.41.212.18, port: 443, type: vmess, uuid: a8910831-f56b-4ac4-c68f-e4dd83f71e60, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/sakura/", host: zero1.a-yu.xyz }}
- {name: '🇨🇦_CA_加拿大_184', server: 198.57.27.172, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_185', server: 198.57.27.172, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_186', server: 198.57.27.172, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_187', server: 134.195.196.202, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_188', server: 198.57.27.184, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_189', server: 198.57.27.172, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_190', server: 198.57.27.152, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: 'default_name_191', server: 198.41.212.15, port: 443, type: vmess, uuid: a8910831-f56b-4ac4-c68f-e4dd83f71e60, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/sakura/", host: zero1.a-yu.xyz }}
- {name: '🇨🇦_CA_加拿大_192', server: 134.195.196.50, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇨🇦_CA_加拿大_193', server: 134.195.196.50, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇨🇦_CA_加拿大_194', server: 134.195.196.179, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_195', server: 134.195.196.179, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: 'default_name_196', server: 198.41.212.5, port: 443, type: vmess, uuid: a8910831-f56b-4ac4-c68f-e4dd83f71e60, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/sakura/", host: zero1.a-yu.xyz }}
- {name: '🇩🇪_DE_德国_197', server: 193.108.118.2, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_198', server: 198.57.27.191, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_199', server: v8.ssrsub.com, port: 443, type: vmess, uuid: 51273235-0995-455e-96e4-83b1811b4cab, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇺🇸_US_美国_200', server: 38.91.100.200, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: 'default_name_201', server: 198.41.221.169, port: 443, type: vmess, uuid: a8910831-f56b-4ac4-c68f-e4dd83f71e60, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/sakura/", host: zero1.a-yu.xyz }}
- {name: '🇺🇸_US_美国->🇫🇷_FR_法国_202', server: 172.67.68.58, port: 443, type: vmess, uuid: f2f578e4-692d-40b5-af99-9f1dd712eb32, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/shuier", host: xc1.v2rie.pp.ua }}
- {name: '🇩🇪_DE_德国_203', server: 172.105.251.193, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇩🇪_DE_德国_204', server: 193.108.118.34, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇦🇹_AT_奥地利_205', server: 37.120.212.162, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2XtmwMEgsVJYKWF4VjkL}
- {name: '🇨🇦_CA_加拿大_206', server: 134.195.196.3, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_207', server: 169.197.143.52, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_208', server: 198.57.27.172, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_209', server: 134.195.196.50, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_210', server: 134.195.196.50, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇬🇧_GB_英国_211', server: 212.38.189.174, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇩🇪_DE_德国_212', server: 172.105.251.193, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_213', server: 198.57.27.172, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_214', server: 134.195.196.50, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_215', server: 198.57.27.172, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_216', server: 198.57.27.241, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_217', server: 198.57.27.241, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_218', server: 198.57.27.152, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_219', server: 172.99.190.139, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_220', server: 208.98.48.2, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: iesei1ei.com }}
- {name: '🇨🇦_CA_加拿大_221', server: 198.57.27.191, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_222', server: 142.202.48.34, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_223', server: 172.99.190.139, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇪🇸_ES_西班牙_224', server: 45.152.183.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: r4MP5DzDNmAqbBHzbSXw}
- {name: '🇯🇵_JP_日本_225', server: 85.208.110.2, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_226', server: 134.195.196.51, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇳🇴_NO_挪威_227', server: 84.247.50.10, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: AsLgDbA45KTMXumtzWhf}
- {name: '🇺🇸_US_美国_228', server: 169.197.141.92, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_229', server: 172.99.190.139, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_230', server: 134.195.198.178, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇫🇷_FR_法国_231', server: 62.210.209.50, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇩🇪_DE_德国_232', server: 172.105.251.193, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇬🇧_GB_英国_233', server: 172.99.190.139, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_234', server: 38.68.134.191, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇧🇬_BG_保加利亚_235', server: 217.138.221.42, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: r4MP5DzDNmAqbBHzbSXw}
- {name: '🇬🇧_GB_英国_236', server: 172.99.190.205, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_237', server: 38.107.226.238, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇯🇵_JP_日本_238', server: 85.208.110.2, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇺🇸_US_美国_239', server: 142.202.48.58, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_240', server: 172.99.190.153, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇬🇧_GB_英国_241', server: 172.99.190.109, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_242', server: 172.99.190.186, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇯🇵_JP_日本_243', server: 85.208.108.106, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_244', server: 198.57.27.184, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇯🇵_JP_日本_245', server: 85.208.110.2, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇬🇧_GB_英国_246', server: 172.99.190.186, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇬🇧_GB_英国_247', server: 172.99.190.186, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇨🇦_CA_加拿大_248', server: 134.195.198.178, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_249', server: 134.195.198.95, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_250', server: 134.195.196.71, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_251', server: 134.195.196.60, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_252', server: 45.35.84.162, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: usa-dallas.lvuft.com }}
- {name: '🇯🇵_JP_日本_253', server: 172.105.232.147, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇳🇱_NL_荷兰_254', server: 37.218.245.122, port: 443, type: ss, cipher: chacha20-ietf-poly1305, password: fPn40BnheGrB}
- {name: '🇨🇦_CA_加拿大_255', server: 134.195.198.95, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_256', server: 142.202.48.7, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_257', server: 134.195.198.178, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_258', server: 217.138.200.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: EGTHtnGhcnggx5yBYSqS}
- {name: '🇨🇦_CA_加拿大_259', server: 134.195.198.95, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_260', server: 134.195.198.178, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_261', server: 172.99.190.186, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇩🇪_DE_德国_262', server: 172.105.251.193, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇬🇧_GB_英国_263', server: 172.99.190.139, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_264', server: 172.99.190.186, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_265', server: 134.195.196.214, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_266', server: 172.99.190.205, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇯🇵_JP_日本_267', server: 85.208.108.134, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇨🇦_CA_加拿大_268', server: 134.195.198.252, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇫🇷_FR_法国_269', server: 145.239.1.100, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇬🇧_GB_英国_270', server: 172.99.190.153, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇬🇧_GB_英国_271', server: 172.99.190.153, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_272', server: 134.195.198.178, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_273', server: 172.99.190.153, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_274', server: 172.99.190.186, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_275', server: 134.195.196.50, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇺🇸_US_美国_276', server: usa-miami.lvuft.com, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: usa-miami.lvuft.com }}
- {name: '🇨🇦_CA_加拿大_277', server: 134.195.196.214, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_278', server: 38.114.114.49, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_279', server: 169.197.141.244, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_280', server: 38.75.137.187, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_281', server: 172.99.190.153, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇬🇧_GB_英国_282', server: 172.99.190.153, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇸🇪_SE_瑞典_283', server: 45.83.91.66, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: fAmKHf3Dft78ZyzL9kYF}
- {name: '🇨🇦_CA_加拿大_284', server: 134.195.198.95, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_285', server: 38.75.136.58, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_286', server: 134.195.198.95, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇬🇧_GB_英国_287', server: 172.99.190.153, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇫🇷_FR_法国_288', server: 62.210.209.50, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇰🇷_KR_韩国_289', server: 158.247.224.121, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇨🇦_CA_加拿大_290', server: 134.195.196.50, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇫🇷_FR_法国_291', server: 145.239.1.100, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇨🇦_CA_加拿大_292', server: 134.195.198.95, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_293', server: 134.195.198.178, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_294', server: 23.82.136.151, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: usa-miami.lvuft.com }}
- {name: '🇬🇧_GB_英国_295', server: 172.99.190.109, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇬🇧_GB_英国_296', server: 172.99.190.39, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_297', server: 134.195.198.252, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_298', server: 142.202.48.77, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_299', server: 169.197.143.52, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇯🇵_JP_日本_300', server: 85.208.108.146, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇯🇵_JP_日本_301', server: 85.208.110.2, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇫🇷_FR_法国_302', server: 62.210.209.50, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇩🇪_DE_德国_303', server: 139.162.130.101, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_304', server: 134.195.198.95, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_305', server: 172.99.190.153, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_306', server: 38.75.136.93, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇯🇵_JP_日本_307', server: 85.208.110.2, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: 'default_name_308', server: 104.16.160.114, port: 443, type: vmess, uuid: 5f4b2e42-ff2b-4342-86fc-b7ba1b5361e8, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/The-Great-Awakening_vws", host: vincent-jackson2021.ga }}
- {name: '🇬🇧_GB_英国_309', server: 172.99.190.139, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇩🇪_DE_德国_310', server: 193.108.118.34, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_311', server: 212.38.189.174, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇦🇺_AU_澳大利亚_312', server: 172.105.180.227, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇦🇺_AU_澳大利亚_313', server: 172.105.180.227, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇦🇺_AU_澳大利亚_314', server: 172.105.180.227, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇦🇺_AU_澳大利亚_315', server: 172.105.180.227, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇺🇸_US_美国_316', server: 38.107.226.241, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇦🇺_AU_澳大利亚_317', server: 172.105.180.227, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇦🇺_AU_澳大利亚_318', server: 172.105.180.227, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇦🇺_AU_澳大利亚_319', server: 172.105.180.227, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇮🇱_IL_以色列_320', server: 212.199.61.55, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: scDj68fv6xkMg2np9RgW}
- {name: '🇦🇺_AU_澳大利亚_321', server: 172.105.177.120, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇺🇸_US_美国_322', server: 142.202.48.77, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇦🇺_AU_澳大利亚_323', server: 172.105.180.227, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇬🇧_GB_英国_324', server: 172.99.190.186, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇦🇺_AU_澳大利亚_325', server: 172.105.180.227, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇫🇷_FR_法国_326', server: 149.202.82.172, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: 'default_name_327', server: 104.19.23.215, port: 443, type: vmess, uuid: c213d58f-9e41-4d9e-ab99-efa6090dee02, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/", host: cdn-dc02.testred.xyz }}
- {name: '🇦🇺_AU_澳大利亚_328', server: 172.105.180.227, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇺🇸_US_美国_329', server: 38.91.100.200, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇦🇺_AU_澳大利亚_330', server: 172.105.180.227, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_331', server: 38.91.101.11, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇦🇺_AU_澳大利亚_332', server: 172.105.180.227, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇩🇪_DE_德国_333', server: 172.105.251.193, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇦🇺_AU_澳大利亚_334', server: 172.105.180.227, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国->🇨🇿_CZ_捷克_335', server: v9.ssrsub.com, port: 8443, type: vmess, uuid: 51273235-0995-455e-96e4-83b1811b4cab, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇦🇺_AU_澳大利亚_336', server: 172.105.180.227, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇮🇹_IT_意大利_337', server: 185.213.21.6, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_338', server: 134.195.196.3, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_339', server: 134.195.198.178, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇮🇹_IT_意大利_340', server: 185.213.21.6, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇦🇺_AU_澳大利亚_341', server: 172.105.180.227, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇰🇷_KR_韩国_342', server: 141.164.38.135, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇦🇪_AE_阿联酋_343', server: 217.138.193.42, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: kGm85U8ewgPXbKr5LGxc}
- {name: '🇺🇸_US_美国_344', server: 142.202.48.77, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇦🇺_AU_澳大利亚_345', server: 172.105.171.80, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇭🇺_HU_匈牙利_346', server: 185.252.223.204, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-opts: { path: "/path/243535322906", host: www.16675463.xyz }}
- {name: '🇬🇧_GB_英国_347', server: 212.38.189.174, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇺🇸_US_美国_348', server: 38.68.134.23, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇦🇺_AU_澳大利亚_349', server: 172.105.180.227, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国->🇭🇰_HK_香港_350', server: 104.24.172.156, port: 443, type: vmess, uuid: c213d58f-9e41-4d9e-ab99-efa6090dee02, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/", host: cdn-dc02.testred.xyz }}
- {name: '🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_351', server: v2.ssrsub.com, port: 8443, type: vmess, uuid: 974aeac3-c27c-4e20-86e4-03f526faaccd, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇬🇧_GB_英国_352', server: 172.99.190.186, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_353', server: 134.195.198.95, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇳🇱_NL_荷兰_354', server: 89.238.177.234, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: VPPqaR4qpLmNw37jaJg6}
- {name: '🇺🇸_US_美国_355', server: 38.107.226.48, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_356', server: 167.88.61.60, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇳🇱_NL_荷兰_357', server: 89.238.177.234, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: VPPqaR4qpLmNw37jaJg6}
- {name: '🇰🇷_KR_韩国_358', server: 158.247.208.213, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇦🇺_AU_澳大利亚_359', server: 172.105.180.227, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇷🇺_RU_俄罗斯联邦_360', server: 82.202.220.242, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: Kw6hMXQ2Z7ey7mf2Uqyr}
- {name: '🇺🇸_US_美国_361', server: 38.68.134.37, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_362', server: 38.107.226.241, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: 'default_name_363', server: v5.ssrsub.com, port: 8443, type: vmess, uuid: 51273235-0995-455e-96e4-83b1811b4cab, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇬🇧_GB_英国_364', server: 212.38.189.174, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_365', server: 167.88.61.60, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇻🇳_VN_越南_366', server: 188.214.152.194, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: t8BFcaM3GSCw5FHbph27}
- {name: '🇨🇦_CA_加拿大_367', server: 134.195.196.24, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_368', server: 38.75.136.93, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇷🇺_RU_俄罗斯联邦_369', server: 82.202.220.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Kw6hMXQ2Z7ey7mf2Uqyr}
- {name: '🇺🇸_US_美国_370', server: 38.121.43.91, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇰🇷_KR_韩国_371', server: 158.247.227.123, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇨🇦_CA_加拿大_372', server: 134.195.196.71, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇰🇷_KR_韩国_373', server: 141.164.62.67, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇬🇧_GB_英国_374', server: 172.99.190.186, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_375', server: 167.88.61.60, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_376', server: 212.38.189.174, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_377', server: 167.88.62.34, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_378', server: 38.114.114.69, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_379', server: 38.68.134.191, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_380', server: 38.68.134.37, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇨🇦_CA_加拿大_381', server: 134.195.196.71, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_382', server: 134.195.196.214, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇺🇸_US_美国_383', server: 38.75.136.93, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇮🇳_IN_印度_384', server: 192.46.209.146, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_385', server: 134.195.198.178, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇮🇳_IN_印度_386', server: 192.46.209.146, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇨🇦_CA_加拿大_387', server: 198.57.27.191, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_388', server: 38.107.226.49, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇮🇳_IN_印度_389', server: 192.46.209.146, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇮🇳_IN_印度_390', server: 192.46.209.146, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇮🇳_IN_印度_391', server: 192.46.208.153, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_392', server: 198.57.27.184, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_393', server: 38.75.136.58, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_394', server: 134.195.196.3, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_395', server: 38.75.136.93, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇺🇸_US_美国_396', server: 142.202.48.77, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_397', server: 38.68.135.93, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_398', server: 142.202.48.34, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_399', server: 38.68.134.23, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇮🇳_IN_印度_400', server: 192.46.208.153, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇬🇧_GB_英国_401', server: 172.99.190.139, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇬🇧_GB_英国_402', server: 212.38.189.174, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇨🇦_CA_加拿大_403', server: 134.195.196.50, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇩🇪_DE_德国_404', server: 172.105.251.193, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_405', server: 142.202.48.7, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇮🇳_IN_印度_406', server: 172.105.35.151, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇰🇷_KR_韩国_407', server: 158.247.224.121, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇨🇦_CA_加拿大_408', server: 198.57.27.191, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_409', server: 38.107.226.48, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_410', server: 167.88.62.34, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇬🇧_GB_英国_411', server: 172.99.190.39, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇮🇳_IN_印度_412', server: 192.46.208.153, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇮🇳_IN_印度_413', server: 192.46.208.153, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇺🇸_US_美国_414', server: 142.202.48.7, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_415', server: 38.75.136.93, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_416', server: 38.107.226.48, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇫🇷_FR_法国_417', server: 62.210.209.50, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇺🇸_US_美国_418', server: 169.197.141.91, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇮🇳_IN_印度_419', server: 172.105.35.151, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇮🇳_IN_印度_420', server: 192.46.208.153, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇺🇸_US_美国_421', server: 167.88.61.60, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_422', server: 167.88.61.60, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: 'default_name_423', server: 104.16.169.85, port: 443, type: vmess, uuid: c213d58f-9e41-4d9e-ab99-efa6090dee02, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/", host: cdn-dc02.testred.xyz }}
- {name: '🇦🇺_AU_澳大利亚_424', server: 172.105.180.227, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_425', server: 167.88.61.60, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇪🇬_EG_埃及_426', server: 188.214.122.138, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: QhtEqbEtn74KsTUM4MUg}
- {name: '🇺🇸_US_美国_427', server: 192.96.204.250, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: usa-washington.lvuft.com }}
- {name: '🇦🇺_AU_澳大利亚_428', server: 172.105.180.227, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_429', server: 142.202.48.34, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_430', server: 38.68.135.93, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇭🇰_HK_香港->🇮🇳_IN_印度_431', server: aicoo6du.com, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: aicoo6du.com }}
- {name: '🇳🇬_NG_尼日利亚_432', server: 102.129.144.142, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QzTsOpqsdj29bWqIqWR6}
- {name: '🇫🇷_FR_法国_433', server: 149.202.82.172, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_434', server: 198.57.27.241, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_435', server: 198.57.27.184, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_436', server: 172.99.190.205, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇰🇷_KR_韩国_437', server: 158.247.227.123, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇺🇸_US_美国_438', server: 38.75.136.93, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇰🇷_KR_韩国_439', server: 141.164.38.135, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇺🇸_US_美国_440', server: 38.68.134.191, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇨🇦_CA_加拿大_441', server: 134.195.198.252, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_442', server: 169.197.141.91, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇨🇦_CA_加拿大_443', server: 198.57.27.152, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇦🇺_AU_澳大利亚_444', server: 172.105.180.227, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇺🇸_US_美国_445', server: 167.88.61.60, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇨🇦_CA_加拿大_446', server: 134.195.196.24, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_447', server: 38.75.136.93, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: '🇺🇸_US_美国_448', server: 38.107.226.49, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_449', server: 198.57.27.191, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇨🇦_CA_加拿大_450', server: 134.195.196.71, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇰🇷_KR_韩国_451', server: 158.247.224.121, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇨🇦_CA_加拿大_452', server: 198.57.27.172, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇦🇺_AU_澳大利亚_453', server: 172.105.180.227, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇺🇸_US_美国_454', server: 38.75.136.93, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_455', server: 38.75.136.93, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇫🇷_FR_法国_456', server: 145.239.1.137, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇰🇷_KR_韩国_457', server: 141.164.56.110, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_458', server: 167.88.61.60, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_459', server: 38.75.136.93, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_460', server: 172.99.190.109, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_461', server: 38.75.136.93, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇦🇺_AU_澳大利亚_462', server: 172.105.180.227, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_463', server: 172.99.190.186, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_464', server: 142.202.48.34, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇨🇦_CA_加拿大_465', server: 134.195.196.71, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_466', server: 38.75.136.93, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇬🇧_GB_英国_467', server: 172.99.190.109, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_468', server: 167.88.61.60, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇫🇷_FR_法国_469', server: 145.239.1.137, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇺🇸_US_美国_470', server: 38.107.226.49, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇬🇧_GB_英国_471', server: 172.99.190.39, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_472', server: 167.88.61.60, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: '🇨🇦_CA_加拿大_473', server: 134.195.196.202, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: 'default_name_474', server: 104.19.28.35, port: 443, type: vmess, uuid: c213d58f-9e41-4d9e-ab99-efa6090dee02, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/", host: cdn-dc02.testred.xyz }}
- {name: '🇫🇷_FR_法国_475', server: 145.239.1.137, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇬🇧_GB_英国_476', server: 172.99.190.87, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_477', server: 212.38.189.174, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇬🇧_GB_英国_478', server: 212.38.189.174, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇫🇷_FR_法国_479', server: 145.239.1.137, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_480', server: 167.88.61.60, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇬🇧_GB_英国_481', server: 172.99.190.186, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_482', server: 172.99.190.87, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇦🇺_AU_澳大利亚_483', server: 172.105.180.227, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: '🇺🇸_US_美国_484', server: 167.88.61.60, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: '🇺🇸_US_美国_485', server: 167.88.61.60, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇺🇸_US_美国_486', server: 38.68.135.93, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_487', server: 167.88.61.60, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇦🇺_AU_澳大利亚_488', server: v10.ssrsub.com, port: 166, type: vmess, uuid: 51273235-0995-455e-96e4-83b1811b4cab, alterId: 0, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ssrsub" }}
- {name: '🇫🇷_FR_法国_489', server: 145.239.1.137, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇫🇷_FR_法国_490', server: 145.239.1.137, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_491', server: 167.88.61.60, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: '🇺🇸_US_美国_492', server: 142.202.48.7, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇺🇸_US_美国_493', server: 38.68.134.190, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇦🇺_AU_澳大利亚_494', server: 172.105.180.227, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: '🇺🇸_US_美国_495', server: 167.88.61.60, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: '🇺🇸_US_美国_496', server: 167.88.61.60, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇫🇷_FR_法国_497', server: 145.239.1.137, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇨🇦_CA_加拿大_498', server: 198.57.27.184, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇺🇸_US_美国_499', server: 38.75.136.93, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: '🇬🇧_GB_英国_500', server: 172.99.190.87, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: '🇬🇧_GB_英国_501', server: 172.99.190.87, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: '🇬🇧_GB_英国_502', server: 212.38.189.174, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: '🇨🇦_CA_加拿大_503', server: 198.57.27.241, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: '🇦🇺_AU_澳大利亚_504', server: 172.105.180.227, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: '🇺🇸_US_美国_505', server: 167.88.61.60, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: '🇺🇸_US_美国_506', server: fa1.uuv2.co.uk, port: 443, type: vmess, uuid: aba50dd4-5484-3b05-b14a-4661caf862d5, alterId: 4, cipher: auto, tls: true, network: ws, ws-opts: { path: "/ws", host: usa-washington.lvuft.com }}
- {name: '🇰🇷_KR_韩国_507', server: 141.164.38.135, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
proxy-groups:
- name: 🔰 节点选择
type: select
proxies:
- ♻️ 自动选择
- 🎯 全球直连
- default_name_1
- 🇺🇸_US_美国_2
- 🇺🇸_US_美国_3
- 🇺🇸_US_美国_4
- 🇺🇸_US_美国_5
- 🇺🇸_US_美国_6
- 🇺🇸_US_美国_7
- 🇺🇸_US_美国_8
- 🇺🇸_US_美国_9
- 🇺🇸_US_美国_10
- 🇺🇸_US_美国_11
- 🇺🇸_US_美国_12
- 🇺🇸_US_美国_13
- 🇺🇸_US_美国_14
- 🇺🇸_US_美国_15
- 🇺🇸_US_美国_16
- 🇺🇸_US_美国_17
- 🇺🇸_US_美国_18
- 🇺🇸_US_美国_19
- 🇺🇸_US_美国_20
- 🇺🇸_US_美国_21
- 🇺🇸_US_美国_22
- 🇺🇸_US_美国_23
- 🇺🇸_US_美国_24
- 🇺🇸_US_美国_25
- 🇺🇸_US_美国_26
- 🇺🇸_US_美国_27
- 🇺🇸_US_美国_28
- 🇺🇸_US_美国_29
- 🇺🇸_US_美国_30
- 🇺🇸_US_美国_31
- 🇺🇸_US_美国_32
- 🇺🇸_US_美国_33
- 🇺🇸_US_美国_34
- 🇺🇸_US_美国_35
- 🇺🇸_US_美国_36
- 🇺🇸_US_美国_37
- 🇺🇸_US_美国_38
- 🇺🇸_US_美国_39
- 🇺🇸_US_美国_40
- 🇺🇸_US_美国_41
- 🇺🇸_US_美国_42
- 🇺🇸_US_美国_43
- 🇺🇸_US_美国_44
- 🇺🇸_US_美国_45
- 🇺🇸_US_美国_46
- 🇺🇸_US_美国_47
- 🇺🇸_US_美国_48
- 🇺🇸_US_美国_49
- 🇺🇸_US_美国_50
- 🇺🇸_US_美国_51
- 🇺🇸_US_美国_52
- 🇺🇸_US_美国_53
- 🇺🇸_US_美国_54
- 🇺🇸_US_美国_55
- 🇺🇸_US_美国_56
- 🇺🇸_US_美国_57
- 🇺🇸_US_美国_58
- 🇺🇸_US_美国_59
- 🇺🇸_US_美国_60
- 🇺🇸_US_美国_61
- 🇺🇸_US_美国_62
- 🇺🇸_US_美国_63
- 🇯🇵_JP_日本_64
- 🇺🇸_US_美国_65
- 🇺🇸_US_美国_66
- 🇺🇸_US_美国_67
- 🇯🇵_JP_日本_68
- 🇨🇦_CA_加拿大_69
- 🇺🇸_US_美国_70
- 🇺🇸_US_美国_71
- 🇺🇸_US_美国_72
- 🇨🇦_CA_加拿大_73
- 🇺🇸_US_美国_74
- 🇨🇦_CA_加拿大_75
- 🇨🇦_CA_加拿大_76
- 🇨🇦_CA_加拿大_77
- 🇨🇦_CA_加拿大_78
- 🇨🇦_CA_加拿大_79
- 🇺🇸_US_美国_80
- 🇺🇸_US_美国_81
- 🇨🇦_CA_加拿大_82
- 🇺🇸_US_美国_83
- 🇨🇦_CA_加拿大_84
- 🇺🇸_US_美国_85
- 🇨🇦_CA_加拿大_86
- 🇺🇸_US_美国_87
- 🇨🇦_CA_加拿大_88
- 🇺🇸_US_美国_89
- 🇺🇸_US_美国_90
- 🇨🇦_CA_加拿大_91
- 🇨🇦_CA_加拿大_92
- 🇺🇸_US_美国_93
- 🇺🇸_US_美国_94
- 🇨🇦_CA_加拿大_95
- 🇺🇸_US_美国_96
- 🇺🇸_US_美国_97
- 🇨🇦_CA_加拿大_98
- 🇨🇦_CA_加拿大_99
- 🇺🇸_US_美国_100
- 🇺🇸_US_美国_101
- 🇨🇦_CA_加拿大_102
- 🇨🇦_CA_加拿大_103
- 🇺🇸_US_美国_104
- 🇺🇸_US_美国_105
- 🇨🇦_CA_加拿大_106
- 🇺🇸_US_美国_107
- 🇨🇦_CA_加拿大_108
- 🇨🇦_CA_加拿大_109
- 🇺🇸_US_美国_110
- 🇨🇦_CA_加拿大_111
- 🇨🇦_CA_加拿大_112
- 🇨🇦_CA_加拿大_113
- 🇨🇦_CA_加拿大_114
- 🇺🇸_US_美国_115
- 🇨🇦_CA_加拿大_116
- 🇨🇦_CA_加拿大_117
- 🇺🇸_US_美国_118
- 🇨🇦_CA_加拿大_119
- 🇺🇸_US_美国_120
- 🇺🇸_US_美国_121
- 🇺🇸_US_美国_122
- 🇺🇸_US_美国_123
- 🇨🇦_CA_加拿大_124
- 🇺🇸_US_美国_125
- 🇺🇸_US_美国_126
- 🇺🇸_US_美国_127
- 🇺🇸_US_美国_128
- 🇨🇦_CA_加拿大_129
- 🇨🇦_CA_加拿大_130
- 🇨🇦_CA_加拿大_131
- 🇨🇦_CA_加拿大_132
- 🇺🇸_US_美国_133
- 🇨🇦_CA_加拿大_134
- 🇨🇦_CA_加拿大_135
- 🇺🇸_US_美国_136
- 🇺🇸_US_美国_137
- 🇺🇸_US_美国_138
- 🇺🇸_US_美国_139
- 🇺🇸_US_美国_140
- 🇺🇸_US_美国_141
- 🇺🇸_US_美国_142
- 🇺🇸_US_美国_143
- 🇺🇸_US_美国_144
- 🇺🇸_US_美国_145
- 🇬🇧_GB_英国_146
- 🇨🇦_CA_加拿大_147
- 🇨🇦_CA_加拿大_148
- 🇨🇦_CA_加拿大_149
- 🇨🇦_CA_加拿大_150
- 🇨🇦_CA_加拿大_151
- 🇺🇸_US_美国_152
- 🇨🇦_CA_加拿大_153
- 🇨🇦_CA_加拿大_154
- 🇺🇸_US_美国_155
- 🇺🇸_US_美国_156
- 🇺🇸_US_美国_157
- 🇺🇸_US_美国_158
- 🇨🇦_CA_加拿大_159
- 🇨🇦_CA_加拿大_160
- 🇨🇭_CH_瑞士_161
- 🇩🇪_DE_德国_162
- 🇺🇸_US_美国_163
- 🇺🇸_US_美国_164
- 🇨🇦_CA_加拿大_165
- 🇺🇸_US_美国_166
- 🇨🇦_CA_加拿大_167
- 🇨🇦_CA_加拿大_168
- 🇨🇦_CA_加拿大_169
- 🇨🇦_CA_加拿大_170
- 🇨🇦_CA_加拿大_171
- 🇨🇦_CA_加拿大_172
- 🇺🇸_US_美国_173
- 🇨🇦_CA_加拿大_174
- 🇺🇸_US_美国_175
- 🇨🇦_CA_加拿大_176
- 🇨🇦_CA_加拿大_177
- 🇨🇦_CA_加拿大_178
- 🇱🇺_LU_卢森堡_179
- 🇺🇸_US_美国_180
- 🇺🇸_US_美国_181
- 🇩🇪_DE_德国_182
- default_name_183
- 🇨🇦_CA_加拿大_184
- 🇨🇦_CA_加拿大_185
- 🇨🇦_CA_加拿大_186
- 🇨🇦_CA_加拿大_187
- 🇨🇦_CA_加拿大_188
- 🇨🇦_CA_加拿大_189
- 🇨🇦_CA_加拿大_190
- default_name_191
- 🇨🇦_CA_加拿大_192
- 🇨🇦_CA_加拿大_193
- 🇨🇦_CA_加拿大_194
- 🇨🇦_CA_加拿大_195
- default_name_196
- 🇩🇪_DE_德国_197
- 🇨🇦_CA_加拿大_198
- 🇺🇸_US_美国_199
- 🇺🇸_US_美国_200
- default_name_201
- 🇺🇸_US_美国->🇫🇷_FR_法国_202
- 🇩🇪_DE_德国_203
- 🇩🇪_DE_德国_204
- 🇦🇹_AT_奥地利_205
- 🇨🇦_CA_加拿大_206
- 🇺🇸_US_美国_207
- 🇨🇦_CA_加拿大_208
- 🇨🇦_CA_加拿大_209
- 🇨🇦_CA_加拿大_210
- 🇬🇧_GB_英国_211
- 🇩🇪_DE_德国_212
- 🇨🇦_CA_加拿大_213
- 🇨🇦_CA_加拿大_214
- 🇨🇦_CA_加拿大_215
- 🇨🇦_CA_加拿大_216
- 🇨🇦_CA_加拿大_217
- 🇨🇦_CA_加拿大_218
- 🇬🇧_GB_英国_219
- 🇺🇸_US_美国_220
- 🇨🇦_CA_加拿大_221
- 🇺🇸_US_美国_222
- 🇬🇧_GB_英国_223
- 🇪🇸_ES_西班牙_224
- 🇯🇵_JP_日本_225
- 🇨🇦_CA_加拿大_226
- 🇳🇴_NO_挪威_227
- 🇺🇸_US_美国_228
- 🇬🇧_GB_英国_229
- 🇨🇦_CA_加拿大_230
- 🇫🇷_FR_法国_231
- 🇩🇪_DE_德国_232
- 🇬🇧_GB_英国_233
- 🇺🇸_US_美国_234
- 🇧🇬_BG_保加利亚_235
- 🇬🇧_GB_英国_236
- 🇺🇸_US_美国_237
- 🇯🇵_JP_日本_238
- 🇺🇸_US_美国_239
- 🇬🇧_GB_英国_240
- 🇬🇧_GB_英国_241
- 🇬🇧_GB_英国_242
- 🇯🇵_JP_日本_243
- 🇨🇦_CA_加拿大_244
- 🇯🇵_JP_日本_245
- 🇬🇧_GB_英国_246
- 🇬🇧_GB_英国_247
- 🇨🇦_CA_加拿大_248
- 🇨🇦_CA_加拿大_249
- 🇨🇦_CA_加拿大_250
- 🇨🇦_CA_加拿大_251
- 🇺🇸_US_美国_252
- 🇯🇵_JP_日本_253
- 🇳🇱_NL_荷兰_254
- 🇨🇦_CA_加拿大_255
- 🇺🇸_US_美国_256
- 🇨🇦_CA_加拿大_257
- 🇨🇦_CA_加拿大_258
- 🇨🇦_CA_加拿大_259
- 🇨🇦_CA_加拿大_260
- 🇬🇧_GB_英国_261
- 🇩🇪_DE_德国_262
- 🇬🇧_GB_英国_263
- 🇬🇧_GB_英国_264
- 🇨🇦_CA_加拿大_265
- 🇬🇧_GB_英国_266
- 🇯🇵_JP_日本_267
- 🇨🇦_CA_加拿大_268
- 🇫🇷_FR_法国_269
- 🇬🇧_GB_英国_270
- 🇬🇧_GB_英国_271
- 🇨🇦_CA_加拿大_272
- 🇬🇧_GB_英国_273
- 🇬🇧_GB_英国_274
- 🇨🇦_CA_加拿大_275
- 🇺🇸_US_美国_276
- 🇨🇦_CA_加拿大_277
- 🇺🇸_US_美国_278
- 🇺🇸_US_美国_279
- 🇺🇸_US_美国_280
- 🇬🇧_GB_英国_281
- 🇬🇧_GB_英国_282
- 🇸🇪_SE_瑞典_283
- 🇨🇦_CA_加拿大_284
- 🇺🇸_US_美国_285
- 🇨🇦_CA_加拿大_286
- 🇬🇧_GB_英国_287
- 🇫🇷_FR_法国_288
- 🇰🇷_KR_韩国_289
- 🇨🇦_CA_加拿大_290
- 🇫🇷_FR_法国_291
- 🇨🇦_CA_加拿大_292
- 🇨🇦_CA_加拿大_293
- 🇺🇸_US_美国_294
- 🇬🇧_GB_英国_295
- 🇬🇧_GB_英国_296
- 🇨🇦_CA_加拿大_297
- 🇺🇸_US_美国_298
- 🇺🇸_US_美国_299
- 🇯🇵_JP_日本_300
- 🇯🇵_JP_日本_301
- 🇫🇷_FR_法国_302
- 🇩🇪_DE_德国_303
- 🇨🇦_CA_加拿大_304
- 🇬🇧_GB_英国_305
- 🇺🇸_US_美国_306
- 🇯🇵_JP_日本_307
- default_name_308
- 🇬🇧_GB_英国_309
- 🇩🇪_DE_德国_310
- 🇬🇧_GB_英国_311
- 🇦🇺_AU_澳大利亚_312
- 🇦🇺_AU_澳大利亚_313
- 🇦🇺_AU_澳大利亚_314
- 🇦🇺_AU_澳大利亚_315
- 🇺🇸_US_美国_316
- 🇦🇺_AU_澳大利亚_317
- 🇦🇺_AU_澳大利亚_318
- 🇦🇺_AU_澳大利亚_319
- 🇮🇱_IL_以色列_320
- 🇦🇺_AU_澳大利亚_321
- 🇺🇸_US_美国_322
- 🇦🇺_AU_澳大利亚_323
- 🇬🇧_GB_英国_324
- 🇦🇺_AU_澳大利亚_325
- 🇫🇷_FR_法国_326
- default_name_327
- 🇦🇺_AU_澳大利亚_328
- 🇺🇸_US_美国_329
- 🇦🇺_AU_澳大利亚_330
- 🇺🇸_US_美国_331
- 🇦🇺_AU_澳大利亚_332
- 🇩🇪_DE_德国_333
- 🇦🇺_AU_澳大利亚_334
- 🇺🇸_US_美国->🇨🇿_CZ_捷克_335
- 🇦🇺_AU_澳大利亚_336
- 🇮🇹_IT_意大利_337
- 🇨🇦_CA_加拿大_338
- 🇨🇦_CA_加拿大_339
- 🇮🇹_IT_意大利_340
- 🇦🇺_AU_澳大利亚_341
- 🇰🇷_KR_韩国_342
- 🇦🇪_AE_阿联酋_343
- 🇺🇸_US_美国_344
- 🇦🇺_AU_澳大利亚_345
- 🇭🇺_HU_匈牙利_346
- 🇬🇧_GB_英国_347
- 🇺🇸_US_美国_348
- 🇦🇺_AU_澳大利亚_349
- 🇺🇸_US_美国->🇭🇰_HK_香港_350
- 🇺🇸_US_美国->🇷🇺_RU_俄罗斯联邦_351
- 🇬🇧_GB_英国_352
- 🇨🇦_CA_加拿大_353
- 🇳🇱_NL_荷兰_354
- 🇺🇸_US_美国_355
- 🇺🇸_US_美国_356
- 🇳🇱_NL_荷兰_357
- 🇰🇷_KR_韩国_358
- 🇦🇺_AU_澳大利亚_359
- 🇷🇺_RU_俄罗斯联邦_360
- 🇺🇸_US_美国_361
- 🇺🇸_US_美国_362
- default_name_363
- 🇬🇧_GB_英国_364
- 🇺🇸_US_美国_365
- 🇻🇳_VN_越南_366
- 🇨🇦_CA_加拿大_367
- 🇺🇸_US_美国_368
- 🇷🇺_RU_俄罗斯联邦_369
- 🇺🇸_US_美国_370
- 🇰🇷_KR_韩国_371
- 🇨🇦_CA_加拿大_372
- 🇰🇷_KR_韩国_373
- 🇬🇧_GB_英国_374
- 🇺🇸_US_美国_375
- 🇬🇧_GB_英国_376
- 🇺🇸_US_美国_377
- 🇺🇸_US_美国_378
- 🇺🇸_US_美国_379
- 🇺🇸_US_美国_380
- 🇨🇦_CA_加拿大_381
- 🇨🇦_CA_加拿大_382
- 🇺🇸_US_美国_383
- 🇮🇳_IN_印度_384
- 🇨🇦_CA_加拿大_385
- 🇮🇳_IN_印度_386
- 🇨🇦_CA_加拿大_387
- 🇺🇸_US_美国_388
- 🇮🇳_IN_印度_389
- 🇮🇳_IN_印度_390
- 🇮🇳_IN_印度_391
- 🇨🇦_CA_加拿大_392
- 🇺🇸_US_美国_393
- 🇨🇦_CA_加拿大_394
- 🇺🇸_US_美国_395
- 🇺🇸_US_美国_396
- 🇺🇸_US_美国_397
- 🇺🇸_US_美国_398
- 🇺🇸_US_美国_399
- 🇮🇳_IN_印度_400
- 🇬🇧_GB_英国_401
- 🇬🇧_GB_英国_402
- 🇨🇦_CA_加拿大_403
- 🇩🇪_DE_德国_404
- 🇺🇸_US_美国_405
- 🇮🇳_IN_印度_406
- 🇰🇷_KR_韩国_407
- 🇨🇦_CA_加拿大_408
- 🇺🇸_US_美国_409
- 🇺🇸_US_美国_410
- 🇬🇧_GB_英国_411
- 🇮🇳_IN_印度_412
- 🇮🇳_IN_印度_413
- 🇺🇸_US_美国_414
- 🇺🇸_US_美国_415
- 🇺🇸_US_美国_416
- 🇫🇷_FR_法国_417
- 🇺🇸_US_美国_418
- 🇮🇳_IN_印度_419
- 🇮🇳_IN_印度_420
- 🇺🇸_US_美国_421
- 🇺🇸_US_美国_422
- default_name_423
- 🇦🇺_AU_澳大利亚_424
- 🇺🇸_US_美国_425
- 🇪🇬_EG_埃及_426
- 🇺🇸_US_美国_427
- 🇦🇺_AU_澳大利亚_428
- 🇺🇸_US_美国_429
- 🇺🇸_US_美国_430
- 🇭🇰_HK_香港->🇮🇳_IN_印度_431
- 🇳🇬_NG_尼日利亚_432
- 🇫🇷_FR_法国_433
- 🇨🇦_CA_加拿大_434
- 🇨🇦_CA_加拿大_435
- 🇬🇧_GB_英国_436
- 🇰🇷_KR_韩国_437
- 🇺🇸_US_美国_438
- 🇰🇷_KR_韩国_439
- 🇺🇸_US_美国_440
- 🇨🇦_CA_加拿大_441
- 🇺🇸_US_美国_442
- 🇨🇦_CA_加拿大_443
- 🇦🇺_AU_澳大利亚_444
- 🇺🇸_US_美国_445
- 🇨🇦_CA_加拿大_446
- 🇺🇸_US_美国_447
- 🇺🇸_US_美国_448
- 🇨🇦_CA_加拿大_449
- 🇨🇦_CA_加拿大_450
- 🇰🇷_KR_韩国_451
- 🇨🇦_CA_加拿大_452
- 🇦🇺_AU_澳大利亚_453
- 🇺🇸_US_美国_454
- 🇺🇸_US_美国_455
- 🇫🇷_FR_法国_456
- 🇰🇷_KR_韩国_457
- 🇺🇸_US_美国_458
- 🇺🇸_US_美国_459
- 🇬🇧_GB_英国_460
- 🇺🇸_US_美国_461
- 🇦🇺_AU_澳大利亚_462
- 🇬🇧_GB_英国_463
- 🇺🇸_US_美国_464
- 🇨🇦_CA_加拿大_465
- 🇺🇸_US_美国_466
- 🇬🇧_GB_英国_467
- 🇺🇸_US_美国_468
- 🇫🇷_FR_法国_469
- 🇺🇸_US_美国_470
- 🇬🇧_GB_英国_471
- 🇺🇸_US_美国_472
- 🇨🇦_CA_加拿大_473
- default_name_474
- 🇫🇷_FR_法国_475
- 🇬🇧_GB_英国_476
- 🇬🇧_GB_英国_477
- 🇬🇧_GB_英国_478
- 🇫🇷_FR_法国_479
- 🇺🇸_US_美国_480