-
Notifications
You must be signed in to change notification settings - Fork 0
/
.htaccess
9169 lines (8908 loc) · 630 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
### BEGIN .htaccess
#
# Custom stuff
#
## Apache Spam Referer Blocker .htaccess version for mod_rewrite.c
##################################################################
## Rename this file to .htaccess
##################################################################
# https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker
### Version Information #
### Version: V3.2021.11.1231
### Bad Referrer Count: 7077
### Bad Bot Count: 630
### Version Information ##
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} ^\W [OR]
RewriteCond %{HTTP_USER_AGENT} \b01h4x\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \b360Spider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \b404checker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \b404enemy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \b80legs\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bADmantX\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAIBOT\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bALittle\ Client\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bASPSeek\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAbonti\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAboundex\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAboundexbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAcunetix\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAfD\-Verbotsverfahren\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAhrefsBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAiHitBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAipbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAlexibot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAllSubmitter\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAlligator\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAlphaBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAnarchie\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAnarchy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAnarchy99\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAnkit\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAnthill\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bApexoo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAspiegel\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAsterias\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAtomseobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAttach\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAwarioRssBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bAwarioSmartBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBBBike\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBDCbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBDFetch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBLEXBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBackDoorBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBackStreet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBackWeb\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBacklinkCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBacklink\-Ceck\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBadass\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBandit\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBarkrowler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBatchFTP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBattleztar\ Bazinga\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBetaBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBigfoot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBitacle\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBlackWidow\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBlack\ Hole\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBlackboard\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBlow\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBlowFish\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBoardreader\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBolt\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBotALot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBrandprotect\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBrandwatch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBuck\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBuddy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBuiltBotTough\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBuiltWith\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBullseye\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBunnySlippers\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bBuzzSumo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCATExplorador\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCCBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCODE87\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCSHttp\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCalculon\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCazoodleBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCegbfeieh\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCensysInspect\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCheTeam\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCheeseBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCherryPicker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bChinaClaw\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bChlooe\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bClaritybot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCliqzbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCloud\ mapping\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCocolyzebot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCogentbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCollector\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCopier\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCopyRightCheck\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCopyscape\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCosmos\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCraftbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCrawling\ at\ Home\ Project\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCrazyWebCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCrescent\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCrunchBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCurious\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCusto\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bCyotekWebCopy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDBLBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDIIbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDSearch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDTS\ Agent\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDataCha0s\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDatabaseDriverMysqli\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDemon\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDeusu\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDevil\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDigincore\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDigitalPebble\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDirbuster\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDisco\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDiscobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDiscoverybot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDispatch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDittoSpyder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDnBCrawler\-Analytics\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDnyzBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomCopBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomainAppender\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomainCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomainSigmaCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomainStatsBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDomains\ Project\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDotbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDownload\ Wonder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDragonfly\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bDrip\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bECCP\/1\.0\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEMail\ Siphon\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEMail\ Wolf\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEasyDL\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEbingbong\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEcxi\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEirGrabber\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEroCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEvil\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExabot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExpress\ WebPictures\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExtLinksBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExtractor\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExtractorPro\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bExtreme\ Picture\ Finder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEyeNetIE\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bEzooms\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFDM\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFHscan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFemtosearchBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFimap\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFirefox\/7\.0\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFlashGet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFlunky\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFoobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFreeuploader\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFrontPage\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFuzz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFyberSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bFyrebot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGT\:\:WWW\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bG\-i\-g\-a\-b\-o\-t\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGalaxyBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGenieo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGermCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGetRight\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGetWeb\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGetintent\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGigabot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGoZilla\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGo\!Zilla\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGo\-Ahead\-Got\-It\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGotit\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGrabNet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGrabber\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGrafula\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGrapeFX\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGrapeshotCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bGridBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHEADMasterSEO\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHMView\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHTMLparser\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHTTP\:\:Lite\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHTTrack\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHaansoft\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHaosouSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHarvest\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHavij\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHeritrix\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHloader\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHumanlinks\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bHybridBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIDBTE4M\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIDBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIRLbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIblog\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bId\-search\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIlseBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bImage\ Fetch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bImage\ Sucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIndeedBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIndy\ Library\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bInfoNaviRobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bInfoTekies\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIntelliseek\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bInterGET\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bInternetSeer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bInternet\ Ninja\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIria\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIskanie\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bIstellaBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJOC\ Web\ Spider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJamesBOT\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJbrofuzz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJennyBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJetCar\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJetty\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJikeSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJoomla\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJorgee\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJustView\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bJyxobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bKenjin\ Spider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bKeyword\ Density\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bKinza\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bKozmosbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLNSpiderguy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLWP\:\:Simple\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLanshanbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLarbin\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLeap\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLeechFTP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLeechGet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLexiBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLftp\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLibWeb\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLibwhisker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLieBaoFast\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLightspeedsystems\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLikse\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkScan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkWalker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkdexbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkextractorPro\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinkpadBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinksManager\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinqiaMetadataDownloaderBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinqiaRSSBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLinqiaScrapeBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLipperhey\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLipperhey\ Spider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLitemage\_walker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLmspider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bLtx71\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMFC\_Tear\_Sample\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMIDown\ tool\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMIIxpc\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMJ12bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMQQBrowser\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMSFrontPage\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMSIECrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMTRobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMag\-Net\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMagnet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMail\.RU\_Bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMajestic12\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMajestic\ SEO\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMajestic\-SEO\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMarkMonitor\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMarkWatch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMass\ Downloader\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMasscan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMata\ Hari\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMauiBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMb2345Browser\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMeanPath\ Bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMeanpathbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMediatoolkitbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMegaIndex\.ru\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMetauri\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMicroMessenger\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMicrosoft\ Data\ Access\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMicrosoft\ URL\ Control\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMister\ PiX\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMoblie\ Safari\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMojeek\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMojolicious\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMorfeus\ Fucking\ Scanner\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMozlila\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMr\.4x3\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMsrabot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bMusobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNICErsPRO\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNPbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bName\ Intelligence\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNameprotect\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNavroad\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNearSite\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNeedle\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNessus\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetAnts\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetLyzer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetMechanic\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetZIP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNet\ Vampire\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetcraft\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNettrack\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNetvibes\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNextGenSearchBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNibbler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNiki\-bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNikto\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNimbleCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNimbostratus\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNinja\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNmap\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNuclei\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bNutch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOctopus\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOffline\ Explorer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOffline\ Navigator\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOnCrawl\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOpenLinkProfiler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOpenVAS\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOpenfind\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOpenvas\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOrangeBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOrangeSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOutclicksBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bOutfoxBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPECL\:\:HTTP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPHPCrawl\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPOE\-Component\-Client\-HTTP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPageAnalyzer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPageGrabber\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPageScorer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPageThing\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPage\ Analyzer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPandalytics\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPanscient\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPapa\ Foto\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPavuk\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPeoplePal\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPetalbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPi\-Monster\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPicscout\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPicsearch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPictureFinder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPiepmatz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPimonster\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPixray\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPleaseCrawl\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPockey\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bProPowerBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bProWebWalker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bProbethenet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPsbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPu\_iN\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPump\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPxBroker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bPyCurl\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bQueryN\ Metasearch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bQuick\-Crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRSSingBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankActive\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankActiveLinkBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankFlex\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankingBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankingBot2\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankivabot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRankurBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bReGet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRe\-re\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRealDownload\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bReaper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRebelMouse\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRecorder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRedesScrapy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRepoMonkey\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRipper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRocketCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bRogerbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSBIder\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSEOkicks\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSEOkicks\-Robot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSEOlyticsCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSEOprofiler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSEOstats\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSISTRIX\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSMTBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSalesIntelligent\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScanAlert\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScanbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScoutJet\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScrapy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScreaming\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScreenerBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bScrepyBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSearchestate\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSearchmetricsBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSeekport\ Crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSemanticJuice\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSemrush\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSemrushBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSentiBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSeoSiteCheckup\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSeobilityBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSeomoz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSeznamBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bShodan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiphon\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteCheckerBotCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteExplorer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteLockSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteSnagger\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteSucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSite\ Sucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSitebeam\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSiteimprove\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSitevigil\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSlySearch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSmartDownload\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSnake\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSnapbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSnoopy\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSocialRankIOBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSociscraper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSogou\ web\ spider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSosospider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSottopop\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpaceBison\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpammen\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpankBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpanner\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSpinn3r\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSputnikBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSqlmap\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSqlworm\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSqworm\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSteeler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bStripper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSucuri\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSuperBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSuperHTTP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSurfbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSurveyBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSuzuran\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSwiftbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bSzukacz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bT0PHackTeam\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bT8Abot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTeleport\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTeleportPro\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTelesoft\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTelesphoreo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTelesphorep\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTheNomad\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bThe\ Intraformant\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bThumbor\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTightTwatBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTitan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bToata\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bToweyabot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTracemyfile\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTrendiction\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTrendictionbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTrue\_Robot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTuringos\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTurnitin\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTurnitinBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTwengaBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTwice\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bTyphoeus\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bURLy\ Warning\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bURLy\.Warning\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bUnisterBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bUpflow\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVB\ Project\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVCI\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bV\-BOT\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVacuum\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVagabondo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVelenPublicWebCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVeriCiteCrawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVidibleScraper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVirusdie\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVoidEYE\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVoil\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bVoltron\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWASALive\-Bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWBSearchBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWEBDAV\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWISENutbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWPScan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWWWOFFLE\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWWW\-Collector\-E\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWWW\-Mechanize\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWWW\:\:Mechanize\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWallpapers\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWallpapersHD\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWallpapers\/3\.0\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeSEE\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebAuto\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebBandit\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebCollage\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebCopier\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebEnhancer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebFetch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebFuck\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebGo\ IS\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebImageCollector\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebLeacher\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebPix\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebReaper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebSauger\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebStripper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebSucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebWhacker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebZIP\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Auto\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Collage\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Enhancer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Fetch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Fuck\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Pix\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Sauger\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWeb\ Sucker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebalta\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebmasterWorldForumBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebshag\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebsiteExtractor\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebsiteQuester\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebsite\ Quester\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWebster\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWhack\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWhacker\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWhatweb\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWho\.is\ Bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWidow\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWinHTTrack\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWiseGuys\ Robot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWonderbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWoobot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWotbox\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bWprecon\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bXaldon\ WebSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bXaldon\_WebSpider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bXenu\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bYoudaoBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZade\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZauba\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZermelo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZeus\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZitebot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZmEu\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZoomBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZoominfoBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZumBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bZyBorg\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \badscanner\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \barchive\.org\_bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \barquivo\-web\-crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \barquivo\.pt\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bautoemailspider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bbacklink\-check\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcah\.io\.community\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcheck1\.exe\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bclark\-crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcoccocbot\-web\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcognitiveseo\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcom\.plumanalytics\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcrawl\.sogou\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcrawler4j\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bcrawler\.feedback\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bdataforseo\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bdemandbase\-bot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bdomainsproject\.org\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \beCatch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bevc\-batch\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bfacebookscraper\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bgopher\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bheritrix\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \binstabid\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \binternetVista\ monitor\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bips\-agent\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bisitwp\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \blwp\-request\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \blwp\-trivial\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bmagpie\-crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bmeanpathbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bmediawords\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bmuhstik\-scan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bnetEstate\ NE\ Crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \boBot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bpage\ scorer\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bpcBrowser\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bplumanalytics\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bpolaris\ version\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bprobe\-image\-size\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bripz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bs1z\.ru\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsatoristudio\.net\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bscalaj\-http\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bscan\.lol\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bseobility\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bseocompany\.store\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bseoscanners\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bseostar\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bserpstatbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsexsearcher\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsitechecker\.pro\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsiteripz\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsogouspider\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsp\_auditbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bspyfu\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bsysscan\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \btAkeOut\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \btrendiction\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \btrendiction\.de\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bubermetrics\-technologies\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bvoyagerx\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bwebmeup\-crawler\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bwebpros\.com\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bwebprosbot\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bx09Mozilla\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bx22Mozilla\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bxpymep1\.exe\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bzauba\.io\b [NC,OR]
RewriteCond %{HTTP_USER_AGENT} \bzgrab\b [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*000free\.us.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*007angels\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00author\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00go\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00it\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00webcams\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*01apple\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*03e\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*03p\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*08800\.top.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0912701309f8ce\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0c47f8422d3f\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0daymusic\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0lovespells0\.blogspot\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0n\-line\.tv.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\-99seo\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\-free\-share\-buttons\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1000n1\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1001desert\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1001watch\.com\.ua.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1008\.su.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*100dollars\-seo\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*100searchengines\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*101billion\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*101flag\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*101lesbian\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*101raccoon\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*108shot\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*10bet\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*11235813\.webzdarma\.cz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*11pikachu\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*123any\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*123cha\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*123kuma\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*123locker\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*123movies\.love.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12bet\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12masterov\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12u\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1314dh\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*13tabs\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*14b\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1688\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*178evakuator178\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*18ps\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1adult\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1bet\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1flag\.co\.za.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1hwy\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1j7740kd\.website.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1kdailyprofit\.me.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1kinobig\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1millionusd\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1pamm\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1qingdao\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1stat\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1webmaster\.ml.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbet4you\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2000k\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2015god\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2020iscoming\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*202ch\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*20pascals\.nl.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*214jaluwobapef\.cf.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*21h2o\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2345\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*23kw\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24\-ak\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24videos\.tv.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24x7\-server\-support\.site.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*256bit\.by.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2728fb936f0\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*273\-fz\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*28n2gl3wfyb0\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2ads\.co\.uk.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2daytrendingnews\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2drittel\.de.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2girls1cup\-free\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2itech\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2kata\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2nt\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2pxg8bcf\.top.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2rich4bitches\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2x2fan\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3\-letter\-domains\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*300richmond\.co\.nz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*34\.gs.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3dracergames\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3rbseyes\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3th\.co\.in.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3w24\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3weekdiet\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3xforum\.ro.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*404\.mn.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*40cg\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*45en\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4inn\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4istoshop\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4k\-player\.pl.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4kepics\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4kpics\.rocks.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4kplayer\.pl.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4pp13\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4rent\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4replicawatch\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4senses\.co.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4ur\.click.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4ureyesonly\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4webmasters\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4webmasters\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5\-steps\-to\-start\-business\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5000\-cotydzien\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*51\.la.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*51unlim\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*55wmz\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*57883\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5elementov\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5forex\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5i2\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5kstore\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5tey7463\.weebly\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5u\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5ws\.dating\-app\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*6128786\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*66cpwgln\.space.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*6hopping\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*70casino\.online.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*72\-news\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*76brighton\.co\.uk.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*777\-club\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7a2rnuey1tw9ar\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7fon\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7makemoneyonline\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7minuteworkout\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7ooo\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7search\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7wind\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7xc4n\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7yue\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7zap\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*83net\.jp.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8558l\.jobs\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*883zy\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*888\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8gold\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8jn\.dating\-app\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8kisses\.eu.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8lufu\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8si\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8xv8\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*91abcw\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*98oi\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*991mostfm\.co\.id.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*999webdesign\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*9icmzvn6\.website.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*9med\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a\.frcls\.fr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a\.pr\-cy\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a14download\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a1security\.com\.ua.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a96527gi\.beget\.tech.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa08daf7e13b6345e09e92f771507fa5f4\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa14ab57a3339c4064bd9ae6fad7495b5f\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa625d84f1587749c1ab011d6f269f7d64\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa81bf391151884adfa3dd677e41f94be1\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa8780bb28a1de4eb5bff33c28a218a930\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa8b68101d388c446389283820863176e7\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa9bd78f328a6a41279d0fad0a88df1901\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aa9d046aab36af4ff182f097f840430d51\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aaa38852e886ac4af1a3cff9b47cab6272\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aab94f698f36684c5a852a2ef272e031bb\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aac500b7a15b2646968f6bd8c6305869d7\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aac52006ec82a24e08b665f4db2b5013f7\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aad1f4acb0a373420d9b0c4202d38d94fa\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aadroid\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aanapa\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aarbur\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aaronabel\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aasoldes\.fr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abbanreddy\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abcdefh\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abcdeg\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abcguru\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abclauncher\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abctoppictures\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abiente\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*above\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abovetherivernc\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*absolute\-s\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*absolutelyanalog\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*absugars\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abtasty\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abusora\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abwa\.tk.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*academia\-nsk\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*academiacsmendoza\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acads\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acc\.eu\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*accessoires\-mode\.in.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acgs\.tk.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acheterviagrafr24\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acmebtn\.ml.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acortarurl\.es.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*actices\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*actionnooz\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*activecampaign\.dreamhosters\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*activepr\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*actulite\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acunetix\-referrer\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ad\-words\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adamoads\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adanih\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adbetclickin\.pink.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adcash\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adclickservice\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adclickthru\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adconscious\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*add\-add\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*addbin\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*addblueoff\.com\.ua.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*addray\.pro.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*addtoadd\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adelly\.bg.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adexprts\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adf\.ly.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adhome\.biz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adidas\.frwebs\.fr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adimmix\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adinterax\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adktrailmap\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adloads\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adloads\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adman\.gr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adman\.se.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*admanaerofoil\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*admatic\.com\.tr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*admeasures\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adminshop\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*admitad\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adnotbad\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adobereader\-free\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adpremium\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adprotect\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adrenalin\-stk\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adrunnr\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ads\-cool\.pro.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ads\-seo\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ads\.gold.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ads\.tremorhub\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adserver\-e7\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adservme\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adsfresh\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adsland\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adsloads\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adsref\.men.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adssafeprotected\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtech\.de.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtech\.fr.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtech\.us.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtiger\.tk.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtology\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adult\-shop\.com\.ua.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adult3dgames\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultactioncam\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultfriendfinder\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultfullhd\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultgalls\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultmeetonline\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultnet\.in.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultwebhosting\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advancedcleaner\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advancedmassagebysara\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advancedsoftwaresupport\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adventureparkcostarica\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adverster\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advertex\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advertisingtag\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adviceforum\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advocatemsk\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokat\-grodno\.by.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adzerg\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adzpower\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aero2\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aerogo\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*affiliate\-fr\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*affordablewebsitesandmobileapps\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*affrh2015\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afftrack001\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afmuseum\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afora\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afslankpillen2017nl\.eu.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agadelha\.com\.br.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agahinameh\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agapovdg\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agardomains\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agecheckadult\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ageofclones\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aghanyna\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agreda\.pluto\.ro.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agroeconom\.kz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agysya\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahhjf\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahmedabadwebs\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahrefs\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahrntal\.verymes\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aibolita\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aihelen\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aimayangzhi\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*air\-edem\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*airlandsea\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*airmaxshoes\-2016\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akama\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akita\.kz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aksonural\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aktivator\-windows10\.blogspot\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aktobe\.xkaz\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akuhni\.by.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akusherok\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akvamaster\.dp\.ua.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alarmobninsk\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*albamargroup\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alborzan\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*albumsuper\.info.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*albuteroli\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ald2014\.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alekseevec\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\-fdm\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\-fjg\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\-hgd\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\-jdh\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\.scansafe\.net.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alessandraleone\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alevinefesleri\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alf\-img\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfa\-img\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfa\-medosmotr\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfa9\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfabot\.xyz.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfapro\.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*algarveglobal\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*algerianembassy\.co\.in.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alibestsale\.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alice\.it.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alienwheel\.es.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alienwheels\.de.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aliexpresscashback\.club.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alif\-ba\-ta\.com.*$ [NC,OR]