-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDark_Clash.txt
1768 lines (1764 loc) ยท 99.1 KB
/
Dark_Clash.txt
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
mixed-port: 7890
allow-lan: false
mode: Global
log-level: silent
external-controller: 127.0.0.1:9090
dns:
enable: true
ipv6: false
listen: 0.0.0.0:53
enhanced-mode: redir-host
nameserver:
- https://1.1.1.1/dns-query
- https://8.8.8.8/dns-query
fallback:
- https://1.0.0.1/dns-query
- https://8.8.4.4/dns-query
- 1.1.1.1
- 8.8.8.8
proxies:
- {name: ๐ซ๐ท UFO Paris 6, server: 135.125.248.215, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฎ๐น UFO Milan 4, server: 95.141.37.111, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฌ๐ง UFO London 5, server: 92.223.59.188, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฉ๐ช UFO Frankfurt 3, server: 18.185.63.41, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐บ๐ธ UFO NewYork, server: 45.144.112.162, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐บ๐ธ UFO LosAngeles, server: 77.247.126.153, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐บ๐ธ UFO Seattle, server: 169.197.143.15, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฏ๐ต UFO Tokyo 3, server: 103.140.136.200, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฏ๐ต UFO Tokyo 4, server: 89.31.125.101, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: ๐ฏ๐ต UFO Tokyo 5, server: 185.160.24.217, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao}
- {name: "Aloha Argentina ๐ฆ๐ท Buenos Aires", server: 131.255.4.219, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Australia ๐ฆ๐บ Sydney", server: 194.14.208.110, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Colombia ๐จ๐ด Bogota", server: 181.119.30.61, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Cyprus ๐จ๐พ Nicosia", server: 213.169.137.221, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Germany ๐ฉ๐ช Dรผsseldorf", server: 178.18.255.190, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Germany ๐ฉ๐ช Limburg an der Lahn", server: 135.125.244.103, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Germany ๐ฉ๐ช Nuremberg", server: 213.136.80.36, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Greece ๐ฌ๐ท Thessaloniki", server: 192.71.166.102, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Hong Kong ๐ญ๐ฐ Central", server: 91.245.255.59, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Hungary ๐ญ๐บ Budapest", server: 194.71.130.160, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Iceland ๐ฎ๐ธ Hafnarfjordur", server: 37.235.49.158, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha India ๐ฎ๐ณ Jaipur", server: 103.129.97.129, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Indonesia ๐ฎ๐ฉ Jakarta", server: 103.84.192.228, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Isle of Man ๐ฎ๐ฒ Douglas", server: 37.235.55.84, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Italy ๐ฎ๐น Milan", server: 95.174.23.218, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Japan ๐ฏ๐ต Tokyo", server: 176.97.70.125, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Latvia ๐ฑ๐ป Riga", server: 192.36.41.28, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Luxembourg ๐ฑ๐บ Luxembourg", server: 172.255.248.35, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Moldova ๐ฒ๐ฉ Chisinau", server: 192.121.87.89, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha North Macedonia ๐ฒ๐ฐ Skopje", server: 46.183.185.15, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Romania ๐ท๐ด Bucharest", server: 194.68.44.206, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Serbia ๐ท๐ธ Belgrade", server: 194.71.126.31, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Singapore ๐ธ๐ฌ Singapore", server: 194.233.65.67, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Slovakia ๐ธ๐ฐ Bratislava", server: 188.123.123.133, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Slovenia ๐ธ๐ฎ Ljubljana", server: 192.71.244.49, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha South Korea ๐ฐ๐ท Seoul", server: 158.247.213.230, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Spain ๐ช๐ธ Seville", server: 151.236.23.105, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Switzerland ๐จ๐ญ Zurich", server: 212.237.210.158, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Taiwan ๐น๐ผ Taipei", server: 103.123.0.28, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Ukraine ๐บ๐ฆ Kharkiv", server: 195.211.41.10, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha United Kingdom ๐ฌ๐ง London", server: 176.10.80.6, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha United States ๐บ๐ธ Ashburn 1", server: 213.174.159.247, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha United States ๐บ๐ธ Ashburn 2", server: 213.174.130.130, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha United States ๐บ๐ธ Ashburn 5", server: 213.174.129.4, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Aloha Vietnam ๐ป๐ณ Ho Chi Minh City", server: 103.238.213.96, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3}
- {name: "Speedy Quark Azerbaijan ๐ฆ๐ฟ Baku", server: 94.20.154.38, port: 50000, type: ss, cipher: aes-256-cfb, password: "3135771619"}
- {name: "Speedy Quark Denmark ๐ฉ๐ฐ Copenhagen", server: 5.183.101.229, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Germany ๐ฉ๐ช LimburganderLahn", server: 135.125.236.229, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Greece ๐ฌ๐ท Athens", server: 185.243.214.55, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Hungary ๐ญ๐บ Budapest", server: 194.71.130.194, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Israel ๐ฎ๐ฑ Haifa 1", server: 83.229.73.60, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Israel ๐ฎ๐ฑ Haifa 3", server: 185.162.125.91, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Israel ๐ฎ๐ฑ Haifa 4", server: 83.229.73.120, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Japan ๐ฏ๐ต Tokyo", server: 185.172.113.58, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Norway ๐ณ๐ด Oslo", server: 5.183.100.87, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Romania ๐ท๐ด Iasi", server: 185.225.19.64, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Sweden ๐ธ๐ช Stockholm", server: 185.243.215.187, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Turkey ๐น๐ท Istanbul 1", server: 141.98.119.180, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Turkey ๐น๐ท Istanbul 2", server: 185.219.134.52, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Turkey ๐น๐ท Istanbul 5", server: 141.98.119.156, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark Thailand ๐น๐ญ Bangkok", server: 119.59.113.121, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark UK ๐ฌ๐ง London 1", server: 103.105.48.199, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark UK ๐ฌ๐ง London 3", server: 51.89.138.162, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ Los Angeles 1", server: 104.149.129.126, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ Los Angeles 2", server: 104.149.149.158, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ Los Angeles 3", server: 185.153.180.10, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ New Memphis 1", server: 104.249.173.232, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ New Memphis 2", server: 104.249.173.240, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ San Jose", server: 103.138.73.118, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "Speedy Quark USA ๐บ๐ธ Santa Clara", server: 92.38.149.173, port: 50003, type: ss, cipher: aes-256-cfb, password: "8460400130"}
- {name: "XY VPN USA ๐บ๐ธ Dalas", server: 167.88.62.104, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN USA ๐บ๐ธ New York", server: 142.202.48.58, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN UK ๐ฌ๐ง London", server: 172.99.190.87, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Canada ๐จ๐ฆ Toronto", server: 134.195.196.6, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN India ๐ฎ๐ณ Mumbai", server: 192.46.208.153, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Canada ๐จ๐ฆ Montreal", server: 134.195.198.178, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN France ๐ซ๐ท Roubaix", server: 151.80.27.161, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Germany ๐ฉ๐ช frankfurtAMmain", server: 172.105.244.165, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Germany ๐ฉ๐ช Dusseldorf 1", server: 146.0.36.23, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Germany ๐ฉ๐ช Dusseldorf 2", server: 91.194.84.53, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Italy ๐ฎ๐น Milan 1", server: 185.213.21.5, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Italy ๐ฎ๐น Milan 2", server: 185.213.21.6, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Norway ๐ณ๐ด Kristiansad 1", server: 46.29.219.246, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Norway ๐ณ๐ด Kristiansad 3", server: 46.29.218.6, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Poland ๐ณ๐ด Warsaw 1", server: 194.15.196.66, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "XY VPN Poland ๐ณ๐ด Warsaw 2", server: 194.15.196.54, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "Private VPN USA ๐บ๐ธ New Jersey", server: 92.38.169.196, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563}
- {name: "Private VPN USA ๐บ๐ธ California", server: 5.188.111.182, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563}
- {name: "Private VPN France ๐ซ๐ท Paris", server: 141.95.0.26, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563}
- {name: "Private VPN Singapore ๐ธ๐ฌ Singapore", server: 81.90.188.167, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563}
- {name: "Private VPN UK ๐ฌ๐ง London", server: 198.244.150.26, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563}
- {name: WeVPN US ๐บ๐ธ Atlanta, server: 104.223.91.146, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QKyLzp5JUG6XEGy2wbEE}
- {name: WeVPN US ๐บ๐ธ Chicago, server: 69.39.239.57, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2jQLXYq5xgrE3gKXmfjB}
- {name: WeVPN US ๐บ๐ธ Dallas, server: 194.110.112.74, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 4W2SJmdKUMJjjkVfRDdh}
- {name: WeVPN US ๐บ๐ธ Denver, server: 70.39.71.2, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: XkH8z99cQguQ8ywK5jhV}
- {name: WeVPN US ๐บ๐ธ Los Angeles, server: 66.55.92.101, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: NK4wZejCzDfPdWXTK4FW}
- {name: WeVPN US ๐บ๐ธ Los Angeles-PF, server: 66.55.92.75, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 6g8n89NARNcuTH2XvUtZ}
- {name: WeVPN US ๐บ๐ธ Miami, server: 96.47.224.2, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: YDNYJcNdH5xuLrhyr7Fj}
- {name: WeVPN US ๐บ๐ธ New Jersey, server: 23.226.131.146, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: ckX2YfENbjCtVzVJphFP}
- {name: WeVPN US ๐บ๐ธ New York, server: 217.138.206.98, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: kGm85U8ewgPXbKr5LGxc}
- {name: WeVPN US ๐บ๐ธ New York-PF, server: 188.241.179.2, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2SKtWLpv3tWyS97wqrxC}
- {name: WeVPN US ๐บ๐ธ Phoenix, server: 170.130.15.34, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: q8gsJVLZ5eYXU3uhmnbH}
- {name: WeVPN US ๐บ๐ธ Salt Lake City, server: 107.182.234.233, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: XkH8z99cQguQ8ywK5jhV}
- {name: WeVPN US ๐บ๐ธ San Jose, server: 169.62.109.140, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 74cf7gsXJgd9Z4MAW42L}
- {name: WeVPN US ๐บ๐ธ Seattle, server: 104.140.21.178, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 4kUSnsELPgwDFqkrnPqL}
- {name: WeVPN US ๐บ๐ธ Washington DC, server: 70.32.0.208, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: q4apPAjyY9knqKS4e9xZ}
- {name: WeVPN AR ๐ฆ๐ท Buenos Aires, server: 131.255.4.140, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: UHu5NzfXjuur52h9}
- {name: WeVPN MX ๐ฒ๐ฝ Mexico City, server: 169.57.35.85, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 3Q5yYEGGMu8jU2p25aWL}
- {name: WeVPN BR ๐ง๐ท Sao Paulo, server: 177.54.152.89, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2GWsqE7Gr3nRMuuQZfFa}
- {name: WeVPN CA ๐จ๐ฆ Montreal, server: 217.138.200.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: EGTHtnGhcnggx5yBYSqS}
- {name: WeVPN CA ๐จ๐ฆ Toronto, server: 184.75.208.234, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 47GH3wQRw7V4Zhd35bFs}
- {name: WeVPN CA ๐จ๐ฆ Vancouver, server: 71.19.249.109, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QBLw4rLXQ6ebxpWwSKDL}
- {name: WeVPN NL ๐ณ๐ฑ Amsterdam, server: 89.238.177.234, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: VPPqaR4qpLmNw37jaJg6}
- {name: WeVPN GR ๐ฌ๐ท Athens, server: 185.51.134.210, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: mTrN2fMYeWJwrkWpTnL2}
- {name: WeVPN RS ๐ท๐ธ Belgrade, server: 37.120.193.170, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Z3WEYrWQdmDZnLvJ94vE}
- {name: WeVPN BE ๐ง๐ช Brussels, server: 77.243.191.178, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 47GH3wQRw7V4Zhd35bFs}
- {name: WeVPN RO ๐ท๐ด Bucharest, server: 86.105.25.162, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: gKDDFZyBmBH5Ru46xBAK}
- {name: WeVPN HU ๐ญ๐บ Budapest, server: 185.128.26.130, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: GU3kqh2ZSkzFkRBp4hxy}
- {name: WeVPN DK ๐ฉ๐ฐ Copenhagen, server: 37.120.194.82, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2V7N5kGUghaLxF4aUqTw}
- {name: WeVPN IE ๐ฎ๐ช Dublin, server: 217.138.222.138, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: AsLgDbA45KTMXumtzWhf}
- {name: WeVPN DE ๐ฉ๐ช Frankfurt, server: 45.141.152.178, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: FTvsfXCvXLPFEMKNSADr}
- {name: WeVPN FI ๐ซ๐ฎ Helsinki, server: 185.212.149.152, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: SxFvGWWUtEjyQnGbggq2}
- {name: WeVPN FI ๐ซ๐ฎ Oulu, server: 188.126.89.174, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: SkGJxCjsuc8DJsB2GtM4}
- {name: WeVPN UA ๐บ๐ฆ Kyiv, server: 37.19.218.197, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Mx6DztQqZb7j34FdWjER}
- {name: WeVPN PT ๐ต๐น Lisbon, server: 185.90.57.152, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: qSnstpCypymLvPeyLRqf}
- {name: WeVPN GB ๐ฌ๐ง London, server: 45.141.154.234, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: sHWJUzzQUXtQSR2P6HNJ}
- {name: WeVPN GB ๐ฌ๐ง London-PF, server: 77.243.177.78, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Qu9b6jbYLF5Dtha3n7W2}
- {name: WeVPN GB ๐ฌ๐ง Manchester, server: 86.106.136.98, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: h6WG7sxsLTBGn7uyvMG8}
- {name: WeVPN LU ๐ฑ๐บ Luxembourg, server: 5.253.204.194, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: qLzS7DF9qRYxJTHfckhC}
- {name: WeVPN ES ๐ช๐ธ Madrid, server: 45.152.183.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: r4MP5DzDNmAqbBHzbSXw}
- {name: WeVPN IT ๐ฎ๐น Milan, server: 217.138.197.138, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: dsHq7JmRFhSkvxzCuMFy}
- {name: WeVPN NO ๐ณ๐ด Oslo, server: 84.247.50.10, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: AsLgDbA45KTMXumtzWhf}
- {name: WeVPN FR ๐ซ๐ท Paris, server: 37.120.136.234, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Xd2xnHT8tYkVt5BDk92b}
- {name: WeVPN CZ ๐จ๐ฟ Prague, server: 217.138.199.138, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: S4w7wHjBRxCVkxZLgTaN}
- {name: WeVPN BG ๐ง๐ฌ Sofia, server: 217.138.221.42, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: r4MP5DzDNmAqbBHzbSXw}
- {name: WeVPN SE ๐ธ๐ช Stockholm, server: 45.83.91.66, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: fAmKHf3Dft78ZyzL9kYF}
- {name: WeVPN AT ๐ฆ๐น Vienna, server: 37.120.212.162, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 2XtmwMEgsVJYKWF4VjkL}
- {name: WeVPN PL ๐ต๐ฑ Warsaw, server: 217.138.209.122, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: CxgRTZRE5urVfbbnGSyr}
- {name: WeVPN CH ๐จ๐ญ Zurich, server: 37.120.137.82, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: EGTHtnGhcnggx5yBYSqS}
- {name: WeVPN NZ ๐ณ๐ฟ Auckland, server: 103.108.94.226, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: bFfLrvbG3GjjNSxKBWt5}
- {name: WeVPN VN ๐ป๐ณ Hanoi, server: 188.214.152.194, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: t8BFcaM3GSCw5FHbph27}
- {name: WeVPN HK ๐ญ๐ฐ Hong Kong, server: 84.17.37.55, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: tjwRqQvteAjt3xFmbZTA}
- {name: WeVPN ID ๐ฎ๐ฉ Jakarta, server: 45.133.181.58, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: qzj5NqakK4YvYYU87eFF}
- {name: WeVPN PH ๐ต๐ญ Manila, server: 188.214.125.106, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Zq4srheW4eeqMfGeWMTG}
- {name: WeVPN AU ๐ฆ๐บ Melbourne, server: 116.206.230.130, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: zaNeDgu9mZKpEMTHQJy8}
- {name: WeVPN AU ๐ฆ๐บ Sydney, server: 46.102.153.106, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: dsHq7JmRFhSkvxzCuMFy}
- {name: WeVPN RU ๐ท๐บ Moscow, server: 80.93.181.194, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: BjnLULGTNTBUCvuSaW8f}
- {name: WeVPN RU ๐ท๐บ St Petersburg, server: 82.202.220.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Kw6hMXQ2Z7ey7mf2Uqyr}
- {name: WeVPN KR ๐ฐ๐ท Seoul, server: 169.56.83.206, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: V9eSCwLbC8xS97e3Brm3}
- {name: WeVPN My ๐ฒ๐พ Sibu, server: 223.25.246.4, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: w4GUD28Bw9uCMdbc2pqA}
- {name: WeVPN SG ๐ธ๐ฌ Singapore, server: 84.17.38.144, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: gTYdduTTEBBdVZ4LcBnT}
- {name: WeVPN TW ๐น๐ผ Taipei, server: 188.214.106.98, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: cNbqVVyUfbJFZ6S8EgRH}
- {name: WeVPN JP ๐ฏ๐ต Tokyo, server: 84.17.34.8, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: FuynHKjkzhBnmcLpaLKm}
- {name: WeVPN EG ๐ช๐ฌ Cairo, server: 188.214.122.138, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QhtEqbEtn74KsTUM4MUg}
- {name: WeVPN IN ๐ฎ๐ณ Chennai, server: 169.38.107.52, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 7D4GYNDaFy4eebe47tvF}
- {name: WeVPN TR ๐น๐ท Denizli, server: 95.173.161.240, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: fmxeGazCbFkCtsBFhRZc}
- {name: WeVPN AE ๐ฆ๐ช Dubai, server: 217.138.193.42, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: kGm85U8ewgPXbKr5LGxc}
- {name: WeVPN ZA ๐ฟ๐ฆ Johannesburg, server: 102.165.20.38, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: VLGVpK9npKaFqBLHcnu9}
- {name: WeVPN NG ๐ณ๐ฌ Lagos, server: 102.129.144.142, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QzTsOpqsdj29bWqIqWR6}
- {name: WeVPN IL ๐ฎ๐ฑ Tel Aviv, server: 212.199.61.55, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: scDj68fv6xkMg2np9RgW}
- {name: Norway, server: 46.29.218.170, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: Norway 2, server: 46.29.218.170, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 3, server: 46.29.218.170, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: Norway 4, server: 46.29.218.170, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: Norway 5, server: 46.29.218.170, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 6, server: 46.29.218.170, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: Norway 7, server: 46.29.218.146, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: Norway 8, server: 46.29.218.146, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: Norway 9, server: 46.29.218.146, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 10, server: 46.29.218.146, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: Norway 11, server: 46.29.218.146, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: Norway 12, server: 46.29.218.146, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: Norway 13, server: 46.29.218.146, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: Norway 14, server: 46.29.219.246, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: Norway 15, server: 46.29.219.246, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: Norway 16, server: 46.29.219.246, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 17, server: 46.29.219.246, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: Norway 18, server: 46.29.219.246, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: Norway 19, server: 46.29.219.246, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 20, server: 46.29.219.246, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 21, server: 46.29.218.6, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: Norway 22, server: 46.29.218.6, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 23, server: 46.29.218.6, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: Norway 25, server: 46.29.218.6, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: Norway 26, server: 46.29.218.6, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: Norway 27, server: 46.29.218.6, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ญ๐ฐ Hong Kong 5, server: 118.107.244.113, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐ญ๐ฐ Hong Kong 6, server: 118.107.244.113, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐ญ๐ฐ Hong Kong 7, server: 118.107.244.113, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐ญ๐ฐ Hong Kong 8, server: 118.107.244.113, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐ญ๐ฐ Hong Kong 9, server: 118.107.244.113, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐ญ๐ฐ Hong Kong 10, server: 118.107.244.113, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐ญ๐ฐ Hong Kong 11, server: 118.107.244.109, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐ญ๐ฐ Hong Kong 12, server: 118.107.244.109, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐ญ๐ฐ Hong Kong 13, server: 118.107.244.109, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ญ๐ฐ Hong Kong 14, server: 118.107.244.109, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฎ๐ณ India, server: 192.46.209.17, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐ฎ๐ณ India 7, server: 192.46.210.73, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฎ๐ณ India 8, server: 192.46.210.73, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐ฎ๐ณ India 9, server: 192.46.209.215, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐ฎ๐ณ India 10, server: 192.46.209.215, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐ฎ๐ณ India 13, server: 192.46.209.120, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐ฏ๐ต Japan 13, server: 85.208.108.134, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐ฏ๐ต Japan 14, server: 85.208.108.134, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐ฏ๐ต Japan 15, server: 85.208.108.134, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฏ๐ต Japan 16, server: 85.208.108.134, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐ฏ๐ต Japan 17, server: 85.208.108.134, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐ฏ๐ต Japan 31, server: 85.208.110.2, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐ฏ๐ต Japan 32, server: 85.208.110.2, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐ฏ๐ต Japan 33, server: 85.208.110.2, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐ฏ๐ต Japan 34, server: 85.208.110.2, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐ฏ๐ต Japan 35, server: 85.208.110.2, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐ฏ๐ต Japan 36, server: 85.208.110.2, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฏ๐ต Japan 37, server: 85.208.110.2, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: "๐ฐ๐ท Korea, Republic of", server: 141.164.47.208, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: "๐ฐ๐ท Korea, Republic of 2", server: 141.164.47.208, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 3", server: 141.164.47.208, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: "๐ฐ๐ท Korea, Republic of 4", server: 141.164.47.208, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: "๐ฐ๐ท Korea, Republic of 5", server: 141.164.47.208, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: "๐ฐ๐ท Korea, Republic of 7", server: 141.164.47.208, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: "๐ฐ๐ท Korea, Republic of 8", server: 158.247.200.56, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: "๐ฐ๐ท Korea, Republic of 9", server: 158.247.200.56, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: "๐ฐ๐ท Korea, Republic of 10", server: 158.247.200.56, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 11", server: 158.247.219.68, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: "๐ฐ๐ท Korea, Republic of 12", server: 158.247.219.68, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: "๐ฐ๐ท Korea, Republic of 13", server: 158.247.219.68, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 14", server: 158.247.219.68, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: "๐ฐ๐ท Korea, Republic of 15", server: 158.247.223.116, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: "๐ฐ๐ท Korea, Republic of 16", server: 158.247.223.116, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 17", server: 158.247.223.116, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 18", server: 158.247.223.116, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "๐ฐ๐ท Korea, Republic of 19", server: 158.247.223.116, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: "๐ฐ๐ท Korea, Republic of 20", server: 158.247.223.116, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 27", server: 141.164.56.250, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: "๐ฐ๐ท Korea, Republic of 28", server: 141.164.56.250, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: "๐ฐ๐ท Korea, Republic of 29", server: 141.164.56.250, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 30", server: 141.164.56.250, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: "๐ฐ๐ท Korea, Republic of 31", server: 141.164.56.250, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: "๐ฐ๐ท Korea, Republic of 32", server: 141.164.56.250, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "๐ฐ๐ท Korea, Republic of 33", server: 141.164.56.250, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 34", server: 158.247.227.123, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 35", server: 158.247.227.123, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: "๐ฐ๐ท Korea, Republic of 36", server: 158.247.227.123, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: "๐ฐ๐ท Korea, Republic of 37", server: 158.247.227.123, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: "๐ฐ๐ท Korea, Republic of 38", server: 158.247.227.123, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 39", server: 158.247.224.123, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "๐ฐ๐ท Korea, Republic of 40", server: 158.247.224.123, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 41", server: 158.247.224.123, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: "๐ฐ๐ท Korea, Republic of 42", server: 158.247.224.123, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: "๐ฐ๐ท Korea, Republic of 43", server: 158.247.224.123, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: "๐ฐ๐ท Korea, Republic of 44", server: 158.247.224.123, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: "๐ฐ๐ท Korea, Republic of 45", server: 158.247.224.123, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: "๐ฐ๐ท Korea, Republic of 46", server: 158.247.201.207, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: "๐ฐ๐ท Korea, Republic of 47", server: 158.247.201.207, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: "๐ฐ๐ท Korea, Republic of 48", server: 158.247.201.207, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: "๐ฐ๐ท Korea, Republic of 49", server: 141.164.38.135, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: "๐ฐ๐ท Korea, Republic of 50", server: 141.164.38.135, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: "๐ฐ๐ท Korea, Republic of 51", server: 141.164.38.135, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: "๐ฐ๐ท Korea, Republic of 52", server: 158.247.213.165, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: "๐ฐ๐ท Korea, Republic of 53", server: 158.247.213.165, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: "๐ฐ๐ท Korea, Republic of 54", server: 158.247.213.165, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: "๐ฐ๐ท Korea, Republic of 55", server: 158.247.213.165, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 56", server: 158.247.209.92, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 57", server: 158.247.209.92, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 58", server: 158.247.209.92, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 59", server: 141.164.49.240, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 60", server: 141.164.49.240, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 61", server: 141.164.49.240, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: "๐ฐ๐ท Korea, Republic of 62", server: 158.247.226.61, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: "๐ฐ๐ท Korea, Republic of 63", server: 158.247.226.61, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: "๐ฐ๐ท Korea, Republic of 64", server: 158.247.226.61, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: "๐ฐ๐ท Korea, Republic of 65", server: 141.164.56.110, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 66", server: 141.164.56.110, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: "๐ฐ๐ท Korea, Republic of 67", server: 141.164.56.110, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: "๐ฐ๐ท Korea, Republic of 68", server: 141.164.46.233, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: "๐ฐ๐ท Korea, Republic of 69", server: 141.164.46.233, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: "๐ฐ๐ท Korea, Republic of 70", server: 141.164.46.233, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐ฆ๐บ Australia 7, server: 192.53.169.116, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐ฌ๐ง United Kingdom, server: 172.99.190.235, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฌ๐ง United Kingdom 2, server: 172.99.190.235, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฌ๐ง United Kingdom 3, server: 172.99.190.235, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฌ๐ง United Kingdom 4, server: 172.99.190.235, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐ฌ๐ง United Kingdom 5, server: 172.99.190.235, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐ฌ๐ง United Kingdom 6, server: 172.99.190.235, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐ฌ๐ง United Kingdom 7, server: 172.99.190.246, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐ฌ๐ง United Kingdom 8, server: 172.99.190.246, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐ฌ๐ง United Kingdom 9, server: 172.99.190.246, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐ฌ๐ง United Kingdom 13, server: 82.145.41.125, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐ฌ๐ง United Kingdom 16, server: 172.99.190.232, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐ฌ๐ง United Kingdom 17, server: 149.7.16.10, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐ฌ๐ง United Kingdom 18, server: 149.7.16.10, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐ฌ๐ง United Kingdom 19, server: 149.7.16.10, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐ฌ๐ง United Kingdom 20, server: 172.99.190.230, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฌ๐ง United Kingdom 22, server: 172.99.190.230, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐ฌ๐ง United Kingdom 33, server: 172.99.190.61, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐ฌ๐ง United Kingdom 34, server: 172.99.190.61, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐ฌ๐ง United Kingdom 35, server: 172.99.190.61, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐ฌ๐ง United Kingdom 36, server: 172.99.190.61, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐ฌ๐ง United Kingdom 37, server: 172.99.190.61, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐ฌ๐ง United Kingdom 38, server: 172.99.190.61, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐ฌ๐ง United Kingdom 48, server: 172.99.190.84, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐บ๐ธ United States, server: 172.99.188.99, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐บ๐ธ United States 2, server: 172.99.188.99, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐บ๐ธ United States 3, server: 172.99.188.99, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 4, server: 172.99.188.99, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 5, server: 172.99.188.99, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐บ๐ธ United States 6, server: 172.99.188.99, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐บ๐ธ United States 7, server: 172.99.188.99, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 8, server: 142.202.48.114, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐บ๐ธ United States 9, server: 142.202.48.114, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐บ๐ธ United States 10, server: 142.202.48.114, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 11, server: 142.202.48.99, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐บ๐ธ United States 12, server: 142.202.48.99, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐บ๐ธ United States 13, server: 142.202.48.99, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 14, server: 142.202.48.99, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐บ๐ธ United States 15, server: 142.202.48.34, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 16, server: 142.202.48.34, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 17, server: 142.202.48.34, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 18, server: 142.202.48.45, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐บ๐ธ United States 19, server: 142.202.48.45, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 20, server: 142.202.48.45, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐บ๐ธ United States 21, server: 142.202.48.45, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 22, server: 142.202.48.45, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐บ๐ธ United States 23, server: 142.202.48.45, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐บ๐ธ United States 24, server: 142.202.48.45, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐บ๐ธ United States 26, server: 142.202.48.74, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐บ๐ธ United States 27, server: 142.202.48.74, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐บ๐ธ United States 28, server: 142.202.48.74, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 29, server: 142.202.48.74, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐บ๐ธ United States 30, server: 167.88.63.93, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 31, server: 167.88.63.93, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐บ๐ธ United States 32, server: 167.88.63.93, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐บ๐ธ United States 33, server: 167.88.63.61, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 34, server: 167.88.63.61, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐บ๐ธ United States 35, server: 167.88.63.61, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐บ๐ธ United States 37, server: 167.88.62.24, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐บ๐ธ United States 38, server: 167.88.62.24, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐บ๐ธ United States 39, server: 167.88.62.24, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐บ๐ธ United States 40, server: 167.88.62.24, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐บ๐ธ United States 41, server: 167.88.62.24, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 42, server: 167.88.62.24, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 43, server: 167.88.63.108, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 44, server: 167.88.63.108, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐บ๐ธ United States 54, server: 169.197.142.47, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐บ๐ธ United States 61, server: 167.88.61.213, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐บ๐ธ United States 64, server: 167.88.63.99, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐บ๐ธ United States 65, server: 167.88.63.99, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐บ๐ธ United States 66, server: 167.88.63.99, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐บ๐ธ United States 69, server: 169.197.143.192, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐จ๐ฆ Canada, server: 134.195.196.217, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐จ๐ฆ Canada 2, server: 134.195.196.217, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 3, server: 134.195.196.217, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐จ๐ฆ Canada 4, server: 134.195.196.230, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐จ๐ฆ Canada 5, server: 134.195.196.230, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐จ๐ฆ Canada 6, server: 134.195.196.230, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐จ๐ฆ Canada 7, server: 134.195.196.230, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐จ๐ฆ Canada 8, server: 134.195.196.230, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐จ๐ฆ Canada 9, server: 134.195.196.230, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐จ๐ฆ Canada 10, server: 134.195.196.230, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐จ๐ฆ Canada 11, server: 134.195.196.149, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 12, server: 134.195.196.149, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐จ๐ฆ Canada 13, server: 134.195.196.149, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐จ๐ฆ Canada 14, server: 134.195.196.149, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐จ๐ฆ Canada 15, server: 134.195.196.56, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐จ๐ฆ Canada 16, server: 134.195.196.56, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐จ๐ฆ Canada 17, server: 134.195.196.56, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐จ๐ฆ Canada 18, server: 134.195.196.36, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG}
- {name: ๐จ๐ฆ Canada 19, server: 134.195.196.36, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 20, server: 134.195.196.36, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 21, server: 134.195.196.36, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 22, server: 134.195.196.219, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐จ๐ฆ Canada 23, server: 134.195.196.219, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐จ๐ฆ Canada 24, server: 134.195.196.219, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 25, server: 134.195.196.219, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐จ๐ฆ Canada 26, server: 134.195.196.219, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 27, server: 134.195.196.219, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
- {name: ๐จ๐ฆ Canada 28, server: 134.195.196.219, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐จ๐ฆ Canada 29, server: 134.195.196.64, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 30, server: 134.195.196.64, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7}
- {name: ๐จ๐ฆ Canada 31, server: 134.195.196.107, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 32, server: 134.195.196.107, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 33, server: 134.195.196.107, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐จ๐ฆ Canada 34, server: 134.195.196.184, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐จ๐ฆ Canada 35, server: 134.195.196.184, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐จ๐ฆ Canada 36, server: 134.195.196.184, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐จ๐ฆ Canada 37, server: 134.195.196.184, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐จ๐ฆ Canada 38, server: 134.195.196.184, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐จ๐ฆ Canada 39, server: 134.195.196.184, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 40, server: 134.195.196.184, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 41, server: 134.195.196.44, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐จ๐ฆ Canada 42, server: 134.195.196.44, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 43, server: 134.195.196.71, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS}
- {name: ๐จ๐ฆ Canada 44, server: 134.195.196.71, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐จ๐ฆ Canada 45, server: 134.195.196.24, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐จ๐ฆ Canada 46, server: 134.195.196.24, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 47, server: 134.195.196.24, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 48, server: 134.195.196.147, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 49, server: 134.195.196.147, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 50, server: 134.195.196.147, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 51, server: 134.195.196.199, port: 445, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v}
- {name: ๐จ๐ฆ Canada 52, server: 134.195.196.199, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 53, server: 134.195.196.199, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC}
- {name: ๐จ๐ฆ Canada 54, server: 134.195.196.130, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐จ๐ฆ Canada 55, server: 134.195.196.130, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 57, server: 134.195.196.12, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 58, server: 134.195.196.12, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP}
- {name: ๐จ๐ฆ Canada 59, server: 134.195.196.12, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4}
- {name: ๐จ๐ฆ Canada 60, server: 134.195.196.12, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 61, server: 134.195.196.214, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐จ๐ฆ Canada 62, server: 134.195.196.214, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27}
- {name: ๐จ๐ฆ Canada 63, server: 134.195.196.214, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐จ๐ฆ Canada 64, server: 134.195.196.214, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN}
- {name: ๐จ๐ฆ Canada 65, server: 134.195.196.214, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐จ๐ฆ Canada 66, server: 134.195.196.214, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐จ๐ฆ Canada 67, server: 134.195.196.214, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm}
- {name: ๐จ๐ฆ Canada 68, server: 134.195.196.110, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY}
- {name: ๐จ๐ฆ Canada 69, server: 134.195.196.110, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74}
- {name: ๐จ๐ฆ Canada 70, server: 134.195.196.231, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM}
- {name: ๐จ๐ฆ Canada 71, server: 134.195.196.231, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId}
proxy-groups:
- name: ๐ LIST
type: select
proxies:
- AUTO All โป๏ธ
- AUTO UFO โป๏ธ
- AUTO WeVPN โป๏ธ
- AUTO Aloha โป๏ธ
- AUTO Speedy Quark โป๏ธ
- AUTO XY VPN โป๏ธ
- AUTO Private VPN โป๏ธ
- AUTO Others โป๏ธ
- ๐ฐ Select
- name: ๐ฐ Select
type: select
proxies:
- ๐ซ๐ท UFO Paris 6
- ๐ฎ๐น UFO Milan 4
- ๐ฌ๐ง UFO London 5
- ๐ฉ๐ช UFO Frankfurt 3
- ๐บ๐ธ UFO NewYork
- ๐บ๐ธ UFO LosAngeles
- ๐บ๐ธ UFO Seattle
- ๐ฏ๐ต UFO Tokyo 3
- ๐ฏ๐ต UFO Tokyo 4
- ๐ฏ๐ต UFO Tokyo 5
- "Aloha Argentina ๐ฆ๐ท Buenos Aires"
- "Aloha Australia ๐ฆ๐บ Sydney"
- "Aloha Colombia ๐จ๐ด Bogota"
- "Aloha Cyprus ๐จ๐พ Nicosia"
- "Aloha Germany ๐ฉ๐ช Dรผsseldorf"
- "Aloha Germany ๐ฉ๐ช Limburg an der Lahn"
- "Aloha Germany ๐ฉ๐ช Nuremberg"
- "Aloha Greece ๐ฌ๐ท Thessaloniki"
- "Aloha Hong Kong ๐ญ๐ฐ Central"
- "Aloha Hungary ๐ญ๐บ Budapest"
- "Aloha Iceland ๐ฎ๐ธ Hafnarfjordur"
- "Aloha India ๐ฎ๐ณ Jaipur"
- "Aloha Indonesia ๐ฎ๐ฉ Jakarta"
- "Aloha Isle of Man ๐ฎ๐ฒ Douglas"
- "Aloha Italy ๐ฎ๐น Milan"
- "Aloha Japan ๐ฏ๐ต Tokyo"
- "Aloha Latvia ๐ฑ๐ป Riga"
- "Aloha Luxembourg ๐ฑ๐บ Luxembourg"
- "Aloha Moldova ๐ฒ๐ฉ Chisinau"
- "Aloha North Macedonia ๐ฒ๐ฐ Skopje"
- "Aloha Romania ๐ท๐ด Bucharest"
- "Aloha Serbia ๐ท๐ธ Belgrade"
- "Aloha Singapore ๐ธ๐ฌ Singapore"
- "Aloha Slovakia ๐ธ๐ฐ Bratislava"
- "Aloha Slovenia ๐ธ๐ฎ Ljubljana"
- "Aloha South Korea ๐ฐ๐ท Seoul"
- "Aloha Spain ๐ช๐ธ Seville"
- "Aloha Switzerland ๐จ๐ญ Zurich"
- "Aloha Taiwan ๐น๐ผ Taipei"
- "Aloha Ukraine ๐บ๐ฆ Kharkiv"
- "Aloha United Kingdom ๐ฌ๐ง London"
- "Aloha United States ๐บ๐ธ Ashburn 1"
- "Aloha United States ๐บ๐ธ Ashburn 2"
- "Aloha United States ๐บ๐ธ Ashburn 5"
- "Aloha Vietnam ๐ป๐ณ Ho Chi Minh City"
- "Speedy Quark Azerbaijan ๐ฆ๐ฟ Baku"
- "Speedy Quark Denmark ๐ฉ๐ฐ Copenhagen"
- "Speedy Quark Germany ๐ฉ๐ช LimburganderLahn"
- "Speedy Quark Greece ๐ฌ๐ท Athens"
- "Speedy Quark Hungary ๐ญ๐บ Budapest"
- "Speedy Quark Israel ๐ฎ๐ฑ Haifa 1"
- "Speedy Quark Israel ๐ฎ๐ฑ Haifa 3"
- "Speedy Quark Israel ๐ฎ๐ฑ Haifa 4"
- "Speedy Quark Japan ๐ฏ๐ต Tokyo"
- "Speedy Quark Norway ๐ณ๐ด Oslo"
- "Speedy Quark Romania ๐ท๐ด Iasi"
- "Speedy Quark Sweden ๐ธ๐ช Stockholm"
- "Speedy Quark Turkey ๐น๐ท Istanbul 1"
- "Speedy Quark Turkey ๐น๐ท Istanbul 2"
- "Speedy Quark Turkey ๐น๐ท Istanbul 5"
- "Speedy Quark Thailand ๐น๐ญ Bangkok"
- "Speedy Quark UK ๐ฌ๐ง London 1"
- "Speedy Quark UK ๐ฌ๐ง London 3"
- "Speedy Quark USA ๐บ๐ธ Los Angeles 1"
- "Speedy Quark USA ๐บ๐ธ Los Angeles 2"
- "Speedy Quark USA ๐บ๐ธ Los Angeles 3"
- "Speedy Quark USA ๐บ๐ธ New Memphis 1"
- "Speedy Quark USA ๐บ๐ธ New Memphis 2"
- "Speedy Quark USA ๐บ๐ธ San Jose"
- "Speedy Quark USA ๐บ๐ธ Santa Clara"
- "XY VPN USA ๐บ๐ธ Dalas"
- "XY VPN USA ๐บ๐ธ New York"
- "XY VPN UK ๐ฌ๐ง London"
- "XY VPN Canada ๐จ๐ฆ Toronto"
- "XY VPN India ๐ฎ๐ณ Mumbai"
- "XY VPN Canada ๐จ๐ฆ Montreal"
- "XY VPN France ๐ซ๐ท Roubaix"
- "XY VPN Germany ๐ฉ๐ช frankfurtAMmain"
- "XY VPN Germany ๐ฉ๐ช Dusseldorf 1"
- "XY VPN Germany ๐ฉ๐ช Dusseldorf 2"
- "XY VPN Italy ๐ฎ๐น Milan 1"
- "XY VPN Italy ๐ฎ๐น Milan 2"
- "XY VPN Norway ๐ณ๐ด Kristiansad 1"
- "XY VPN Norway ๐ณ๐ด Kristiansad 3"
- "XY VPN Poland ๐ณ๐ด Warsaw 1"
- "XY VPN Poland ๐ณ๐ด Warsaw 2"
- "Private VPN USA ๐บ๐ธ New Jersey"
- "Private VPN USA ๐บ๐ธ California"
- "Private VPN France ๐ซ๐ท Paris"
- "Private VPN Singapore ๐ธ๐ฌ Singapore"
- "Private VPN UK ๐ฌ๐ง London"
- WeVPN US ๐บ๐ธ Atlanta
- WeVPN US ๐บ๐ธ Chicago
- WeVPN US ๐บ๐ธ Dallas
- WeVPN US ๐บ๐ธ Denver
- WeVPN US ๐บ๐ธ Los Angeles
- WeVPN US ๐บ๐ธ Los Angeles-PF
- WeVPN US ๐บ๐ธ Miami
- WeVPN US ๐บ๐ธ New Jersey
- WeVPN US ๐บ๐ธ New York
- WeVPN US ๐บ๐ธ New York-PF
- WeVPN US ๐บ๐ธ Phoenix
- WeVPN US ๐บ๐ธ Salt Lake City
- WeVPN US ๐บ๐ธ San Jose
- WeVPN US ๐บ๐ธ Seattle
- WeVPN US ๐บ๐ธ Washington DC
- WeVPN AR ๐ฆ๐ท Buenos Aires
- WeVPN MX ๐ฒ๐ฝ Mexico City
- WeVPN BR ๐ง๐ท Sao Paulo
- WeVPN CA ๐จ๐ฆ Montreal
- WeVPN CA ๐จ๐ฆ Toronto
- WeVPN CA ๐จ๐ฆ Vancouver
- WeVPN NL ๐ณ๐ฑ Amsterdam
- WeVPN GR ๐ฌ๐ท Athens
- WeVPN RS ๐ท๐ธ Belgrade
- WeVPN BE ๐ง๐ช Brussels
- WeVPN RO ๐ท๐ด Bucharest
- WeVPN HU ๐ญ๐บ Budapest
- WeVPN DK ๐ฉ๐ฐ Copenhagen
- WeVPN IE ๐ฎ๐ช Dublin
- WeVPN DE ๐ฉ๐ช Frankfurt
- WeVPN FI ๐ซ๐ฎ Helsinki
- WeVPN FI ๐ซ๐ฎ Oulu
- WeVPN UA ๐บ๐ฆ Kyiv
- WeVPN PT ๐ต๐น Lisbon
- WeVPN GB ๐ฌ๐ง London
- WeVPN GB ๐ฌ๐ง London-PF
- WeVPN GB ๐ฌ๐ง Manchester
- WeVPN LU ๐ฑ๐บ Luxembourg
- WeVPN ES ๐ช๐ธ Madrid
- WeVPN IT ๐ฎ๐น Milan
- WeVPN NO ๐ณ๐ด Oslo
- WeVPN FR ๐ซ๐ท Paris
- WeVPN CZ ๐จ๐ฟ Prague
- WeVPN BG ๐ง๐ฌ Sofia
- WeVPN SE ๐ธ๐ช Stockholm
- WeVPN AT ๐ฆ๐น Vienna
- WeVPN PL ๐ต๐ฑ Warsaw
- WeVPN CH ๐จ๐ญ Zurich
- WeVPN NZ ๐ณ๐ฟ Auckland
- WeVPN VN ๐ป๐ณ Hanoi
- WeVPN HK ๐ญ๐ฐ Hong Kong
- WeVPN ID ๐ฎ๐ฉ Jakarta
- WeVPN PH ๐ต๐ญ Manila
- WeVPN AU ๐ฆ๐บ Melbourne
- WeVPN AU ๐ฆ๐บ Sydney
- WeVPN RU ๐ท๐บ Moscow
- WeVPN RU ๐ท๐บ St Petersburg
- WeVPN KR ๐ฐ๐ท Seoul
- WeVPN My ๐ฒ๐พ Sibu
- WeVPN SG ๐ธ๐ฌ Singapore
- WeVPN TW ๐น๐ผ Taipei
- WeVPN JP ๐ฏ๐ต Tokyo
- WeVPN EG ๐ช๐ฌ Cairo
- WeVPN IN ๐ฎ๐ณ Chennai
- WeVPN TR ๐น๐ท Denizli
- WeVPN AE ๐ฆ๐ช Dubai
- WeVPN ZA ๐ฟ๐ฆ Johannesburg
- WeVPN NG ๐ณ๐ฌ Lagos
- WeVPN IL ๐ฎ๐ฑ Tel Aviv
- Norway
- Norway 2
- Norway 3
- Norway 4
- Norway 5
- Norway 6
- Norway 7
- Norway 8
- Norway 9
- Norway 10
- Norway 11
- Norway 12
- Norway 13
- Norway 14
- Norway 15
- Norway 16
- Norway 17
- Norway 18
- Norway 19
- Norway 20
- Norway 21
- Norway 22
- Norway 23
- Norway 25
- Norway 26
- Norway 27
- ๐ญ๐ฐ Hong Kong 5
- ๐ญ๐ฐ Hong Kong 6
- ๐ญ๐ฐ Hong Kong 7
- ๐ญ๐ฐ Hong Kong 8
- ๐ญ๐ฐ Hong Kong 9
- ๐ญ๐ฐ Hong Kong 10
- ๐ญ๐ฐ Hong Kong 11
- ๐ญ๐ฐ Hong Kong 12
- ๐ญ๐ฐ Hong Kong 13
- ๐ญ๐ฐ Hong Kong 14
- ๐ฎ๐ณ India
- ๐ฎ๐ณ India 7
- ๐ฎ๐ณ India 8
- ๐ฎ๐ณ India 9
- ๐ฎ๐ณ India 10
- ๐ฎ๐ณ India 13
- ๐ฏ๐ต Japan 13
- ๐ฏ๐ต Japan 14
- ๐ฏ๐ต Japan 15
- ๐ฏ๐ต Japan 16
- ๐ฏ๐ต Japan 17
- ๐ฏ๐ต Japan 31
- ๐ฏ๐ต Japan 32
- ๐ฏ๐ต Japan 33
- ๐ฏ๐ต Japan 34
- ๐ฏ๐ต Japan 35
- ๐ฏ๐ต Japan 36
- ๐ฏ๐ต Japan 37
- ๐ฐ๐ท Korea, Republic of
- ๐ฐ๐ท Korea, Republic of 2
- ๐ฐ๐ท Korea, Republic of 3
- ๐ฐ๐ท Korea, Republic of 4
- ๐ฐ๐ท Korea, Republic of 5
- ๐ฐ๐ท Korea, Republic of 7
- ๐ฐ๐ท Korea, Republic of 8
- ๐ฐ๐ท Korea, Republic of 9
- ๐ฐ๐ท Korea, Republic of 10
- ๐ฐ๐ท Korea, Republic of 11
- ๐ฐ๐ท Korea, Republic of 12
- ๐ฐ๐ท Korea, Republic of 13
- ๐ฐ๐ท Korea, Republic of 14
- ๐ฐ๐ท Korea, Republic of 15
- ๐ฐ๐ท Korea, Republic of 16
- ๐ฐ๐ท Korea, Republic of 17
- ๐ฐ๐ท Korea, Republic of 18
- ๐ฐ๐ท Korea, Republic of 19
- ๐ฐ๐ท Korea, Republic of 20
- ๐ฐ๐ท Korea, Republic of 27
- ๐ฐ๐ท Korea, Republic of 28
- ๐ฐ๐ท Korea, Republic of 29
- ๐ฐ๐ท Korea, Republic of 30
- ๐ฐ๐ท Korea, Republic of 31
- ๐ฐ๐ท Korea, Republic of 32
- ๐ฐ๐ท Korea, Republic of 33
- ๐ฐ๐ท Korea, Republic of 34
- ๐ฐ๐ท Korea, Republic of 35
- ๐ฐ๐ท Korea, Republic of 36
- ๐ฐ๐ท Korea, Republic of 37
- ๐ฐ๐ท Korea, Republic of 38
- ๐ฐ๐ท Korea, Republic of 39
- ๐ฐ๐ท Korea, Republic of 40
- ๐ฐ๐ท Korea, Republic of 41
- ๐ฐ๐ท Korea, Republic of 42
- ๐ฐ๐ท Korea, Republic of 43
- ๐ฐ๐ท Korea, Republic of 44
- ๐ฐ๐ท Korea, Republic of 45
- ๐ฐ๐ท Korea, Republic of 46
- ๐ฐ๐ท Korea, Republic of 47
- ๐ฐ๐ท Korea, Republic of 48
- ๐ฐ๐ท Korea, Republic of 49
- ๐ฐ๐ท Korea, Republic of 50
- ๐ฐ๐ท Korea, Republic of 51
- ๐ฐ๐ท Korea, Republic of 52
- ๐ฐ๐ท Korea, Republic of 53
- ๐ฐ๐ท Korea, Republic of 54
- ๐ฐ๐ท Korea, Republic of 55
- ๐ฐ๐ท Korea, Republic of 56
- ๐ฐ๐ท Korea, Republic of 57
- ๐ฐ๐ท Korea, Republic of 58
- ๐ฐ๐ท Korea, Republic of 59
- ๐ฐ๐ท Korea, Republic of 60
- ๐ฐ๐ท Korea, Republic of 61
- ๐ฐ๐ท Korea, Republic of 62
- ๐ฐ๐ท Korea, Republic of 63
- ๐ฐ๐ท Korea, Republic of 64
- ๐ฐ๐ท Korea, Republic of 65
- ๐ฐ๐ท Korea, Republic of 66
- ๐ฐ๐ท Korea, Republic of 67
- ๐ฐ๐ท Korea, Republic of 68
- ๐ฐ๐ท Korea, Republic of 69
- ๐ฐ๐ท Korea, Republic of 70
- ๐ฆ๐บ Australia 7
- ๐ฌ๐ง United Kingdom
- ๐ฌ๐ง United Kingdom 2
- ๐ฌ๐ง United Kingdom 3
- ๐ฌ๐ง United Kingdom 4
- ๐ฌ๐ง United Kingdom 5
- ๐ฌ๐ง United Kingdom 6
- ๐ฌ๐ง United Kingdom 7
- ๐ฌ๐ง United Kingdom 8
- ๐ฌ๐ง United Kingdom 9
- ๐ฌ๐ง United Kingdom 13
- ๐ฌ๐ง United Kingdom 16
- ๐ฌ๐ง United Kingdom 17
- ๐ฌ๐ง United Kingdom 18
- ๐ฌ๐ง United Kingdom 19
- ๐ฌ๐ง United Kingdom 20
- ๐ฌ๐ง United Kingdom 22
- ๐ฌ๐ง United Kingdom 33
- ๐ฌ๐ง United Kingdom 34
- ๐ฌ๐ง United Kingdom 35
- ๐ฌ๐ง United Kingdom 36
- ๐ฌ๐ง United Kingdom 37
- ๐ฌ๐ง United Kingdom 38
- ๐ฌ๐ง United Kingdom 48
- ๐บ๐ธ United States
- ๐บ๐ธ United States 2
- ๐บ๐ธ United States 3
- ๐บ๐ธ United States 4
- ๐บ๐ธ United States 5
- ๐บ๐ธ United States 6
- ๐บ๐ธ United States 7
- ๐บ๐ธ United States 8
- ๐บ๐ธ United States 9
- ๐บ๐ธ United States 10
- ๐บ๐ธ United States 11
- ๐บ๐ธ United States 12
- ๐บ๐ธ United States 13
- ๐บ๐ธ United States 14
- ๐บ๐ธ United States 15
- ๐บ๐ธ United States 16
- ๐บ๐ธ United States 17
- ๐บ๐ธ United States 18
- ๐บ๐ธ United States 19
- ๐บ๐ธ United States 20
- ๐บ๐ธ United States 21
- ๐บ๐ธ United States 22
- ๐บ๐ธ United States 23
- ๐บ๐ธ United States 24
- ๐บ๐ธ United States 26
- ๐บ๐ธ United States 27
- ๐บ๐ธ United States 28
- ๐บ๐ธ United States 29
- ๐บ๐ธ United States 30
- ๐บ๐ธ United States 31
- ๐บ๐ธ United States 32
- ๐บ๐ธ United States 33
- ๐บ๐ธ United States 34
- ๐บ๐ธ United States 35
- ๐บ๐ธ United States 37
- ๐บ๐ธ United States 38
- ๐บ๐ธ United States 39
- ๐บ๐ธ United States 40
- ๐บ๐ธ United States 41
- ๐บ๐ธ United States 42
- ๐บ๐ธ United States 43
- ๐บ๐ธ United States 44
- ๐บ๐ธ United States 54
- ๐บ๐ธ United States 61
- ๐บ๐ธ United States 64
- ๐บ๐ธ United States 65
- ๐บ๐ธ United States 66
- ๐บ๐ธ United States 69
- ๐จ๐ฆ Canada
- ๐จ๐ฆ Canada 2
- ๐จ๐ฆ Canada 3
- ๐จ๐ฆ Canada 4
- ๐จ๐ฆ Canada 5
- ๐จ๐ฆ Canada 6
- ๐จ๐ฆ Canada 7
- ๐จ๐ฆ Canada 8
- ๐จ๐ฆ Canada 9
- ๐จ๐ฆ Canada 10
- ๐จ๐ฆ Canada 11
- ๐จ๐ฆ Canada 12
- ๐จ๐ฆ Canada 13
- ๐จ๐ฆ Canada 14
- ๐จ๐ฆ Canada 15
- ๐จ๐ฆ Canada 16
- ๐จ๐ฆ Canada 17
- ๐จ๐ฆ Canada 18
- ๐จ๐ฆ Canada 19
- ๐จ๐ฆ Canada 20
- ๐จ๐ฆ Canada 21
- ๐จ๐ฆ Canada 22
- ๐จ๐ฆ Canada 23
- ๐จ๐ฆ Canada 24
- ๐จ๐ฆ Canada 25
- ๐จ๐ฆ Canada 26
- ๐จ๐ฆ Canada 27
- ๐จ๐ฆ Canada 28
- ๐จ๐ฆ Canada 29
- ๐จ๐ฆ Canada 30
- ๐จ๐ฆ Canada 31
- ๐จ๐ฆ Canada 32
- ๐จ๐ฆ Canada 33
- ๐จ๐ฆ Canada 34
- ๐จ๐ฆ Canada 35
- ๐จ๐ฆ Canada 36
- ๐จ๐ฆ Canada 37
- ๐จ๐ฆ Canada 38
- ๐จ๐ฆ Canada 39
- ๐จ๐ฆ Canada 40
- ๐จ๐ฆ Canada 41
- ๐จ๐ฆ Canada 42
- ๐จ๐ฆ Canada 43
- ๐จ๐ฆ Canada 44
- ๐จ๐ฆ Canada 45
- ๐จ๐ฆ Canada 46
- ๐จ๐ฆ Canada 47
- ๐จ๐ฆ Canada 48
- ๐จ๐ฆ Canada 49
- ๐จ๐ฆ Canada 50
- ๐จ๐ฆ Canada 51
- ๐จ๐ฆ Canada 52
- ๐จ๐ฆ Canada 53
- ๐จ๐ฆ Canada 54
- ๐จ๐ฆ Canada 55
- ๐จ๐ฆ Canada 57
- ๐จ๐ฆ Canada 58
- ๐จ๐ฆ Canada 59
- ๐จ๐ฆ Canada 60
- ๐จ๐ฆ Canada 61
- ๐จ๐ฆ Canada 62
- ๐จ๐ฆ Canada 63
- ๐จ๐ฆ Canada 64
- ๐จ๐ฆ Canada 65
- ๐จ๐ฆ Canada 66
- ๐จ๐ฆ Canada 67
- ๐จ๐ฆ Canada 68
- ๐จ๐ฆ Canada 69
- ๐จ๐ฆ Canada 70
- ๐จ๐ฆ Canada 71
- name: AUTO WeVPN โป๏ธ
type: url-test
proxies:
- WeVPN US ๐บ๐ธ Atlanta
- WeVPN US ๐บ๐ธ Chicago
- WeVPN US ๐บ๐ธ Dallas
- WeVPN US ๐บ๐ธ Denver
- WeVPN US ๐บ๐ธ Los Angeles
- WeVPN US ๐บ๐ธ Los Angeles-PF
- WeVPN US ๐บ๐ธ Miami
- WeVPN US ๐บ๐ธ New Jersey
- WeVPN US ๐บ๐ธ New York
- WeVPN US ๐บ๐ธ New York-PF
- WeVPN US ๐บ๐ธ Phoenix
- WeVPN US ๐บ๐ธ Salt Lake City
- WeVPN US ๐บ๐ธ San Jose
- WeVPN US ๐บ๐ธ Seattle
- WeVPN US ๐บ๐ธ Washington DC
- WeVPN AR ๐ฆ๐ท Buenos Aires
- WeVPN MX ๐ฒ๐ฝ Mexico City
- WeVPN BR ๐ง๐ท Sao Paulo
- WeVPN CA ๐จ๐ฆ Montreal
- WeVPN CA ๐จ๐ฆ Toronto
- WeVPN CA ๐จ๐ฆ Vancouver
- WeVPN NL ๐ณ๐ฑ Amsterdam
- WeVPN GR ๐ฌ๐ท Athens
- WeVPN RS ๐ท๐ธ Belgrade
- WeVPN BE ๐ง๐ช Brussels
- WeVPN RO ๐ท๐ด Bucharest
- WeVPN HU ๐ญ๐บ Budapest
- WeVPN DK ๐ฉ๐ฐ Copenhagen
- WeVPN IE ๐ฎ๐ช Dublin
- WeVPN DE ๐ฉ๐ช Frankfurt
- WeVPN FI ๐ซ๐ฎ Helsinki
- WeVPN FI ๐ซ๐ฎ Oulu
- WeVPN UA ๐บ๐ฆ Kyiv
- WeVPN PT ๐ต๐น Lisbon
- WeVPN GB ๐ฌ๐ง London
- WeVPN GB ๐ฌ๐ง London-PF
- WeVPN GB ๐ฌ๐ง Manchester
- WeVPN LU ๐ฑ๐บ Luxembourg
- WeVPN ES ๐ช๐ธ Madrid
- WeVPN IT ๐ฎ๐น Milan
- WeVPN NO ๐ณ๐ด Oslo
- WeVPN FR ๐ซ๐ท Paris
- WeVPN CZ ๐จ๐ฟ Prague
- WeVPN BG ๐ง๐ฌ Sofia
- WeVPN SE ๐ธ๐ช Stockholm
- WeVPN AT ๐ฆ๐น Vienna
- WeVPN PL ๐ต๐ฑ Warsaw
- WeVPN CH ๐จ๐ญ Zurich
- WeVPN NZ ๐ณ๐ฟ Auckland
- WeVPN VN ๐ป๐ณ Hanoi
- WeVPN HK ๐ญ๐ฐ Hong Kong
- WeVPN ID ๐ฎ๐ฉ Jakarta
- WeVPN PH ๐ต๐ญ Manila
- WeVPN AU ๐ฆ๐บ Melbourne
- WeVPN AU ๐ฆ๐บ Sydney
- WeVPN RU ๐ท๐บ Moscow
- WeVPN RU ๐ท๐บ St Petersburg
- WeVPN KR ๐ฐ๐ท Seoul
- WeVPN My ๐ฒ๐พ Sibu
- WeVPN SG ๐ธ๐ฌ Singapore
- WeVPN TW ๐น๐ผ Taipei
- WeVPN JP ๐ฏ๐ต Tokyo
- WeVPN EG ๐ช๐ฌ Cairo
- WeVPN IN ๐ฎ๐ณ Chennai
- WeVPN TR ๐น๐ท Denizli
- WeVPN AE ๐ฆ๐ช Dubai
- WeVPN ZA ๐ฟ๐ฆ Johannesburg
- WeVPN NG ๐ณ๐ฌ Lagos
- WeVPN IL ๐ฎ๐ฑ Tel Aviv
url: 'http://www.gstatic.com/generate_204'
interval: 300
- name: AUTO UFO โป๏ธ
type: url-test
proxies:
- ๐ซ๐ท UFO Paris 6
- ๐ฎ๐น UFO Milan 4
- ๐ฌ๐ง UFO London 5
- ๐ฉ๐ช UFO Frankfurt 3
- ๐บ๐ธ UFO NewYork
- ๐บ๐ธ UFO LosAngeles
- ๐บ๐ธ UFO Seattle
- ๐ฏ๐ต UFO Tokyo 3
- ๐ฏ๐ต UFO Tokyo 4
- ๐ฏ๐ต UFO Tokyo 5
url: 'http://www.gstatic.com/generate_204'
interval: 300
- name: AUTO Aloha โป๏ธ
type: url-test
proxies:
- "Aloha Argentina ๐ฆ๐ท Buenos Aires"
- "Aloha Australia ๐ฆ๐บ Sydney"
- "Aloha Colombia ๐จ๐ด Bogota"
- "Aloha Cyprus ๐จ๐พ Nicosia"
- "Aloha Germany ๐ฉ๐ช Dรผsseldorf"
- "Aloha Germany ๐ฉ๐ช Limburg an der Lahn"
- "Aloha Germany ๐ฉ๐ช Nuremberg"
- "Aloha Greece ๐ฌ๐ท Thessaloniki"
- "Aloha Hong Kong ๐ญ๐ฐ Central"
- "Aloha Hungary ๐ญ๐บ Budapest"
- "Aloha Iceland ๐ฎ๐ธ Hafnarfjordur"
- "Aloha India ๐ฎ๐ณ Jaipur"
- "Aloha Indonesia ๐ฎ๐ฉ Jakarta"
- "Aloha Isle of Man ๐ฎ๐ฒ Douglas"
- "Aloha Italy ๐ฎ๐น Milan"
- "Aloha Japan ๐ฏ๐ต Tokyo"
- "Aloha Latvia ๐ฑ๐ป Riga"
- "Aloha Luxembourg ๐ฑ๐บ Luxembourg"
- "Aloha Moldova ๐ฒ๐ฉ Chisinau"
- "Aloha North Macedonia ๐ฒ๐ฐ Skopje"
- "Aloha Romania ๐ท๐ด Bucharest"
- "Aloha Serbia ๐ท๐ธ Belgrade"
- "Aloha Singapore ๐ธ๐ฌ Singapore"
- "Aloha Slovakia ๐ธ๐ฐ Bratislava"
- "Aloha Slovenia ๐ธ๐ฎ Ljubljana"
- "Aloha South Korea ๐ฐ๐ท Seoul"
- "Aloha Spain ๐ช๐ธ Seville"
- "Aloha Switzerland ๐จ๐ญ Zurich"
- "Aloha Taiwan ๐น๐ผ Taipei"
- "Aloha Ukraine ๐บ๐ฆ Kharkiv"
- "Aloha United Kingdom ๐ฌ๐ง London"
- "Aloha United States ๐บ๐ธ Ashburn 1"
- "Aloha United States ๐บ๐ธ Ashburn 2"