-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.htaccess
1650 lines (1565 loc) · 41.6 KB
/
.htaccess
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
deny from 64.225
deny from 194.68
############################################
## overrides deployment configuration mode value
## use command bin/magento deploy:mode:set to switch modes
# SetEnv MAGE_MODE developer
############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi
# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php
############################################
## GoDaddy specific options
# Options -MultiViews
## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini
############################################
## this line is specific for 1and1 hosting
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
############################################
## enable usage of methods arguments in backtrace
SetEnv MAGE_DEBUG_SHOW_ARGS 1
############################################
## default index file
DirectoryIndex index.php
<IfModule mod_php5.c>
############################################
## adjust memory limit
php_value memory_limit 756M
php_value max_execution_time 18000
############################################
## disable automatic session start
## before autoload was initialized
php_flag session.auto_start off
############################################
## enable resulting html compression
#php_flag zlib.output_compression on
###########################################
## disable user agent verification to not break multiple image upload
php_flag suhosin.session.cryptua off
</IfModule>
<IfModule mod_php7.c>
############################################
############################################
## disable automatic session start
## before autoload was initialized
php_flag session.auto_start off
############################################
## enable resulting html compression
#php_flag zlib.output_compression on
###########################################
## disable user agent verification to not break multiple image upload
php_flag suhosin.session.cryptua off
</IfModule>
<IfModule mod_security.c>
###########################################
## disable POST processing to not break multiple image upload
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_deflate.c>
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript application/json image/svg+xml
# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary
</IfModule>
<IfModule mod_ssl.c>
############################################
## make HTTPS env vars available for CGI mode
SSLOptions StdEnvVars
</IfModule>
############################################
## workaround for Apache 2.4.6 CentOS build when working via ProxyPassMatch with HHVM (or any other)
## Please, set it on virtual host configuration level
## SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
############################################
<IfModule mod_rewrite.c>
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
#RewriteBase /magento/
############################################
## workaround for HTTP authorization
## in CGI environment
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
############################################
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks
RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
RewriteRule .* - [L,R=405]
############################################
## redirect for mobile user agents
#RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
#RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]
############################################
## never rewrite for existing files, directories and links
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
############################################
## rewrite everything else to index.php
RewriteRule .* index.php [L]
</IfModule>
############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead
AddDefaultCharset Off
#AddDefaultCharset UTF-8
AddType 'text/html; charset=UTF-8' html
<IfModule mod_expires.c>
############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
ExpiresDefault "access plus 1 year"
ExpiresByType text/html A0
ExpiresByType text/plain A0
</IfModule>
###########################################
## Deny access to root files to hide sensitive application information
RedirectMatch 403 /\.git
<Files composer.json>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files composer.lock>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .gitignore>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .htaccess>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .htaccess.sample>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .php_cs.dist>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .travis.yml>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files CHANGELOG.md>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files COPYING.txt>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files Gruntfile.js>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files LICENSE.txt>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files LICENSE_AFL.txt>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files nginx.conf.sample>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files package.json>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files php.ini.sample>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files README.md>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files magento_umask>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files auth.json>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
<Files .user.ini>
<IfVersion < 2.4>
order allow,deny
deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</Files>
# For 404s and 403s that aren't handled by the application, show plain 404 response
ErrorDocument 404 /pub/errors/404.php
ErrorDocument 403 /pub/errors/404.php
################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags
#FileETag none
# ######################################################################
# # INTERNET EXPLORER #
# ######################################################################
# ----------------------------------------------------------------------
# | Document modes |
# ----------------------------------------------------------------------
# Force Internet Explorer 8/9/10 to render pages in the highest mode
# available in the various cases when it may not.
#
# https://hsivonen.fi/doctype/#ie8
#
# (!) Starting with Internet Explorer 11, document modes are deprecated.
# If your business still relies on older web apps and services that were
# designed for older versions of Internet Explorer, you might want to
# consider enabling `Enterprise Mode` throughout your company.
#
# https://msdn.microsoft.com/en-us/library/ie/bg182625.aspx#docmode
# http://blogs.msdn.com/b/ie/archive/2014/04/02/stay-up-to-date-with-enterprise-mode-for-internet-explorer-11.aspx
<IfModule mod_headers.c>
Header set X-UA-Compatible "IE=edge"
# `mod_headers` cannot match based on the content-type, however,
# the `X-UA-Compatible` response header should be send only for
# HTML documents and not for the other resources.
<FilesMatch "\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|topojson|tt[cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xml|xpi)$">
Header unset X-UA-Compatible
</FilesMatch>
</IfModule>
## BLACKLIST IP AUTO ADDED ##
# on Mon, 18 May 2020 12:30:21 +0000 Last 10days Blacklist IPs
###############################################################################
# LIVE BLACKLIST IPv4/IPv6 ADDRESSES DATABASE
# URL: https://myip.ms/browse/blacklist
#
# Myip.ms Blacklist IPs in this List: 1,066 ip (08 May 2020 - 18 May 2020)
#
deny from 54.36.150.169
deny from 54.36.150.60
deny from 183.143.58.192
deny from 122.232.141.26
deny from 85.208.96.68
deny from 46.19.142.154
deny from 95.179.158.219
deny from 92.220.10.100
deny from 195.154.122.80
deny from 115.234.104.200
deny from 54.36.150.17
deny from 195.154.123.15
deny from 54.36.150.19
deny from 54.36.149.28
deny from 54.36.149.93
deny from 54.36.149.87
deny from 54.36.148.171
deny from 115.234.109.63
deny from 54.36.148.43
deny from 54.36.148.191
deny from 195.154.123.90
deny from 54.36.150.107
deny from 180.251.239.112
deny from 92.255.195.226
deny from 54.36.150.158
deny from 54.36.150.11
deny from 164.68.106.61
deny from 105.112.97.186
deny from 46.183.221.25
deny from 54.36.150.142
deny from 54.36.150.4
deny from 54.36.148.193
deny from 5.188.211.13
deny from 213.180.203.253
deny from 54.36.150.139
deny from 23.226.128.186
deny from 54.36.148.11
deny from 45.133.180.26
deny from 31.24.231.241
deny from 54.36.148.119
deny from 31.14.131.70
deny from 199.59.72.44
deny from 213.180.203.249
deny from 200.195.162.242
deny from 217.15.26.82
deny from 118.151.220.28
deny from 54.36.149.38
deny from 54.36.150.46
deny from 195.154.123.98
deny from 54.36.148.79
deny from 54.36.148.80
deny from 54.36.149.94
deny from 54.36.150.116
deny from 54.36.148.139
deny from 54.36.148.57
deny from 43.245.87.28
deny from 94.154.239.69
deny from 118.163.147.13
deny from 195.154.122.196
deny from 54.36.148.253
deny from 192.243.53.51
deny from 62.171.159.200
deny from 195.154.122.220
deny from 195.154.123.142
deny from 195.154.122.69
deny from 54.36.149.64
deny from 195.154.122.222
deny from 203.192.245.55
deny from 193.148.18.219
deny from 185.102.186.83
deny from 31.145.81.178
deny from 183.143.45.191
deny from 195.154.122.6
deny from 183.143.60.252
deny from 115.208.86.180
deny from 54.36.148.122
deny from 183.143.54.5
deny from 183.143.61.9
deny from 183.143.56.22
deny from 183.143.62.197
deny from 5.188.211.21
deny from 54.36.148.207
deny from 54.36.148.219
deny from 54.36.149.53
deny from 54.36.148.200
deny from 104.37.31.4
deny from 183.143.41.150
deny from 54.36.149.99
deny from 54.36.148.175
deny from 195.138.67.237
deny from 185.99.254.236
deny from 115.234.109.60
deny from 115.234.109.46
deny from 148.251.11.147
deny from 192.41.71.221
deny from 144.217.101.242
deny from 178.128.239.47
deny from 151.80.199.89
deny from 201.71.27.254
deny from 64.225.25.175
deny from 167.99.154.98
deny from 54.36.150.166
deny from 195.154.122.14
deny from 54.36.150.80
deny from 167.99.167.237
deny from 193.56.28.16
deny from 72.252.201.34
deny from 5.188.211.35
deny from 195.154.123.143
deny from 54.36.148.160
deny from 5.188.211.10
deny from 182.232.0.49
deny from 54.36.150.98
deny from 54.36.149.75
deny from 183.143.42.243
deny from 54.36.150.106
deny from 54.36.150.179
deny from 42.115.71.161
deny from 54.36.148.140
deny from 95.217.191.147
deny from 54.36.150.50
deny from 195.154.122.134
deny from 207.47.45.161
deny from 122.230.157.123
deny from 183.143.48.254
deny from 118.71.61.0
deny from 115.208.19.119
deny from 183.143.42.48
deny from 192.99.39.235
deny from 64.225.121.189
deny from 64.225.63.46
deny from 115.208.67.204
deny from 107.155.132.148
deny from 54.36.148.247
deny from 54.36.149.11
deny from 54.36.148.156
deny from 54.36.148.210
deny from 182.75.220.186
deny from 205.134.171.79
deny from 54.36.148.252
deny from 5.188.211.14
deny from 195.154.122.7
deny from 54.36.148.185
deny from 5.188.211.26
deny from 5.188.211.15
deny from 114.119.165.121
deny from 180.252.20.143
deny from 5.188.211.24
deny from 115.208.65.201
deny from 182.253.14.21
deny from 114.119.164.185
deny from 195.154.122.230
deny from 54.36.149.15
deny from 185.165.153.215
deny from 114.119.165.57
deny from 194.5.99.41
deny from 196.53.0.145
deny from 105.112.60.69
deny from 63.246.128.176
deny from 173.212.220.26
deny from 153.126.172.177
deny from 114.119.160.69
deny from 54.36.149.45
deny from 114.119.166.185
deny from 114.119.163.31
deny from 114.119.165.49
deny from 5.188.211.16
deny from 114.119.162.203
deny from 114.119.162.88
deny from 114.119.166.29
deny from 114.119.161.29
deny from 115.234.109.116
deny from 114.119.161.125
deny from 197.202.52.71
deny from 114.119.166.195
deny from 54.36.148.94
deny from 114.119.164.50
deny from 88.130.60.27
deny from 52.53.82.178
deny from 46.28.104.44
deny from 114.119.165.215
deny from 114.119.160.20
deny from 114.119.160.62
deny from 114.119.163.106
deny from 114.119.165.245
deny from 114.119.161.126
deny from 114.119.164.144
deny from 114.119.161.147
deny from 197.202.57.224
deny from 114.119.165.170
deny from 122.230.153.5
deny from 5.188.211.22
deny from 1.53.242.244
deny from 54.36.148.226
deny from 195.154.123.136
deny from 54.36.148.233
deny from 195.154.122.111
deny from 111.192.157.9
deny from 114.119.162.161
deny from 114.119.163.89
deny from 114.119.161.54
deny from 114.119.167.42
deny from 117.1.168.193
deny from 54.36.148.120
deny from 54.36.148.95
deny from 54.36.150.113
deny from 54.36.148.14
deny from 54.36.148.97
deny from 54.36.148.152
deny from 72.14.190.106
deny from 183.143.44.237
deny from 116.203.35.25
deny from 122.232.166.172
deny from 115.234.104.116
deny from 95.217.191.188
deny from 183.143.37.99
deny from 144.76.27.118
deny from 183.143.32.202
deny from 103.119.55.8
deny from 115.234.106.93
deny from 183.143.42.66
deny from 195.154.122.148
deny from 37.120.213.213
deny from 159.69.187.108
deny from 183.143.36.116
deny from 183.143.46.80
deny from 54.36.150.84
deny from 54.36.148.164
deny from 122.230.157.154
deny from 54.36.148.138
deny from 54.36.149.90
deny from 54.36.149.12
deny from 115.208.87.84
deny from 54.36.148.29
deny from 54.36.150.71
deny from 54.36.148.28
deny from 149.202.211.239
deny from 54.36.150.174
deny from 95.91.33.17
deny from 34.212.140.129
deny from 54.190.20.145
deny from 54.214.123.134
deny from 54.36.150.189
deny from 113.120.143.175
deny from 54.36.150.164
deny from 195.154.123.65
deny from 40.114.77.6
deny from 2.249.90.63
deny from 115.234.110.129
deny from 68.33.40.43
deny from 114.119.160.225
deny from 114.119.167.52
deny from 114.119.167.128
deny from 114.119.160.214
deny from 114.119.167.90
deny from 213.180.203.252
deny from 46.229.173.67
deny from 114.119.164.113
deny from 114.119.166.163
deny from 114.119.166.211
deny from 114.119.162.150
deny from 114.119.165.59
deny from 54.36.148.192
deny from 114.119.163.152
deny from 114.119.164.118
deny from 114.119.166.202
deny from 114.119.167.29
deny from 185.29.11.115
deny from 54.36.148.111
deny from 114.119.167.63
deny from 114.119.161.41
deny from 51.38.189.29
deny from 114.119.166.222
deny from 54.36.150.135
deny from 114.119.160.222
deny from 195.154.123.18
deny from 114.119.166.127
deny from 114.119.160.153
deny from 114.119.165.177
deny from 114.119.166.227
deny from 114.119.161.111
deny from 114.119.163.27
deny from 114.119.163.62
deny from 114.119.161.121
deny from 114.119.166.242
deny from 114.119.161.14
deny from 114.119.160.5
deny from 114.119.164.28
deny from 114.119.162.9
deny from 114.119.163.28
deny from 202.178.121.219
deny from 114.119.162.95
deny from 114.119.167.148
deny from 114.119.165.220
deny from 114.119.163.11
deny from 114.119.167.88
deny from 114.119.163.10
deny from 114.119.163.21
deny from 114.119.162.141
deny from 79.134.225.111
deny from 114.119.160.128
deny from 114.119.161.92
deny from 114.119.164.252
deny from 125.161.248.174
deny from 114.119.162.122
deny from 114.119.163.96
deny from 114.119.161.247
deny from 114.119.162.222
deny from 114.119.166.36
deny from 114.119.164.129
deny from 114.119.162.140
deny from 114.119.165.99
deny from 114.119.166.84
deny from 114.119.160.140
deny from 114.119.162.220
deny from 114.119.160.169
deny from 114.119.160.192
deny from 114.119.161.36
deny from 114.119.163.20
deny from 114.119.166.137
deny from 114.119.161.9
deny from 54.36.149.5
deny from 54.36.149.62
deny from 114.119.164.247
deny from 114.119.162.139
deny from 114.119.165.20
deny from 114.119.167.175
deny from 114.119.163.6
deny from 114.119.163.120
deny from 207.241.231.147
deny from 114.119.165.207
deny from 114.119.161.113
deny from 207.241.231.149
deny from 114.119.164.241
deny from 114.119.160.11
deny from 207.241.231.150
deny from 114.119.164.58
deny from 114.119.167.127
deny from 114.119.166.59
deny from 114.119.161.154
deny from 114.119.160.80
deny from 114.119.163.75
deny from 114.119.162.236
deny from 114.119.166.53
deny from 114.119.167.83
deny from 114.119.162.40
deny from 114.119.165.163
deny from 114.119.165.196
deny from 114.119.167.58
deny from 114.119.161.57
deny from 114.119.164.235
deny from 114.119.166.218
deny from 114.119.164.98
deny from 114.119.164.79
deny from 114.119.161.205
deny from 114.119.163.32
deny from 82.11.118.35
deny from 114.119.163.232
deny from 114.119.162.175
deny from 114.119.163.25
deny from 114.119.167.24
deny from 114.119.161.77
deny from 114.119.163.140
deny from 114.119.161.139
deny from 207.241.231.148
deny from 114.119.165.192
deny from 114.119.162.94
deny from 114.119.166.157
deny from 114.119.165.229
deny from 114.119.164.21
deny from 114.119.167.192
deny from 114.119.163.219
deny from 114.119.163.182
deny from 114.119.161.108
deny from 114.119.167.209
deny from 114.119.165.176
deny from 114.119.163.111
deny from 114.119.164.53
deny from 114.119.160.22
deny from 114.119.165.84
deny from 114.119.163.198
deny from 114.119.164.210
deny from 114.119.160.129
deny from 207.241.231.151
deny from 114.119.161.158
deny from 114.119.164.33
deny from 114.119.165.14
deny from 114.119.165.147
deny from 114.119.167.217
deny from 114.119.165.146
deny from 114.119.161.165
deny from 114.119.165.39
deny from 204.12.208.154
deny from 114.119.166.146
deny from 114.119.160.82
deny from 114.119.160.221
deny from 114.119.161.128
deny from 114.119.164.213
deny from 114.119.160.34
deny from 114.119.162.177
deny from 114.119.161.5
deny from 114.119.165.239
deny from 114.119.167.87
deny from 114.119.160.156
deny from 114.119.166.128
deny from 114.119.167.85
deny from 114.119.161.116
deny from 114.119.165.168
deny from 114.119.162.144
deny from 114.119.167.50
deny from 114.119.163.18
deny from 114.119.165.109
deny from 114.119.165.30
deny from 114.119.164.32
deny from 114.119.165.251
deny from 114.119.163.227
deny from 114.119.162.124
deny from 114.119.160.184
deny from 114.119.166.72
deny from 114.119.165.45
deny from 114.119.162.105
deny from 114.119.165.16
deny from 114.119.161.166
deny from 114.119.162.127
deny from 114.119.164.104
deny from 114.119.164.205
deny from 114.119.166.7
deny from 114.119.160.233
deny from 114.119.161.232
deny from 114.119.166.10
deny from 114.119.160.217
deny from 114.119.165.111
deny from 114.119.160.70
deny from 115.208.20.3
deny from 114.119.162.21
deny from 114.119.165.162
deny from 114.119.164.167
deny from 114.119.161.172
deny from 114.119.161.254
deny from 54.36.148.2
deny from 114.119.161.173
deny from 114.119.160.21
deny from 114.119.166.206
deny from 54.36.150.43
deny from 114.119.163.90
deny from 47.88.51.0
deny from 114.119.167.228
deny from 114.119.164.80
deny from 181.214.179.208
deny from 104.219.237.222
deny from 114.119.163.122
deny from 183.143.46.227
deny from 114.119.164.24
deny from 114.119.161.105
deny from 47.254.43.7
deny from 114.119.161.86
deny from 114.119.164.13
deny from 114.119.166.32
deny from 114.119.167.73
deny from 114.119.166.60
deny from 114.119.167.159
deny from 114.119.164.161
deny from 114.119.161.39
deny from 114.119.164.95
deny from 114.119.164.142
deny from 114.119.161.65
deny from 114.119.163.224
deny from 114.119.166.56
deny from 114.119.162.55
deny from 114.119.163.84
deny from 114.119.163.201
deny from 47.254.36.89
deny from 114.119.167.206
deny from 114.119.161.122
deny from 47.254.41.44
deny from 47.254.47.223
deny from 114.119.163.100
deny from 114.119.160.26
deny from 114.119.163.159
deny from 114.119.160.162
deny from 114.119.163.15
deny from 114.119.165.249
deny from 54.36.148.255
deny from 114.119.160.124
deny from 114.119.162.252
deny from 114.119.166.133
deny from 114.119.167.77
deny from 114.119.166.220
deny from 114.119.163.158
deny from 114.119.164.137
deny from 114.119.167.150
deny from 114.119.165.50
deny from 114.119.162.180
deny from 114.119.167.245
deny from 114.119.162.152
deny from 114.119.162.43
deny from 47.254.24.77
deny from 114.119.163.40
deny from 54.36.150.81
deny from 114.119.163.7
deny from 114.119.164.151
deny from 114.119.162.49
deny from 114.119.167.186
deny from 114.119.167.164
deny from 114.119.163.235
deny from 114.119.162.87
deny from 114.119.166.85
deny from 114.119.162.244
deny from 47.254.35.11
deny from 47.89.251.140
deny from 195.154.123.140
deny from 114.119.162.113
deny from 114.119.164.11
deny from 114.119.167.207
deny from 8.209.95.121
deny from 104.149.45.2
deny from 114.119.161.61
deny from 114.119.162.35
deny from 54.36.148.73
deny from 114.119.166.126
deny from 54.36.150.180
deny from 115.234.109.113
deny from 114.119.163.183
deny from 115.234.108.197
deny from 114.119.164.180
deny from 217.182.56.70
deny from 114.119.162.125
deny from 114.119.162.7
deny from 47.254.22.192
deny from 114.119.162.92
deny from 54.36.150.25
deny from 47.254.35.118
deny from 54.36.150.182
deny from 114.119.167.32
deny from 114.119.161.151
deny from 114.119.166.159
deny from 114.119.160.176
deny from 115.234.106.246
deny from 114.119.163.5
deny from 114.119.165.181
deny from 114.119.163.68
deny from 183.143.34.162
deny from 114.119.167.3
deny from 114.119.164.101
deny from 114.119.163.207
deny from 114.119.164.25
deny from 114.119.166.42
deny from 183.143.40.176
deny from 159.89.137.243
deny from 114.119.162.4
deny from 183.143.42.121
deny from 114.119.161.1
deny from 114.119.160.254
deny from 114.119.160.39
deny from 54.36.148.20
deny from 114.119.160.86
deny from 114.119.167.20
deny from 114.119.166.51
deny from 114.119.163.61
deny from 114.119.163.157
deny from 114.119.167.244
deny from 114.119.161.30
deny from 114.119.163.66
deny from 114.119.163.118
deny from 114.119.161.135