-
Notifications
You must be signed in to change notification settings - Fork 0
/
Glysit.yml
2066 lines (2063 loc) ยท 135 KB
/
Glysit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
port: 7890
socks-port: 7891
allow-lan: true
mode: Rule
log-level: info
external-controller: :9090
dns:
enable: true
ipv6: false
enhanced-mode: redir-host
nameserver:
- https://EU2.DNS.LAVATE.CH/dns-query
- https://DNS.HeN.ee/dns-query
- https://NoTMIKE.dev/dns.php
- tls://dns.google:853
- https://dns.google/dns-query
- https://cloudflare-dns.com/dns-query
- https://dns.adguard.com/dns-query
- https://dnsforge.de/dns-query
- https://dns.quad9.net/dns-query
- https://DANDELIONSPROUT.Asuscomm.com:2501/dns-query
fallback:
- https://EU2.DNS.LAVATE.CH/dns-query
- https://DNS.HeN.ee/dns-query
- https://NoTMIKE.dev/dns.php
- tls://dns.google:853
- https://dns.google/dns-query
- https://cloudflare-dns.com/dns-query
- https://dns.adguard.com/dns-query
- https://dnsforge.de/dns-query
- https://dns.quad9.net/dns-query
- https://DANDELIONSPROUT.Asuscomm.com:2501/dns-query
fallback-filter:
geoip: true
proxies:
- {name: ALB ๐ฆ๐ฑ Tirana, server: 31.171.153.178, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: ARG ๐ฆ๐ท Buenos Aires, server: 131.255.4.219, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: AUS ๐ฆ๐บ Sydney, server: 194.14.208.110, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 2, server: 194.14.208.111, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 3, server: 192.53.168.189, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 4, server: 192.53.169.116, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 5, server: 192.53.169.18, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 6, server: 192.53.168.189, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 7, server: 192.53.169.18, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 8, server: 192.53.169.116, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 9, server: 192.53.168.189, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 10, server: 192.53.168.189, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: AUS ๐ฆ๐บ Sydney 11, server: 192.53.169.18, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: AZR ๐ฆ๐ฟ Baku, server: 94.20.154.38, port: 50000, type: ss, cipher: aes-256-cfb, password: !<str> 3135771619, udp: true}
- {name: AZR ๐ฆ๐ฟ Baku 2, server: 94.20.154.26, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik, server: 185.164.35.9, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 2, server: 185.212.111.59, port: 33992, type: ss, cipher: aes-256-gcm, password: 8n6pwAcrrv2pj6tFY2p3TbQ6, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 3, server: 185.99.3.205, port: 39772, type: ss, cipher: aes-256-gcm, password: CUndSZnYsPKcu6Kj8THVMBHD, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 4, server: 185.212.111.59, port: 50168, type: ss, cipher: aes-256-gcm, password: WCuz7yrfZSCQQXSNrtGPz2HT, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 5, server: 185.99.3.214, port: 50168, type: ss, cipher: aes-256-gcm, password: WCuz7yrfZSCQQXSNrtGPz2HT, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 6, server: 185.99.3.108, port: 34815, type: ss, cipher: aes-256-gcm, password: LkFAzkzXkSCRYa2CsRdL8cGb, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 7, server: 185.99.3.108, port: 47121, type: ss, cipher: aes-256-gcm, password: CTK8GXFQgKYQErrghPJfZ6tk, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 8, server: 185.99.3.108, port: 37588, type: ss, cipher: aes-256-gcm, password: kD9vkjnE6dsUzwQfvKkPkQAd, udp: true}
- {name: B&H ๐ง๐ฆ Novi Travnik 9, server: 185.99.3.108, port: 44820, type: ss, cipher: aes-256-gcm, password: jspgz9G3VmvBMCgMUWLBaZHu, udp: true}
- {name: BLG ๐ง๐ฌ Sofia, server: 194.68.225.28, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: BLG ๐ง๐ฌ Sofia 2, server: 194.68.225.104, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: BRA ๐ง๐ท Sao Paulo, server: 177.54.152.89, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: 2GWsqE7Gr3nRMuuQZfFa, udp: true}
- {name: CAN ๐จ๐ฆ Beauharnois, server: 51.161.118.38, port: 807, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: CAN ๐จ๐ฆ Beauharnois 2, server: 51.161.118.38, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: CAN ๐จ๐ฆ Toronto, server: 134.195.196.12, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 2, server: 134.195.196.50, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 3, server: 134.195.196.76, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 4, server: 134.195.196.97, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 5, server: 134.195.196.101, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 6, server: 134.195.196.107, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 7, server: 134.195.196.130, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 8, server: 134.195.196.132, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 9, server: 134.195.196.139, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 10, server: 134.195.196.149, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 11, server: 134.195.196.41, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 12, server: 134.195.196.51, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 13, server: 134.195.196.71, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 14, server: 134.195.196.97, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 15, server: 134.195.196.139, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 16, server: 134.195.196.214, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 17, server: 134.195.196.230, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 18, server: 134.195.196.231, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 19, server: 134.195.198.211, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 20, server: 134.195.196.50, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 21, server: 134.195.196.169, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 22, server: 134.195.196.170, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 23, server: 134.195.196.12, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 24, server: 134.195.196.41, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 25, server: 134.195.196.101, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 26, server: 134.195.196.107, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 27, server: 134.195.196.133, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 28, server: 134.195.196.139, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 29, server: 134.195.196.149, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 30, server: 134.195.196.170, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 31, server: 134.195.198.250, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 32, server: 134.195.196.50, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 33, server: 134.195.196.56, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 34, server: 134.195.196.68, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 35, server: 134.195.196.70, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 36, server: 134.195.196.71, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 37, server: 134.195.196.76, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 38, server: 134.195.196.132, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 39, server: 134.195.196.214, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 40, server: 134.195.196.219, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 41, server: 134.195.196.230, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 42, server: 134.195.196.81, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 43, server: 134.195.196.97, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 44, server: 134.195.196.101, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 45, server: 134.195.196.169, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 46, server: 134.195.196.199, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 47, server: 134.195.196.214, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 48, server: 134.195.196.217, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 49, server: 134.195.196.219, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 50, server: 134.195.196.107, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 51, server: 134.195.196.132, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 52, server: 134.195.196.139, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 53, server: 134.195.196.217, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 54, server: 134.195.196.16, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 55, server: 134.195.196.44, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 56, server: 134.195.196.51, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 57, server: 134.195.196.71, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 58, server: 134.195.196.76, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 59, server: 134.195.196.149, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 60, server: 134.195.196.217, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 61, server: 134.195.196.230, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 62, server: 134.195.198.211, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 63, server: 134.195.196.70, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 64, server: 134.195.196.101, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 65, server: 134.195.196.107, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 66, server: 134.195.196.118, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 67, server: 134.195.196.214, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 68, server: 134.195.196.214, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 69, server: 134.195.196.33, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 70, server: 134.195.196.41, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 71, server: 134.195.196.44, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 72, server: 134.195.196.51, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 73, server: 134.195.196.71, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 74, server: 134.195.196.71, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 75, server: 134.195.196.76, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 76, server: 134.195.196.76, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 77, server: 134.195.196.101, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 78, server: 134.195.196.132, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 79, server: 134.195.196.139, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 80, server: 134.195.196.169, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 81, server: 134.195.196.169, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 82, server: 134.195.196.199, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 83, server: 134.195.196.217, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 84, server: 134.195.196.217, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 85, server: 134.195.196.219, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 86, server: 134.195.198.195, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 87, server: 134.195.198.211, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 88, server: 134.195.196.12, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 89, server: 134.195.196.51, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 90, server: 134.195.196.64, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 91, server: 134.195.196.68, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 92, server: 134.195.196.70, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 93, server: 134.195.196.97, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 94, server: 134.195.196.107, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 95, server: 134.195.196.118, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 96, server: 134.195.196.169, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 97, server: 134.195.196.214, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 98, server: 134.195.198.195, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 99, server: 134.195.196.41, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 100, server: 134.195.196.64, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 101, server: 134.195.196.71, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 102, server: 134.195.196.76, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 103, server: 134.195.196.97, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 104, server: 134.195.196.165, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 105, server: 134.195.196.219, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 106, server: 134.195.196.230, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 107, server: 134.195.196.50, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 108, server: 134.195.196.56, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 109, server: 134.195.196.118, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 110, server: 134.195.196.214, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 111, server: 134.195.196.230, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 112, server: 134.195.196.50, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 113, server: 134.195.196.118, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 114, server: 134.195.196.132, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 115, server: 134.195.196.139, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 116, server: 134.195.196.149, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 117, server: 134.195.196.169, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 118, server: 134.195.196.170, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 119, server: 134.195.196.217, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 120, server: 134.195.196.219, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 121, server: 134.195.196.231, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: CAN ๐จ๐ฆ Toronto 122, server: 134.195.198.195, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: COL ๐จ๐ด Bogotรก, server: 181.119.30.61, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: CROA ๐ญ๐ท Zagreb, server: 46.183.184.12, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: CYP ๐จ๐พ Nicosia, server: 213.169.137.221, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: DEN ๐ฉ๐ฐ Copenhagen, server: 5.183.101.229, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: DEN ๐ฉ๐ฐ Copenhagen 2, server: 192.36.27.79, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: DEN ๐ฉ๐ฐ Graested, server: 135.125.244.103, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: EGY ๐ช๐ฌ Cairo, server: 188.214.122.138, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: QhtEqbEtn74KsTUM4MUg, udp: true}
- {name: EST ๐ช๐ช Tallinn, server: 37.252.5.234, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: FIN ๐ซ๐ฎ Helsinki, server: 188.126.89.174, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: SkGJxCjsuc8DJsB2GtM4, udp: true}
- {name: FIN ๐ซ๐ฎ Helsinki 2, server: 185.212.149.152, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: SxFvGWWUtEjyQnGbggq2, udp: true}
- {name: FRA ๐ซ๐ท Roubaix, server: 135.125.248.215, port: 800, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: FRA ๐ซ๐ท Roubaix 2, server: 135.125.248.215, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: FRA ๐ซ๐ท Roubaix 3, server: 135.125.248.215, port: 800, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf, server: 161.97.131.160, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 2, server: 178.18.255.190, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 3, server: 146.0.36.44, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 4, server: 146.0.36.44, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 5, server: 146.0.36.44, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 6, server: 146.0.36.44, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 7, server: 146.0.36.23, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 8, server: 146.0.36.23, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: GER ๐ฉ๐ช Dรผsseldorf 9, server: 146.0.36.23, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: GER ๐ฉ๐ช Hesse, server: 18.185.63.41, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: GER ๐ฉ๐ช Frankfurt, server: 135.125.150.55, port: 889, type: ss, cipher: chacha20-ietf-poly1305, password: KhS1x8JT7p58RIp7gz, udp: true}
- {name: GER ๐ฉ๐ช Hesse 2, server: 141.95.0.23, port: 807, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: GER ๐ฉ๐ช Hesse 3, server: 141.95.0.26, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563, udp: true}
- {name: GER ๐ฉ๐ช Hesse 4, server: 135.125.236.229, port: 50007, type: ss, cipher: aes-256-cfb, password: !<str> 7122910143, udp: true}
- {name: GER ๐ฉ๐ช Hesse 5, server: 135.125.236.229, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: GER ๐ฉ๐ช Hesse 6, server: 141.95.0.23, port: 802, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: GER ๐ฉ๐ช Nuremberg, server: 213.136.80.36, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: GRC ๐ฌ๐ท Athens, server: 185.51.134.210, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: mTrN2fMYeWJwrkWpTnL2, udp: true}
- {name: GRC ๐ฌ๐ท Athens 2, server: 185.243.214.55, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: GRC ๐ฌ๐ท Thessaloniki, server: 192.71.166.102, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: HKG ๐ญ๐ฐ Central, server: 91.245.255.27, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: HKG ๐ญ๐ฐ Central 2, server: 91.245.255.59, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: HKG ๐ญ๐ฐ Central 3, server: 118.107.244.109, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: HKG ๐ญ๐ฐ Central 4, server: 118.107.244.113, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: HKG ๐ญ๐ฐ Central 5, server: 118.107.244.113, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: HKG ๐ญ๐ฐ Central 6, server: 118.107.244.113, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: HKG ๐ญ๐ฐ Central 7, server: 118.107.244.109, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: HKG ๐ญ๐ฐ Central 8, server: 118.107.244.114, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: HKG ๐ญ๐ฐ Central 9, server: 118.107.244.113, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: HUN ๐ญ๐บ Budapest, server: 194.71.130.160, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: HUN ๐ญ๐บ Budapest 2, server: 194.71.130.194, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: ICL ๐ฎ๐ธ Hafnarfjordur, server: 37.235.49.158, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: IND ๐ฎ๐ณ Chennai, server: 169.38.107.52, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: 7D4GYNDaFy4eebe47tvF, udp: true}
- {name: IND ๐ฎ๐ณ Jaipur, server: 103.129.97.129, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai, server: 192.46.210.73, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 2, server: 192.46.208.123, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 3, server: 192.46.208.123, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 4, server: 192.46.209.146, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 5, server: 192.46.212.33, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 6, server: 192.46.208.123, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 7, server: 192.46.208.153, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 8, server: 192.46.212.33, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 9, server: 192.46.212.33, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 10, server: 192.46.208.123, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 11, server: 192.46.209.146, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 12, server: 192.46.208.153, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 13, server: 192.46.209.146, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 14, server: 192.46.208.123, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 15, server: 192.46.209.146, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 16, server: 192.46.210.73, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 17, server: 192.46.208.153, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 18, server: 192.46.209.146, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 19, server: 192.46.208.123, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 20, server: 192.46.208.153, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 21, server: 192.46.208.153, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 22, server: 192.46.209.215, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: IND ๐ฎ๐ณ Mumbai 23, server: 192.46.210.73, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: INDO ๐ฎ๐ฉ Jakarta, server: 103.84.192.228, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: ISLM ๐ฎ๐ฒ Douglas, server: 37.235.55.84, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: ISR ๐ฎ๐ฑ Haifa, server: 83.229.73.60, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: ISR ๐ฎ๐ฑ Haifa 2, server: 83.229.73.120, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: ISR ๐ฎ๐ฑ Haifa 3, server: 185.162.125.91, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: ISR ๐ฎ๐ฑ Tel Aviv, server: 212.199.61.55, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: scDj68fv6xkMg2np9RgW, udp: true}
- {name: ITA ๐ฎ๐น Milan, server: 95.141.37.111, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: ITA ๐ฎ๐น Milan 2, server: 158.58.173.54, port: 809, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: ITA ๐ฎ๐น Milan 3, server: 158.58.173.240, port: 806, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: ITA ๐ฎ๐น Milan 4, server: 95.174.23.218, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: ITA ๐ฎ๐น Milan 5, server: 185.213.21.6, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo, server: 45.66.134.210, port: 807, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 2, server: 89.31.125.101, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 3, server: 89.31.125.216, port: 802, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 4, server: 185.160.24.217, port: 805, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 5, server: 176.97.70.125, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 6, server: 85.208.108.66, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 7, server: 85.208.108.134, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 8, server: 85.208.110.2, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 9, server: 85.208.108.106, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 10, server: 85.208.108.134, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 11, server: 85.208.108.66, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 12, server: 85.208.108.106, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 13, server: 5.180.76.74, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 14, server: 85.208.108.234, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 15, server: 85.208.110.2, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 16, server: 85.208.108.58, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 17, server: 85.208.108.194, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 18, server: 85.208.108.18, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 19, server: 85.208.108.58, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 20, server: 85.208.110.2, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 21, server: 85.208.110.178, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 22, server: 85.208.108.106, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 23, server: 85.208.108.234, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 24, server: 5.180.76.74, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 25, server: 85.208.110.178, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 26, server: 85.208.110.178, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 27, server: 5.180.76.74, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 28, server: 85.208.108.134, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 29, server: 85.208.108.194, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 30, server: 85.208.108.234, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 31, server: 5.180.76.74, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 32, server: 85.208.108.18, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 33, server: 85.208.108.194, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 34, server: 85.208.108.234, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 35, server: 85.208.110.2, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 36, server: 85.208.110.138, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 37, server: 109.166.37.246, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 38, server: 85.208.108.18, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 39, server: 85.208.108.66, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 40, server: 85.208.108.194, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 41, server: 85.208.110.2, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 42, server: 85.208.108.90, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 43, server: 5.180.76.74, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 44, server: 85.208.108.66, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 45, server: 85.208.110.2, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 46, server: 85.208.110.178, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: JPN ๐ฏ๐ต Tokyo 47, server: 85.208.108.234, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul, server: 158.247.213.230, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 2, server: 141.164.38.135, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 3, server: 141.164.53.152, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 4, server: 141.164.56.250, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 5, server: 141.164.57.134, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 6, server: 158.247.201.207, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 7, server: 158.247.203.40, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 8, server: 158.247.203.168, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 9, server: 158.247.208.21, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 10, server: 158.247.223.116, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 11, server: 141.164.35.41, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 12, server: 141.164.53.152, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 13, server: 141.164.59.168, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 14, server: 158.247.199.253, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 15, server: 158.247.219.68, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 16, server: 158.247.226.61, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 17, server: 141.164.42.236, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 18, server: 141.164.47.208, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 19, server: 141.164.57.134, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 20, server: 158.247.199.253, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 21, server: 158.247.203.40, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 22, server: 158.247.213.165, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 23, server: 141.164.47.208, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 24, server: 141.164.59.168, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 25, server: 158.247.201.207, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 26, server: 158.247.203.168, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 27, server: 158.247.205.87, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 28, server: 158.247.206.19, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 29, server: 158.247.222.102, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 30, server: 158.247.224.123, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 31, server: 141.164.35.41, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 32, server: 141.164.57.134, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 33, server: 158.247.200.56, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 34, server: 158.247.203.40, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 35, server: 158.247.203.168, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 36, server: 158.247.205.87, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 37, server: 158.247.206.19, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 38, server: 158.247.208.21, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 39, server: 158.247.226.61, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 40, server: 141.164.46.233, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 41, server: 158.247.205.108, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 42, server: 158.247.223.116, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 43, server: 158.247.224.123, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 44, server: 141.164.35.41, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 45, server: 141.164.38.135, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 46, server: 141.164.47.208, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 47, server: 141.164.52.21, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 48, server: 141.164.56.250, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 49, server: 158.247.199.253, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 50, server: 158.247.203.168, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 51, server: 158.247.205.108, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 52, server: 158.247.206.19, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 53, server: 158.247.227.123, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 54, server: 141.164.57.134, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 55, server: 141.164.59.168, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 56, server: 158.247.200.56, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 57, server: 158.247.206.19, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 58, server: 158.247.208.21, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 59, server: 158.247.213.165, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 60, server: 158.247.222.102, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 61, server: 158.247.227.123, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 62, server: 141.164.35.41, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 63, server: 141.164.38.135, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 64, server: 141.164.57.134, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 65, server: 141.164.46.233, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 66, server: 141.164.47.208, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 67, server: 141.164.49.240, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 68, server: 141.164.56.110, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 69, server: 141.164.56.250, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 70, server: 141.164.57.134, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 71, server: 158.247.199.253, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 72, server: 158.247.200.56, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 73, server: 158.247.200.56, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 74, server: 158.247.215.187, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 75, server: 158.247.219.68, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 76, server: 158.247.222.102, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 77, server: 158.247.223.116, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 78, server: 158.247.200.56, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 79, server: 158.247.201.207, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 80, server: 158.247.203.40, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 81, server: 158.247.205.87, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 82, server: 158.247.209.92, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 83, server: 158.247.219.68, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 84, server: 141.164.46.233, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 85, server: 141.164.53.152, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 86, server: 141.164.56.250, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 87, server: 158.247.199.253, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 88, server: 158.247.203.40, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 89, server: 158.247.208.21, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 90, server: 158.247.222.102, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 91, server: 158.247.223.116, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 92, server: 158.247.224.123, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 93, server: 141.164.47.208, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 94, server: 141.164.49.240, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 95, server: 158.247.209.92, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 96, server: 158.247.213.165, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 97, server: 158.247.224.123, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 98, server: 158.247.227.123, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 99, server: 141.164.35.41, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 100, server: 141.164.52.21, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 101, server: 158.247.200.56, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 102, server: 158.247.201.207, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 103, server: 158.247.205.87, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 104, server: 158.247.206.19, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 105, server: 158.247.209.92, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 106, server: 158.247.213.165, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 107, server: 158.247.215.187, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 108, server: 158.247.223.116, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 109, server: 158.247.224.123, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: KOR ๐ฐ๐ท Seoul 110, server: 158.247.226.61, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: LTV ๐ฑ๐ป Riga, server: 192.36.41.28, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: LUX ๐ฑ๐บ Luxembourg, server: 172.255.248.35, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: MCD ๐ฒ๐ฐ Skopje, server: 46.183.185.15, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: MLD ๐ฒ๐ฉ Chisinau, server: 192.121.87.89, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: MLT ๐ฒ๐น Safi, server: 185.89.238.36, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: NIG ๐ณ๐ฌ Lagos, server: 102.129.144.142, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: QzTsOpqsdj29bWqIqWR6, udp: true}
- {name: NIG ๐ณ๐ฌ Lagos 2, server: 102.129.144.142, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QzTsOpqsdj29bWqIqWR6, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam, server: 37.218.245.122, port: 443, type: ss, cipher: chacha20-ietf-poly1305, password: fPn40BnheGrB, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 2, server: 178.239.173.20, port: 18760, type: ss, cipher: chacha20-ietf-poly1305, password: hg49$WH8943g3, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 3, server: 172.99.188.99, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 4, server: 172.99.188.99, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 5, server: 172.99.188.99, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 6, server: 172.99.188.99, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 7, server: 172.99.188.99, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: NLD ๐ณ๐ฑ Amsterdam 8, server: 89.31.127.3, port: 16823, type: vmess, uuid: 7455b760-fc67-4898-ae69-afce6eb2a9c0, alterId: 1, cipher: auto, tls: false, skip-cert-verify: false, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand, server: 46.29.218.6, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 2, server: 46.29.218.6, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 3, server: 46.29.218.146, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 4, server: 46.29.218.146, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 5, server: 46.29.218.146, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 6, server: 46.29.218.6, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 7, server: 46.29.218.146, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 8, server: 46.29.218.6, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 9, server: 46.29.218.146, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 10, server: 46.29.218.170, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 11, server: 46.29.218.170, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 12, server: 46.29.218.170, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 13, server: 46.29.218.170, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 14, server: 46.29.218.170, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: NOR ๐ณ๐ด Kristiansand 15, server: 46.29.218.146, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: NOR ๐ณ๐ด Oslo, server: 5.183.100.87, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: NOR ๐ณ๐ด Oslo 2, server: 194.68.32.29, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: NOR ๐ณ๐ด Oslo 3, server: 46.29.219.246, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: NOR ๐ณ๐ด Oslo 4, server: 46.29.219.246, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: NOR ๐ณ๐ด Oslo 5, server: 46.29.219.246, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: NOR ๐ณ๐ด Oslo 6, server: 46.29.219.246, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Oslo 7, server: 46.29.219.246, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Oslo 8, server: 46.29.219.246, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Oslo 9, server: 46.29.219.246, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: NOR ๐ณ๐ด Oslo 10, server: 46.29.219.246, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: NOR ๐ณ๐ด Oslo 11, server: 46.29.218.170, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: NOR ๐ณ๐ด Oslo 12, server: 46.29.218.146, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: NOR ๐ณ๐ด Oslo 13, server: 46.29.218.146, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: PRT ๐ต๐น Lisbon, server: 185.90.57.152, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: qSnstpCypymLvPeyLRqf, udp: true}
- {name: PRT ๐ต๐น Lisbon 2, server: 185.90.57.152, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: qSnstpCypymLvPeyLRqf, udp: true}
- {name: ROM ๐ท๐ด Bucharest, server: 86.105.25.162, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: gKDDFZyBmBH5Ru46xBAK, udp: true}
- {name: ROM ๐ท๐ด Bucharest 2, server: 194.68.44.206, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: ROM ๐ท๐ด Bucharest 3, server: 185.233.150.6, port: 18760, type: ss, cipher: aes-256-gcm, password: hg49$WH8943g3, udp: true}
- {name: ROM ๐ท๐ด Iasi, server: 185.225.19.64, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: RUS ๐ท๐บ Moscow, server: 194.34.239.105, port: 18760, type: ss, cipher: chacha20-ietf-poly1305, password: hg49$WH8943g3, udp: true}
- {name: RUS ๐ท๐บ Moscow 2, server: 83.217.9.76, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: RUS ๐ท๐บ St Petersburg, server: 82.202.220.242, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: Kw6hMXQ2Z7ey7mf2Uqyr, udp: true}
- {name: SLVK ๐ธ๐ฐ Bratislava, server: 188.123.123.133, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: SNG ๐ธ๐ฌ Queenstown Estate, server: 45.88.42.250, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: SNG ๐ธ๐ฌ Queenstown Estate 2, server: 81.90.189.33, port: 889, type: ss, cipher: chacha20-ietf-poly1305, password: KhS1x8JT7p58RIp7gz, udp: true}
- {name: SNG ๐ธ๐ฌ Queenstown Estate 3, server: 81.90.188.167, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563, udp: true}
- {name: SNG ๐ธ๐ฌ Singapore, server: 84.17.38.144, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: gTYdduTTEBBdVZ4LcBnT, udp: true}
- {name: SNG ๐ธ๐ฌ Singapore 2, server: 194.233.65.67, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: SOAF ๐ฟ๐ฆ Johannesburg, server: 102.165.20.38, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: VLGVpK9npKaFqBLHcnu9, udp: true}
- {name: SPN ๐ช๐ธ Barcelona, server: 172.107.233.234, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: SPN ๐ช๐ธ Barcelona 2, server: 172.107.233.234, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: SPN ๐ช๐ธ Madrid, server: 45.152.183.242, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: r4MP5DzDNmAqbBHzbSXw, udp: true}
- {name: SRB ๐ท๐ธ Belgrade, server: 194.71.126.31, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: SWD ๐ธ๐ช Stockholm, server: 185.243.215.187, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: SWD ๐ธ๐ช Stockholm 2, server: 80.67.3.120, port: 40503, type: ss, cipher: aes-256-cfb, password: XS4DBE6, udp: true}
- {name: SWD ๐ธ๐ช Stockholm 3, server: 46.246.93.59, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: SWT ๐จ๐ญ Zurich, server: 212.237.210.158, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: TUR ๐น๐ท Bahรงelievler, server: 185.17.113.234, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: TUR ๐น๐ท Istanbul, server: game.m-xler.eu, port: 443, type: ss, cipher: xchacha20-ietf-poly1305, password: mxler, udp: true}
- {name: TUR ๐น๐ท Istanbul 2, server: 141.98.119.156, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: TUR ๐น๐ท Istanbul 3, server: 141.98.119.180, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: TUR ๐น๐ท Istanbul 4, server: 185.219.134.52, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: TUR ๐น๐ท Istanbul 5, server: 185.219.134.182, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: TUR ๐น๐ท Istanbul 6, server: 141.98.119.156, port: 50007, type: ss, cipher: aes-256-cfb, password: !<str> 7122910143, udp: true}
- {name: TWN ๐น๐ผ Taipei, server: 103.123.0.28, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: UAE ๐ฆ๐ช Dubai, server: 20.203.15.75, port: 8388, type: ss, cipher: xchacha20-ietf-poly1305, password: BTDSRlJBcvipMzKE, udp: true}
- {name: UAE ๐ฆ๐ช Dubai 2, server: 20.203.44.94, port: 8388, type: ss, cipher: xchacha20-ietf-poly1305, password: BTDSRlJBcvipMzKE, udp: true}
- {name: UAE ๐ฆ๐ช Dubai 3, server: 40.123.205.38, port: 8388, type: ss, cipher: xchacha20-ietf-poly1305, password: BTDSRlJBcvipMzKE, udp: true}
- {name: UAE ๐ฆ๐ช Dubai 4, server: 40.123.207.100, port: 8388, type: ss, cipher: xchacha20-ietf-poly1305, password: BTDSRlJBcvipMzKE, udp: true}
- {name: UK ๐ฌ๐ง London, server: 92.223.59.188, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: UK ๐ฌ๐ง London 2, server: 77.243.177.78, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: Qu9b6jbYLF5Dtha3n7W2, udp: true}
- {name: UK ๐ฌ๐ง London 3, server: 51.89.138.162, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: UK ๐ฌ๐ง London 4, server: 103.105.48.199, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: UK ๐ฌ๐ง London 5, server: 176.10.80.6, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: UK ๐ฌ๐ง London 6, server: 172.99.190.57, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: UK ๐ฌ๐ง London 7, server: 172.99.190.61, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: UK ๐ฌ๐ง London 8, server: 172.99.190.192, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: UK ๐ฌ๐ง London 9, server: 172.99.190.235, port: 8882, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: UK ๐ฌ๐ง London 10, server: 212.38.189.174, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: UK ๐ฌ๐ง London 11, server: 172.99.190.153, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: UK ๐ฌ๐ง London 12, server: 172.99.190.186, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: UK ๐ฌ๐ง London 13, server: 172.99.190.7, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 14, server: 172.99.190.35, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 15, server: 172.99.190.57, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 16, server: 172.99.190.167, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 17, server: 172.99.190.186, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 18, server: 212.38.189.174, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: UK ๐ฌ๐ง London 19, server: 172.99.190.167, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: UK ๐ฌ๐ง London 20, server: 172.99.190.57, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 21, server: 172.99.190.167, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 22, server: 172.99.190.167, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 23, server: 172.99.190.170, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 24, server: 172.99.190.192, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 25, server: 172.99.190.230, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 26, server: 172.99.190.246, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 27, server: 172.99.190.7, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: UK ๐ฌ๐ง London 28, server: 172.99.190.61, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: UK ๐ฌ๐ง London 29, server: 172.99.190.153, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: UK ๐ฌ๐ง London 30, server: 212.38.189.174, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: UK ๐ฌ๐ง London 31, server: 172.99.190.61, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: UK ๐ฌ๐ง London 32, server: 172.99.190.153, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: UK ๐ฌ๐ง London 33, server: 172.99.190.235, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: UK ๐ฌ๐ง London 34, server: 172.99.190.61, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: UK ๐ฌ๐ง London 35, server: 172.99.190.167, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: UK ๐ฌ๐ง London 36, server: 172.99.190.170, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: UK ๐ฌ๐ง London 37, server: 172.99.190.246, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: UK ๐ฌ๐ง London 38, server: 212.38.189.174, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: UK ๐ฌ๐ง London 39, server: 172.99.190.230, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: UK ๐ฌ๐ง London 40, server: 172.99.190.246, port: 8008, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: UK ๐ฌ๐ง London 41, server: 212.38.189.174, port: 8009, type: ss, cipher: aes-256-gcm, password: XKFKl2rULjIp74, udp: true}
- {name: UK ๐ฌ๐ง London 42, server: 172.99.190.7, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 43, server: 172.99.190.153, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 44, server: 172.99.190.167, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 45, server: 172.99.190.170, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 46, server: 172.99.190.192, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 47, server: 172.99.190.230, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 48, server: 172.99.190.230, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 49, server: 172.99.190.235, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 50, server: 172.99.190.235, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 51, server: 172.99.190.235, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 52, server: 172.99.190.246, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 53, server: 212.38.189.174, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 54, server: 212.38.189.174, port: 8888, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 55, server: 149.7.16.10, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: UK ๐ฌ๐ง London 56, server: 149.7.16.10, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: UK ๐ฌ๐ง London 57, server: 172.99.190.246, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: UK ๐ฌ๐ง London 58, server: 172.99.190.57, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 59, server: 172.99.190.61, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 60, server: 172.99.190.87, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 61, server: 172.99.190.186, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 62, server: 172.99.190.188, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 63, server: 172.99.190.205, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 64, server: 172.99.190.230, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 65, server: 172.99.190.246, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: UK ๐ฌ๐ง London 66, server: 149.7.16.10, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 67, server: 172.99.190.87, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 68, server: 172.99.190.153, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 69, server: 172.99.190.153, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 70, server: 172.99.190.246, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 71, server: 172.99.190.87, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 72, server: 172.99.190.90, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 73, server: 172.99.190.170, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 74, server: 172.99.190.230, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 75, server: 172.99.190.235, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 76, server: 172.99.190.246, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 77, server: 62.216.74.78, port: 16823, type: vmess, uuid: 7455b760-fc67-4898-ae69-afce6eb2a9c0, alterId: 1, cipher: auto, tls: false, skip-cert-verify: false, udp: true}
- {name: UK ๐ฌ๐ง London 78, server: 62.216.80.11, port: 16823, type: vmess, uuid: 7455b760-fc67-4898-ae69-afce6eb2a9c0, alterId: 1, cipher: auto, tls: false, skip-cert-verify: false, udp: true}
- {name: UK ๐ฌ๐ง London 79, server: 172.99.190.139, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 80, server: 172.99.190.139, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: UK ๐ฌ๐ง London 81, server: 172.99.190.139, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง London 82, server: 172.99.190.167, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: UK ๐ฌ๐ง London 83, server: 172.99.190.90, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 84, server: 172.99.190.139, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: UK ๐ฌ๐ง London 85, server: 92.223.59.188, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: UK ๐ฌ๐ง London 86, server: 172.99.190.90, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: UK ๐ฌ๐ง Purfleet, server: 198.244.150.26, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563, udp: true}
- {name: UKR ๐บ๐ฆ Kharkiv, server: 195.211.41.10, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: UKR ๐บ๐ฆ Kyiv, server: 37.19.218.197, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: Mx6DztQqZb7j34FdWjER, udp: true}
- {name: USA ๐บ๐ธ Arizona, server: 170.130.15.34, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: q8gsJVLZ5eYXU3uhmnbH, udp: true}
- {name: USA ๐บ๐ธ California, server: 77.247.126.153, port: 809, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ California 2, server: 66.55.92.101, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: NK4wZejCzDfPdWXTK4FW, udp: true}
- {name: USA ๐บ๐ธ California 3, server: 5.188.111.182, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563, udp: true}
- {name: USA ๐บ๐ธ California 4, server: 92.38.149.173, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 5, server: 103.138.73.118, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 6, server: 104.149.129.126, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 7, server: 104.149.149.158, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 8, server: 104.249.173.232, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 9, server: 104.249.173.240, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 10, server: 155.94.196.234, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 11, server: 185.153.180.10, port: 50003, type: ss, cipher: aes-256-cfb, password: !<str> 8460400130, udp: true}
- {name: USA ๐บ๐ธ California 12, server: 169.197.142.47, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ California 13, server: 169.197.142.47, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia, server: 104.223.91.146, port: 8389, type: ss, cipher: chacha20-ietf-poly1305, password: QKyLzp5JUG6XEGy2wbEE, udp: true}
- {name: USA ๐บ๐ธ Georgia 2, server: 167.88.63.21, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: USA ๐บ๐ธ Georgia 3, server: 167.88.63.108, port: 443, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: USA ๐บ๐ธ Georgia 4, server: 167.88.63.79, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: USA ๐บ๐ธ Georgia 5, server: 167.88.63.93, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: USA ๐บ๐ธ Georgia 6, server: 167.88.63.60, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ Georgia 7, server: 167.88.63.64, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ Georgia 8, server: 167.88.63.89, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ Georgia 9, server: 167.88.63.117, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ Georgia 10, server: 167.88.63.59, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ Georgia 11, server: 167.88.63.60, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ Georgia 12, server: 167.88.63.64, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: USA ๐บ๐ธ Georgia 13, server: 167.88.63.99, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: USA ๐บ๐ธ Georgia 14, server: 167.88.63.117, port: 8090, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: USA ๐บ๐ธ Georgia 15, server: 167.88.63.61, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: USA ๐บ๐ธ Georgia 16, server: 167.88.63.93, port: 7002, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: USA ๐บ๐ธ Georgia 17, server: 167.88.63.11, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: USA ๐บ๐ธ Georgia 18, server: 167.88.63.93, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: USA ๐บ๐ธ Georgia 19, server: 167.88.63.21, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 20, server: 167.88.63.44, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 21, server: 167.88.63.61, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 22, server: 167.88.63.74, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 23, server: 167.88.63.79, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 24, server: 167.88.63.99, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 25, server: 167.88.63.117, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Georgia 26, server: 167.88.63.21, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: USA ๐บ๐ธ Georgia 27, server: 167.88.63.61, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: USA ๐บ๐ธ Georgia 28, server: 167.88.63.117, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: USA ๐บ๐ธ Georgia 29, server: 167.88.63.21, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ Georgia 30, server: 167.88.63.64, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ Georgia 31, server: 167.88.63.79, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ Georgia 32, server: 167.88.63.79, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: USA ๐บ๐ธ Georgia 33, server: 167.88.63.61, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ Georgia 34, server: 167.88.63.74, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ Georgia 35, server: 167.88.63.79, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ Georgia 36, server: 167.88.63.93, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ Georgia 37, server: 167.88.63.108, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ New Jersey, server: 23.226.131.146, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: ckX2YfENbjCtVzVJphFP, udp: true}
- {name: USA ๐บ๐ธ New Jersey 2, server: 92.38.169.196, port: 826, type: ss, cipher: chacha20-ietf-poly1305, password: sF43Xt2gONqcgFX563, udp: true}
- {name: USA ๐บ๐ธ New York, server: 45.144.112.162, port: 812, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ New York 2, server: 194.124.76.194, port: 807, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ New York 3, server: 194.124.76.241, port: 807, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ New York 4, server: 142.202.48.114, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: USA ๐บ๐ธ New York 5, server: 142.202.48.114, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: USA ๐บ๐ธ New York 6, server: 169.197.141.91, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: USA ๐บ๐ธ New York 7, server: 142.202.48.43, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 8, server: 142.202.48.45, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 9, server: 142.202.48.74, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 10, server: 142.202.48.77, port: 7307, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 11, server: 142.202.48.114, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 12, server: 169.197.141.91, port: 7306, type: ss, cipher: aes-256-gcm, password: FoOiGlkAA9yPEGP, udp: true}
- {name: USA ๐บ๐ธ New York 13, server: 142.202.48.45, port: 5500, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ New York 14, server: 142.202.48.45, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ New York 15, server: 142.202.48.77, port: 8000, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ New York 16, server: 142.202.48.105, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: USA ๐บ๐ธ New York 17, server: 169.197.141.240, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: USA ๐บ๐ธ New York 18, server: 142.202.48.45, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: USA ๐บ๐ธ New York 19, server: 142.202.48.74, port: 6679, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: USA ๐บ๐ธ New York 20, server: 142.202.48.77, port: 6697, type: ss, cipher: aes-256-gcm, password: TEzjfAYq2IjtuoS, udp: true}
- {name: USA ๐บ๐ธ New York 21, server: 142.202.48.45, port: 3306, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ New York 22, server: 142.202.48.52, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ New York 23, server: 142.202.48.108, port: 3389, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ New York 24, server: 142.202.48.114, port: 5600, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ New York 25, server: 169.197.141.91, port: 5001, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ New York 26, server: 142.202.48.74, port: 8118, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: USA ๐บ๐ธ New York 27, server: 169.197.141.33, port: 8119, type: ss, cipher: aes-256-gcm, password: cdBIDV42DCwnfIN, udp: true}
- {name: USA ๐บ๐ธ New York 28, server: 142.202.48.43, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ New York 29, server: 142.202.48.58, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ New York 30, server: 142.202.48.77, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ New York 31, server: 142.202.48.114, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ New York 32, server: 142.202.48.77, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: USA ๐บ๐ธ New York 33, server: 169.197.141.15, port: 9102, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: USA ๐บ๐ธ New York 34, server: 169.197.141.91, port: 9101, type: ss, cipher: aes-256-gcm, password: e4FCWrgpkji3QY, udp: true}
- {name: USA ๐บ๐ธ New York 35, server: 142.202.48.43, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ New York 36, server: 169.197.141.15, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ New York 37, server: 169.197.141.91, port: 5004, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: USA ๐บ๐ธ New York 38, server: 194.124.76.241, port: 809, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ New York 39, server: 142.202.48.114, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ New York 40, server: 142.202.48.83, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: USA ๐บ๐ธ New York 41, server: 45.144.112.162, port: 809, type: ss, cipher: chacha20-ietf-poly1305, password: G!yBwPWH3Vao, udp: true}
- {name: USA ๐บ๐ธ New York 42, server: 142.202.48.108, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ Tennessee, server: 70.39.71.2, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: XkH8z99cQguQ8ywK5jhV, udp: true}
- {name: USA ๐บ๐ธ Texas, server: 170.130.31.114, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: 4W2SJmdKUMJjjkVfRDdh, udp: true}
- {name: USA ๐บ๐ธ Texas 2, server: 167.88.62.24, port: 4444, type: ss, cipher: aes-256-gcm, password: pKEW8JPByTVTLtM, udp: true}
- {name: USA ๐บ๐ธ Texas 3, server: 167.88.62.24, port: 6379, type: ss, cipher: aes-256-gcm, password: zDNVedRFPQexG9v, udp: true}
- {name: USA ๐บ๐ธ Texas 4, server: 167.88.62.24, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ Texas 5, server: 167.88.62.24, port: 8091, type: ss, cipher: aes-256-gcm, password: PCnnH6SQSnfoS27, udp: true}
- {name: USA ๐บ๐ธ Texas 6, server: 167.88.62.24, port: 7001, type: ss, cipher: aes-256-gcm, password: RexnBgU7EV5ADxG, udp: true}
- {name: USA ๐บ๐ธ Texas 7, server: 167.88.62.24, port: 5000, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Texas 8, server: 167.88.62.104, port: 2376, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ Virginia, server: 213.174.129.4, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: USA ๐บ๐ธ Virginia 2, server: 213.174.130.130, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: USA ๐บ๐ธ Virginia 3, server: 213.174.158.181, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: USA ๐บ๐ธ Virginia 4, server: 213.174.159.246, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
- {name: USA ๐บ๐ธ Washington, server: 104.140.21.178, port: 8388, type: ss, cipher: chacha20-ietf-poly1305, password: 4kUSnsELPgwDFqkrnPqL, udp: true}
- {name: USA ๐บ๐ธ Washington 2, server: 169.197.143.52, port: 8881, type: ss, cipher: aes-256-gcm, password: kDWvXYZoTBcGkC4, udp: true}
- {name: USA ๐บ๐ธ Washington 3, server: 169.197.143.52, port: 8080, type: ss, cipher: aes-256-gcm, password: KixLvKzwjekG00rm, udp: true}
- {name: USA ๐บ๐ธ Washington 4, server: 169.197.143.52, port: 5601, type: ss, cipher: aes-256-gcm, password: Y6R9pAtvxxzmGC, udp: true}
- {name: USA ๐บ๐ธ Washington 5, server: 169.197.143.52, port: 2375, type: ss, cipher: aes-256-gcm, password: faBAoD54k87UJG7, udp: true}
- {name: USA ๐บ๐ธ Washington 6, server: 169.197.143.52, port: 5003, type: ss, cipher: aes-256-gcm, password: g5MeD6Ft3CWlJId, udp: true}
- {name: VIET ๐ป๐ณ Ho Chi Minh, server: 103.238.213.96, port: 989, type: ss, cipher: aes-256-cfb, password: f8f7aCzcPKbsF8p3, udp: true}
proxy-groups:
- name: ๐ฐ All Proxies
type: select
proxies:
- ๐ฅ Auto(Best ping)
- ALB ๐ฆ๐ฑ Tirana
- ARG ๐ฆ๐ท Buenos Aires
- AUS ๐ฆ๐บ Sydney
- AUS ๐ฆ๐บ Sydney 2
- AUS ๐ฆ๐บ Sydney 3
- AUS ๐ฆ๐บ Sydney 4
- AUS ๐ฆ๐บ Sydney 5
- AUS ๐ฆ๐บ Sydney 6
- AUS ๐ฆ๐บ Sydney 7
- AUS ๐ฆ๐บ Sydney 8
- AUS ๐ฆ๐บ Sydney 9
- AUS ๐ฆ๐บ Sydney 10
- AUS ๐ฆ๐บ Sydney 11
- AZR ๐ฆ๐ฟ Baku
- AZR ๐ฆ๐ฟ Baku 2
- B&H ๐ง๐ฆ Novi Travnik
- B&H ๐ง๐ฆ Novi Travnik 2
- B&H ๐ง๐ฆ Novi Travnik 3
- B&H ๐ง๐ฆ Novi Travnik 4
- B&H ๐ง๐ฆ Novi Travnik 5
- B&H ๐ง๐ฆ Novi Travnik 6
- B&H ๐ง๐ฆ Novi Travnik 7
- B&H ๐ง๐ฆ Novi Travnik 8
- B&H ๐ง๐ฆ Novi Travnik 9
- BLG ๐ง๐ฌ Sofia
- BLG ๐ง๐ฌ Sofia 2
- BRA ๐ง๐ท Sao Paulo
- CAN ๐จ๐ฆ Beauharnois
- CAN ๐จ๐ฆ Beauharnois 2
- CAN ๐จ๐ฆ Toronto
- CAN ๐จ๐ฆ Toronto 2
- CAN ๐จ๐ฆ Toronto 3
- CAN ๐จ๐ฆ Toronto 4
- CAN ๐จ๐ฆ Toronto 5
- CAN ๐จ๐ฆ Toronto 6
- CAN ๐จ๐ฆ Toronto 7
- CAN ๐จ๐ฆ Toronto 8
- CAN ๐จ๐ฆ Toronto 9
- CAN ๐จ๐ฆ Toronto 10
- CAN ๐จ๐ฆ Toronto 11
- CAN ๐จ๐ฆ Toronto 12
- CAN ๐จ๐ฆ Toronto 13
- CAN ๐จ๐ฆ Toronto 14
- CAN ๐จ๐ฆ Toronto 15
- CAN ๐จ๐ฆ Toronto 16
- CAN ๐จ๐ฆ Toronto 17
- CAN ๐จ๐ฆ Toronto 18
- CAN ๐จ๐ฆ Toronto 19
- CAN ๐จ๐ฆ Toronto 20
- CAN ๐จ๐ฆ Toronto 21
- CAN ๐จ๐ฆ Toronto 22
- CAN ๐จ๐ฆ Toronto 23
- CAN ๐จ๐ฆ Toronto 24
- CAN ๐จ๐ฆ Toronto 25
- CAN ๐จ๐ฆ Toronto 26
- CAN ๐จ๐ฆ Toronto 27
- CAN ๐จ๐ฆ Toronto 28
- CAN ๐จ๐ฆ Toronto 29
- CAN ๐จ๐ฆ Toronto 30
- CAN ๐จ๐ฆ Toronto 31
- CAN ๐จ๐ฆ Toronto 32
- CAN ๐จ๐ฆ Toronto 33
- CAN ๐จ๐ฆ Toronto 34
- CAN ๐จ๐ฆ Toronto 35
- CAN ๐จ๐ฆ Toronto 36
- CAN ๐จ๐ฆ Toronto 37
- CAN ๐จ๐ฆ Toronto 38
- CAN ๐จ๐ฆ Toronto 39
- CAN ๐จ๐ฆ Toronto 40
- CAN ๐จ๐ฆ Toronto 41
- CAN ๐จ๐ฆ Toronto 42
- CAN ๐จ๐ฆ Toronto 43
- CAN ๐จ๐ฆ Toronto 44
- CAN ๐จ๐ฆ Toronto 45
- CAN ๐จ๐ฆ Toronto 46
- CAN ๐จ๐ฆ Toronto 47
- CAN ๐จ๐ฆ Toronto 48
- CAN ๐จ๐ฆ Toronto 49
- CAN ๐จ๐ฆ Toronto 50
- CAN ๐จ๐ฆ Toronto 51
- CAN ๐จ๐ฆ Toronto 52
- CAN ๐จ๐ฆ Toronto 53
- CAN ๐จ๐ฆ Toronto 54
- CAN ๐จ๐ฆ Toronto 55
- CAN ๐จ๐ฆ Toronto 56
- CAN ๐จ๐ฆ Toronto 57
- CAN ๐จ๐ฆ Toronto 58
- CAN ๐จ๐ฆ Toronto 59
- CAN ๐จ๐ฆ Toronto 60
- CAN ๐จ๐ฆ Toronto 61
- CAN ๐จ๐ฆ Toronto 62
- CAN ๐จ๐ฆ Toronto 63
- CAN ๐จ๐ฆ Toronto 64
- CAN ๐จ๐ฆ Toronto 65
- CAN ๐จ๐ฆ Toronto 66
- CAN ๐จ๐ฆ Toronto 67
- CAN ๐จ๐ฆ Toronto 68
- CAN ๐จ๐ฆ Toronto 69
- CAN ๐จ๐ฆ Toronto 70
- CAN ๐จ๐ฆ Toronto 71
- CAN ๐จ๐ฆ Toronto 72
- CAN ๐จ๐ฆ Toronto 73
- CAN ๐จ๐ฆ Toronto 74
- CAN ๐จ๐ฆ Toronto 75
- CAN ๐จ๐ฆ Toronto 76
- CAN ๐จ๐ฆ Toronto 77
- CAN ๐จ๐ฆ Toronto 78
- CAN ๐จ๐ฆ Toronto 79
- CAN ๐จ๐ฆ Toronto 80
- CAN ๐จ๐ฆ Toronto 81
- CAN ๐จ๐ฆ Toronto 82
- CAN ๐จ๐ฆ Toronto 83
- CAN ๐จ๐ฆ Toronto 84
- CAN ๐จ๐ฆ Toronto 85
- CAN ๐จ๐ฆ Toronto 86
- CAN ๐จ๐ฆ Toronto 87
- CAN ๐จ๐ฆ Toronto 88
- CAN ๐จ๐ฆ Toronto 89
- CAN ๐จ๐ฆ Toronto 90
- CAN ๐จ๐ฆ Toronto 91
- CAN ๐จ๐ฆ Toronto 92
- CAN ๐จ๐ฆ Toronto 93
- CAN ๐จ๐ฆ Toronto 94
- CAN ๐จ๐ฆ Toronto 95
- CAN ๐จ๐ฆ Toronto 96
- CAN ๐จ๐ฆ Toronto 97
- CAN ๐จ๐ฆ Toronto 98
- CAN ๐จ๐ฆ Toronto 99
- CAN ๐จ๐ฆ Toronto 100
- CAN ๐จ๐ฆ Toronto 101
- CAN ๐จ๐ฆ Toronto 102
- CAN ๐จ๐ฆ Toronto 103
- CAN ๐จ๐ฆ Toronto 104
- CAN ๐จ๐ฆ Toronto 105
- CAN ๐จ๐ฆ Toronto 106
- CAN ๐จ๐ฆ Toronto 107
- CAN ๐จ๐ฆ Toronto 108
- CAN ๐จ๐ฆ Toronto 109
- CAN ๐จ๐ฆ Toronto 110
- CAN ๐จ๐ฆ Toronto 111
- CAN ๐จ๐ฆ Toronto 112
- CAN ๐จ๐ฆ Toronto 113
- CAN ๐จ๐ฆ Toronto 114
- CAN ๐จ๐ฆ Toronto 115
- CAN ๐จ๐ฆ Toronto 116
- CAN ๐จ๐ฆ Toronto 117
- CAN ๐จ๐ฆ Toronto 118
- CAN ๐จ๐ฆ Toronto 119
- CAN ๐จ๐ฆ Toronto 120
- CAN ๐จ๐ฆ Toronto 121
- CAN ๐จ๐ฆ Toronto 122
- CYP ๐จ๐พ Nicosia
- DEN ๐ฉ๐ฐ Copenhagen
- DEN ๐ฉ๐ฐ Copenhagen 2
- DEN ๐ฉ๐ฐ Graested
- EGY ๐ช๐ฌ Cairo
- EST ๐ช๐ช Tallinn
- FIN ๐ซ๐ฎ Helsinki
- FIN ๐ซ๐ฎ Helsinki 2
- FRA ๐ซ๐ท Roubaix
- FRA ๐ซ๐ท Roubaix 2
- FRA ๐ซ๐ท Roubaix 3
- GER ๐ฉ๐ช Dรผsseldorf
- GER ๐ฉ๐ช Dรผsseldorf 2
- GER ๐ฉ๐ช Dรผsseldorf 3
- GER ๐ฉ๐ช Dรผsseldorf 4
- GER ๐ฉ๐ช Dรผsseldorf 5
- GER ๐ฉ๐ช Dรผsseldorf 6
- GER ๐ฉ๐ช Dรผsseldorf 7
- GER ๐ฉ๐ช Dรผsseldorf 8
- GER ๐ฉ๐ช Dรผsseldorf 9
- GER ๐ฉ๐ช Frankfurt
- GER ๐ฉ๐ช Hesse
- GER ๐ฉ๐ช Hesse 2
- GER ๐ฉ๐ช Hesse 3
- GER ๐ฉ๐ช Hesse 4
- GER ๐ฉ๐ช Hesse 5
- GER ๐ฉ๐ช Hesse 6
- GER ๐ฉ๐ช Nuremberg
- GRC ๐ฌ๐ท Athens
- GRC ๐ฌ๐ท Athens 2
- GRC ๐ฌ๐ท Thessaloniki
- HKG ๐ญ๐ฐ Central
- HKG ๐ญ๐ฐ Central 2
- HKG ๐ญ๐ฐ Central 3
- HKG ๐ญ๐ฐ Central 4
- HKG ๐ญ๐ฐ Central 5
- HKG ๐ญ๐ฐ Central 6
- HKG ๐ญ๐ฐ Central 7
- HKG ๐ญ๐ฐ Central 8
- HKG ๐ญ๐ฐ Central 9
- HUN ๐ญ๐บ Budapest
- HUN ๐ญ๐บ Budapest 2
- ICL ๐ฎ๐ธ Hafnarfjordur
- IND ๐ฎ๐ณ Chennai
- IND ๐ฎ๐ณ Jaipur
- IND ๐ฎ๐ณ Mumbai
- IND ๐ฎ๐ณ Mumbai 2
- IND ๐ฎ๐ณ Mumbai 3
- IND ๐ฎ๐ณ Mumbai 4
- IND ๐ฎ๐ณ Mumbai 5
- IND ๐ฎ๐ณ Mumbai 6
- IND ๐ฎ๐ณ Mumbai 7
- IND ๐ฎ๐ณ Mumbai 8
- IND ๐ฎ๐ณ Mumbai 9
- IND ๐ฎ๐ณ Mumbai 10
- IND ๐ฎ๐ณ Mumbai 11
- IND ๐ฎ๐ณ Mumbai 12
- IND ๐ฎ๐ณ Mumbai 13
- IND ๐ฎ๐ณ Mumbai 14
- IND ๐ฎ๐ณ Mumbai 15
- IND ๐ฎ๐ณ Mumbai 16
- IND ๐ฎ๐ณ Mumbai 17
- IND ๐ฎ๐ณ Mumbai 18
- IND ๐ฎ๐ณ Mumbai 19
- IND ๐ฎ๐ณ Mumbai 20
- IND ๐ฎ๐ณ Mumbai 21
- IND ๐ฎ๐ณ Mumbai 22
- IND ๐ฎ๐ณ Mumbai 23
- INDO ๐ฎ๐ฉ Jakarta
- ISLM ๐ฎ๐ฒ Douglas
- ISR ๐ฎ๐ฑ Haifa
- ISR ๐ฎ๐ฑ Haifa 2
- ISR ๐ฎ๐ฑ Haifa 3
- ISR ๐ฎ๐ฑ Tel Aviv
- ITA ๐ฎ๐น Milan
- ITA ๐ฎ๐น Milan 2
- ITA ๐ฎ๐น Milan 3
- ITA ๐ฎ๐น Milan 4
- ITA ๐ฎ๐น Milan 5
- JPN ๐ฏ๐ต Tokyo
- JPN ๐ฏ๐ต Tokyo 2
- JPN ๐ฏ๐ต Tokyo 3
- JPN ๐ฏ๐ต Tokyo 4
- JPN ๐ฏ๐ต Tokyo 5
- JPN ๐ฏ๐ต Tokyo 6
- JPN ๐ฏ๐ต Tokyo 7
- JPN ๐ฏ๐ต Tokyo 8
- JPN ๐ฏ๐ต Tokyo 9
- JPN ๐ฏ๐ต Tokyo 10
- JPN ๐ฏ๐ต Tokyo 11
- JPN ๐ฏ๐ต Tokyo 12
- JPN ๐ฏ๐ต Tokyo 13
- JPN ๐ฏ๐ต Tokyo 14
- JPN ๐ฏ๐ต Tokyo 15
- JPN ๐ฏ๐ต Tokyo 16
- JPN ๐ฏ๐ต Tokyo 17
- JPN ๐ฏ๐ต Tokyo 18
- JPN ๐ฏ๐ต Tokyo 19
- JPN ๐ฏ๐ต Tokyo 20
- JPN ๐ฏ๐ต Tokyo 21
- JPN ๐ฏ๐ต Tokyo 22
- JPN ๐ฏ๐ต Tokyo 23
- JPN ๐ฏ๐ต Tokyo 24
- JPN ๐ฏ๐ต Tokyo 25
- JPN ๐ฏ๐ต Tokyo 26
- JPN ๐ฏ๐ต Tokyo 27
- JPN ๐ฏ๐ต Tokyo 28
- JPN ๐ฏ๐ต Tokyo 29
- JPN ๐ฏ๐ต Tokyo 30
- JPN ๐ฏ๐ต Tokyo 31
- JPN ๐ฏ๐ต Tokyo 32
- JPN ๐ฏ๐ต Tokyo 33
- JPN ๐ฏ๐ต Tokyo 34
- JPN ๐ฏ๐ต Tokyo 35
- JPN ๐ฏ๐ต Tokyo 36
- JPN ๐ฏ๐ต Tokyo 37
- JPN ๐ฏ๐ต Tokyo 38
- JPN ๐ฏ๐ต Tokyo 39
- JPN ๐ฏ๐ต Tokyo 40
- JPN ๐ฏ๐ต Tokyo 41
- JPN ๐ฏ๐ต Tokyo 42
- JPN ๐ฏ๐ต Tokyo 43
- JPN ๐ฏ๐ต Tokyo 44
- JPN ๐ฏ๐ต Tokyo 45
- JPN ๐ฏ๐ต Tokyo 46
- JPN ๐ฏ๐ต Tokyo 47
- KOR ๐ฐ๐ท Seoul
- KOR ๐ฐ๐ท Seoul 2
- KOR ๐ฐ๐ท Seoul 3
- KOR ๐ฐ๐ท Seoul 4
- KOR ๐ฐ๐ท Seoul 5
- KOR ๐ฐ๐ท Seoul 6
- KOR ๐ฐ๐ท Seoul 7
- KOR ๐ฐ๐ท Seoul 8
- KOR ๐ฐ๐ท Seoul 9
- KOR ๐ฐ๐ท Seoul 10
- KOR ๐ฐ๐ท Seoul 11