[2005-10-18T23:29:20+0000] GET from 61.9.136.168 I:['fsdfs'] R:[dsf] [2005-10-19T09:52:34+0000] GET from 80.66.6.99 I:['12343ffffgf'] R:[[0-9A-z]] [2005-10-19T09:52:43+0000] GET from 80.66.6.99 I:['12343ffffgf'] R:[[0-9A-z]+] [2005-10-19T09:55:18+0000] GET from 80.66.6.99 I:['\xa7>12343<\xa7'] R:[$>.*<$] [2005-10-19T09:56:06+0000] GET from 80.66.6.99 I:['\xa7>12343<\xa7'] R:[$>.*<$] [2005-10-26T16:07:14+0000] GET from 67.99.46.192 I:['snf labs may have some --bugs-- but who can say'] R:[--(.*)--] [2005-11-03T17:25:09+0000] GET from 67.99.46.192 I:['After working on chompy.net, it\'s clear that dealing with syndicated feeds (especially RSS) feeds is a pain in the ass.\r\n\r\nThe following are adapted from two emails I sent to Scott about chompy.net. Hope he doesn\'t mind.\r\n\r\n### timestamps ###\r\n\r\nScott wrote:\r\n\r\n> Since I\'m a neurotic internet fiddler (as it appears you also are) I \r\n> thought I should point out that the time stamp on blog entries seems to \r\n> be out of whack. Maybe it\'s applying an unneccesary offset? I can only \r\n> speak for my own entries, but their stamps appear on Chompy as having \r\n> been posted 5 hours before they were posted on Junklab. Bizarre.\r\n\r\nThere is, of course, more to this story. Ready? Really? Okay.\r\n\r\nYour B2 [RSS 2.0](http://blogs.law.harvard.edu/tech/rss) feed reports dates using the optional [Dublin Core](http://dublincore.org/documents/dces/#date) (ISO 15836-2003) `` field. According to the Dublin Core specification, the `` field should use dates formatted according to ISO 8601, or [W3CDTF] (http://www.w3.org/TR/NOTE-datetime). W3CDTF allows a given date\'s time zone to be expressed in one of two ways:\r\n\r\n1. With times expressed as UTC/GMT, and with the time zone identifier "Z," indicating UTC.\r\n2. With times expressed in local time, and with the time zone designated using an offset ("+hh:mm") indicating the time\'s relation to UTC.\r\n\r\nTo give an example, the date October 8, 2005, 4:36:14 PM (CDT) could be expressed as either of the following, when formatted according to the W3CDTF specification:\r\n\r\n1. 2005-10-08T16:36:14-06:00\r\n2. 2005-10-08T22:36:14Z\r\n\r\nNow, that date happens to be the same date as the last entry in your blog, which appears in your RSS 2.0 feed like so:\r\n\r\n 2005-10-08T16:36:14\r\n\r\nIt should actually look like this:\r\n\r\n 2005-10-08T16:36:14-06:00\r\n\r\nI don\'t know how B2 works but fixing this could be as simple as opening up a template file and cramming the string "-06:00" in somewhere.\r\n\r\n(And this could actually be even more complicated. RSS 2.0 also allows dates to be specified in a `` field ([RSS 2.0 pubDates](http://blogs.law.harvard.edu/tech/rss#ltpubdategtSubelementOfLtitemgt)), which uses a *different* date format, [RFC 822](http://asg.web.cmu.edu/rfc/rfc822.html#sec-5). An RSS 2.0 feed, then, could conceivably include both a `` field and a `` field just to piss off people that write RSS aggregators.)\r\n\r\nEven if you were to fix your feed, though, there would still be a few other date-related problems that I need to fix myself, so I took the easy way out and removed the timestamps from the page. The ordering of items on the front page may be slightly off, however, and god knows what might be going on in the chompy RSS and Atom feeds.\r\n\r\nIsn\'t this fascinating?\r\n\r\n### IDs/GUIDs ###\r\n\r\n_(Regarding duplicate entries appearing in the Thunderbird client)_\r\n\r\nLooks like this is a known issue:\r\n\r\n[http://bugzilla.mozilla.org/show_bug.cgi?id=258465](http://bugzilla.mozilla.org/show_bug.cgi?id=258465)\r\n\r\nIt was opened about a year ago, and the lead developer (Scott MacGregor) closed it after determining the likely cause and checking in a fix, but the problem is still occurring for a lot of users.\r\n\r\nThe issue, as Scott understands it, works like this: Thunderbird tracks an entry\'s uniqueness by looking at the value of the entry\'s `` (RSS) or `` (Atom) tag. (This ID value should always be unique and should **never** change -- this is important.) The problem begins when an entry\'s ID contains a character that should be a reserved character in XML, like `<`, `>`, or `&`. A properly formatted feed will encode such a character; for example, `&` will become `&` and `<` will become `<`. When Thunderbird\'s XML parser processes that ID, it assumes that such characters aren\'t encoded already and double-encodes them, so `&` becomes `&`. So when Thunderbird finds an ID like `blah&blah&etc`, it stores it as `blah&blah&etc`. That\'s wrong, but it would be fine, except that when Thunderbird checks the same feed again, it sees an entry with an ID of `blah&blah&etc` and finds that it doesn\'t match anything it has stored already, because what it has stored isn\'t `blah&blah&etc`, it\'s `blah&blah&etc`. And that\'s the bug.\r\n\r\nAnyway, that\'s supposedly fixed (though maybe not in any of the current stable releases). So why is the bug still open, and why are people still reporting the problem? I don\'t actually know, but it\'s likely that this bug has multiple causes, so fixing the cause described above isn\'t enough. My candidate for the most likely cause is the fact that most software that generates RSS or Atom feeds doesn\'t ensure that entry IDs are actually unique and unchanging. An example would be RSS 2.0 feeds that stick the entry\'s permalink in the `` field, something that the RSS 2.0 spec encourages. This isn\'t very well thought out, because permalinks can and do change. And since Thunderbird trusts that the entry IDs in the feeds that it receives will be unique and unchanging, it will create duplicate entries any time that turns out not to be the case. Thunderbird doesn\'t really have a better option, because A) that\'s what the ID is **for**, and B) the other information available to it -- the title, permalink, date, and content of each element -- definitely isn\'t guaranteed to be either unique or unchanging, assuming that those elements are even present.\r\n\r\nOr take chompy\'s feeds. I recently tweaked the ID-generation algorithm so that each entry ID has a much greater chance of uniqueness, and in so doing, changed every single ID. That, of course, caused Thunderbird to think that every entry in the feed was brand new. To make it worse, I\'m probably going to end up tweaking that algorithm again, because I made the same mistake that I just mentioned above -- I generate IDs based on the entry permalinks.'] R:[/(<(del)>|<(/del)>|<(ins)>|<(/ins)>|<(pre)>|<(/pre)>|<(code)>|<(/code)>|<(br /)>)/\<$1\>/] [2005-11-08T19:58:18+0000] GET from 38.221.208.2 I:['http://10.3.4.168/departmental/hr/401k.php'] R:["\S*\.php"] [2005-11-17T14:31:45+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[test] [2005-11-17T14:32:30+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is] [2005-11-17T14:32:39+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is*] [2005-11-17T14:32:56+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is.*] [2005-11-17T14:33:10+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[test] [2005-12-03T13:33:49+0000] GET from 80.42.113.162 I:['\r\n\r\n\r\nCrossRocks: CrossRocks.co.uk / JonoWatkins.co.uk\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t

CrossRocks.co.uk / JonoWatkins.co.uk

\r\n\r\n\t

Welcome to my website. It is going through a period of change at the moment, I hope you like the new design. Im not entirely sure exactly what I\'m going to put up here, but you\'ll have to wait and see.

\r\n

Jono

\r\n\t
\r\n\t\r\n
\r\n'] R:[index.php\?pk=([a-z0-9_-]+)+] [2005-12-06T04:34:06+0000] GET from 61.9.136.168 I:['abc'] R:[c] [2005-12-20T06:00:34+0000] GET from 61.9.136.168 I:['dasdsad'] R:[\w] [2005-12-20T06:00:41+0000] GET from 61.9.136.168 I:['dasdsad'] R:[\w] [2005-12-20T06:02:08+0000] GET from 61.9.136.168 I:['bksadba'] R:[dqw] [2006-01-11T17:45:49+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c\:\\temp\\test1\.mk] [2006-01-11T17:46:03+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c:\\temp\\test1\.mk] [2006-01-11T17:46:24+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c:\\\temp\\\test1\.mk] [2006-01-11T17:46:43+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:] [2006-01-11T17:46:53+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp] [2006-01-11T17:47:07+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp\\test1.mk] [2006-01-11T17:48:23+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp\\test1\.mk] [2006-01-20T14:21:39+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('\bT[1-9]\b')] [2006-01-20T14:22:12+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('\bT[1-9]')] [2006-01-20T14:22:26+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('T[1-9]')] [2006-01-24T04:13:07+0000] GET from 61.9.136.168 I:['12'] R:[\d+] [2006-01-25T10:07:32+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\\\)[\\.|-|\\w]+] [2006-01-25T10:07:32+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\\\)[\\.|-|\\w]+] [2006-01-25T10:07:58+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\)[\.|-|\w]+] [2006-01-25T10:08:18+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)[\.|-|\w]+] [2006-01-25T10:08:59+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)] [2006-01-25T10:09:15+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)[\\.|-|\\w]+] [2006-01-25T10:09:40+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)([\\.|-|\\w]+)?] [2006-01-25T10:10:40+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)([\\.|-|\\w]+)?(\\[\.|-|\w])*] [2006-01-25T10:20:14+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[\w:(\\(\w|\$\(\w+\)))*] [2006-01-25T10:20:30+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[\w:(\\(\w+|\$\(\w+\)))*] [2006-01-25T10:20:38+0000] GET from 80.66.6.99 I:['c:\\ban$(Macro)ane\\'] R:[\w:(\\(\w+|\$\(\w+\)))*] [2006-01-25T10:21:41+0000] GET from 80.66.6.99 I:['c:\\ban$(Macro)ane\\'] R:[\w:(\\(\w|\$\(\w+\))+)*] [2006-01-25T10:21:50+0000] GET from 80.66.6.99 I:['c:\\ban$(Macroane\\'] R:[\w:(\\(\w|\$\(\w+\))+)*] [2006-01-30T13:56:26+0000] GET from 80.66.6.99 I:['c:\\foo1\\foo2'] R:[\w] [2006-01-30T13:56:54+0000] GET from 80.66.6.99 I:['c:\\foo1\\foo2'] R:[\\] [2006-02-12T23:13:27+0000] GET from 24.108.199.122 I:['g'] R:[/g/] [2006-02-15T03:02:57+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+] [2006-02-15T03:03:37+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+[.]tar[.]gz] [2006-02-15T03:03:58+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+] [2006-02-15T03:04:39+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:05:07+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[-(\d+[.])+\d] [2006-02-15T03:06:08+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:06:48+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz libgdiplus-1.1.13.2.tar.gz\r\ngtk-sharp-1.0.10.tar.gz\r\nmonodoc-1.1.13.tar.gz\r\nmono-tools-1.1.11.tar.gz\r\ngecko-sharp-0.6.tar.gz\r\ngecko-sharp-2.0-0.11.tar.gz\r\ngtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[-(\d+[.])+] [2006-02-15T03:08:28+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz libgdiplus-1.1.13.2.tar.gz\r\ngtk-sharp-1.0.10.tar.gz\r\nmonodoc-1.1.13.tar.gz\r\nmono-tools-1.1.11.tar.gz\r\ngecko-sharp-0.6.tar.gz\r\ngecko-sharp-2.0-0.11.tar.gz\r\ngtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:08:36+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:09:10+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:09:23+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$5] [2006-02-15T03:09:36+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz5'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:09:43+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz5'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:10:34+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:10:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:16:23+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:17:09+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:17:28+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)((-(\d+[.])+)tar[.]gz$)] [2006-02-15T03:17:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)-(\d+[.])+tar[.]gz$] [2006-02-15T03:18:42+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:19:00+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:19:13+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:31+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z-]+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:39+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-Z-]+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:49+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:20:37+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:20:50+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^\w+-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:11+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^[a-zA-Z-]+-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:27+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:42+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:22:05+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(?:\d+[.])+tar[.]gz$)] [2006-02-15T03:22:36+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(?:\d+[.])+(tar[.]gz$))] [2006-02-15T03:23:26+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:23:54+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^lib)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:24:50+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^lib).*-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:27:26+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:27:43+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:28:04+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:49:38+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:50:25+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:52:35+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])] [2006-02-15T03:52:57+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:52:58+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:53:30+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:54:02+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(?:-)(\d+[.])+] [2006-02-15T03:54:28+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:54:41+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-?:(\d+[.])+] [2006-02-15T03:54:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:55:15+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T04:31:12+0000] GET from 70.24.61.3 I:['/home/dave/test/data\r\n/home/dave/test/data_process'] R:[/home/dave/[^/]/data] [2006-02-15T04:31:47+0000] GET from 70.24.61.3 I:['/home/dave/test/data'] R:[/home/dave/[^/]/data] [2006-02-15T04:32:00+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]-)] [2006-02-15T04:32:17+0000] GET from 70.24.61.3 I:['/home/dave/test/data'] R:[/home/dave/[^/]+?/data] [2006-02-15T04:32:22+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^[a-zA-z]+-] [2006-02-15T04:32:29+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process'] R:[/home/dave/[^/]+?/data] [2006-02-15T04:32:33+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]+)-] [2006-02-15T04:32:43+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process'] R:[/home/dave/[^/]+?/data$] [2006-02-15T04:33:40+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]+)] [2006-02-15T04:34:00+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]+)] [2006-02-15T04:34:21+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^((?:[a-zA-z]-)+)] [2006-02-15T04:34:41+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-)+] [2006-02-15T04:34:54+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-+)] [2006-02-15T04:36:07+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z]] [2006-02-15T04:36:15+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z]+] [2006-02-15T04:36:32+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-)+] [2006-02-15T04:37:24+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process\r\n/home/dave/test/data'] R:[/home/dave/[^/]+?/data$] [2006-02-15T04:37:48+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]\-)+] [2006-02-15T04:38:13+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]\-] [2006-02-15T04:38:21+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+] [2006-02-15T04:38:41+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+[^\-]] [2006-02-15T04:39:10+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z\-])+] [2006-02-15T04:41:22+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z\-])+-] [2006-02-15T04:42:52+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+[a-zA-z]+] [2006-02-15T04:43:14+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]+] [2006-02-15T04:46:04+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]+] [2006-02-15T04:48:47+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d\-]*[\d]+] [2006-02-15T04:48:58+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d\-.]*[\d]+] [2006-02-15T04:49:20+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T04:49:54+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T04:50:36+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\W]+&] [2006-02-15T04:50:43+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\W]+$] [2006-02-15T04:51:08+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]+$] [2006-02-15T04:52:00+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]$] [2006-02-15T04:52:19+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]$] [2006-02-15T04:52:43+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]+$] [2006-02-15T04:52:56+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[.tar.gz$] [2006-02-15T04:53:12+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[.tar.gz] [2006-02-15T04:54:47+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]] [2006-02-15T05:10:31+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T06:36:41+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[\\[\w\-.]+] [2006-02-15T06:36:56+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[\[\w\-.]+] [2006-02-15T06:37:03+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-]+] [2006-02-15T06:37:15+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-]+] [2006-02-15T06:37:59+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[/[\w\-]+] [2006-02-15T06:38:21+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[/[\w\-.]+] [2006-02-15T06:38:31+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-.]+] [2006-02-15T06:40:42+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-.]+] [2006-02-21T17:00:57+0000] GET from 82.123.48.186 I:['abcdef'] R:[[a-z]] [2006-02-24T19:51:03+0000] GET from 66.171.240.87 I:['Send Invitation'] R:[Send Invitation] [2006-02-28T14:45:19+0000] GET from 62.129.121.63 I:['http://b2evolution.drkw.net/b2evolution/blogs/users_kaliay1/2005/03/22/nokia_s_lifeblog'] R:[http://b2personal\.drkw\.net/b2evolution/blogs/.+/20[0-9][0-9]/[0-9]{2}/[0-9]{2}/.+] [2006-03-01T02:56:08+0000] GET from 221.143.162.18 I:['blah'] R:[\d] [2006-03-02T04:36:48+0000] GET from 221.143.162.18 I:['fsdfds\r\nfsdfds\r\napi-python.txt\r\nfsfds\r\nhttp://frdfgd\r\ngfdgfdg\r\nfdgfdg\r\n'] R:[^http] [2006-03-02T04:37:03+0000] GET from 221.143.162.18 I:['fsdfds\r\nfsdfds\r\napi-python.txt\r\nfsfds\r\nhttp://frdfgd\r\ngfdgfdg\r\nfdgfdg\r\n'] R:[http] [2006-03-02T09:21:01+0000] GET from 134.76.124.38 I:['\r\n
\r\n\r\n
\r\nModulevaluation M1.1 Stellungnahme SS2005
\r\n36,216 KB / Letzte \xc4nderung: 15.02.2006\r\n
\r\n
'] R:[(href="/(\w*/)*)(\w*\.pdf)] [2006-03-02T09:43:20+0000] GET from 134.76.124.38 I:['\r\n
\r\n\r\n
\r\nModulevaluation M1.1 Stellungnahme SS2005
\r\n36,216 KB / Letzte \xc4nderung: 15.02.2006\r\n
\r\n
'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:46:04+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" target="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:46:24+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:49:05+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005\r\n\r\nxxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005\r\n\r\nxxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-03T13:48:44+0000] GET from 192.158.61.142 I:['%ADD_ct_offFaultClearThreshold_c, units are (CNTS)\r\nADD_ct_offFaultClearThreshold_c = 50;\r\n%ADD_ct_offFaultSetThreshold_c, units are (CNTS)\r\nADD_ct_offFaultSetThreshold_c = 50;\r\n%ADD_ct_offNoFault_c, units are (CNTS)\r\nADD_ct_offNoFault_c = 2;\r\n'] R:[^%([a-zA-Z0-9]+), units are \(([a-zA-Z0-9])\)$] [2006-03-05T14:14:29+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:[href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'\"] [2006-03-05T14:14:29+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:[href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'\"] [2006-03-05T14:14:59+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:["href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'"] [2006-03-07T22:30:54+0000] GET from 150.101.188.97 I:['Want to see what happens\r\nThis is a test\r\nTesting Again\r\nThis is the next test'] R:[^?]*[^>]*>([a-zA-Z0-9 =\"'.:;>?]*[^<]*<)\s*/a\s*>$] [2006-03-07T22:49:36+0000] GET from 80.203.22.144 I:['sdAFSDA\\N\\N\\ASSAGSA\\Nfsafdsaf\\n\\nasgsdgsda\\n\\nasdgasgas\r\n'] R:[#.+?(\r\n|\r|\n){2,}#s] [2006-03-07T22:50:17+0000] GET from 80.203.22.144 I:['sdgsda\\n\\nasdgasgas\r\n'] R:[#.+?(\r\n|\r|\n){2,}#s] [2006-03-09T14:53:45+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change \d* by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}\n] [2006-03-09T14:54:02+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change \d* by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}] [2006-03-09T14:54:25+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}] [2006-03-09T14:54:59+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-09T14:56:46+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-09T15:06:35+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.\n] [2006-03-09T15:07:06+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.] [2006-03-09T15:08:09+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.\n] [2006-03-09T16:23:42+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) (\w*)] [2006-03-09T16:24:52+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. //.*#\d+ \w*] [2006-03-09T16:25:03+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[(\.\.\. //.*#\d+ \w*)] [2006-03-09T16:25:35+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) \w*] [2006-03-09T16:26:00+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) (\w*)] [2006-03-10T16:58:35+0000] GET from 67.108.223.66 I:['tlkjhasg astha sashdf hh'] R:[(\g)] [2006-03-14T10:30:40+0000] GET from 84.177.105.146 I:['ich teste mein B\xfcro.'] R:[]*onclick=.showSuggestions\(.*?>(.*?)] [2006-03-14T15:15:08+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:16:06+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\\r\n \r\n \r\n \r\n '] R:[test-case.*test-case] [2006-03-14T15:17:47+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[.test-case.*test-case] [2006-03-14T15:17:58+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:18:13+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:18:27+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case.*] [2006-03-14T15:18:47+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case.*|\\n*] [2006-03-14T15:18:56+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\\n*)] [2006-03-14T15:19:08+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\n*)] [2006-03-14T15:19:33+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\s*)] [2006-03-14T15:19:38+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\\s*)] [2006-03-14T15:20:22+0000] GET from 80.66.6.99 I:[' '] R:[test-case(.*|\\s*)] [2006-03-14T15:20:57+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(.*|\\s*)] [2006-03-14T15:21:08+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(.*|\\s*)test-case] [2006-03-14T15:21:28+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case.*test-case] [2006-03-14T15:21:41+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(1).*test-case(1)] [2006-03-14T15:21:53+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case.*test-case(1)] [2006-03-14T15:24:13+0000] GET from 80.66.6.99 I:[' aaaa'] R:[test-case.*test-case] [2006-03-14T15:24:20+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[\ aaaa'] R:[\\aaaa'] R:[\\aaaa'] R:[test-case] [2006-03-14T15:25:18+0000] GET from 80.66.6.99 I:['aaaa'] R:[test-case.*/t] [2006-03-14T15:25:32+0000] GET from 80.66.6.99 I:['aaaa'] R:[<.*>] [2006-03-14T15:26:17+0000] GET from 80.66.6.99 I:['aaaa'] R:[<([^<].)*>] [2006-03-14T15:26:36+0000] GET from 80.66.6.99 I:['aaaa'] R:[<([^<]|.)*>] [2006-03-14T15:26:48+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<]|.)*>] [2006-03-14T15:27:05+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<].)*>] [2006-03-14T15:27:15+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<].)*>] [2006-03-14T15:27:51+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<.*>] [2006-03-14T15:29:34+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<.*?M>] [2006-03-14T15:33:28+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[( aaaa'] R:[] [2006-03-14T15:34:10+0000] GET from 80.66.6.99 I:[' aaaa'] R:[] [2006-03-14T15:34:17+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[ aaaa'] R:[\A aaaa'] R:[ aaaa'] R:[test-case] [2006-03-14T15:35:47+0000] GET from 80.66.6.99 I:[' aaaa'] R:[\Stest-case] [2006-03-14T15:36:12+0000] GET from 80.66.6.99 I:[' aaaa'] R:[test-case.*] [2006-03-14T15:36:23+0000] GET from 80.66.6.99 I:[' aaaa test-case name="Test"> '] R:[test-case.*] [2006-03-14T15:36:32+0000] GET from 80.66.6.99 I:[' aaaa test-case name="Test"> '] R:[test-case.*] [2006-03-14T15:37:08+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case.*] [2006-03-14T15:47:29+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)] [2006-03-14T15:48:02+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case){1}] [2006-03-14T15:48:28+0000] GET from 80.66.6.99 I:[' aaaa '] R:[( test-case .* test-case )+?] [2006-03-14T15:49:03+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)+?] [2006-03-14T15:49:16+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)+?] [2006-03-14T15:49:31+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case .* test-case)+?] [2006-03-14T15:50:35+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case\w*test-case)+?] [2006-03-14T15:50:41+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case\w*] [2006-03-14T15:51:11+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case(\w|\s)*] [2006-03-14T15:51:27+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case.*] [2006-03-14T19:19:51+0000] GET from 64.128.24.2 I:['X08 "this sucks"\r\nX12344 "but not this"'] R:[X\d+ "this] [2006-03-15T20:29:28+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#13 - updating /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*) - (.*) (.*)] [2006-03-15T20:30:23+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#13 - updating /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*)#(\d*) - (.*) (.*)] [2006-03-15T21:10:20+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#12 - /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*)#(\d*) - (.*)] [2006-03-15T21:50:27+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[^\.\.\. \.\.\. edit from (.*)$] [2006-03-15T21:50:35+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)] [2006-03-15T21:51:12+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)\n] [2006-03-15T21:51:36+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)$] [2006-03-15T21:52:06+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*#\d*)] [2006-03-15T22:10:34+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\t(.*)] [2006-03-15T22:17:14+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-15T22:19:20+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:19:27+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change ] [2006-03-15T22:19:34+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* ] [2006-03-15T22:19:42+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} ] [2006-03-15T22:19:51+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:20:05+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:21:54+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-16T17:43:45+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)] [2006-03-16T17:44:00+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+),(\d+)] [2006-03-16T17:44:13+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,(\d+)] [2006-03-16T17:44:33+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,#(\d+)] [2006-03-16T17:49:45+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,#(\d+)] [2006-03-17T03:47:41+0000] GET from 203.28.159.170 I:['http://www.cancer.gov/cancertopics/wyntk/moles-and-dysplastic-nevi/page2/print'] R:[(.*?)(?:\/print)(.*)] [2006-03-19T03:38:20+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)" .*/] [2006-03-19T03:38:36+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)"/] [2006-03-19T03:38:42+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)\"/] [2006-03-19T03:39:04+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?(.*)/] [2006-03-19T03:39:23+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?(.*)/] [2006-03-19T03:39:33+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)/] [2006-03-19T03:39:37+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)/] [2006-03-19T03:40:22+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)...*/] [2006-03-19T03:40:37+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)".*/] [2006-03-19T03:40:44+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)".*/] [2006-03-20T22:49:17+0000] GET from 204.253.248.247 I:['{backoffice_format NEW} {YTW 0.08017653} {ontherunSpreadToWorst 0.03382367} {book 76} {trace_repting Y} {BOAction CANCEL}'] R:[\{(\S+) (\S+)\}] [2006-03-22T03:08:12+0000] GET from 222.153.104.229 I:['\r\n\r\n\r\n\r\n\r\n
Open2View.com
'] R:[/]*>\s*((.*)\s*)+?\s*<\/tr>/] [2006-03-29T15:26:21+0000] GET from 86.39.81.155 I:['zerzer'] R:[a] [2006-04-01T01:20:11+0000] GET from 66.224.119.5 I:['sda\r\nsdb'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:26+0000] GET from 66.224.119.5 I:['sda'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:37+0000] GET from 66.224.119.5 I:['sda0'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:50+0000] GET from 66.224.119.5 I:['nsta0'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-05T20:08:18+0000] GET from 129.186.185.2 I:['4 1 1997 2 8.3 -2.2 -99 14.6 000 2.3\r\n00.25 0.00\r\n23.75 4.318\r\n5 1 1997 0 -3.3 -12.2 -99 22.2 000 -11.7\r\n6 1 1997 0 -3.9 -13.3 -99 11.7 000 -15.9'] R:[(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)] [2006-04-09T00:27:29+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:28:31+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:28:40+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:29:05+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:30:20+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T02:41:50+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[\W] [2006-04-09T02:46:03+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-09T02:47:54+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s\d]] [2006-04-09T02:48:11+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s\D]] [2006-04-09T02:49:02+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\d]] [2006-04-09T02:49:17+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[\d]] [2006-04-09T17:41:22+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-09T22:39:56+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-10T02:31:00+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n

\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:09+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:47+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:53+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-12T21:08:42+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)] [2006-04-12T21:08:56+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[(.*)#(\d*) - (.*) (.*)] [2006-04-12T21:10:00+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)$] [2006-04-12T21:15:36+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)$] [2006-04-12T21:16:49+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.{4-8}) (.*)$] [2006-04-12T21:17:05+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows_XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows_XP.properties'] R:[^(.*)#(\d*) - (.{4-8}) (.*)$] [2006-04-12T21:17:16+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows_XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows_XP.properties'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-12T21:17:26+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-12T21:22:03+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#1 - /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*)$] [2006-04-12T21:37:31+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties //nyc.cbbin/Insight-128/Java/properties/Windows XP.properties /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties\r\n'] R:[^(//.*) (//.*)$] [2006-04-12T21:38:48+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties //nyc.cbbin/Insight-128/Java/properties/Windows XP.properties /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties\r\n'] R:[^(//.*) (//.*)$] [2006-04-16T14:37:59+0000] GET from 212.159.21.170 I:['source'] R:[m/^s*$/] [2006-04-20T22:05:11+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-20T22:10:01+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:10:23+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg\r\n//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:11:04+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:11:13+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating|deleted as) (.*)$] [2006-04-20T22:11:26+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating|deleted as|added as) (.*)$] [2006-04-25T05:07:15+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?(?:.*?){16}([0-9.])] [2006-04-25T05:08:34+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?(?:.*?){16}([0-9.]*)] [2006-04-25T05:09:06+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?] [2006-04-25T05:09:42+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[(.*?)] [2006-04-25T05:11:14+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[(.*?)(?=)] [2006-04-27T17:07:18+0000] GET from 85.147.75.183 I:['im just testing [img|center]javascript://www.xfire.be/x=news[/img] jaja'] R:[\[img[^\]]*\]((javascript|vbscript){1}|[^\?]*[\?]{1})[^\[]+\[\/img\]] [2006-05-05T20:42:45+0000] GET from 64.81.246.226 I:['asdfad.asdfadsfa.quotes'] R:[(?])\\"\\s*>'] R:[foo] [2006-05-12T15:28:12+0000] GET from 204.253.249.195 I:['])\\"\\s*>'] R:[] [2006-05-12T15:28:45+0000] GET from 204.253.249.195 I:['(.*)@(.*).com'] R:[foo@bar.com] [2006-05-12T15:28:55+0000] GET from 204.253.249.195 I:['(.*)@(.*)\\.com'] R:[foo@bar.com] [2006-05-12T15:29:01+0000] GET from 204.253.249.195 I:['(.*)@(.*)'] R:[foo@bar.com] [2006-05-12T15:30:36+0000] GET from 204.253.249.195 I:[''] R:[])\"\s*>] [2006-05-12T15:31:31+0000] GET from 204.253.249.195 I:['\r\n'] R:[])\"\s*>] [2006-05-12T15:31:55+0000] GET from 204.253.249.195 I:[''] R:[])(\.png)\"\s*>] [2006-05-12T16:02:18+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:02:33+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:03:52+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:04:07+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:04:18+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:04:28+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:05:11+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:19+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:43+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:53+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:08:06+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:08:34+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:11:34+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:11:56+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:02+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:22+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:30+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:13:39+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:13:48+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:13:59+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:14:10+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:14:23+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T17:29:21+0000] GET from 204.253.249.198 I:['\r\n'] R:[] [2006-05-12T17:29:53+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\"\s*>] [2006-05-12T17:30:48+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:03+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:19+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:36+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:53:21+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:53:49+0000] GET from 204.253.249.198 I:['>'] R:[])\s*>] [2006-05-12T17:54:19+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T17:54:29+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-16T05:18:15+0000] GET from 24.131.64.129 I:['\t+ \');\';\r\n document.write(productInstallOETags); // embed the Flash Product Installation SWF\r\n} else if (hasReqestedVersion) { // if we\'ve detected an acceptable version\r\n var oeTags = \'\';\r\n document.write(oeTags); // embed the Flash Content SWF when all tests are passed\r\n } else { // flash is too old or we can\'t detect the plugin\r\n var alternateContent = \'Alternate HTML content should be placed here.\'\r\n \t+ \'This content requires the Macromedia Flash Player.\'\r\n \t+ \'Get Flash\';\r\n document.write(alternateContent); // insert non-flash content\r\n }\r\n// -->\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\r\n
\r\n\t\r\n\t\t\r\n\t\t^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n'] R:[^M\S] [2007-06-22T23:02:10+0000] GET from 64.74.221.28 I:['^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M\r\n ^M'] R:[(?P\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'] R:[new">(.+?)<.*AB.*>\..*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?c">(\d*?)<.*?>\..*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<.*?r">(\d*?)<] [2007-09-06T18:45:43+0000] GET from 143.69.250.33 I:['*Bank* of America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:46:42+0000] GET from 143.69.250.33 I:['*Bank* of l America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:46:59+0000] GET from 143.69.250.33 I:['*Bank* o America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:47:28+0000] GET from 143.69.250.33 I:['*Bank****** of America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:47:50+0000] GET from 143.69.250.33 I:['*Bank******of*******America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:48:04+0000] GET from 143.69.250.33 I:['*******Bank******of*******America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:48:44+0000] GET from 143.69.250.33 I:['*******Bank******of*******America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:50:41+0000] GET from 143.69.250.33 I:['*******bank******of*******America Security *Alert*'] R:[(?i)bank.*of.*america.*] [2007-09-06T18:50:59+0000] GET from 143.69.250.33 I:['*******bank******of*******America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:51:10+0000] GET from 143.69.250.33 I:['*******bank******of*******America Security *Alert*'] R:[(?i)bank.*of.*america.*] [2007-09-06T18:51:53+0000] GET from 143.69.250.33 I:['*******bank******of*******America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:52:44+0000] GET from 143.69.250.33 I:['*******bank******of***lkjlkjlkjlkjlkjlkj***America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T18:54:10+0000] GET from 143.69.250.33 I:['*******bank******of***lkjlkjlkjlkjlkjlkj***America Security *Alert*'] R:[.*bank.*of.*america.*] [2007-09-06T18:54:28+0000] GET from 143.69.250.33 I:['*******bank******of***lkjlkjlkjlkjlkjlkj***America Security *Alert*'] R:[(?i).*bank.*of.*america.*] [2007-09-06T19:37:51+0000] GET from 143.69.250.33 I:['*bank* of America is *Awesome*'] R:[(?i)bank.*of.*america.*] [2007-09-06T19:38:04+0000] GET from 143.69.250.33 I:['*bank* of America is *Awesome*'] R:[(?i)bank.*of.*america.*] [2007-09-06T22:32:21+0000] GET from 83.215.145.11 I:['
Das ist ein Test!
'] R:[
(.*?)
] [2007-09-06T22:33:47+0000] GET from 83.215.145.11 I:['
Das ist ein Test!
'] R:[
(.*?)
] [2007-09-06T22:34:01+0000] GET from 83.215.145.11 I:['
Das ist ein Test!
'] R:[
(.*?)
] [2007-09-06T22:37:38+0000] GET from 83.215.145.11 I:['Das ist ein Test!'] R:[(.*?)] [2007-09-06T22:39:53+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\t\t\t\t \r\n Tagesschau\r\n\t\t\t\t '] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:40:59+0000] GET from 83.215.145.11 I:['05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau'] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:41:20+0000] GET from 83.215.145.11 I:['05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau'] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:43:46+0000] GET from 83.215.145.11 I:['05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau'] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:46:41+0000] GET from 83.215.145.11 I:['05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau'] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:47:10+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Fr\xfchst\xfccksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Tagesschau'] R:[(.*?)(.*?)(.*?)] [2007-09-06T22:48:10+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Fr\xfchst\xfccksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Tagesschau'] R:[(.*?)(.*?)(.*)(.*?)] [2007-09-06T22:48:50+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Fr\xfchst\xfccksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Tagesschau'] R:[(.*?)(.*?)] [2007-09-06T22:54:45+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Fr\xfchst\xfccksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Tagesschau'] R:[(.*)(.*?)] [2007-09-06T22:55:23+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 05:30\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Morgenmagazin\r\n
Das ARD-Fr\xfchst\xfccksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 09:00\r\n\t\t\t\t \r\n\r\n\t\t\t\t \r\n Tagesschau'] R:[(.*?)] [2007-09-06T22:56:46+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)] [2007-09-06T22:57:23+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)] [2007-09-06T22:57:50+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*)] [2007-09-06T22:58:14+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[] [2007-09-06T22:58:30+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[] [2007-09-06T22:58:36+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[] [2007-09-06T22:59:18+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[] [2007-09-06T22:59:48+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*)<(.*)>(.*)] [2007-09-06T23:00:08+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*)<(.*)>(.*)<(.*)>] [2007-09-06T23:01:07+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[] [2007-09-06T23:01:16+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[ ] [2007-09-06T23:01:26+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*)] [2007-09-06T23:01:37+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)] [2007-09-06T23:01:59+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)] [2007-09-06T23:02:20+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*)] [2007-09-06T23:02:25+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)] [2007-09-06T23:03:01+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)([0-24]:[0-59])] [2007-09-06T23:03:07+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)([0-24]:[0-59])(.*)] [2007-09-06T23:03:31+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)] [2007-09-06T23:04:07+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(.*?)href="(.*?)"] [2007-09-06T23:04:21+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(.*?) 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(.*?)(.*?) 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(.*?)(.*?)(.*?)] [2007-09-06T23:06:10+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(.*?)(.*?)(.*?)] [2007-09-06T23:07:21+0000] GET from 83.215.145.11 I:['\r\n\t\t\t\t 22:43\r\n\t\t\t\t \r\n\t\t\t\t \r\n Das Wetter im Ersten\r\n
mit Claudia Kleinert\r\n\t\t\t\t
\r\n\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t \r\n\t\t\t\t 22:45\r\n\t\t\t\t
VPS 22:44\r\n\t\t\t\t
\r\n\t\t\t\t \r\n Addio Luciano\r\n\r\n
Zum Tode des Startenors Luciano Pavarotti'] R:[(.*?)(.*?)(.*?)(.*?)(.*?)] [2007-09-06T23:09:37+0000] GET from 83.215.145.11 I:[' 05:30 Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(|
)(.*?)(.*?)(.*?)] [2007-09-06T23:10:16+0000] GET from 83.215.145.11 I:[' 05:30
123:123
Morgenmagazin
Das ARD-Frühstücksfernsehen
Moderation: Judith Schulte-Loh und Sven Lorig
09:00 Tagesschau
'] R:[(.*?)(.*?)(|
)(.*?)(.*?)(.*?)] [2007-09-06T23:21:17+0000] GET from 83.215.145.11 I:['05:00 Panorama '] R:["([0-2][0-9]:[0-5][0-9])05:00
Panorama '] R:[([0-2][0-9]:[0-5][0-9])05:00
Panorama '] R:[([0-2][0-9]:[0-5][0-9])] [2007-09-06T23:21:42+0000] GET from 83.215.145.11 I:['05:00
Panorama '] R:[] [2007-09-06T23:21:58+0000] GET from 83.215.145.11 I:['05:00
Panorama '] R:[([0-2][0-9]:[0-5][0-9])] [2007-09-06T23:22:12+0000] GET from 83.215.145.11 I:['05:00
Panorama '] R:[([0-2][0-9]:[0-5][0-9])] [2007-09-06T23:22:43+0000] GET from 83.215.145.11 I:['05:00
sadasdasdasd
Panorama '] R:[([0-2][0-9]:[0-5][0-9])] [2007-09-06T23:24:35+0000] GET from 83.215.145.11 I:['05:00
sadasdasdasd
Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)] [2007-09-06T23:24:53+0000] GET from 83.215.145.11 I:['05:00
sadasdasdasd
Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)] [2007-09-06T23:25:47+0000] GET from 83.215.145.11 I:['05:00
sadasdasdasd
Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)] [2007-09-06T23:26:17+0000] GET from 83.215.145.11 I:['05:00 Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)] [2007-09-06T23:29:30+0000] GET from 83.215.145.11 I:['05:00 Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)] [2007-09-06T23:30:19+0000] GET from 83.215.145.11 I:['05:00 Panorama '] R:[([0-2][0-9]:[0-5][0-9])(.*?)(.*?)(.*?)] [2007-09-07T09:35:05+0000] GET from 213.56.185.5 I:['test01, test02'] R:[(^| )test02(,|$)] [2007-09-07T09:35:46+0000] GET from 213.56.185.5 I:['test01, test02'] R:[(^| )test01(,|$)] [2007-09-07T14:05:36+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\[[a-zA-Z]*]] [2007-09-07T14:06:28+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*] [2007-09-07T14:06:58+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*] [2007-09-07T14:07:15+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*] [2007-09-07T14:07:30+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*] [2007-09-07T14:10:25+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s{3} ] [2007-09-07T14:10:37+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s] [2007-09-07T14:11:56+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s] [2007-09-07T14:28:31+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s)[a-zA-Z*\_.]] [2007-09-07T14:29:23+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z*\_.]] [2007-09-07T14:29:45+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s(?#[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z*\_.]] [2007-09-07T14:30:17+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z*\_.]] [2007-09-07T14:30:29+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s] [2007-09-07T14:30:55+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z*\_.]] [2007-09-07T14:31:22+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[[a-zA-Z]*\_.]]] [2007-09-07T14:31:31+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.] [2007-09-07T14:31:48+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s(?#[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.] [2007-09-07T14:32:34+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s(?#[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.] [2007-09-07T14:32:54+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.] [2007-09-07T14:33:07+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*.] [2007-09-07T14:33:15+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*] [2007-09-07T14:33:25+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*.*] [2007-09-07T14:34:02+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.*] [2007-09-07T14:34:09+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.] [2007-09-07T14:34:32+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.*\s] [2007-09-07T14:40:30+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.*] [2007-09-07T14:42:49+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s[a-zA-Z]*\_.*\".*\"] [2007-09-07T14:44:01+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z])*\s.*\_.*\".*\"] [2007-09-07T14:44:20+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z])\s.*\_.*\".*\"] [2007-09-07T14:44:50+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z])\s.*\".*\"] [2007-09-07T14:45:07+0000] GET from 80.238.8.128 I:['\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-07T14:45:40+0000] GET from 80.238.8.128 I:['public final static java.lang.String BSB_SYSTEM_INITIALISE_FAILURE = "100";\r\n\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-07T14:45:49+0000] GET from 80.238.8.128 I:['\tpublic final static java.lang.String BSB_SYSTEM_INITIALISE_FAILURE = "100";\r\n\tpublic final static String BSB_MESSAGE_CORRESPONDENCE_GENERAL_FAILURE = "-45000";'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-07T14:51:18+0000] GET from 80.238.8.128 I:['[03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s+] [2007-09-07T14:51:32+0000] GET from 80.238.8.128 I:[' [03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s+] [2007-09-07T14:51:46+0000] GET from 80.238.8.128 I:[' [03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s+] [2007-09-07T14:52:00+0000] GET from 80.238.8.128 I:['[03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s+] [2007-09-07T14:53:44+0000] GET from 80.238.8.128 I:['[03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s] [2007-09-07T14:53:57+0000] GET from 80.238.8.128 I:['[03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013'] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s] [2007-09-07T14:57:39+0000] GET from 80.238.8.128 I:['[03/07/07 09:46:16:695 BST] 2de41d SystemOut U ERROR 25013 '] R:[^\[[0-9][0-9]/[0-9][0-9]/[0-9][0-9]\s+(.+?)\].*SystemOut\s+U\s+ERROR\s+(-*[0-9]+)\s] [2007-09-10T08:37:42+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*(\".*\")] [2007-09-10T08:42:01+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*.*\s).*(\".*\")] [2007-09-10T08:42:17+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*.*\s)] [2007-09-10T08:43:02+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)] [2007-09-10T08:43:21+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*.*\s)] [2007-09-10T08:43:44+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s)] [2007-09-10T08:44:24+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s.*\s)] [2007-09-10T08:45:00+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s)] [2007-09-10T08:45:17+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s)] [2007-09-10T08:49:43+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*\s)] [2007-09-10T08:51:12+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*)] [2007-09-10T08:53:11+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*)] [2007-09-10T08:53:43+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*.\s)] [2007-09-10T08:54:02+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*)] [2007-09-10T09:02:42+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*.*\s)] [2007-09-10T09:07:12+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*.\s)] [2007-09-10T09:07:21+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*)] [2007-09-10T09:10:30+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s[a-zA-z]*.?\s)] [2007-09-10T09:22:44+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-z]*)] [2007-09-10T09:23:49+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-10T09:24:00+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-10T09:24:38+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-zA-Z]*\s[a-zA-Z]*\s[a-zA-Z]*)\s.*\".*\"] [2007-09-10T09:27:32+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)(([a-zA-Z]*\s)|([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\.))\s] [2007-09-10T09:27:52+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)] [2007-09-10T09:28:32+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)(([a-zA-Z]*\s)|([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*))\s] [2007-09-10T09:29:14+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)([a-zA-Z]*\s|[a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*)\s] [2007-09-10T09:57:33+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)(([a-zA-Z]*\s))] [2007-09-10T09:58:07+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)([a-zA-Z]*\s)] [2007-09-10T09:58:19+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*)([a-zA-Z]*\.)] [2007-09-10T09:58:40+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.)] [2007-09-10T09:59:04+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\.)] [2007-09-10T09:59:55+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*)] [2007-09-10T10:00:40+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s)] [2007-09-10T10:31:04+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s)] [2007-09-10T10:31:23+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s)] [2007-09-10T10:32:01+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))] [2007-09-10T10:32:15+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))] [2007-09-10T10:33:28+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))[a-zA-Z]*\s] [2007-09-10T10:33:40+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))([a-zA-Z]*\s)] [2007-09-10T10:34:03+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))] [2007-09-10T10:35:57+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))[a-zA-Z]*] [2007-09-10T10:37:15+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[^\s([a-z]*\s[a-z]*\s[a-z]*\s)(([a-zA-Z]*\.[a-zA-Z]*\.[a-zA-Z]*\s)|([a-zA-Z]*\s))([a-zA-Z]*)] [2007-09-10T10:40:45+0000] GET from 80.238.8.128 I:[' public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n\r\n'] R:[.+(BSB_MESSAGE_.+?)\s*=\s*\"(.+?)"] [2007-09-10T10:41:56+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+(BSB_MESSAGE_.+?)\s*=\s*\"(.+?)"] [2007-09-10T10:44:44+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+(.+?)\s*=\s*\"(.+?)"] [2007-09-10T10:45:18+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+(BSB_+?)\s*=\s*\"(.+?)"] [2007-09-10T10:45:35+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+(BSB_.+?)\s*=\s*\"(.+?)"] [2007-09-10T10:46:28+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+?String\s+(.+?)\s*=\s*\"(.+?)"] [2007-09-10T11:14:38+0000] GET from 86.58.129.84 I:['"/US_images"'] R:[/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:15:08+0000] GET from 86.58.129.84 I:[''] R:[/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:18:46+0000] GET from 86.58.129.84 I:[''] R:[(?'] R:[(?'] R:[(?'] R:[\<(?'] R:[\<(?'] R:[\<[\:\w\s\"]*/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:21:16+0000] GET from 86.58.129.84 I:[''] R:[\<[\=\:\w\s\"]*/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:21:33+0000] GET from 86.58.129.84 I:[''] R:[(\<[\=\:\w\s\"]*)/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:21:44+0000] GET from 86.58.129.84 I:[''] R:[(\<[\=\:\w\s\"]*)/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:22:03+0000] GET from 86.58.129.84 I:[''] R:[(\<[\=\:\w\s\"]*)/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:38:39+0000] GET from 86.58.129.84 I:[''] R:[/US_[\w0-9_-]*.[\w]*] [2007-09-10T11:40:12+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*.(?!ascx)[\w]*] [2007-09-10T11:43:14+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*.(?!ascx)[\w]*] [2007-09-10T11:50:05+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*.(?=ascx)[\w]*] [2007-09-10T11:50:21+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*.(?!ascx)[\w]*] [2007-09-10T11:50:36+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*.(?!ascx)] [2007-09-10T11:51:18+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*\.(?!ascx)] [2007-09-10T11:51:29+0000] GET from 86.58.129.84 I:['\r\n'] R:[/US_[\w0-9_-]*\.(?!ascx)[\w]*] [2007-09-10T14:56:06+0000] GET from 80.238.8.128 I:[' public final static String BSB_MESSAGE_CORRESPONDENCE_UNDEFINED_ERROR = "-45999";\r\n public final static java.lang.String BSB_MESSAGE_CIC_INVALID_FUNCTION_NAME = "-18200";\r\n\r\n\r\n'] R:[.+?String\s+(.+?)\s*=\s*\"(.+?)\"] [2007-09-12T02:45:29+0000] GET from 128.32.38.163 I:['a'] R:['[+-x%]'] [2007-09-12T02:45:38+0000] GET from 128.32.38.163 I:['a'] R:[[+-x%]] [2007-09-13T22:49:36+0000] GET from 64.19.153.194 I:['here you go'] R:[yo*] [2007-09-13T22:50:46+0000] GET from 64.19.153.194 I:['here youyoud go'] R:[(you)*d] [2007-09-13T22:54:52+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t'] R:[/\r\n\r\n'] R:[r"(?<=\\d+?)\&answer\=(?P\d+?)\"\>(?P.*?)(?=\)"] [2006-06-07T16:15:54+0000] GET from 213.214.223.91 I:['\r\n\r\n'] R:[ re.compile(r"(?<=\\d+?)\&answer\=(?P\d+?)\"\>(?P.*?)(?=\)")] [2006-06-15T08:52:20+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-15T08:52:20+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-15T08:53:34+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-28T15:47:07+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\([\S]\)\]\]] [2006-06-28T15:53:57+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\((.*)\)\]\]] [2006-06-28T15:55:02+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include(\(.*\))\]\]] [2006-06-28T15:55:14+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include(\(.*\))\]\]] [2006-06-28T15:56:08+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\((.*)\)\]\]] [2006-06-29T20:23:51+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?=b)] [2006-06-29T20:24:10+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?=g)] [2006-06-29T20:24:17+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?!g)] [2006-06-29T20:24:30+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?!b)] [2006-06-29T20:26:02+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d(?!line)] [2006-06-29T20:27:29+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d [\s\S]*?(?=!)] [2006-06-29T20:27:41+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?=!)] [2006-06-29T20:28:12+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?!line)(?=!)] [2006-06-29T20:29:35+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?!line)] [2006-06-29T20:30:08+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]+?(?!line)] [2006-06-29T20:33:46+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*(?!line)] [2006-06-29T20:34:05+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*(?!line)] [2006-06-29T20:34:48+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?\n(?=!)] [2006-06-29T20:35:20+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?\n(?!line)(?=!)] [2006-06-29T20:36:14+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[(?\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:22:37+0000] GET from 218.107.55.251 I:['\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:25:28+0000] GET from 218.107.55.251 I:['\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:47:27+0000] GET from 218.107.55.251 I:['ABC01: $23.45\r\n'] R:[(?<=\$)[0-9.]+] [2006-07-18T07:32:41+0000] GET from 218.107.55.251 I:['Please enter the nine-digit id as it\r\n\r\nappears on your color - coded pass-key.\r\n'] R:[\b-\b] [2006-08-01T02:33:27+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:34:01+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*$] [2006-08-01T02:35:52+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*$] [2006-08-01T02:36:06+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:40:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:49:08+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*\w*] [2006-08-01T02:49:36+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*\w*$] [2006-08-01T02:50:47+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*] [2006-08-01T02:51:15+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]*] [2006-08-01T02:53:04+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]+] [2006-08-01T02:53:32+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]+\w] [2006-08-01T02:57:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w[-.\w]*\w$] [2006-08-01T02:59:07+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w] [2006-08-01T03:03:26+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w+] [2006-08-01T03:03:49+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w[-.\w]*\w$] [2006-08-01T03:03:58+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w[-.\w]*\w] [2006-08-01T03:04:24+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[\w[-.\w]*\w] [2006-08-01T03:05:51+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z][-.\w]*\w] [2006-08-01T03:06:15+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z]] [2006-08-01T03:07:12+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z]+] [2006-08-01T03:07:28+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]+] [2006-08-01T03:07:48+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]] [2006-08-01T03:10:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]+] [2006-08-01T03:25:51+0000] GET from 210.21.7.171 I:['dsf829'] R:[[0-9a-zA-Z]$] [2006-08-01T03:26:26+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z][0-9a-zA-Z]$] [2006-08-01T03:26:59+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z]\w*[0-9a-zA-Z]$] [2006-08-01T03:27:20+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:27:48+0000] GET from 210.21.7.171 I:['dsf829-'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:00+0000] GET from 210.21.7.171 I:['dsf-829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:09+0000] GET from 210.21.7.171 I:['dsf%829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:25+0000] GET from 210.21.7.171 I:['dsf-82_9'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T04:59:53+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][0-9a-zA-Z]$] [2006-08-01T05:00:14+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z]\w*[0-9a-zA-Z]$] [2006-08-01T05:00:22+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w]*[0-9a-zA-Z]$] [2006-08-01T05:00:54+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w\-\.]*[0-9a-zA-Z]$] [2006-08-01T05:01:08+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w\-.]*[0-9a-zA-Z]$] [2006-08-01T05:01:13+0000] GET from 210.21.7.171 I:['lsdj.fl'] R:[^[0-9a-zA-Z][\w\-.]*[0-9a-zA-Z]$] [2006-08-01T05:01:20+0000] GET from 210.21.7.171 I:['lsdj.fl'] R:[^[0-9a-zA-Z][\w\-]*[0-9a-zA-Z]$] [2006-08-17T09:05:13+0000] GET from 66.35.253.193 I:['SLIDE_VERSION_NUMERIC(1,2,3)'] R:[SLIDE_VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-08-17T09:05:14+0000] GET from 194.36.240.11 I:['SLIDE_VERSION_NUMERIC(1,2,3)'] R:[SLIDE_VERSION_NUMERIC\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*(\d+)?)\s*\)] [2006-08-17T09:06:06+0000] GET from 66.35.253.194 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-08-17T09:06:06+0000] GET from 194.36.240.11 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*(\d+)?)\s*\)] [2006-08-17T09:06:08+0000] GET from 66.35.253.193 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-10-05T22:20:01+0000] GET from 70.244.200.192 I:['www.birdlist.org 70.244.200.192 - - [05/Oct/2006:17:14:06 -0500] "GET /spidertrap/ HTTP/1.1" 200 903 "-" "Mozilla/5.0 (X11;'] R:[ ^(?P\b) (?P\b) -.*"GET /spidertrap] [2006-10-05T22:20:27+0000] GET from 70.244.200.192 I:['www.birdlist.org 70.244.200.192 - - [05/Oct/2006:17:14:06 -0500] "GET /spidertrap/ HTTP/1.1" 200 903 "-" "Mozilla/5.0 (X11;'] R:[ ^(?P) (?P) -.*"GET /spidertrap] [2006-10-07T02:59:50+0000] GET from 70.244.200.192 I:['2006-10-06 20:57:34 H=(ibm3.ma.utexas.edu) [146.6.139.124] F= rejected RCPT : Unrouteable address'] R:[\[(?P)\] .*testuser] [2006-10-10T09:53:12+0000] GET from 222.153.88.20 I:['.OPER ches'] R:[\.OPER] [2006-10-10T09:53:34+0000] GET from 222.153.88.20 I:['.OPER ches'] R:[.OPER] [2006-10-10T09:56:39+0000] GET from 222.153.88.20 I:['AVL c>'] R:[AVL.*c>] [2006-10-10T09:56:45+0000] GET from 222.153.88.20 I:['AVL c>'] R:[AVL.*c>] [2006-10-10T09:56:53+0000] GET from 222.153.88.20 I:[' AVL c>'] R:[AVL.*c>] [2006-10-14T16:45:28+0000] GET from 200.93.62.191 I:['application/pdf'] R:[/^application\/((\w|\.|-)*(excel$|\.(sun.xml|opendocument)\.\w+)|pdf|msword)/] [2006-10-15T23:42:38+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:43:55+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:44:04+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:44:42+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:44:53+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:45:18+0000] GET from 154.20.93.119 I:['
asdf'] R:[]+)*>]
[2006-10-15T23:46:33+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:49:17+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:38:43+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-16T00:39:12+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-16T00:39:26+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:39:40+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:39:58+0000] GET from 154.20.93.119 I:['
jhg'] R:[]*)*>]
[2006-10-20T13:31:35+0000] GET from 138.253.198.103 I:['Staphylococcus aureus isolates'] R:[aureus]
[2006-10-20T13:32:02+0000] GET from 138.253.198.103 I:['Staphylococcus aureus isolates'] R:['aureus']
[2006-10-24T05:35:49+0000] GET from 203.29.74.254 I:['SELECT * FROM foo'] R:[^ *SELECT]
[2006-10-24T05:36:22+0000] GET from 203.29.74.254 I:['  SELECT \r\n* FROM foo'] R:[^ *SELECT]
[2006-10-24T05:36:34+0000] GET from 203.29.74.254 I:['  \r\nSELECT \r\n* FROM foo'] R:[^ *SELECT]
[2006-10-24T05:37:07+0000] GET from 203.29.74.254 I:['  \r\nSELECT \r\n* FROM foo'] R:[^[ \n\r]*SELECT]
[2006-10-24T05:37:43+0000] GET from 203.29.74.254 I:['  \r\n    SELECT \r\n* FROM foo'] R:[^[ \n\r]*SELECT]
[2006-11-01T11:38:00+0000] GET from 66.27.126.96 I:['orz@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:38:25+0000] GET from 66.27.126.96 I:['orz@ucsd'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:38:34+0000] GET from 66.27.126.96 I:['orz dot ucsd'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:40:57+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:41:32+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:41:42+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:42:48+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:43:22+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9_]]
[2006-11-01T11:43:30+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9_]]
[2006-11-01T11:45:41+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:46:50+0000] GET from 66.27.126.96 I:['orz@test.domain.com---'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:10+0000] GET from 66.27.126.96 I:['orz@test.domain.comM---'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:21+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:33+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:47:33+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:47:42+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:51:03+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]+]
[2006-11-01T11:51:20+0000] GET from 66.27.126.96 I:['orz@test.domain.com6'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]+]
[2006-11-01T11:59:26+0000] GET from 66.27.126.96 I:['orz@test.domain.com6'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T11:59:34+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T11:59:40+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:00:47+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:00:55+0000] GET from 66.27.126.96 I:['orz@4test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:01:00+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:10:47+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^[0-255](\.[0-255]{3})))]
[2006-11-01T12:11:02+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^[0-255](\.[0-255]{3})))]
[2006-11-01T12:13:24+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:13:55+0000] GET from 66.27.126.96 I:['orz@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:14:09+0000] GET from 66.27.126.96 I:['orz@5df.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:14:28+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:17:46+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3}))]
[2006-11-01T12:17:53+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3}))]
[2006-11-01T12:18:10+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5])+))]
[2006-11-01T12:18:51+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5]){1}(\.([0-2][0-5][0-5])+))]
[2006-11-01T12:20:37+0000] GET from 66.27.126.96 I:['144'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:20:48+0000] GET from 66.27.126.96 I:['055'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:20:54+0000] GET from 66.27.126.96 I:['555'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:22:47+0000] GET from 66.27.126.96 I:['555'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:22:58+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:23:04+0000] GET from 66.27.126.96 I:['55.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:28+0000] GET from 66.27.126.96 I:['55.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:48+0000] GET from 66.27.126.96 I:['10.0.0.1'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:54+0000] GET from 66.27.126.96 I:['10.0.1'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:25:34+0000] GET from 66.27.126.96 I:['10.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:40+0000] GET from 66.27.126.96 I:['dichan@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:52+0000] GET from 66.27.126.96 I:['dichan@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:59+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:26:11+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:26:16+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1b'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:26:26+0000] GET from 66.27.126.96 I:['dichan@10.0.0.b1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:26:35+0000] GET from 66.27.126.96 I:['dichan@b10.0.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:28:57+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$))]
[2006-11-01T12:29:02+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$))]
[2006-11-01T12:29:09+0000] GET from 66.27.126.96 I:['dichan@10.0.0.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$))]
[2006-11-01T16:42:43+0000] GET from 66.27.126.96 I:['56.4'] R:[[0-9]+\.[0-9]+]
[2006-11-01T16:42:50+0000] GET from 66.27.126.96 I:['56.47666544'] R:[[0-9]+\.[0-9]+]
[2006-11-01T16:43:07+0000] GET from 66.27.126.96 I:['0.47666544'] R:[[0-9]+\.[0-9]+]
[2006-11-13T20:00:01+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]])*(?=\s\])]
[2006-11-13T20:02:13+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:04:16+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:05:46+0000] GET from 80.5.160.8 I:['[ Heroes! ][ 1x8 ][ Seven Minutes to Midnight ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:06:01+0000] GET from 80.5.160.8 I:['[ Heroes: ][ 1x8 ][ Seven Minutes to Midnight ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:06:11+0000] GET from 80.5.160.8 I:['[ Heroes:MONKEY ][ 1x8 ][ Seven Minutes to Midnight ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:06:16+0000] GET from 80.5.160.8 I:['[ Heroes: MONKEY ][ 1x8 ][ Seven Minutes to Midnight ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:06:33+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)*(?=\s\])]
[2006-11-13T20:09:01+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s) (\w*[^\[\]]\w*)+(?=\s\])]
[2006-11-13T20:09:10+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)+(?=\s\])]
[2006-11-13T20:24:19+0000] GET from 80.5.160.8 I:['[ CSI: Miami ][ 5x8 ][ Dark Room ][ 13-Nov-2006 ]'] R:[(?<=\[\s)(\w*[^\[\]]\w*)+(?=\s\])]
[2006-12-01T08:47:05+0000] GET from 212.117.103.50 I:['\w+)/]
[2006-12-14T00:13:49+0000] GET from 192.91.75.30 I:['/tag/internet/'] R:[^/tag/(?P\w+)/$]
[2006-12-20T13:52:07+0000] GET from 193.226.12.226 I:['Test was here.'] R:[\bhere\b]
[2006-12-20T13:53:17+0000] GET from 193.226.12.226 I:['
Key: "S:" = Show Synset (semantic) relations, "W:" = Show Word (lexical) relations
\r\n

Noun

\r\n'] R:[h3] [2006-12-20T13:53:34+0000] GET from 193.226.12.226 I:['
Key: "S:" = Show Synset (semantic) relations, "W:" = Show Word (lexical) relations
\r\n

Noun

\r\n'] R:[

.+

] [2006-12-21T16:45:26+0000] GET from 194.3.231.254 I:['$var ${var}'] R:[$[a-zA-Z]+] [2006-12-21T16:46:10+0000] GET from 194.3.231.254 I:['$var ${var}'] R:[\$[a-zA-Z]+] [2006-12-21T16:47:38+0000] GET from 194.3.231.254 I:['$var $VAR $Var $vAR $var_ma $var_ma:$var/$var ${var} '] R:[\$[a-zA-Z_]+] [2006-12-21T16:48:29+0000] GET from 194.3.231.254 I:['$var1 $VAR2 $Var3 $vAR4 $var_ma5 $var_ma6:$var7/$var8 ${var} '] R:[\$[0-9a-zA-Z_]+] [2006-12-21T16:49:34+0000] GET from 194.3.231.254 I:['$var1 $VAR2 $Var3 $vAR4 $var_ma5 $var_ma6:$var7/$var8 ${var} '] R:[\$[0-9a-zA-Z_]+|\${[0-9a-zA-Z_]+}] [2006-12-21T16:50:26+0000] GET from 194.3.231.254 I:['$var1 $VAR2 $Var3 $vAR4 $var_ma5 $var_ma6:$var7/$var8 ${var1} ${VAR2} ${Var3} ${vAR4} ${var_ma5} ${var_ma6}:${var7}/${var8}'] R:[\$[0-9a-zA-Z_]+|\${[0-9a-zA-Z_]+}] [2006-12-21T16:51:02+0000] GET from 194.3.231.254 I:['$var1 $VAR2 $Var3 $vAR4 $var_ma5 $var_ma6:$var7/$var8 ${var1} ${VAR2} ${Var3} ${vAR4} ${var_ma5} ${var_ma6}:${var7}/${var8}'] R:[\$[0-9a-zA-Z_]+|\${[0-9a-zA-Z_]+}] [2006-12-29T20:38:57+0000] GET from 72.37.171.52 I:['Dec 29 12:51:28 vps sshd[1418]: Failed password for root from 202.141.154.108 port 34360 ssh2'] R:[vps sshd.*: (?:Invalid user|Failed password).* from (?P\S*)] [2006-12-29T20:40:13+0000] GET from 72.37.171.52 I:['Dec 29 12:51:28 vps sshd[1418]: Failed password for root from 202.141.154.108 port 34360 ssh2'] R:[vps sshd.*: (?:Invalid user|Failed password).* from (?P\S*)] [2006-12-29T20:41:51+0000] GET from 72.37.171.52 I:['Dec 29 12:00:44 vps sshd[25703]: Invalid user aandhopefullythisshouldbanmenow from 69.116.106.218'] R:[vps sshd.*: (?:Invalid user|Failed password).* from (?P\S*)] [2007-01-08T16:24:24+0000] GET from 83.104.61.47 I:['I thought this was good .'] R:[^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?] [2007-01-09T07:30:51+0000] GET from 81.249.59.216 I:['Interfaces-Description'] R:[.+\S] [2007-01-09T07:31:43+0000] GET from 81.249.59.216 I:['Interfaces-Description'] R:[.+\b] [2007-01-09T07:32:23+0000] GET from 81.249.59.216 I:['HW_Design_Guide\t\r\nDatabook\t\r\nEvaluation_Databook\t\r\nInterfaces-Description\t\r\nUserManual'] R:[.+\S] [2007-01-09T10:32:02+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station'] R:[.+\S] [2007-01-09T10:32:30+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station'] R:[.+\s] [2007-01-09T10:32:35+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station'] R:[.+\s] [2007-01-09T10:32:49+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station'] R:[.+\s] [2007-01-09T10:33:25+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station'] R:[.+? ] [2007-01-09T10:34:45+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station\r\nEK\t:\r\nRD\t:'] R:[.+? ] [2007-01-09T10:34:53+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station\r\nEK\t:\r\nRD\t:'] R:[.+?[ \t]] [2007-01-09T10:36:07+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station\r\nEK\t:\r\nRD\t:'] R:[^.+?[ \t]] [2007-01-09T10:39:26+0000] GET from 81.249.59.216 I:['1 :subscriber/mobile station\r\nEK\t:\r\nRD\t:'] R:[^[a-zA-Z0-9_]+?] [2007-01-11T14:33:06+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^(export|\s)*] [2007-01-11T14:34:02+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^(export|\s)*.+=.+] [2007-01-11T14:34:13+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^.+=.+] [2007-01-11T14:34:53+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[.*=.*] [2007-01-11T14:35:17+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[.+=.+] [2007-01-11T14:37:19+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^[a-zA-Z]+=.*] [2007-01-11T14:37:34+0000] GET from 194.3.231.254 I:['#comment\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[[a-zA-Z]+=.*] [2007-01-11T14:38:01+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[[a-zA-Z]+=.*] [2007-01-11T14:38:44+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[(export)*[a-zA-Z]+=.*] [2007-01-11T14:39:15+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[(export)*[a-zA-Z]+=.*] [2007-01-11T14:40:08+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^(export)*[a-zA-Z]+=.*] [2007-01-11T14:40:37+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export*[a-zA-Z]+=.*] [2007-01-11T14:40:47+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export*\s*[a-zA-Z]+=.*] [2007-01-11T14:42:02+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export|\s*[a-zA-Z]+=.*] [2007-01-11T14:42:29+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^(export|\s)*[a-zA-Z]+=.*] [2007-01-11T14:42:55+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export|^\s*[a-zA-Z]+=.*] [2007-01-11T14:44:01+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^("export"|\s)*[a-zA-Z]+=.*] [2007-01-11T14:44:25+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^"export"*[a-zA-Z]+=.*] [2007-01-11T14:44:44+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[export\s*[a-zA-Z]+=.*] [2007-01-11T14:45:05+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[export*\s*[a-zA-Z]+=.*] [2007-01-11T14:45:24+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[(export|\s)*[a-zA-Z]+=.*] [2007-01-11T14:45:55+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:["export"\s*[a-zA-Z]+=.*] [2007-01-11T14:46:03+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[export\s*[a-zA-Z]+=.*] [2007-01-11T14:46:14+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export\s*[a-zA-Z]+=.*] [2007-01-11T14:46:37+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:["^export"\s*[a-zA-Z]+=.*] [2007-01-11T14:53:11+0000] GET from 194.3.231.254 I:['#comment var=toto\r\nvar=key\r\nexport var=key\r\n var=key\r\n export var=key'] R:[^export\s*[a-zA-Z]+=.*] [2007-01-18T20:58:59+0000] GET from 87.112.82.86 I:['party pooper'] R:[s/ //] [2007-01-19T04:36:22+0000] GET from 66.188.55.36 I:['Jan 17 15:31:18 imsimain MSWinEventLog\t1\tSecurity\t255995\tWed Jan 17 15:31:18 2007\t680\tSecurity\timsiserviceaccount\tUser\tSuccess Audit\tIMSIMAIN\tAccount Logon\t\tLogon attempt by: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0 Logon account: imsiserviceaccount Source Workstation: IMSIMAIN Error Code: 0x0 \t252653'] R:[^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])$] [2007-01-19T04:37:36+0000] GET from 66.188.55.36 I:['JJan 17 15:31:31 imsimain MSWinEventLog\t1\tSecurity\t256023\tWed Jan 17 15:31:30 2007\t540\tSecurity\tMATT$\tUser\tSuccess Audit\tIMSIMAIN\tLogon/Logoff\t\tSuccessful Network Logon: User Name: MATT$ Domain: IMSI Logon ID: (0x0,0xB920DC08) Logon Type: 3 Logon Process: Kerberos Authentication Package: Kerberos Workstation Name: Logon GUID: {5b48e7a6-60be-c257-b3fe-1e8d6a96a450} Caller User Name: - Caller Domain: - Caller Logon ID: - Caller Process ID: - Transited Services: - Source Network Address: 192.168.0.23 Source Port: 0 \t252681'] R:[^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])$] [2007-01-21T04:56:07+0000] GET from 24.148.187.65 I:['subject: [SPAM+] Morris Executive'] R:[^subject: [SPAM+]] [2007-01-21T04:56:29+0000] GET from 24.148.187.65 I:['subject: [SPAM+] Morris Executive'] R:[^subject: [SPAM\+]] [2007-01-21T04:56:38+0000] GET from 24.148.187.65 I:['subject: [SPAM+] Morris Executive'] R:[^subject: \[SPAM\+\]] [2007-01-21T09:04:04+0000] GET from 87.113.71.13 I:['Hi there buddies'] R:[[^a-zA-Z\s]+] [2007-01-21T09:04:27+0000] GET from 87.113.71.13 I:['Hi there buddies'] R:[^a-zA-Z\s+] [2007-01-21T09:06:01+0000] GET from 87.113.71.13 I:['Hi there buddies'] R:[\w+] [2007-01-21T09:06:21+0000] GET from 87.113.71.13 I:['Hi there buddies'] R:[\s+] [2007-01-22T18:33:51+0000] GET from 87.113.71.13 I:['Hi there bussies'] R:[\s+] [2007-01-22T18:40:15+0000] GET from 87.113.71.13 I:['Wonder'] R:[\W] [2007-01-22T18:40:38+0000] GET from 87.113.71.13 I:['.'] R:[\W] [2007-01-22T18:40:47+0000] GET from 87.113.71.13 I:['Howdy'] R:[.] [2007-02-02T12:48:36+0000] GET from 24.148.187.65 I:['vi2.20'] R:[vi[0-9]*.[0-9]*] [2007-02-07T12:12:49+0000] GET from 80.66.6.99 I:['/dir:Bla Bla'] R:[/dir:\s] [2007-02-07T12:13:04+0000] GET from 80.66.6.99 I:['/dir:Bla Bla'] R:[/dir:\s*] [2007-02-07T12:13:09+0000] GET from 80.66.6.99 I:['/dir:Bla Bla'] R:[/dir:\S*] [2007-02-11T06:18:10+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=67.170.41.129 user=lorrindovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\\S*'] R:[dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T06:20:30+0000] GET from 67.170.41.129 I:['Feb 1 06:10:13 strawberry dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=lorrindovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\\S*'] R:[dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T06:24:05+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=bob'] R:[.*rhost=(?P\S*).*] [2007-02-11T06:25:58+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=bob'] R:[.*dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T06:26:14+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=bob'] R:[dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T06:27:04+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=bob'] R:[dovecot.*(:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T06:27:49+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 kiwi dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=1.1.1.1 user=bob'] R:[.*dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*).*] [2007-02-11T06:28:39+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 foobar dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=192.168.2.101 user=bob'] R:[.*dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*).*] [2007-02-11T06:29:21+0000] GET from 67.170.41.129 I:['Feb 11 06:10:13 foobar dovecot-auth: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=192.168.2.101 user=bob'] R:[dovecot.*(?:authentication failure).*rhost=(?:::f{4,6}:)?(?P\S*)] [2007-02-11T20:59:50+0000] GET from 24.176.162.92 I:[' A /tags/STRIKER_2_0_51_RC2 (from /branches/APACHE_2_0_BRANCH:11303)\r\n'] R:[\s+([A-Z])\s+([^\s])\s+\(from ([^:]):([0-9]+)] [2007-02-11T21:01:19+0000] GET from 24.176.162.92 I:[' A /tags/STRIKER_2_0_51_RC2 (from /branches/APACHE_2_0_BRANCH:11303)\r\n'] R:[\s+([A-Z])\s+([^\s]+)\s+\(from ([^:]+):([0-9]+)] [2007-02-11T21:04:50+0000] GET from 24.176.162.92 I:[' A /tags/STRIKER_2_0_51_RC2\r\n\r\n'] R:[\s+([A-Z])\s+([^\s]+)\s+\(from ([^:]+):([0-9]+)] [2007-02-11T21:05:29+0000] GET from 24.176.162.92 I:[' A /tags/STRIKER_2_0_51_RC2 (from /branches/APACHE_2_0_BRANCH:11303)\r\n'] R:[\s+([A-Z])\s+([^\s]+)\s+\(from ([^:]+):([0-9]+)] [2007-02-15T13:01:38+0000] GET from 80.120.60.130 I:['/branches/gere'] R:[^(?Pbranches/[^/]+|trunk|data)(?:/(?P.*))?$] [2007-02-17T21:22:36+0000] GET from 68.96.128.241 I:['[21:01:12] Project: 2604 (Run 0, Clone 162, Gen 1)\r\n\r\n'] R:[my_re_exp = "^\[(?P
'] R:[(] [2007-06-02T22:40:43+0000] GET from 24.143.69.45 I:['****SUPERB RESPONSIVE BUYER. AN ASSET TO EBAY. MY HIGHEST RATING. THANKS!****'] R:[().*] [2007-06-03T21:26:14+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[//[0-9]{3}\\[A-Za-z]{3}\\[0-9]{3}/] [2007-06-03T21:26:47+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:['//[0-9]{3}\\[A-Za-z]{3}\\[0-9]{3}/'] [2007-06-03T21:28:09+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[\[0-9\]\[0-9\]/\[A-Z\]\[a-z\]\[a-z\]] [2007-06-03T21:29:09+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{3}\\[A-Za-z]{3}\\[0-9]{3}] [2007-06-03T21:30:28+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{3}\/[A-Za-z]{3}\/[0-9]{3}] [2007-06-03T21:30:40+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{3}/[A-Za-z]{3}/[0-9]{3}] [2007-06-03T21:30:50+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:['[0-9]{3}/[A-Za-z]{3}/[0-9]{3}'] [2007-06-03T21:31:16+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:['[0-9]{3}/[A-Za-z]{3}/[0-9]{4}'] [2007-06-03T21:31:34+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{3}/[A-Za-z]{3}/[0-9]{4}] [2007-06-03T21:32:11+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{2}/[A-Za-z]{3}/[0-9]{4}] [2007-06-03T21:33:24+0000] GET from 85.96.147.124 I:['64.56.65.150 - - [03/Jun/2007:15:18:10 +0300] "POST http://64.56.65.150/proxy/test.php HTTP/1.1" 404 316 "-" "-"\r\n59.50.208.175 - - [03/Jun/2007:15:20:11 +0300] "GET http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E HTTP/1.1" 404 322 "http://www.proxygrade.com/proxygrade.php?hash=C59C2E3FD31372BADD1004781F90050A953698723D3E" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:28 +0300] "GET /~sdyalcin/yeni/html/modules.php?name=Forums&file=posting&mode=quote&p=2070&sid=833a6c944c0ecb0f41905e61ee73de26 HTTP/1.1" 200 15668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:29 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=108&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33928 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:20:30 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=88&catid=2&limit=6&limitstart=252 HTTP/1.1" 200 33901 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n60.216.97.242 - - [03/Jun/2007:15:22:01 +0300] "GET http://sevy.eu.org/azenv.php HTTP/1.1" 404 310 "http://sevy.eu.org/azenv.php" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r\n66.249.65.165 - - [03/Jun/2007:15:22:24 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=view&id=231&catid=2&limit=6&limitstart=60 HTTP/1.1" 200 28567 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n66.249.65.165 - - [03/Jun/2007:15:23:14 +0300] "GET /~sdyalcin/brpg/index.php?option=com_joomlaboard&Itemid=26&func=post&do=quote&replyto=301&catid=2 HTTP/1.1" 200 90890 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10489 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:23:54 +0300] "GET /~fakgul/numaradanresme/css/style.css HTTP/1.1" 304 - "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:01 +0300] "GET /~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir HTTP/1.1" 200 6089 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:10 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10426 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?q=tuba&search=ara&naber=iyidir" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:15 +0300] "GET /~fakgul/numaradanresme/index.php?ids=10276015 HTTP/1.1" 200 14019 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n88.242.87.225 - - [03/Jun/2007:15:24:21 +0300] "GET /~fakgul/numaradanresme/index.php HTTP/1.1" 200 10481 "http://knuth.cs.bilgi.edu.tr/~fakgul/numaradanresme/index.php?ids=10276015" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"\r\n'] R:[[0-9]{2}/[A-Za-z]{3}/[0-9]{4}] [2007-06-06T12:33:44+0000] GET from 62.92.213.31 I:['## 98763015-98763239'] R:['^\.*\s(\d*).(\d*).*'] [2007-06-06T12:34:35+0000] GET from 62.92.213.31 I:['## 98763015-98763239'] R:['^\##.(\d*).(\d*).*'] [2007-06-06T12:34:48+0000] GET from 62.92.213.31 I:['## 98763015-98763239'] R:[^\##.(\d*).(\d*).*] [2007-06-06T12:35:04+0000] GET from 62.92.213.31 I:['## 98763015-98763239'] R:[^\##\s(\d*).(\d*).*] [2007-06-06T12:35:27+0000] GET from 62.92.213.31 I:['\r\n## 27695-28031\r\n## 202351-202359\r\n## 418535-418543\r\n## 420959-421231\r\n## 421615-422271\r\n## 427087-427167'] R:[^\##\s(\d*).(\d*).*] [2007-06-06T12:35:49+0000] GET from 62.92.213.31 I:['\r\n## 27695-28031\r\n## 202351-202359\r\n## 418535-418543\r\n## 420959-421231\r\n## 421615-422271\r\n## 427087-427167'] R:[^\##.(\d*).(\d*).*] [2007-06-06T12:37:02+0000] GET from 62.92.213.31 I:['\r\n## 27695-28031\r\n## 202351-202359\r\n## 418535-418543\r\n## 420959-421231\r\n## 421615-422271\r\n## 427087-427167'] R:[^\.*\s(\d*).(\d*).*] [2007-06-06T12:37:25+0000] GET from 62.92.213.31 I:['## 27695-28031\r\n'] R:[^\.*\s(\d*).(\d*).*] [2007-06-06T12:37:42+0000] GET from 62.92.213.31 I:['## 27695-28031\r\n'] R:[^\##.(\d*).(\d*).*] [2007-06-06T12:37:54+0000] GET from 62.92.213.31 I:['D To D format of all clusters belong to tagged files created by NTFILE \r\n \r\n\r\n## 27695-28031\r\n## 202351-202359\r\n## 418535-418543\r\n## 420959-421231\r\n## 421615-422271\r\n## 427087-427167\r\n## 434583-434591'] R:[^\##.(\d*).(\d*).*] [2007-06-06T13:56:48+0000] GET from 68.91.38.98 I:['dfd'] R:[dfd] [2007-06-09T18:25:57+0000] GET from 154.20.93.119 I:[" Je pense que Phileas Fogg ressemble \xe0 James Bond, mais ressemble \xe0 James Bond, mais pas beaucoup, parce qu'ils ont seulement quelques seulement quelques caract\xe9ristiques communes."] R:[(.*?) (.*?)] [2007-06-09T18:27:18+0000] GET from 154.20.93.119 I:['{ l;kdjfj } '] R:[((<[^>]+>)|>)?\s*{.*}\s*] [2007-06-09T18:27:59+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[((<[^>]+>)|>)?\s*{.*}\s*] [2007-06-09T18:28:53+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[>?\s*{.*}\s*] [2007-06-09T18:29:19+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[( >|>)?\s*{.*}\s*] [2007-06-09T18:30:14+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>|>)?\s*{.*}\s*] [2007-06-09T18:30:29+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>|>)\s*{.*}\s*] [2007-06-09T18:31:44+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[([^>]+>|>)\s*{.*}\s*] [2007-06-09T18:33:15+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)\s*{.*}\s*] [2007-06-09T18:33:37+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)\s*\{.*\}\s*] [2007-06-09T18:34:28+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)] [2007-06-09T18:34:29+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)] [2007-06-09T18:36:28+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)] [2007-06-09T18:37:31+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[((<[^>]+>)|>)?\s*{.*}\s*] [2007-06-09T18:38:21+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)?\s*{.*}\s*] [2007-06-09T18:38:38+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)+\s*{.*}\s*] [2007-06-09T18:39:21+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)*\s*\{.*\}\s*] [2007-06-09T18:39:44+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)] [2007-06-09T18:40:24+0000] GET from 154.20.93.119 I:[' { l;kdjfj } '] R:[(<[^>]+>)] [2007-06-11T08:52:08+0000] GET from 203.97.252.42 I:['2hours 4minutes 11.02seconds'] R:[^\s*(?:(?P\d+)\s*h(?:ours{0,1}))\s*(?:(?P\d+)\s*m(?:in(?:ute)s{0,1}))\s*(?:(?P\d+)(?:\.(?P\d+))\s*s(?:ec(?:ond)s{0,1}))\s*$] [2007-06-11T08:54:16+0000] GET from 203.97.252.42 I:['2h 4m 11.02s'] R:[^\s*(?:(?P\d+)\s*h(?:ours{0,1}))\s*(?:(?P\d+)\s*m(?:in(?:ute)s{0,1}))\s*(?:(?P\d+)(?:\.(?P\d+))\s*s(?:ec(?:ond)s{0,1}))\s*$] [2007-06-11T08:56:19+0000] GET from 203.97.252.42 I:['2h 4m 11.02s'] R:[^\s*(?:(?P\d+)\s*h(?:ours?)?)\s*(?:(?P\d+)\s*m(?:in(?:ute)?s?)?)\s*(?:(?P\d+)(?:\.(?P\d+))\s*s(?:ec(?:ond)?s?)?)\s*$] [2007-06-13T17:58:09+0000] GET from 154.20.93.119 I:['
*Auteur c{oo}'] R:[(\*Auteur|{|}|<|>)] [2007-06-13T23:25:44+0000] GET from 128.32.146.241 I:['hello there'] R:[\w] [2007-06-14T00:00:19+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n2\tAfghanistan\r\n6\tAlbania\r\n63\tAlgeria\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+'] [2007-06-14T00:00:24+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n2\tAfghanistan\r\n6\tAlbania\r\n63\tAlgeria\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+] [2007-06-14T00:00:43+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n2\tAfghanistan\r\n6\tAlbania\r\n63\tAlgeria\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+] [2007-06-14T00:01:18+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n2\tAfghanistan\r\n6\tAlbania\r\n63\tAlgeria\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+$] [2007-06-14T00:02:28+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n2\tAfghanistan\r\n6\tAlbania\r\n63\tAlgeria\r\n12\tAmerican Samoa'] R:[\t] [2007-06-14T00:06:09+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[[a-zA-Z]+$'] [2007-06-14T00:06:16+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[[a-zA-Z]+$] [2007-06-14T00:06:52+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[(?=[^\t])[a-zA-Z]+$] [2007-06-14T00:07:12+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[(?=[^\t]).+$] [2007-06-14T00:07:21+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[(?=[\t]).+$] [2007-06-14T00:07:41+0000] GET from 128.32.146.241 I:['12\tAmerican Samoa'] R:[(?![\t]).+$] [2007-06-15T17:46:24+0000] GET from 128.3.5.48 I:['500 american samoa'] R:[\w] [2007-06-15T17:46:48+0000] GET from 128.3.5.48 I:['500 american samoa'] R:[[^0-9]] [2007-06-15T17:47:00+0000] GET from 128.3.5.48 I:['500 american samoa'] R:[[^0-9 ]] [2007-06-15T17:48:42+0000] GET from 128.3.5.48 I:['500 american samoa'] R:[america] [2007-06-18T16:49:23+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+$] [2007-06-18T16:50:16+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n12\tAmerican Samoa'] R:[[a-zA-Z]+[a-zA-Z ]*] [2007-06-18T16:50:51+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n12\tAmerican Samoa islands'] R:[[a-zA-Z]+[a-zA-Z ]*] [2007-06-18T17:12:04+0000] GET from 128.32.146.241 I:['feature_id\tdisplayname\r\n12\tAmerican Samoa islands'] R:[[a-zA-Z][a-zA-Z ]*'] [2007-06-18T17:12:10+0000] GET from 128.32.146.241 I:['Venezuela\\r\\n'] R:[[a-zA-Z][a-zA-Z ]*'] [2007-06-18T17:13:03+0000] GET from 128.32.146.241 I:['Venezuela\\r\\n'] R:[[a-zA-Z][a-zA-Z ]*] [2007-06-18T17:13:58+0000] GET from 128.32.146.241 I:['Venezuela\\r\\n'] R:[[a-zA-Z][a-zA-Z ]*] [2007-06-18T19:25:18+0000] GET from 128.32.146.241 I:['
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Vem var hogwarts \xf6verinkvisitor i bok 5?
Draco MalfoyProf. McGonagall
Prof. DumbledoreProf. Umbridge
Vem var hogwarts \xf6verinkvisitor i bok 5?
Draco MalfoyProf. McGonagall
Prof. DumbledoreProf. Umbridge
Positive feedback ratingLightning fast PayPal payment - a real pleasure - enjoy the CARDPLAYER MAGAZINESSeller: ****SUPERB RESPONSIVE BUYER. AN ASSET TO EBAY. MY HIGHEST RATING. THANKS!****).*
UYURY858Uruguay, Eastern Republic of\r\n
UZUZB860+fUzbekistan\r\n
VUVUT548+wVanuatu (was New Hebrides)\r\n
VEVEN862Venezuela, Bolivarian Republic of\r\n
VNVNM704+uViet Nam, Socialist Republic of (was Democratic Republic of & Republic\r\nof)\r\n
WFWLF876Wallis and Futuna Islands\r\n
EHESH732+bWestern Sahara (was Spanish Sahara)\r\n
YEYEM887+dYemen\r\n
ZMZMB894Zambia, Republic of\r\n
ZWZWE716+wZimbabwe (was Southern Rhodesia)\r\n
\r\n'] R:[Zambia] [2007-06-18T22:50:27+0000] GET from 128.32.146.241 I:['9\tUnited Arab Emirates\r\n78\tUnited Kingdom\r\n230\tUnited States\r\n228\tUnited States Minor Outlying Island'] R:[United] [2007-06-22T22:43:16+0000] GET from 64.74.221.28 I:['
ProsperFrenchMAbelFrenchMBreathHebrewAdd] [2007-06-22T23:04:03+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd)] [2007-06-22T23:04:10+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd)] [2007-06-22T23:04:59+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-22T23:07:39+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-22T23:24:59+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-22T23:25:12+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-22T23:26:23+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-22T23:42:41+0000] GET from 64.74.221.28 I:['AbelFrenchMBreathHebrewAdd.*)] [2007-06-23T18:31:28+0000] GET from 141.149.181.139 I:['user_pref("mail.root.none", "N:\\\\thunderbird profiles\\\\wesleyk profile\\\\wesleyk\\\\Mail");'] R:[i/thunderbird/] [2007-06-23T18:33:29+0000] GET from 141.149.181.139 I:['user_pref("mail.root.none", "N:\\\\thunderbird profiles\\\\userx profile\\\\userx\\\\Mail");'] R:[i/thunderbird profiles/] [2007-06-25T03:00:48+0000] GET from 24.215.172.205 I:[' 1. 1- 1 83497 5 Oct 83 Programmed For Murder\r\n 2. 1- 2 58009 19 Oct 83 Fatal Error\r\n\r\n 3. 1- 3 58008 26 Oct 83 Deadly Access\r\n 4. 1- 4 58005 2 Nov 83 Candidate for Murder\r\n 5. 1- 5 58007 9 Nov 83 A Chip Off the Old Block\r\n 6. 1- 6 58011 16 Nov 83 Airwave Anarchy\r\n 7. 1- 7 58012 23 Nov 83 Return of the Big Rocker\r\n\r\n 8. 1- 8 58010 30 Nov 83 The Wrong Mr. Wright\r\n 9. 1- 9 58004 21 Dec 83 Red Star Rising\r\n 10. 1-10 58024 7 Jan 84 The Network\r\n 11. 1-11 58022 14 Jan 84 Watch Out!\r\n 12. 1-12 58023 28 Jan 84 Amen to Amen-Re\r\n\r\n 13. 1-13 58027 4 Feb 84 Maid in the USA\r\n 14. 1-14 58031 25 Feb 84 The Lollypop Gang Strikes Back\r\n 15. 1-15 58026 17 Mar 84 The Sufi Project\r\n 16. 1-16 58032 21 Apr 84 Father\'s Day\r\n 17. 1-17 58029 28 Apr 84 Altaira\r\n\r\n 18. 1-18 58002 2 Jun 84 May I Take Your Order Please?'] R:[\s*\d+\.\s\+(\d\+)-\s*(\d\+).+]+>([^<]+)\s*] [2007-06-25T03:01:07+0000] GET from 24.215.172.205 I:[' 1. 1- 1 83497 5 Oct 83 Programmed For Murder\r\n 2. 1- 2 58009 19 Oct 83 Fatal Error\r\n\r\n 3. 1- 3 58008 26 Oct 83 Deadly Access\r\n 4. 1- 4 58005 2 Nov 83 Candidate for Murder\r\n 5. 1- 5 58007 9 Nov 83 A Chip Off the Old Block\r\n 6. 1- 6 58011 16 Nov 83 Airwave Anarchy\r\n 7. 1- 7 58012 23 Nov 83 Return of the Big Rocker\r\n\r\n 8. 1- 8 58010 30 Nov 83 The Wrong Mr. Wright\r\n 9. 1- 9 58004 21 Dec 83 Red Star Rising\r\n 10. 1-10 58024 7 Jan 84 The Network\r\n 11. 1-11 58022 14 Jan 84 Watch Out!\r\n 12. 1-12 58023 28 Jan 84 Amen to Amen-Re\r\n\r\n 13. 1-13 58027 4 Feb 84 Maid in the USA\r\n 14. 1-14 58031 25 Feb 84 The Lollypop Gang Strikes Back\r\n 15. 1-15 58026 17 Mar 84 The Sufi Project\r\n 16. 1-16 58032 21 Apr 84 Father\'s Day\r\n 17. 1-17 58029 28 Apr 84 Altaira\r\n\r\n 18. 1-18 58002 2 Jun 84 May I Take Your Order Please?'] R:[\s*\d+\.] [2007-06-25T03:01:23+0000] GET from 24.215.172.205 I:[' 1. 1- 1 83497 5 Oct 83 Programmed For Murder\r\n 2. 1- 2 58009 19 Oct 83 Fatal Error\r\n\r\n 3. 1- 3 58008 26 Oct 83 Deadly Access\r\n 4. 1- 4 58005 2 Nov 83 Candidate for Murder\r\n 5. 1- 5 58007 9 Nov 83 A Chip Off the Old Block\r\n 6. 1- 6 58011 16 Nov 83 Airwave Anarchy\r\n 7. 1- 7 58012 23 Nov 83 Return of the Big Rocker\r\n\r\n 8. 1- 8 58010 30 Nov 83 The Wrong Mr. Wright\r\n 9. 1- 9 58004 21 Dec 83 Red Star Rising\r\n 10. 1-10 58024 7 Jan 84 The Network\r\n 11. 1-11 58022 14 Jan 84 Watch Out!\r\n 12. 1-12 58023 28 Jan 84 Amen to Amen-Re\r\n\r\n 13. 1-13 58027 4 Feb 84 Maid in the USA\r\n 14. 1-14 58031 25 Feb 84 The Lollypop Gang Strikes Back\r\n 15. 1-15 58026 17 Mar 84 The Sufi Project\r\n 16. 1-16 58032 21 Apr 84 Father\'s Day\r\n 17. 1-17 58029 28 Apr 84 Altaira\r\n\r\n 18. 1-18 58002 2 Jun 84 May I Take Your Order Please?'] R:[\s*\d+\.\s\+(\d\+)-\s*(\d\+)] [2007-06-25T03:01:39+0000] GET from 24.215.172.205 I:[' 1. 1- 1 83497 5 Oct 83 Programmed For Murder\r\n 2. 1- 2 58009 19 Oct 83 Fatal Error\r\n\r\n 3. 1- 3 58008 26 Oct 83 Deadly Access\r\n 4. 1- 4 58005 2 Nov 83 Candidate for Murder\r\n 5. 1- 5 58007 9 Nov 83 A Chip Off the Old Block\r\n 6. 1- 6 58011 16 Nov 83 Airwave Anarchy\r\n 7. 1- 7 58012 23 Nov 83 Return of the Big Rocker\r\n\r\n 8. 1- 8 58010 30 Nov 83 The Wrong Mr. Wright\r\n 9. 1- 9 58004 21 Dec 83 Red Star Rising\r\n 10. 1-10 58024 7 Jan 84 The Network\r\n 11. 1-11 58022 14 Jan 84 Watch Out!\r\n 12. 1-12 58023 28 Jan 84 Amen to Amen-Re\r\n\r\n 13. 1-13 58027 4 Feb 84 Maid in the USA\r\n 14. 1-14 58031 25 Feb 84 The Lollypop Gang Strikes Back\r\n 15. 1-15 58026 17 Mar 84 The Sufi Project\r\n 16. 1-16 58032 21 Apr 84 Father\'s Day\r\n 17. 1-17 58029 28 Apr 84 Altaira\r\n\r\n 18. 1-18 58002 2 Jun 84 May I Take Your Order Please?'] R:[\s*\d+\.\s\+(\d\+)] [2007-06-25T03:02:02+0000] GET from 24.215.172.205 I:[' 1. 1- 1 83497 5 Oct 83 Programmed For Murder\r\n 2. 1- 2 58009 19 Oct 83 Fatal Error\r\n\r\n 3. 1- 3 58008 26 Oct 83 Deadly Access\r\n 4. 1- 4 58005 2 Nov 83 Candidate for Murder\r\n 5. 1- 5 58007 9 Nov 83 A Chip Off the Old Block\r\n 6. 1- 6 58011 16 Nov 83 Airwave Anarchy\r\n 7. 1- 7 58012 23 Nov 83 Return of the Big Rocker\r\n\r\n 8. 1- 8 58010 30 Nov 83 The Wrong Mr. Wright\r\n 9. 1- 9 58004 21 Dec 83 Red Star Rising\r\n 10. 1-10 58024 7 Jan 84 The Network\r\n 11. 1-11 58022 14 Jan 84 Watch Out!\r\n 12. 1-12 58023 28 Jan 84 Amen to Amen-Re\r\n\r\n 13. 1-13 58027 4 Feb 84 Maid in the USA\r\n 14. 1-14 58031 25 Feb 84 The Lollypop Gang Strikes Back\r\n 15. 1-15 58026 17 Mar 84 The Sufi Project\r\n 16. 1-16 58032 21 Apr 84 Father\'s Day\r\n 17. 1-17 58029 28 Apr 84 Altaira\r\n\r\n 18. 1-18 58002 2 Jun 84 May I Take Your Order Please?'] R:[\s*\d+\.\s+(\d+)-\s*(\d+).+]+>([^<]+)\s*] [2007-06-25T03:20:11+0000] GET from 24.215.172.205 I:['

Whiz Kids

'] R:[

]>([^<]+)] [2007-06-25T03:20:49+0000] GET from 24.215.172.205 I:['

Whiz Kids

'] R:[

]+>([^<]+)] [2007-06-26T13:28:45+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\\d{4}-\\d{4}] [2007-06-26T13:29:18+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\\d{4}.\\d{4}] [2007-06-26T13:29:26+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\d{4}.\d{4}] [2007-06-26T13:34:03+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\d{4}.\d{4}$] [2007-06-26T13:34:13+0000] GET from 80.89.212.103 I:['1870-1960 '] R:[^\d{4}.\d{4}$] [2007-06-26T13:34:22+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\d{4}-\d{4}$] [2007-06-26T13:34:28+0000] GET from 80.89.212.103 I:['1870-1960'] R:[^\d{4}-\d{4}$] [2007-06-26T14:37:59+0000] GET from 80.89.212.103 I:['1856\x961890'] R:[^\d{4}.\d{4}] [2007-06-26T15:02:37+0000] GET from 80.89.212.103 I:['um 1856\x961890'] R:[^um \d{4}–\d{4}] [2007-06-26T15:03:07+0000] GET from 80.89.212.103 I:['um 1897\x961971'] R:[^um \d{4}–\d{4}] [2007-06-26T20:36:41+0000] GET from 72.14.228.89 I:['def other(asdf,\r\n args =None):'] R:[\(.*(\s=|=\s)] [2007-06-26T20:36:48+0000] GET from 72.14.228.89 I:['def other(asdf, args =None):'] R:[\(.*(\s=|=\s)] [2007-07-01T08:01:35+0000] GET from 216.232.210.19 I:['

'] R:[^[
]*$] [2007-07-08T21:17:14+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\[05\/Jul\/2007\]] [2007-07-08T21:18:00+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[05\/Jul\/2007] [2007-07-08T21:18:38+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\[05\/Jul\/2007] [2007-07-08T21:19:05+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[DownProcessReceptor\?.\s500\s] [2007-07-08T21:19:27+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptor\?] [2007-07-08T21:19:41+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?] [2007-07-08T21:20:00+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?.\s200\s] [2007-07-08T21:20:09+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?\s200\s] [2007-07-08T21:20:37+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?HTTP/1.0] [2007-07-08T21:20:50+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?\sHTTP/1.0] [2007-07-08T21:21:09+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?\s*\sHTTP/1.0] [2007-07-08T21:21:25+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?] [2007-07-08T21:22:03+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\/DownProcessReceptorLogin\?][HTTP/1.0\"]] [2007-07-08T21:22:55+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55\r\n200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT55555555&p=contador HTTP/1.0" 200 55'] R:[[\/DownProcessReceptorLogin\?][HTTP/1.0\"]] [2007-07-08T21:23:38+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55\r\n200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT55555555&p=contador HTTP/1.0" 200 55'] R:[[\/DownProcessReceptorLogin\?][HTTP/1.0\"][/s200/s]] [2007-07-08T21:23:56+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\/DownProcessReceptorLogin\?][HTTP/1.0\"][/s200/s]] [2007-07-08T21:24:18+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[HTTP/1.0\"]] [2007-07-08T21:24:48+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\sHTTP\/1.0\"\s]] [2007-07-08T21:25:32+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\sHTTP\/1\.0\"\s]] [2007-07-08T21:25:56+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\sHTTP\s]] [2007-07-08T21:26:13+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\s200\s]] [2007-07-08T21:26:29+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\s200\s+] [2007-07-08T21:26:58+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?.\s200\s+] [2007-07-08T21:27:23+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[[\/DownProcessReceptorLogin\?+]] [2007-07-08T21:27:38+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?+] [2007-07-08T21:27:46+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?+\s200\s+] [2007-07-08T21:27:57+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?+.\s200\s+] [2007-07-08T21:28:22+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?+&\s200\s+] [2007-07-08T21:28:44+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\s200\s+] [2007-07-08T21:29:09+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?*\s200\s+] [2007-07-08T21:36:37+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?|\s200\s+] [2007-07-08T21:37:00+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?|200] [2007-07-08T21:37:18+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?|/s200] [2007-07-08T21:38:12+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\?|\b200\b] [2007-07-08T21:38:35+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\s200\s] [2007-07-08T21:40:23+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[r\/DownProcessReceptorLogin\? r\s200\s] [2007-07-08T21:40:37+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[\/DownProcessReceptorLogin\? \s200\s] [2007-07-08T21:41:22+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[(\/DownProcessReceptorLogin\?)+(\s200\s)] [2007-07-08T21:46:51+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[(DownProcessReceptorLogin+)(200\s)] [2007-07-08T21:47:00+0000] GET from 201.244.192.177 I:['200.85.230.158 - - [05/Jul/2007:17:01:48 +0500] "GET /DownProcessReceptorLogin?l=ENT213820238&p=contador HTTP/1.0" 200 55'] R:[(DownProcessReceptorLogin+)] [2007-07-10T20:42:33+0000] GET from 131.107.0.104 I:['

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

\s*\s*

] [2007-07-10T20:43:18+0000] GET from 131.107.0.104 I:['

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

] [2007-07-10T20:43:55+0000] GET from 131.107.0.104 I:['

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

\s*\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

\s*] [2007-07-10T20:45:34+0000] GET from 131.107.0.104 I:['

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

\s*\s*\s*

] [2007-07-10T20:46:50+0000] GET from 131.107.0.104 I:['

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n

\r\n

\r\n

\r\n \r\n \r\n

\r\n'] R:[

\s*\s*\s*

] [2007-07-11T15:33:25+0000] GET from 208.186.231.254 I:['http://intranet.bankofutah.com/images/tel8.jpg'] R:[.*\.com\/images\/.*\.jpg] [2007-07-11T15:34:03+0000] GET from 208.186.231.254 I:['http://intranet.bankofutah.com/images/tel8.gif'] R:[.*\.com\/images\/.*\.jpg] [2007-07-11T15:34:10+0000] GET from 208.186.231.254 I:['http://intranet.bankofutah.com/images/tel8.jpg'] R:[.*\.com\/images\/.*\.jpg] [2007-07-11T15:34:52+0000] GET from 208.186.231.254 I:['http://intranet.bankofutah.com/images/tel8.jpg'] R:[.*\.com/images/.*\.jpg] [2007-07-11T19:23:27+0000] GET from 151.151.21.101 I:['0% loss'] R:[(\d+)% loss] [2007-07-11T19:24:00+0000] GET from 151.151.21.101 I:['50% loss'] R:[(\d+)% loss] [2007-07-11T19:24:38+0000] GET from 151.151.21.101 I:['Pinging 10.27.246.163 with 32 bytes of data:\r\n\r\nReply from 10.27.246.163: bytes=32 time=43ms TTL=119\r\nReply from 10.27.246.163: bytes=32 time=42ms TTL=119\r\nReply from 10.27.246.163: bytes=32 time=43ms TTL=119\r\nReply from 10.27.246.163: bytes=32 time=43ms TTL=119\r\n\r\nPing statistics for 10.27.246.163:\r\n Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),\r\nApproximate round trip times in milli-seconds:\r\n Minimum = 42ms, Maximum = 43ms, Average = 42ms'] R:[(\d+)% loss] [2007-07-13T04:46:45+0000] GET from 76.100.55.191 I:[']]]'] R:[[]]] [2007-07-14T20:44:55+0000] GET from 76.100.55.191 I:['xxy'] R:[(x)?\1y] [2007-07-14T20:45:17+0000] GET from 76.100.55.191 I:['xxy y y xxy xy'] R:[(x)?\1y] [2007-07-18T01:23:25+0000] GET from 64.60.124.30 I:['lolomg'] R:[l.l] [2007-07-19T21:13:10+0000] GET from 155.100.145.63 I:['http://68.54.1.159/?c290b516c3c2cd8a7c0b58e47d14c775ed2175e'] R:[http://[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}] [2007-07-19T21:51:52+0000] GET from 155.100.145.63 I:['Hi. Class mate has sent you a postcard.\r\nSee your card as often as you wish during the next 15 days.\r\n\r\nSEEING YOUR CARD\r\n\r\nIf your email software creates links to Web pages, click on your card\'s direct www address below while you are connected to the Internet:\r\n\r\nhttp://71.65.193.144/?9675c50080d0229e368412571d7d419\r\n\r\nOr copy and paste it into your browser\'s "Location" box (where Internet addresses go).\r\n\r\nWe hope you enjoy your awesome card.\r\n\r\nWishing you the best,\r\nAdministrator,\r\nnetfuncards.com\r\n'] R:[http://[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/\?] [2007-07-19T21:55:21+0000] GET from 155.100.145.63 I:['Hi. Class mate has sent you a postcard.\r\nSee your card as often as you wish during the next 15 days.\r\n\r\nSEEING YOUR CARD\r\n\r\nIf your email software creates links to Web pages, click on your card\'s direct www address below while you are connected to the Internet:\r\n\r\nhttp://71.65.193.144/?9675c50080d0229e368412571d7d419\r\n\r\nOr copy and paste it into your browser\'s "Location" box (where Internet addresses go).\r\n\r\nWe hope you enjoy your awesome card.\r\n\r\nWishing you the best,\r\nAdministrator,\r\nnetfuncards.com\r\n'] R:[http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/?] [2007-07-19T21:55:50+0000] GET from 155.100.145.63 I:['Hi. Class mate has sent you a postcard.\r\nSee your card as often as you wish during the next 15 days.\r\n\r\nSEEING YOUR CARD\r\n\r\nIf your email software creates links to Web pages, click on your card\'s direct www address below while you are connected to the Internet:\r\n\r\nhttp://71.65.193.144/?9675c50080d0229e368412571d7d419\r\n\r\nOr copy and paste it into your browser\'s "Location" box (where Internet addresses go).\r\n\r\nWe hope you enjoy your awesome card.\r\n\r\nWishing you the best,\r\nAdministrator,\r\nnetfuncards.com\r\n'] R:[http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/\?] [2007-07-19T21:58:37+0000] GET from 63.251.108.100 I:['http://1.2.3.4/?\r\n'] R:[http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/\?] [2007-07-19T21:59:55+0000] GET from 63.251.108.100 I:['Hi. Class mate has sent you a postcard.\r\nSee your card as often as you wish during the next 15 days.\r\n\r\nSEEING YOUR CARD\r\n\r\nIf your email software creates links to Web pages, click on your \r\ncard\'s direct www address below while you are connected to the Internet:\r\n\r\nhttp://71.65.193.144/?9675c50080d0229e368412571d7d419\r\n\r\nOr copy and paste it into your browser\'s "Location" box (where Internet \r\naddresses go).\r\n'] R:[http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/\?] [2007-07-20T19:26:52+0000] GET from 143.69.250.33 I:['www.bankofamerica.com'] R:[https?://[^/|\\?|\\\"|\\ ]*(?www.bankofamerica.com'] R:[https?://[^/|\?| ]*(?www.bankofamerica.com'] R:[https?://[^/|\?| ]*(?http://www.bankofamerica.com'] R:[https?://[^/|\?| ]*(?:)(?P\d+)"""] [2007-07-30T21:32:13+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:["""(?P:)(?P\d+)"""] [2007-07-30T21:32:30+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:["(?P:)(?P\d+)"] [2007-07-30T21:34:22+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:["(?P.*\|?P\d+)"] [2007-07-30T21:34:35+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[(?P.*\|?P\d+)] [2007-07-30T21:34:41+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[(?P.*\|?P\d+)] [2007-07-30T21:50:29+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(.*\|.*\|.*\)] [2007-07-30T21:51:14+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P.*\|.*\|.*\)] [2007-07-30T21:51:25+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P.*\|.*\|.*\)] [2007-07-30T21:51:36+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(.*\|.*\|.*\)] [2007-07-30T21:51:49+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(.*\|.*\|.*\)] [2007-07-30T21:59:10+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P\)] [2007-07-30T21:59:16+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P\)] [2007-07-30T21:59:28+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P:w\)] [2007-07-30T22:00:50+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P[^|)]\)] [2007-07-30T22:01:07+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(?P.+\)] [2007-07-30T22:01:21+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\(.+\)] [2007-07-30T22:01:41+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[\([.+]\)] [2007-07-30T22:01:49+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[([.+])] [2007-07-30T22:03:35+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[([^ \t\n\r\f\v])] [2007-07-30T22:03:55+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[(][^ \t\n\r\f\v\|][)]] [2007-07-30T22:04:05+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]] [2007-07-30T22:04:07+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]] [2007-07-30T22:04:14+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]+] [2007-07-30T22:04:43+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]+\|] [2007-07-30T22:04:50+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]+\|\d] [2007-07-30T22:05:09+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[[^ \t\n\r\f\v\|]+\|\d+] [2007-07-30T22:05:43+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[(?P[^ \t\n\r\f\v\|]+)\|\d+] [2007-07-30T22:05:52+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[(?P[^ \t\n\r\f\v\|]+)\|\d+] [2007-07-30T22:07:07+0000] GET from 159.153.4.80 I:['(c:\\foo.bar|23|12|24|0)'] R:[(?P[^ \t\n\r\f\v\|]+)\|\d+] [2007-08-01T05:54:26+0000] GET from 142.179.164.184 I:['

\r\nNihilum\r\n\r\nHorde\r\n\r\nMagtheridon EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n1\r\n
\r\nCurse\r\n\r\nHorde\r\n\r\nVek\'nilash EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n2\r\n
\r\nDeath and Taxes\r\n\r\nAlliance\r\n\r\nKorgath US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n3\r\n
\r\nFor the Horde\r\n\r\nHorde\r\n\r\nDestromath EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n4\r\n
\r\nForte\r\n\r\nAlliance\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n5\r\n
\r\nLast Resort\r\n\r\nHorde\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n2\r\n\r\n\r\n6\r\n
\r\nAurora\r\n\r\nHorde\r\n\r\nMal\'Ganis US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n7\r\n
\r\nAffenjungs INC\r\n\r\nHorde\r\n\r\nFrostwolf EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n8\r\n
\r\nRisen\r\n\r\nAlliance\r\n\r\nAlleria US\r\n\r\nPvE\r\n \r\n1\r\n\r\n\r\n9\r\n
\r\nMethod\r\n\r\nAlliance\r\n\r\nSylvanas EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n10\r\n
\r\nBad Omen\r\n\r\nHorde\r\n\r\nDentarg EU\r\n\r\nPvP\r\n \r\n1\r\n'] R:["/cgi-bin/bbguild/index.cgi?action=guildpage(.+)>(.+)] [2007-08-01T05:55:28+0000] GET from 142.179.164.184 I:['
\r\nNihilum\r\n\r\nHorde\r\n\r\nMagtheridon EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n1\r\n
\r\nCurse\r\n\r\nHorde\r\n\r\nVek\'nilash EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n2\r\n
\r\nDeath and Taxes\r\n\r\nAlliance\r\n\r\nKorgath US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n3\r\n
\r\nFor the Horde\r\n\r\nHorde\r\n\r\nDestromath EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n4\r\n
\r\nForte\r\n\r\nAlliance\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n5\r\n
\r\nLast Resort\r\n\r\nHorde\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n2\r\n\r\n\r\n6\r\n
\r\nAurora\r\n\r\nHorde\r\n\r\nMal\'Ganis US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n7\r\n
\r\nAffenjungs INC\r\n\r\nHorde\r\n\r\nFrostwolf EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n8\r\n
\r\nRisen\r\n\r\nAlliance\r\n\r\nAlleria US\r\n\r\nPvE\r\n \r\n1\r\n\r\n\r\n9\r\n
\r\nMethod\r\n\r\nAlliance\r\n\r\nSylvanas EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n10\r\n
\r\nBad Omen\r\n\r\nHorde\r\n\r\nDentarg EU\r\n\r\nPvP\r\n \r\n1\r\n'] R:[^
\r\nNihilum\r\n\r\nHorde\r\n\r\nMagtheridon EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n1\r\n
\r\nCurse\r\n\r\nHorde\r\n\r\nVek\'nilash EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n2\r\n
\r\nDeath and Taxes\r\n\r\nAlliance\r\n\r\nKorgath US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n3\r\n
\r\nFor the Horde\r\n\r\nHorde\r\n\r\nDestromath EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n4\r\n
\r\nForte\r\n\r\nAlliance\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n5\r\n
\r\nLast Resort\r\n\r\nHorde\r\n\r\nKazzak EU\r\n\r\nPvP\r\n \r\n2\r\n\r\n\r\n6\r\n
\r\nAurora\r\n\r\nHorde\r\n\r\nMal\'Ganis US\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n7\r\n
\r\nAffenjungs INC\r\n\r\nHorde\r\n\r\nFrostwolf EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n8\r\n
\r\nRisen\r\n\r\nAlliance\r\n\r\nAlleria US\r\n\r\nPvE\r\n \r\n1\r\n\r\n\r\n9\r\n
\r\nMethod\r\n\r\nAlliance\r\n\r\nSylvanas EU\r\n\r\nPvP\r\n \r\n1\r\n\r\n\r\n10\r\n
\r\nBad Omen\r\n\r\nHorde\r\n\r\nDentarg EU\r\n\r\nPvP\r\n \r\n1\r\n'] R:[^\aa_9e23921885e543ede11e\r\n'] R:[] [2007-08-24T21:29:58+0000] GET from 63.144.231.18 I:['Mega Dik'] R:[\bmega[^\w]*dik\b] [2007-08-26T23:01:39+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*??(uism)] [2007-08-26T23:01:54+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*?(?uism)] [2007-08-26T23:02:49+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*??(uism)] [2007-08-26T23:03:11+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*?(uism)] [2007-08-26T23:03:19+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*??uism] [2007-08-26T23:03:26+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*?(?uism)] [2007-08-26T23:04:00+0000] GET from 66.92.48.195 I:['test'] R:[<(.+?)(\s.*?)?>.*?] [2007-09-03T22:58:46+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:A-ZA-ZA-Z|.|^] [2007-09-03T22:59:20+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-ZA-ZA-Z]|.|^] [2007-09-03T22:59:50+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[/:[A-ZA-ZA-Z]|.|^/] [2007-09-03T23:08:24+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:] [2007-09-03T23:08:41+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-Z]{3}] [2007-09-03T23:10:56+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-Z]{3}.+] [2007-09-03T23:11:06+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-Z]{3}.+\|] [2007-09-03T23:11:20+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-Z]{3}.+\|^] [2007-09-03T23:11:33+0000] GET from 68.43.7.98 I:[':MSG|to|from|msgtext|^:GOB|state|county|zipcode|username|^'] R:[:[A-Z]{3}.+\|\^] [2007-09-04T05:11:38+0000] GET from 207.171.180.101 I:['Mauro Sauco '] R:[\<.*@.*\>] [2007-09-04T18:27:35+0000] GET from 86.130.243.158 I:['adasd adasdsad adsda asda '] R:[a+] [2007-09-05T15:44:21+0000] GET from 67.166.146.220 I:['
Kevin Youkilis, BOS
AB 479, HR 16, AVG .289
1B
3B
$680KUsed.28812446213331115703291353
Remaining.29461752010000000
'] R:[href=[^<]*<{1,1}] [2007-09-13T22:55:46+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<]*<{1,1}] [2007-09-13T22:57:27+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<]*GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<]*GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<>]*G[^<]<] [2007-09-13T23:00:59+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<>]*G] [2007-09-13T23:01:08+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=] [2007-09-13T23:01:30+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<>]*] [2007-09-13T23:02:12+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<>]*>G] [2007-09-13T23:02:40+0000] GET from 64.19.153.194 I:['rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
rue" href="/FIA/globaleconomics/rv_reports/generic.pl?DOC_ID=212175&MR=1">GLOBAL WEEKLY MONITOR
'] R:[href=[^<>]*>G[^<]*<] [2007-09-17T02:21:00+0000] GET from 190.80.135.144 I:['PFTAUSW-070914U.zip'] R:[[A HREF="PFTAUSW-[0-9]{6}]] [2007-09-19T00:11:40+0000] GET from 203.6.114.4 I:['blah'] R:[r'%([^|<>=^%]+)%'] [2007-09-19T01:36:58+0000] GET from 70.230.158.132 I:[""] R:[/href='(.*)'/i] [2007-09-19T01:37:21+0000] GET from 70.230.158.132 I:[""] R:[href='(.*)'] [2007-09-19T19:32:38+0000] GET from 216.235.158.34 I:['11111'] R:[[0-9]{5}] [2007-09-19T19:33:03+0000] GET from 216.235.158.34 I:['1'] R:[[0-9]{5}] [2007-09-19T19:33:28+0000] GET from 216.235.158.34 I:['12345'] R:[[0-9]{5}] [2007-09-19T19:33:51+0000] GET from 216.235.158.34 I:['112345'] R:[[1-3][0-9]{5}] [2007-09-19T19:33:58+0000] GET from 216.235.158.34 I:['512345'] R:[[1-3][0-9]{5}] [2007-09-19T19:34:14+0000] GET from 216.235.158.34 I:['312345'] R:[[1-3][0-9]{5}] [2007-09-19T19:34:34+0000] GET from 216.235.158.34 I:['312345'] R:[Subject:(.)*[1-3][0-9]{5}] [2007-09-19T19:34:40+0000] GET from 216.235.158.34 I:['Subject:312345'] R:[Subject:(.)*[1-3][0-9]{5}] [2007-09-19T19:34:55+0000] GET from 216.235.158.34 I:["Subject: You're account # is 312345"] R:[Subject:(.)*[1-3][0-9]{5}] [2007-09-19T19:35:03+0000] GET from 216.235.158.34 I:['Subject: 312345'] R:[Subject:(.)*[1-3][0-9]{5}] [2007-09-19T19:35:08+0000] GET from 216.235.158.34 I:['Subject:312345'] R:[Subject:(.)*[1-3][0-9]{5}] [2007-09-19T20:18:54+0000] GET from 216.235.158.34 I:['test'] R:[['Subject:312345'] R:[Subject:(.)*[1-3][0-9]{5}]] [2007-09-19T20:19:31+0000] GET from 216.235.158.34 I:['Subject:312345\r\n'] R:[I:['Subject:312345'] R:[Subject:(.)*[1-3][0-9]{5}]] [2007-09-19T20:19:57+0000] GET from 216.235.158.34 I:['Subject:2333\r\n\r\n'] R:[[Subject:(.)*[1-3][0-9]{5}]] [2007-09-19T20:20:29+0000] GET from 216.235.158.34 I:['monkey\r\n\r\n'] R:[[monk[*]y]] [2007-09-19T20:34:26+0000] GET from 216.235.158.34 I:['monkey\r\n\r\n'] R:[[monk*y]] [2007-09-19T20:57:00+0000] GET from 216.235.158.34 I:['fsadfas'] R:[fsdafas] [2007-09-19T20:58:36+0000] GET from 216.235.158.34 I:['1234'] R:[1[2-9]34] [2007-09-19T21:00:32+0000] GET from 216.235.158.34 I:['1234'] R:[1[2-9]34] [2007-09-20T03:39:17+0000] GET from 211.75.91.19 I:["It works"] R:[".*http://(\w+)/"] [2007-09-20T03:39:40+0000] GET from 211.75.91.22 I:["It works"] R:[http://(\w+)/] [2007-09-20T03:41:11+0000] GET from 211.75.91.22 I:["It works"] R:[.http://(\w+)/] [2007-09-20T03:42:11+0000] GET from 211.75.91.19 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[\\[\w\-.]+] [2007-09-20T03:47:20+0000] GET from 211.75.91.19 I:['fsdfs'] R:[dsf] [2007-09-20T12:52:54+0000] GET from 91.113.17.188 I:['"2007-09-13 16:24:31"'] R:["\d{4}-\d{2}-\d{2}[ ]\d{2}:\d{2}:\d{2}"] [2007-09-20T13:37:40+0000] GET from 91.113.17.188 I:['"2007-09-13 16:24:31"'] R:["\d{4}-\d{2}-\d{2}[ ]\d{2}:\d{2}:\d{2}"] [2007-09-20T15:46:43+0000] GET from 84.187.234.99 I:['buy pharmaceutics here'] R:[([Pp]harma)] [2007-09-20T15:49:05+0000] GET from 84.187.234.99 I:['2007-09-20 07:18:42 H=(ddxxqq1111) [125.33.80.41] sender verify fail for : Unrouteable address\r\n'] R:[[[](?P\S*)[]] sender verify fail for] [2007-09-20T17:30:00+0000] GET from 69.63.128.19 I:['00:27:45 [86520] End delivery to rick@photoeye.com\r\n00:27:45 [86520] Delivery finished for error@photoeye.com at 12:27:45 AM\t[id:393451386520]\r\n00:27:45 [86519] Starting local delivery to rick@photoeye.com\r\n00:27:45 [86521] Connection to 66.196.97.250 succeeded\r\n00:27:45 [86519] Delivery for error@photoeye.com to rick@photoeye.com has completed (Delivered) Filter: None\r\n00:27:45 [86519] End delivery to rick@photoeye.com\r\n00:27:45 [86519] Delivery finished for error@photoeye.com at 12:27:45 AM\t[id:393451386519]\r\n00:27:45 [86521] RSP: 220 mta118.mail.re3.yahoo.com ESMTP YSmtp service ready\r\n00:27:45 [86521] CMD: EHLO ewhserver254.edgewebhosting.net\r\n00:27:45 [86521] RSP: 250-mta118.mail.re3.yahoo.com\r\n00:27:45 [86521] RSP: 250-8BITMIME\r\n00:27:45 [86521] RSP: 250-SIZE 31981568\r\n00:27:45 [86521] RSP: 250 PIPELINING\r\n00:27:45 [86521] CMD: MAIL FROM: SIZE=1390\r\n00:27:48 [86521] RSP: 250 sender ok\r\n00:27:48 [86521] CMD: RCPT TO:\r\n00:27:48 [86521] RSP: 250 recipient ok\r\n00:27:48 [86521] CMD: DATA\r\n00:27:48 [86521] RSP: 354 go ahead\r\n00:27:48 [86521] RSP: 250 ok dirdel\r\n00:27:48 [86521] CMD: QUIT\r\n00:27:48 [86521] RSP: 221 mta118.mail.re3.yahoo.com\r\n00:27:48 [86521] Delivery for americanreporting@advfilms.com to irvd2x@yahoo.com has completed (Delivered)\r\n00:27:50 [86521] Delivery finished for americanreporting@advfilms.com at 12:27:50 AM\t[id:393451386521]\r\n00:29:30 [86522] Delivery started for at 12:29:30 AM\r\n00:30:45 [86523] Delivery started for dwruphusm@ruphus.com at 12:30:45 AM\r\n00:31:00 [86523] Sending remote mail for dwruphusm@ruphus.com\r\n00:31:00 [86523] Connecting to 209.85.133.27\r\n00:31:00 [86523] Connection to 209.85.133.27 succeeded\r\n00:31:00 [86523] RSP: 220 mx.google.com ESMTP b14si2319430ana\r\n00:31:00 [86523] CMD: EHLO ewhserver254.edgewebhosting.net\r\n00:31:00 [86523] RSP: 250-mx.google.com at your service, [69.63.134.180]\r\n00:31:00 [86523] RSP: 250-SIZE 28311552\r\n00:31:00 [86523] RSP: 250-8BITMIME\r\n00:31:00 [86523] RSP: 250 ENHANCEDSTATUSCODES\r\n00:31:00 [86523] CMD: MAIL FROM: SIZE=1423\r\n00:31:00 [86523] RSP: 250 2.1.0 OK\r\n00:31:00 [86523] CMD: RCPT TO:\r\n00:31:01 [86523] RSP: 250 2.1.5 OK\r\n00:31:01 [86523] CMD: DATA\r\n00:31:01 [86523] RSP: 354 Go ahead\r\n00:31:01 [86523] RSP: 250 2.0.0 OK 1190262659 b14si2319430ana\r\n00:31:01 [86523] CMD: QUIT\r\n00:31:01 [86523] RSP: 221 2.0.0 mx.google.com closing connection b14si2319430ana\r\n00:31:01 [86523] Delivery for dwruphusm@ruphus.com to janefultonalt@gmail.com has completed (Delivered)\r\n00:31:05 [86523] Delivery finished for dwruphusm@ruphus.com at 12:31:05 AM\t[id:393451386523]\r\n00:31:40 [86522] Delivery finished for at 12:31:40 AM\t[id:393451386522]\r\n00:33:00 [86524] Delivery started for error@photoeye.com at 12:33:00 AM\r\n00:33:15 [86524] Starting local delivery to rick@photoeye.com\r\n00:33:15 [86524] Delivery for error@photoeye.com to rick@photoeye.com has completed (Delivered) Filter: None\r\n00:33:15 [86524] End delivery to rick@photoeye.com\r\n00:33:15 [86524] Delivery finished for error@photoeye.com at 12:33:15 AM\t[id:393451386524]\r\n00:33:45 [86525] Delivery started for photoeyeserver@photoeye.com at 12:33:45 AM\r\n00:33:45 [86526] Delivery started for error@photoeye.com at 12:33:45 AM\r\n00:33:45 [86527] Delivery started for photoeyeserver@photoeye.com at 12:33:45 AM\r\n00:33:45 [86528] Delivery started for error@photoeye.com at 12:33:45 AM\r\n00:34:00 [86529] Delivery started for error@photoeye.com at 12:34:00 AM\r\n00:34:00 [86530] Delivery started for error@photoeye.com at 12:34:00 AM\r\n00:34:00 [86528] Starting local delivery to rick@photoeye.com'] R:[^(\d{2}:?){3}\s*\[(?P\d*)\]] [2007-09-23T18:23:13+0000] GET from 201.15.77.186 I:[' \r\n \r\n

\r\n JuSiNhA Juliani ټ'] R:[/<\/a>/i] [2007-09-25T00:50:28+0000] GET from 70.116.21.168 I:['\t\t\t\tTime: 02:05\r\n\t\t\t\r\n\t\t\t

\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\t\tMore in People & Blogs\r\n\t\t\t
\r\n\t
\r\n\r\n\t\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t
\r\n\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t
Add Video to QuickList
\r\n\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t\t\t
\r\n\t\t\t\t\tChocolate Rain 8Bit Remix
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\r\n\t\r\n\t', and i used modplug tracker (with a setup for making real NES music) for the song...Chocolate Rain 8bit remix Tay Zonday\r\n\t\r\n\r\n\t\r\n\t\t\t\r\n\t\t\t(more)\r\n\t\t\t\r\n\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\r\n\t\r\n\r\n\t\r\n\t\r\n\t\r\n\r\n\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\tFrom: UuUuUuUuUuU
\r\n\r\n\t\t\t\t\t\tViews: 781,173
\r\n\t\t\t\t\t\tAdded: 2 months ago
\r\n\t\t\t
\r\n\r\n\t\t\t\t
Tags: Chocolate   Rain   8bit   remix   Tay   Zonday
\r\n\r\n\t\t\t\tTime: 02:18\r\n\t\t\t
\r\n\t\t\t\tMore in Music\r\n\t\t\t
\r\n\t
'] R:[]+>(.*)<\/a>/ig] [2007-09-25T07:40:16+0000] GET from 70.116.21.168 I:['rofl  sotjl&; &63 kjd;'] R:[&.*;] [2007-09-25T07:41:35+0000] GET from 70.116.21.168 I:['rofl  sotjl&; &63 kjd;'] R:[&.{1,5};] [2007-09-25T13:53:24+0000] GET from 193.90.3.182 I:['10.0.2.1'] R:[[1-9^10]+\.\d+\.\d+\.\d+] [2007-09-25T13:54:03+0000] GET from 193.90.3.182 I:['22.0.2.1'] R:[[1-9^10]+\.\d+\.\d+\.\d+] [2007-09-26T00:46:39+0000] GET from 65.57.245.11 I:['asdf'] R:[^([^(\uff08]+)[(\uff08]([^(\uff08]+)[)\uff09]\s*$] [2007-09-26T00:47:08+0000] GET from 65.57.245.11 I:['as (asdf df)'] R:[^([^(\uff08]+)[(\uff08]([^(\uff08]+)[)\uff09]\s*$] [2007-09-26T09:53:09+0000] GET from 194.151.98.245 I:['https://spidertest10.nl.rsg/SEO/e_1_Basisonderwijs.html'] R:[https://spidertest10\.nl\.rsg/SEO/e_1_Basisonderwijs\.html] [2007-09-26T09:54:59+0000] GET from 194.151.98.245 I:['asdgsadghasdhghttps://spidertest10.nl.rsg/SEO/e_1_Basisonderwijs.htmlljjbklldsfagasdfgh'] R:[https.*html] [2007-09-26T09:56:14+0000] GET from 194.151.98.245 I:['asdgsadghasdhghttps://spidertest10.nl.rsg/SEO/e_1_Basisonderwijs.htmlljjbklldsfagasdfgh'] R:[https://spidertest10\.nl\.rsg/SEO/e_([a-zA-Z0-9_,/\+]+)\.html] [2007-09-26T09:57:05+0000] GET from 194.151.98.245 I:['asdgsadghasdhghttps://spidertest10.nl.rsg/SEO/e_3_MBO%2CHAVO%2CVWO.htmlljjbklldsfagasdfgh'] R:[https://spidertest10\.nl\.rsg/SEO/e_([a-zA-Z0-9_,/\+]+)\.html] [2007-09-26T09:57:33+0000] GET from 194.151.98.245 I:['asdgsadghasdhghttps://spidertest10.nl.rsg/SEO/e_3_MBO%2CHAVO%2CVWO.htmlljjbklldsfagasdfgh'] R:[https://spidertest10\.nl\.rsg/SEO/e_([a-zA-Z0-9%_,/\+]+)\.html] [2007-09-26T21:16:03+0000] GET from 209.220.105.14 I:['proxy.Southard.Helen@holdingcross.com'] R:[proxy\.*\.holdingcross\.com] [2007-09-26T21:16:17+0000] GET from 209.220.105.14 I:['proxy.Southard.Helen@holdingcross.com'] R:[proxy\.\s*\.holdingcross\.com] [2007-09-26T21:16:37+0000] GET from 209.220.105.14 I:['proxy.Southard.Helen@holdingcross.com'] R:[proxy\.[a-z]*\.holdingcross\.com] [2007-09-27T12:37:50+0000] GET from 85.178.209.156 I:['Briefwechsel Hildebrand Veckinchusen:243'] R:[Briefwechsel Hildebrand Veckinchusen\:(.*?)] [2007-09-27T12:38:54+0000] GET from 85.178.209.156 I:['Briefwechsel Hildebrand Veckinchusen:243'] R:[Briefwechsel Hildebrand Veckinchusen\:(.*)] [2007-09-27T19:08:50+0000] GET from 137.71.23.54 I:['
186 : Some Literal assignments to AR (type 6 instr) require \'+\''] R:[(\d+)] [2007-10-01T14:17:57+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.16-22@@@.tif'] R:[^(.*/)?\s*(.*)([@#]*)(\..*)?$] [2007-10-01T14:19:17+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.16-22@@@.tif'] R:[^(.*/)?\s*(.*?)([@#]*)(\..*)?$] [2007-10-01T14:20:22+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.16-22@@@.tif'] R:[^(.*/)?\s*(.*?)([@#]+)?(\..*)?$] [2007-10-01T14:25:14+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.16-22@@@.tif'] R:[^(.*?)(-?\d+)((?:[^\d]*)|(?:[^\d]*[.][^.]*))$] [2007-10-01T14:25:56+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.tif'] R:[^(.*?)(-?\d+)((?:[^\d]*)|(?:[^\d]*[.][^.]*))$] [2007-10-01T14:26:18+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.100.2001.tif'] R:[^(.*?)(-?\d+)((?:[^\d]*)|(?:[^\d]*[.][^.]*))$] [2007-10-01T14:26:27+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.100.2001'] R:[^(.*?)(-?\d+)((?:[^\d]*)|(?:[^\d]*[.][^.]*))$] [2007-10-01T14:33:24+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.100.2001'] R:[^(.*/)?\s*(.*)] [2007-10-01T14:36:28+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.100.2001'] R:[^(/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.)(\d\d\d)(.2001)] [2007-10-01T14:45:52+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.100.2001'] R:[^(.*/)?\s*(.*?)([@#]*)([.].*)?$] [2007-10-01T14:46:11+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([@#]*)([.].*)?$] [2007-10-01T14:50:11+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([@]*[#]*)([.].*)?$] [2007-10-01T14:51:14+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([@]*[#]*(?=[.]))([.].*)?$] [2007-10-01T14:51:34+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([@]*[#]*(?=[.]))$] [2007-10-01T14:51:47+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([@]*[#]*(?=[.]))] [2007-10-01T14:52:13+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)(\@*\#*)] [2007-10-01T14:52:32+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)(#*)] [2007-10-01T14:52:48+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*)(#*)] [2007-10-01T14:53:29+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#]+)] [2007-10-01T14:53:38+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#]*)] [2007-10-01T14:53:51+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#]+)] [2007-10-01T14:54:12+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*)([#]+)] [2007-10-01T14:54:41+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*)([#@]+)(.*)$] [2007-10-01T14:57:00+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#@]*)(.*)$] [2007-10-01T14:57:24+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#@]*)(\..*)?$] [2007-10-01T14:57:35+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#@]+)?(\..*)?$] [2007-10-01T14:58:06+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.#.tif'] R:[^(.*/)?\s*(.*?)([#@]+)(\..*)?$] [2007-10-01T15:16:22+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.1000.tif'] R:[^(.*?)(-?\d+)((?:[^\d]*)|(?:[^\d]*[.][^.]*))$] [2007-10-02T08:22:07+0000] GET from 89.137.102.51 I:['2333-12-12'] R:[^[12][0-9]{3}-[0]?[1-12]-[0]?[1-30]$] [2007-10-02T08:23:13+0000] GET from 89.137.102.51 I:['2333-12-12'] R:[^[12][0-9]{3}-[1-12]-[1-30]$] [2007-10-02T10:31:16+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.1000.tif'] R:[^(.*/)?\s*(.*?)(\..*)?$] [2007-10-02T10:31:45+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.1000.tif'] R:[^(.*/)?\s*(.*?)(\.[^.]*)?$] [2007-10-02T10:32:49+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.1000.tif'] R:[^(.*/)?\s*(.*?)(\d*\.[^.]*)?$] [2007-10-02T10:33:17+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.2001.1000.tif'] R:[^(.*/)?\s*(.*?)(\d*)(\.[^.]*)?$] [2007-10-02T10:33:32+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.1000.tif'] R:[^(.*/)?\s*(.*?)(\d*)(\.[^.]*)?$] [2007-10-02T10:34:54+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.tif'] R:[^(.*/)?\s*(.*?)(\d*)(\.[^.]*)?$] [2007-10-02T10:35:06+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN.1000'] R:[^(.*/)?\s*(.*?)(\d*)(\.[^.]*)?$] [2007-10-02T10:35:15+0000] GET from 193.203.83.22 I:['/net/homes/cbreitli/test/pgen/gg135_1235_latest_comp_rgba_LIN1000'] R:[^(.*/)?\s*(.*?)(\d*)(\.[^.]*)?$] [2007-10-02T11:21:13+0000] GET from 193.203.83.22 I:['crowd_react_c_01_73_001.cin'] R:[^(crowd_react_c_01_73_)(001)(.cin)$] [2007-10-04T10:44:32+0000] GET from 145.88.209.33 I:['alksjflaj'] R:[.] [2007-10-04T10:45:21+0000] GET from 145.88.209.33 I:[' AGGAAA GACAAA TGAAGT AGGAAA '] R:[.] [2007-10-04T10:46:50+0000] GET from 145.88.209.33 I:[' AGGAAA GACAAA TGAAGT AGGAAA '] R:[\w] [2007-10-04T10:47:02+0000] GET from 145.88.209.33 I:[' AGGAAA GACAAA TGAAGT AGGAAA '] R:[\w+] [2007-10-04T13:43:07+0000] GET from 145.88.209.33 I:[' --------> M00077 GATA-3 89.1'] R:[\-+] [2007-10-04T13:43:21+0000] GET from 145.88.209.33 I:[' --------> M00077 GATA-3 89.1'] R:[\-+\>] [2007-10-04T13:46:41+0000] GET from 145.88.209.33 I:[' --------> M00077 GATA-3 89.1'] R:[(\-+\>)|(\<\-+)|(-+)] [2007-10-04T13:47:03+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <----'] R:[(\-+\>)|(\<\-+)|(-+)] [2007-10-04T13:47:55+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <----'] R:[(\-+\>)(\<\-+)(-+)] [2007-10-04T13:51:11+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <----'] R:[(\-+\>)|(\<\-+)|(-+)] [2007-10-04T14:14:09+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <----'] R:[(\<*-+\>*)] [2007-10-04T14:17:10+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <----'] R:[(\<*-+\>*)] [2007-10-04T15:11:15+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <---- < >'] R:[(\<*-+\>*)] [2007-10-04T15:13:03+0000] GET from 145.88.209.33 I:['-----> <-------- ------------- <---- < >'] R:[(-*\>)|(\<-*)|(-+)] [2007-10-07T07:19:51+0000] GET from 81.62.229.56 I:['5\x926\x94'] R:[(?P[0-9]+)['’] ?(?P[0-9]+)["”]] [2007-10-09T12:07:13+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[\w] [2007-10-09T12:07:23+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[\s] [2007-10-09T12:08:42+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)] [2007-10-09T12:08:57+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d.)] [2007-10-09T12:09:55+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s(\w+_\d+)] [2007-10-09T12:10:08+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)(\w+_\d+)] [2007-10-09T12:10:14+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)] [2007-10-09T12:10:31+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s] [2007-10-09T12:10:38+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+] [2007-10-09T12:11:30+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\?+)] [2007-10-09T12:11:47+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+)] [2007-10-09T12:11:56+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+_)] [2007-10-09T12:12:01+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+\_)] [2007-10-09T12:12:11+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+\\_)] [2007-10-09T12:12:26+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+\d+)] [2007-10-09T12:12:44+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+)] [2007-10-09T12:13:12+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+)\s+] [2007-10-09T12:13:51+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w+)] [2007-10-09T12:17:36+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+] [2007-10-09T12:18:36+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$)] [2007-10-09T12:20:26+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_)] [2007-10-09T12:20:35+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)] [2007-10-09T12:21:01+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d)] [2007-10-09T12:21:44+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d)] [2007-10-09T12:21:51+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)] [2007-10-09T12:22:37+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(\(.\))] [2007-10-09T12:22:45+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(\()] [2007-10-09T12:22:57+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(\\\()] [2007-10-09T12:23:42+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(.\+)] [2007-10-09T12:23:49+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s] [2007-10-09T12:24:05+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(\d)] [2007-10-09T12:24:13+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s(\w)] [2007-10-09T12:24:24+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)] [2007-10-09T12:24:40+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.)] [2007-10-09T12:24:52+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.\+)] [2007-10-09T12:25:30+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.\+-.)] [2007-10-09T12:25:40+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)] [2007-10-09T12:25:52+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s] [2007-10-09T12:26:36+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s(\w+)\s(\w+)] [2007-10-09T12:26:43+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s(\w+)\s] [2007-10-09T12:26:48+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s(\w+)] [2007-10-09T12:26:57+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s] [2007-10-09T12:27:08+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s+(\w+)] [2007-10-09T12:27:28+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s+(\w+)\s(\w+)] [2007-10-09T12:27:36+0000] GET from 145.88.209.33 I:['M00055 V$NMYC_01 0.741788 1 (+) NNNCACGTGNNN GATCACGAGGTC'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-09T12:32:50+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[-] [2007-10-09T12:32:58+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[-\d+] [2007-10-09T12:33:06+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+)] [2007-10-09T12:33:13+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),] [2007-10-09T12:33:20+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s] [2007-10-09T12:33:34+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s(\d\.\d+)] [2007-10-09T12:34:07+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s(\d\.\d+)] [2007-10-09T12:34:20+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s(\d\.\d+).+] [2007-10-09T12:34:31+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s(\d\.\d+).+(\w+)] [2007-10-09T12:36:02+0000] GET from 145.88.209.33 I:['BP(-5712, 6.15)TTGaT\\n'] R:[(-\d+),\s(\d\.\d+).+(\w{5})] [2007-10-09T12:47:31+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t] [2007-10-09T12:48:01+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t(\w+)\\t] [2007-10-09T12:49:38+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t(.+)\\t(\d{2})\\t(\d\.\d+)] [2007-10-09T12:49:47+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t(.+)\\t(\d{2})] [2007-10-09T12:49:56+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t(.+)\\t(\d{2})\\t] [2007-10-09T12:50:17+0000] GET from 145.88.209.33 I:['dna\\tSF2/ASF\\t79\\tcgggcgt\\t2.63382\\n'] R:[.+\\t(.+)\\t(\d{2})\\t(\w+)\\t(\d\.\d+)] [2007-10-09T13:30:27+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w)] [2007-10-09T13:30:29+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w)] [2007-10-09T13:30:42+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)\s] [2007-10-09T13:30:48+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)\s+] [2007-10-09T13:31:00+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[((\w+)\s+)+] [2007-10-09T13:33:02+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)\s+] [2007-10-09T13:33:16+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)] [2007-10-09T13:33:34+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)+] [2007-10-09T13:35:01+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[(\w+)+] [2007-10-09T13:35:17+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[((\w+)\s+)+] [2007-10-09T13:35:36+0000] GET from 145.88.209.33 I:[' TGAAAC GAATCA TGAAGT TGGAAA GAAAGC TGAAGA AAACAG GGAAAA TGAAAG\r\n AAGAGA GAAACC GGAGAA AAGAAA ATGAAA GGAGAA ATGAAG TTGGAA AGCAGA AGGAAA GACAAA TGAAGT AGGAAA CTGAAG GAAACA AGGAAA CTGAAA\r\n GTCAAG '] R:[((\w+)\s+){6}] [2007-10-09T14:00:30+0000] GET from 145.88.209.33 I:['311 325 0.68 ccatgaggtcaggag\r\n'] R:[\s+(\d+)\|\s+(\d+)\|\s+(-?\d+\.\d+)\|\s+(\w+)\|\s+(\w+)] [2007-10-09T14:03:02+0000] GET from 145.88.209.33 I:[' 311 325 0.68 ccatgaggtcaggag\r\n'] R:[\s+(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w)\<.+\>(\w+)] [2007-10-09T14:44:45+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-09T14:46:19+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)\s(.[\+-].)\s+(\w+)\s+] [2007-10-09T14:46:25+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)] [2007-10-09T14:46:25+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)] [2007-10-09T14:46:55+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s] [2007-10-09T14:47:03+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)] [2007-10-09T14:47:11+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+] [2007-10-09T14:47:26+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\d)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-09T14:47:39+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\w)] [2007-10-09T14:47:53+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\d+)] [2007-10-09T14:48:09+0000] GET from 145.88.209.33 I:['M00129 V$HFH1_01 0.781995 782 (+) NAWTGTTTATWT GTTTGTGTATGC
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-09T20:47:51+0000] GET from 68.82.62.154 I:['hostname dspd\r\nsnmp-server community to ro\r\nsnmp-server community write ro\r\ninterface e0/0\r\n ip address 1.1.1.1 255.0.0.0'] R:[^snmp-server\s+community\s+[^\s]+] [2007-10-09T21:38:45+0000] GET from 68.82.62.154 I:['sdasdsudhin'] R:[(?i)Sud] [2007-10-10T07:51:24+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:51:34+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+_\d+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:51:42+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)] [2007-10-10T07:51:50+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+_\d+)] [2007-10-10T07:52:30+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\$\w+_\d+)] [2007-10-10T07:52:40+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+_\d+)] [2007-10-10T07:52:47+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w)] [2007-10-10T07:52:55+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w$)] [2007-10-10T07:52:59+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$)] [2007-10-10T07:53:07+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+)] [2007-10-10T07:53:26+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+)] [2007-10-10T07:53:33+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+\d+)] [2007-10-10T07:54:02+0000] GET from 145.88.209.33 I:['M00192 V$GR_Q6 0.805525 764 (+) NNNNNNCNNTNTGTNCTNN TCTCTACTTTGTGTTTATG
'] R:[(\w\d+)\s+(\w\$\w+\d+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:54:19+0000] GET from 145.88.209.33 I:['M00130 V$HFH2_01 0.923584 778 (+) NAWTGTTTRTTT TTATGTTTGTGT
'] R:[(\w\d+)\s+(\w\$\w+\d+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:55:39+0000] GET from 145.88.209.33 I:['M00210 V$OCT_C 0.764136 767 (+) CTNATTTGCATAY CTACTTTGTGTTT
'] R:[(\w\d+)\s+(\w\$\w+\d+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:55:38+0000] GET from 145.88.209.33 I:['M00210 V$OCT_C 0.764136 767 (+) CTNATTTGCATAY CTACTTTGTGTTT
'] R:[(\w\d+)\s+(\w\$\w+\d+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T07:56:07+0000] GET from 145.88.209.33 I:['M00210 V$OCT_C 0.764136 767 (+) CTNATTTGCATAY CTACTTTGTGTTT
'] R:[(\w\d+)\s+(\w\$\w+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-10T13:30:15+0000] GET from 207.190.221.98 I:['String response: 60 files hidden.'] R:[files hidden.] [2007-10-10T21:24:58+0000] GET from 24.10.138.64 I:['
melba'] R:['] R:[(\w\d+)\s+(\w\$\w+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-12T07:06:47+0000] GET from 145.88.209.33 I:['M00210 V$OCT_C 0.764136 767 (+) CTNATTTGCATAY CTACTTTGTGTTT
'] R:[(\w\d+)\s+(\w\$\w+)\s+(\d+\.\d+)\s+(\d+)\s(.[\+-].)\s+(\w+)\s+(\w+)] [2007-10-12T07:15:57+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-])] [2007-10-12T07:16:08+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+,)] [2007-10-12T07:16:46+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+>] [2007-10-12T07:16:52+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+\>] [2007-10-12T07:17:07+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+>(\w+).+] [2007-10-12T07:17:25+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[^.+([\+-]\d+),\s(\d\.\d+).+>(\w+).+] [2007-10-12T07:19:40+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[^([\+-]\d+),\s(\d\.\d+).+>(\w+).+] [2007-10-12T07:20:37+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+>(\w+).+\n] [2007-10-12T07:21:00+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+>(\w+).+\n$] [2007-10-12T07:29:27+0000] GET from 145.88.209.33 I:['BP(-4637, 3.79)GTGaT\r\n'] R:[.+([\+-]\d+),\s(\d\.\d+).+>(\w+).+\n$] [2007-10-12T12:12:02+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+)] [2007-10-12T12:12:45+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+.+)\s] [2007-10-12T12:13:01+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+.+)\s+(\w+)] [2007-10-12T12:13:20+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+.+)\s+(\w+)\s(\d)] [2007-10-12T12:13:31+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+.+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:14:06+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+\(*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:14:40+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+\(*\w*\)*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:15:23+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\(*\w*\)*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:17:06+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+\(*\w*\)*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:17:50+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+\w*\(*\w*\)*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:20:31+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+.*)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:22:52+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+[/\s])\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:23:39+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:23:58+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:24:21+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:25:31+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:30:51+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:32:01+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+\/*\w*\s*\(\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:32:17+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*)] [2007-10-12T12:32:33+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\)*)] [2007-10-12T12:32:57+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\))] [2007-10-12T12:33:05+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\)*)] [2007-10-12T12:33:04+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\)*)] [2007-10-12T12:33:33+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*)] [2007-10-12T12:33:51+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*-*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:33:58+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\-*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:34:39+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\-*\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:34:54+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\n\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\-*\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:35:09+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(\w*\-*\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T12:36:08+0000] GET from 145.88.209.33 I:['dna SF2/ASF 2 atcacga 2.96138\r\ndna SF2/ASF 21 gagacca 2.18781\r\ndna SC35 93 tgcgcctg 1.70388\r\ndna SRp40 3 tcacgag 3.20201\r\ndna SF2/ASF (IgM-BRCA1) 79 cgggcgt 3.37042\r\n'] R:[\w+\s+(\w+\d+/*\w*\s*\(*\w*\-*\w*\)*)\s+(\d+)\s+(\w+)\s(\d+\.\d+)] [2007-10-12T13:57:17+0000] GET from 145.88.209.33 I:['1851 GAGAGCTCAG AGGATGACTA AATGGGAAAC ACTTTTGTTT TCCACATGAC entry score\r\n'] R:[\d+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)\s+.+] [2007-10-12T14:15:08+0000] GET from 145.88.209.33 I:['1851 GAGAGCTCAG AGGATGACTA AATGGGAAAC ACTTTTGTTT TCCACATGAC entry score\r\n'] R:[\d+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)\s+.+] [2007-10-15T07:36:53+0000] GET from 145.88.209.33 I:['1851 GAGAGCTCAG AGGATGACTA AATGGGAAAC ACTTTTGTTT TCCACATGAC entry score\r\n'] R:[\d+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)\s+.+] [2007-10-15T09:25:24+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score.'] R:[\d+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)\s+.+] [2007-10-15T09:27:59+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\d+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)+\s+(\w+)\s+.+] [2007-10-15T09:48:11+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+(\w+\s)+\w+\s+\w+] [2007-10-15T09:51:40+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]+\s)+\w+\s+\w+] [2007-10-15T09:51:57+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]+\s)+entry\sscore] [2007-10-15T09:52:09+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]+\s)+] [2007-10-15T09:52:32+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]{5}\s)+] [2007-10-15T09:52:42+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]\s){5}] [2007-10-15T09:53:20+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]\s){5}] [2007-10-15T09:53:32+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]+\s){5}] [2007-10-15T09:53:55+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+([ACGT]+\s){5}entry] [2007-10-15T09:54:13+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[([ACGT]+\s){5}] [2007-10-15T09:55:05+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+(.+)entry] [2007-10-15T09:55:18+0000] GET from 145.88.209.33 I:[' 1 CCTTTTCTTG TTAAAAGGGA ATCTGGTATT TTGTTATGAA GGTTTCTTGA entry score'] R:[\s*\d+\s+(.+)entry\s+score] [2007-10-16T09:53:33+0000] GET from 145.88.209.33 I:[' --------------->
M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00222 Th1/E4 91.0'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 AML-1a 88.7\\n'] R:[.+ M00271 CREB 88.7\\n'] R:[.+ M00271 CRE-B 88.7\\n'] R:[.+ M00271 CRE-B 88.7\\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+\s+(.*)\s+\d.+] [2007-10-17T07:40:41+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\s+(.*)\s+\d.+] [2007-10-17T07:40:48+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+M00101 CdxA 100.0\r\n'] R:[.+] [2007-10-17T07:45:09+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+(.+)] [2007-10-17T07:45:29+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+(.+)\s+\d+\.\d+] [2007-10-17T07:45:50+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+)\s+\d+\.\d+] [2007-10-17T07:46:00+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+\s+(.+)\s+\d+\.\d+] [2007-10-17T07:46:08+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+)\s+\d+\.\d+] [2007-10-17T07:47:00+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(\s+.+\s+)\s+\d+\.\d+] [2007-10-17T07:47:10+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+)\s+\d+\.\d+] [2007-10-17T07:47:28+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+(.+)\s+\d+\.\d+] [2007-10-17T07:47:38+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+(.+)\s+\d+\.\d+] [2007-10-17T07:48:34+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+(.+)\s+\d+\.\d+] [2007-10-17T07:48:41+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+(.+)\s+\d+\.\d+] [2007-10-17T07:48:53+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+).+(.+)\s+\d+\.\d+] [2007-10-17T07:49:00+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+)] [2007-10-17T07:49:11+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+)] [2007-10-17T07:49:21+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+)] [2007-10-17T07:49:21+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+)] [2007-10-17T07:49:38+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+)(.+)] [2007-10-17T07:50:22+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+\s+)(.+)] [2007-10-17T07:50:22+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+\s+)(.+)] [2007-10-17T07:51:02+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+)(.+)] [2007-10-17T07:51:12+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+)(.+)] [2007-10-17T07:51:37+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+.+\s+).+(.+)] [2007-10-17T07:51:57+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+\s+).+(.+)] [2007-10-17T07:52:14+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+\s+).+(.+)] [2007-10-17T07:52:29+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\w+\d+(.+\s+)\s+.+(.+)] [2007-10-17T07:53:12+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(\w+\d+(.+\s+)\s+.+(.+))] [2007-10-17T07:53:57+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(M00101 CdxA 100.0\r\n'] R:[.+(M00101 CdxA 100.0\r\n'] R:[.+(M00101 CdxA 100.0\r\n'] R:[.+((\w+\d+)] [2007-10-17T07:56:37+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+((\w+\d+)] [2007-10-17T07:56:44+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(M00101 CdxA 100.0\r\n'] R:[.+(M00101 CdxA 100.0\r\n'] R:[.+\?] [2007-10-17T07:58:56+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)] [2007-10-17T07:59:08+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>] [2007-10-17T07:59:34+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>\w+\d+] [2007-10-17T07:59:48+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>\w+\d+.+\s+] [2007-10-17T07:59:58+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>\w+\d+.+\s+(.+)] [2007-10-17T08:00:27+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>\w+\d+.+\s+(.+)\s+] [2007-10-17T08:00:44+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)>\w+\d+.+\s+(.+)\s+\d+\.\d+] [2007-10-17T08:01:40+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(\w+\d+.+\s.+)] [2007-10-17T08:02:03+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(\w+\d+(.+)\s.+)] [2007-10-17T08:02:21+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(\w+\d+(.+)\s(.+))] [2007-10-17T08:03:25+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+(\?\w+\d+(.+)\s(.+))] [2007-10-17T08:03:38+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+(.+)\s(.+))] [2007-10-17T08:04:06+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)(.+)\s(.+)] [2007-10-17T08:04:23+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?(\w+\d+)\w+\d+(.+)\s(.+)] [2007-10-17T08:04:43+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?\w+\d+(\w+\d+)(.+)\s(.+)] [2007-10-17T08:04:59+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?\w+\d+.(\w+\d+)(.+)\s(.+)] [2007-10-17T08:05:11+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[.+\?\w+\d+.(\w+\d+)(.+)\s.+] [2007-10-17T08:05:40+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\-*\s+.+\?\w+\d+.(\w+\d+)(.+)\s.+] [2007-10-17T08:06:03+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\-*\s+(.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:06:27+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\-*\s+(.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:08:07+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\-*(\s+.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:08:47+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\-*\s+(.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:09:11+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*\-*\s+(.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:13:03+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:13:20+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+.(\w+\d+)(.+))\s.+] [2007-10-17T08:14:22+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)(.+))\s.+] [2007-10-17T08:14:43+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)(.+))\s.+] [2007-10-17T08:14:55+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))\s.+] [2007-10-17T08:15:15+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))\s+.+] [2007-10-17T08:15:40+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))\s+\d+\.\d+] [2007-10-17T08:16:01+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))\s+(\d+\.\d+).+] [2007-10-17T08:16:10+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))(\s+)(\d+\.\d+).+] [2007-10-17T08:17:52+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+))\s+(\d+\.\d+).+] [2007-10-17T08:28:51+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 100.0\r\n'] R:[\s*.*\s+(<.+\?\w+\d+>(\w+\d+)\s+(.+)\s+(\d+\.\d+)).+] [2007-10-20T01:15:50+0000] GET from 128.32.38.163 I:["aI00\r\nasS'score'\r\np136\r\nI0\r\nsS'_agentMoved'\r\np137\r\nNsS'_lose'\r\np138\r\nI00\r\nsg14\r\n(lp139\r\nsS'_capsuleEaten'\r\np140\r\nNsbsS'teams'\r\np141\r\n(lp142\r\nI01\r\naI00\r\nasb.\r\n\r\n511: EOP (End of Pickle)\r\n\r\n"] R:[(.*?)\r\n511: EOP (End of Pickle)\r\n] [2007-10-22T09:31:29+0000] GET from 85.255.197.32 I:['10.100.0.1'] R:[^((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))?$] [2007-10-22T09:31:50+0000] GET from 85.255.197.32 I:['10.100.0.256'] R:[^((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))?$] [2007-10-22T09:32:08+0000] GET from 85.255.197.32 I:['255.255.255.255'] R:[^((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))?$] [2007-10-22T09:32:15+0000] GET from 85.255.197.32 I:['255.255.255.255.1'] R:[^((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))?$] [2007-10-22T13:41:24+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T13:41:45+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n * 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T13:42:13+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T13:42:26+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n * 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T13:43:25+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n * 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T13:43:36+0000] GET from 64.62.190.201 I:[" * [TurtleblueDev]\r\n * 5.6.245.96 JohnMacbookOSX\r\n 5.26.33.148 Ycros: laptop VMWare\r\n * 5.30.112.101 Ycros vista 211.30.186.85:49509\r\n 5.78.60.54 Ycros: ergo (laptop)\r\n 5.119.199.131 Turtleblue1\r\n 5.150.41.129 Sniffer\r\n * 5.155.17.102 JohnMacbookOSX\r\n 5.159.243.74 DevServer1\r\n 5.160.9.220 Ycros\r\n * 5.170.9.214 Ycros' Laptop 211.30.186.85:56897\r\n"] R:[\s\*\s(.*?)\s+JohnMacbookOSX\s] [2007-10-22T18:51:14+0000] GET from 66.249.85.134 I:['http://www.'] R:[^([a-zA-Z]://)] [2007-10-23T07:26:12+0000] GET from 212.159.203.234 I:['hello'] R:[(h).*] [2007-10-23T07:27:53+0000] GET from 212.159.203.234 I:['hello'] R:[/(h).*/] [2007-10-23T07:28:03+0000] GET from 212.159.203.234 I:['hello'] R:[(h).*] [2007-10-26T11:06:16+0000] GET from 145.88.209.33 I:['BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}] [2007-10-26T11:06:23+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}] [2007-10-26T11:06:30+0000] GET from 145.88.209.33 I:[' BCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}] [2007-10-26T11:07:24+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*] [2007-10-26T11:08:12+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*] [2007-10-26T11:08:44+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(\d{1,2,3}\%\)] [2007-10-26T11:08:51+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(\d{1,2,3}] [2007-10-26T11:08:55+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(] [2007-10-26T11:09:03+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(\d] [2007-10-26T11:09:10+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(\d{1,2,3}] [2007-10-26T11:09:19+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*\s\(\d+] [2007-10-26T11:09:40+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*(\s\(\d+\%)] [2007-10-26T11:09:44+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s\d(\.\d{2})*\s\d(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:10:25+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*\s\d(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:11:04+0000] GET from 145.88.209.33 I:[' BFCR Celbouw & Metabol. 4.00 6 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s\d(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:11:15+0000] GET from 145.88.209.33 I:[' BEVO Evolutie [ 3.00] 7.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s\d(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:11:29+0000] GET from 145.88.209.33 I:[' BBS Bioscripts 3.00'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s\d(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:12:15+0000] GET from 145.88.209.33 I:[' BBS Bioscripts 3.00'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))*] [2007-10-26T11:12:27+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))*] [2007-10-26T11:12:43+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))] [2007-10-26T11:13:01+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\)*)] [2007-10-26T11:13:17+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))*] [2007-10-26T11:13:37+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))*] [2007-10-26T11:13:59+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s\(\d+\%\))*] [2007-10-26T11:14:24+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s)*] [2007-10-26T11:15:10+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+\(\d+\%\))*] [2007-10-26T11:15:26+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:15:40+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:15:39+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:16:12+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)\r\n BACH Atoomb.en chem.bind. [ 2.00] 6.5 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:16:31+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*\d(\.\d{2})*(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:16:59+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*(\d(\.\d{2})*)(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:17:15+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[\s+\w{3,4}\s.+\s(\s\[)*(\d(\.\d{2})*)(\])*\s*\d*(\.\d)*(\s+)*(\(\d+\%\))*] [2007-10-26T11:23:22+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})] [2007-10-26T11:23:42+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})] [2007-10-26T11:24:06+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)] [2007-10-26T11:24:20+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s] [2007-10-26T11:25:02+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2})] [2007-10-26T11:25:27+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)] [2007-10-26T11:25:53+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)] [2007-10-26T11:26:37+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\C*\d{1,2,3}*\%*\)*)] [2007-10-26T11:26:44+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d{1,2,3}*\%*\)*)] [2007-10-26T11:26:52+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*] [2007-10-26T11:27:04+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*)] [2007-10-26T11:27:16+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d{1,2,3}*)] [2007-10-26T11:27:21+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d{1-3}*)] [2007-10-26T11:27:46+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*)] [2007-10-26T11:27:57+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*)] [2007-10-26T11:28:10+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*\%*\))] [2007-10-26T12:37:44+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*\%*\))] [2007-10-26T16:38:28+0000] GET from 89.137.102.51 I:['hau miau baumax'] R:[miau|hau|bau] [2007-10-26T16:39:27+0000] GET from 89.137.102.51 I:['haux miaunel baumax'] R:[miau|hau|bau] [2007-10-26T17:02:21+0000] GET from 89.137.102.51 I:['hax miaunel baumax'] R:[miau|hau|bau] [2007-10-26T17:41:33+0000] GET from 128.190.62.82 I:['test: report.pdf'] R:[[^(, )]report.pfg] [2007-10-26T17:41:39+0000] GET from 128.190.62.82 I:['test: report.pdf'] R:[[^(, )]report.pdf] [2007-10-26T17:42:00+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^(, )]report.pdf] [2007-10-26T17:42:21+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^(, )]report.pdf] [2007-10-26T17:42:35+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^,]report.pdf] [2007-10-26T17:42:43+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^,]report\.pdf] [2007-10-26T17:43:01+0000] GET from 128.190.62.82 I:['report.pdf'] R:[report\.pdf] [2007-10-26T17:43:10+0000] GET from 128.190.62.82 I:['report.pdf'] R:[report.pdf] [2007-10-26T17:43:19+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^report.pdf] [2007-10-26T17:43:38+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^ ]report.pdf] [2007-10-26T17:43:47+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^\ ]report.pdf] [2007-10-26T17:43:53+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^\ ]+report.pdf] [2007-10-26T17:44:02+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^s]report.pdf] [2007-10-26T17:44:25+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^\t]report.pdf] [2007-10-26T17:44:40+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^r]report.pdf] [2007-10-26T17:45:04+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(, )?report.pdf] [2007-10-26T17:45:15+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(^)?(, )?report.pdf] [2007-10-26T17:45:22+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(^)?(, )?report.pdf] [2007-10-26T17:46:01+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[\b(^)?(, )?report.pdf\b] [2007-10-26T17:46:16+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(^|, )?report.pdf] [2007-10-26T17:46:28+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[\S(^|, )?report.pdf] [2007-10-26T17:46:36+0000] GET from 128.190.62.82 I:['report.pdf'] R:[\S(^|, )?report.pdf] [2007-10-26T17:46:41+0000] GET from 128.190.62.82 I:['report.pdf'] R:[\s(^|, )?report.pdf] [2007-10-26T17:47:18+0000] GET from 128.190.62.82 I:['report.pdf\r\ntest report.pdf'] R:[\s(^|, )?report.pdf] [2007-10-26T17:47:27+0000] GET from 128.190.62.82 I:['report.pdf, test report.pdf'] R:[\s(^|, )?report.pdf] [2007-10-26T17:47:37+0000] GET from 128.190.62.82 I:['report.pdf, test report.pdf'] R:[report.pdf] [2007-10-26T17:47:45+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[report.pdf] [2007-10-26T17:48:03+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T17:48:11+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T17:48:28+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[(, )]report.pdf] [2007-10-26T17:48:32+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[(, )]+report.pdf] [2007-10-26T17:48:50+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[(: )(, )]?report.pdf] [2007-10-26T17:49:17+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[(: )(, )]report.pdf] [2007-10-26T17:49:41+0000] GET from 128.190.62.82 I:['blah, report.pdf'] R:[[(: )(, )]report.pdf] [2007-10-26T17:49:41+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^|(, )report.pdf] [2007-10-26T17:50:03+0000] GET from 128.190.62.82 I:['filename: report.pdf'] R:[[(: )(, )]report.pdf] [2007-10-26T17:50:39+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T17:51:10+0000] GET from 128.190.62.82 I:['filename: report.pdf'] R:[[(^)(, )]report.pdf] [2007-10-26T17:51:27+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T17:51:37+0000] GET from 128.190.62.82 I:['filename: report.pdf'] R:[(, )report.pdf] [2007-10-26T17:51:44+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(, )report.pdf] [2007-10-26T17:52:03+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(, )+report.pdf] [2007-10-26T17:52:36+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^report.pdf] [2007-10-26T17:52:39+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(^)|(, )+report.pdf] [2007-10-26T17:52:51+0000] GET from 128.190.62.82 I:['blah report.pdf'] R:[^report.pdf] [2007-10-26T17:52:52+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^|(, )report.pdf] [2007-10-26T17:53:02+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T17:54:55+0000] GET from 128.190.62.82 I:['blah report.pdf'] R:[(.*, )?report.pdf] [2007-10-26T17:55:15+0000] GET from 128.190.62.82 I:['blah report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:55:23+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:55:37+0000] GET from 128.190.62.82 I:['blah, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:56:11+0000] GET from 128.190.62.82 I:['blah, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:56:16+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:56:25+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T17:56:59+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(.*, )?report.pdf] [2007-10-26T18:06:22+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T18:06:35+0000] GET from 128.190.62.82 I:['balh report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T18:06:40+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T18:06:48+0000] GET from 128.190.62.82 I:['balh.txt, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T18:06:57+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[[^|(, )]+report.pdf] [2007-10-26T18:07:15+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T18:07:25+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(.*, )+report.pdf] [2007-10-26T18:07:37+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf, test.pdf'] R:[^(.*, )+report.pdf] [2007-10-26T18:08:09+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf, test.pdf'] R:[[^|, ]report.pdf] [2007-10-26T18:08:35+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf, test.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T18:09:07+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf, test.pdf'] R:[^|(, )report.pdf] [2007-10-26T18:09:19+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[^|(, )report.pdf] [2007-10-26T18:10:02+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[^(, )+report.pdf] [2007-10-26T18:10:13+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(, )+report.pdf] [2007-10-26T18:10:21+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(.*, )+report.pdf] [2007-10-26T18:10:29+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T18:10:42+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(, )?report.pdf] [2007-10-26T18:11:00+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(, )+report.pdf] [2007-10-26T18:11:08+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^(, )?report.pdf] [2007-10-26T18:12:27+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^|(, )report.pdf] [2007-10-26T18:13:15+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(.*, )+report.pdf] [2007-10-26T18:13:22+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(.*, )+report.pdf] [2007-10-26T18:13:38+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(.*, )+report.pdf] [2007-10-26T18:13:43+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(.*, )+report.pdf] [2007-10-26T18:13:55+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(.*, )?report.pdf] [2007-10-26T18:14:05+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(.*, )?report.pdf] [2007-10-26T18:14:23+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(^|.*, )?report.pdf] [2007-10-26T18:14:32+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[^|(.*, )?report.pdf] [2007-10-26T18:14:37+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^|(.*, )?report.pdf] [2007-10-26T18:14:56+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^|(, )]report.pdf] [2007-10-26T18:15:03+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^|(, )]+report.pdf] [2007-10-26T18:15:15+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[^|(.*, )]report.pdf] [2007-10-26T18:15:26+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[\^|(.*, )]report.pdf] [2007-10-26T18:15:49+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[\A|(.*, )]report.pdf] [2007-10-26T18:24:05+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^report.pdf|(, )report.pdf] [2007-10-26T18:24:09+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[^report.pdf|(, )report.pdf] [2007-10-26T18:24:19+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[^report.pdf|(, )report.pdf] [2007-10-26T18:24:50+0000] GET from 128.190.62.82 I:['report.pdf'] R:[^report.pdf|(, )report.pdf] [2007-10-26T18:25:51+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(^)|(, )report.pdf] [2007-10-26T18:26:02+0000] GET from 128.190.62.82 I:['report.pdf'] R:[[(^)|(, )]report.pdf] [2007-10-26T18:27:11+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:16+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:23+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:40+0000] GET from 128.190.62.82 I:['test report.pdf, report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:45+0000] GET from 128.190.62.82 I:['test report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:51+0000] GET from 128.190.62.82 I:['report.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:27:56+0000] GET from 128.190.62.82 I:['report.pdf, test.pdf'] R:[(^|, )report.pdf] [2007-10-26T18:43:33+0000] GET from 128.190.62.82 I:['report.pdf, test.pdf'] R:[(^|, )overdraft[0-9]{4}.[0-9]{2}.[0-9]{2}.pdf] [2007-10-26T18:43:43+0000] GET from 128.190.62.82 I:['report.pdf, test.pdf, overdraft.2007.10.26.pdf'] R:[(^|, )overdraft[0-9]{4}.[0-9]{2}.[0-9]{2}.pdf] [2007-10-26T18:44:46+0000] GET from 128.190.62.82 I:['report.pdf, test.pdf, overdraft.2007.10.26.pdf'] R:[(^|, )overdraft.[0-9]{4}.[0-9]{2}.[0-9]{2}.pdf] [2007-10-26T19:26:49+0000] GET from 128.190.62.82 I:['balh.txt, report.pdf'] R:[^(.*, )?report.pdf] [2007-10-26T19:50:30+0000] GET from 128.190.62.82 I:['report.pdf, test.pdf, overdraft.2007.10.26.pdf'] R:[(^|, )overdraft.[0-9]{4}.[0-9]{2}.[0-9]{2}.pdf] [2007-10-29T08:26:54+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*\%*\))] [2007-10-29T17:12:12+0000] GET from 89.137.117.97 I:['invalid[\\s]username[\\s]and/or[\\s]password'] R:[invaid username and/or password] [2007-10-29T17:34:13+0000] GET from 89.137.117.97 I:['invalid[\\s]username'] R:[invaid username and/or password] [2007-10-29T17:34:27+0000] GET from 89.137.117.97 I:['invalid[\\s]username'] R:[ bzz invaid username and/or password sadsa] [2007-10-29T17:34:50+0000] GET from 89.137.117.97 I:['invalid[\\s]username'] R:[ bzz invaid username and/or password sadsa] [2007-10-29T17:37:40+0000] GET from 89.137.117.97 I:['invalid([\\s])username'] R:[ bzz invaid username and/or password sadsa] [2007-10-29T19:34:18+0000] GET from 198.110.206.248 I:['100+1000'] R:[^\d+\+\d+] [2007-10-29T19:35:37+0000] GET from 198.110.206.248 I:['100+1000\r\n100-1000\r\n100*1000\r\n100/1000'] R:[^\d+\+?\-?\*?\/?\d+] [2007-10-29T19:36:02+0000] GET from 198.110.206.248 I:['100+1000\r\n100-1000\r\n100*1000\r\n100/1000'] R:[^\d+(\+)?(\-)?(\*)?(\/)?\d+] [2007-10-29T19:36:16+0000] GET from 198.110.206.248 I:['100-1000\r\n100*1000\r\n100/1000'] R:[^\d+(\+)?(\-)?(\*)?(\/)?\d+] [2007-10-30T11:18:45+0000] GET from 89.137.117.97 I:['invalid username'] R:[invalid[\s]*username] [2007-10-30T11:19:09+0000] GET from 89.137.117.97 I:['invalid username'] R:[invalid[\s]*username] [2007-10-30T11:20:57+0000] GET from 89.137.117.97 I:['invalid username'] R:[invalid[\s]+username] [2007-10-30T11:22:06+0000] GET from 89.137.117.97 I:['invalid username'] R:[invalid[\s]+username[\s]+and[/]*or[\s]+password] [2007-10-30T11:22:27+0000] GET from 89.137.117.97 I:['invalid username and or password\r\n'] R:[invalid[\s]+username[\s]+and[/]*or[\s]+password] [2007-10-30T11:22:36+0000] GET from 89.137.117.97 I:['invalid username and or password'] R:[invalid[\s]+username[\s]+and[/]*or[\s]+password] [2007-10-30T11:22:54+0000] GET from 89.137.117.97 I:['invalid username and or password'] R:[invalid[\s]+username[\s]+and[/\s]*or[\s]+password] [2007-10-30T11:23:33+0000] GET from 89.137.117.97 I:['invalid username and or password'] R:[invalid[\s]+username[\s]+(and){0,1}[/\s]*or[\s]+password] [2007-10-30T11:23:46+0000] GET from 89.137.117.97 I:['invalid username or password'] R:[invalid[\s]+username[\s]+(and){0,1}[/\s]*or[\s]+password] [2007-10-30T11:24:33+0000] GET from 89.137.117.97 I:['invalid username or password'] R:[invalid[\s]+username[\s]+(and){0,1}[/\s]*(or){0,1}[\s]+password] [2007-10-30T11:24:45+0000] GET from 89.137.117.97 I:['invalid username and/or password'] R:[invalid[\s]+username[\s]+(and){0,1}[/\s]*(or){0,1}[\s]+password] [2007-10-30T11:56:23+0000] GET from 89.137.117.97 I:['sds dsds invalid username and/or password dsdsf'] R:[invalid[\s]+username[\s]+(and){0,1}[/\s]*(or){0,1}[\s]+password] [2007-10-31T15:01:36+0000] GET from 149.173.6.51 I:[''] R:[/file=(.*)&clicktext/] [2007-11-01T11:37:43+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*\%*\))] [2007-11-02T08:24:18+0000] GET from 145.88.209.33 I:[' BFLS Elem.life sciences 5.00 7 (100%)'] R:[(\s{5,7})(\w{3,4})\s(.+)\s(\[*\s*\d{1,2}\.\d{2}\]*)\s*(\d*\.*\d*)\s*(\(*\d*\d*\d*\%*\))] [2007-11-02T11:30:34+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[>.+\\n.+] [2007-11-02T11:30:49+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[>] [2007-11-02T11:31:01+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[>.+\\n.+] [2007-11-02T11:34:23+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>)] [2007-11-02T11:34:30+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+] [2007-11-02T11:34:40+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+\\n] [2007-11-02T11:34:52+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)] [2007-11-02T11:35:09+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-02T12:55:20+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-03T16:29:05+0000] GET from 66.245.253.121 I:['tacacs-server host 10.5.128.148'] R:[^tacacs-server host (10\.5\.128\.148|10\.9\.24\.132)] [2007-11-03T16:30:16+0000] GET from 66.245.253.121 I:['tacacs-server host 10.5.128.148\r\ntacacs-server host 10.9.24.132'] R:[^tacacs-server host (10\.5\.128\.148|10\.9\.24\.132)] [2007-11-03T16:36:47+0000] GET from 66.245.253.121 I:['tacacs-server host 10.5.128.148'] R:[^(tacacs-server host)([10\.5\.128\.148])] [2007-11-03T16:37:10+0000] GET from 66.245.253.121 I:['tacacs-server host 10.5.128.148'] R:[^(tacacs-server host)([10\.5\.128\.148|10\.5\.128\.148])] [2007-11-03T16:37:26+0000] GET from 66.245.253.121 I:['tacacs-server host 10.5.128.148'] R:[^(tacacs-server host)([(10\.5\.128\.148)|(10\.5\.128\.148)])] [2007-11-05T08:11:44+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-05T12:39:41+0000] GET from 195.90.9.104 I:['{4741070B-2CCF-4A84-80F1-8F22D9CD745E}\r\n'] R:[$\\{[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}\\}^] [2007-11-06T09:38:37+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-07T16:27:50+0000] GET from 24.9.165.170 I:['tr>CaseLast NameFirst NameDate ReceivedLegal IssueSOL DateSOL ChecklistStatusLast Status ChangeAssigned Attorneys\r\nCA-1610HavelickTristan2007/10/05AccidentsNone1Viewed2007/10/05K Eiseman, Test Tester\r\nCA-1612TestTristan2007/10/16Unsafe Drugs: FosamaxNone0New2007/10/16K Eiseman, Test Tester\r\nCA-1613TestTristan2007/10/16Unsafe Drugs: FosamaxNone0New2007/10/16K Eiseman, Test Tester\r\nCA-1614TestTristan2007/10/16Unsafe Drugs: FosamaxNone0New2007/10/16K Eiseman, Test Tester\r\nCA-1615TestTristan2007/10/16Unsafe Drugs: FosamaxNone0New2007/10/16K Eiseman, Test Tester\r\nCA-1618TestTristan2007/10/16Employment Law: Workers' CompensationNone0New2007/10/16K Eiseman, Test Tester\r\nCA-1619TestTristan2007/10/16Employment Law: Workers' CompensationNone0New2007/10/16K Eiseman, Test Tester\r\n'] R:[CA-\d+] [2007-11-07T20:39:34+0000] GET from 71.82.135.164 I:['\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\n\r\n '] R:[CharFmt] [2007-11-07T20:40:09+0000] GET from 71.82.135.164 I:['\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\n\r\n '] R:[( )*[a-z0-9]+\.] [2007-11-07T20:54:20+0000] GET from 71.82.135.164 I:['\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\n\r\n '] R:[( )*[a-z0-9]+\.] [2007-11-07T20:54:47+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^(?P[ ]*)(?P[a-z0-9]+)\. ] [2007-11-07T20:55:46+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^(?P )*(?P[a-z0-9]+)\. ] [2007-11-07T20:55:58+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^(?P )*(?P[a-z0-9])+\. ] [2007-11-07T20:56:02+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^(?P )*(?P[a-z0-9])+] [2007-11-07T20:58:31+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^[ ]*[a]] [2007-11-07T20:58:53+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^ *a] [2007-11-07T20:59:08+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^ *a] [2007-11-07T20:59:12+0000] GET from 71.82.135.164 I:['\r\n\r\n a. \r\nCarotenoid\r\n\r\n Marked by a yellow color resembling that produced by \r\ncarotene\r\n. \r\n\r\n\r\n ii. \r\nRhodopson\r\n\r\n (\r\nVisual purple\r\n\r\n) \r\nPigment\r\n related to \r\nvitamin A\r\n and found in the mammalian \r\nretina\r\n. \r\n\r\n\r\n2. \r\nFucoxanthin\r\n\r\n\r\n'] R:[^ *] [2007-11-08T03:58:53+0000] GET from 203.10.47.15 I:['Message-ID: \r\nX-MS-Has-Attach: yes\r\nX-MS-TNEF-Correlator:\r\nThread-Topic: Auditors to probe benchmarks\r\nThread-Index: AcghN6ldjLeCgpFxSTaZ7q2pa4AWSw==\r\nFrom: "eXstream-MediaMonitors" \r\nTo: \r\nX-Barracuda-Virus-Scanned: by SMTP Mail Gate Keeper at acu.edu.au\r\nX-Barracuda-Spam-Score: -1001.00\r\n'] R:[^From] [2007-11-08T17:59:58+0000] GET from 205.70.114.10 I:['Brian Shin'] R:[\s\w*] [2007-11-08T18:03:14+0000] GET from 205.70.114.10 I:['Brian Shin'] R:[\*] [2007-11-08T18:13:42+0000] GET from 205.70.114.10 I:['Brian Shin was here and going to be great!'] R:[.*going] [2007-11-08T18:13:42+0000] GET from 205.70.114.10 I:['Brian Shin was here and going to be great!'] R:[.*going] [2007-11-09T08:23:57+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-09T21:03:56+0000] GET from 216.235.158.34 I:['(Subject:)abcdefgh'] R:[(Subject:)\s*[a-z0-9]{8}\s*$] [2007-11-09T21:05:45+0000] GET from 216.235.158.34 I:['(Subject:)abcdefgh\r\n'] R:[(Subject:)\s*[a-z0-9]{8}\s*$] [2007-11-09T21:06:06+0000] GET from 216.235.158.34 I:['(Subject:)Abcdefgh\r\n'] R:[(Subject:)\s*[a-z0-9]{8}\s*$] [2007-11-09T21:06:59+0000] GET from 216.235.158.34 I:['(Subject:)abcdefgh\r\n'] R:[(Subject:)\s*[a-z0-9]{8}\s*$] [2007-11-09T21:07:29+0000] GET from 216.235.158.34 I:['(Subject:)abcdefgh this is at test.\r\n'] R:[(Subject:)\s*[a-z0-9]{8}\s*$] [2007-11-12T08:25:16+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-12T10:14:57+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-13T08:30:35+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-13T10:31:32+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-13T15:10:43+0000] GET from 59.149.142.206 I:[''] R:[("'] R:[/img src=(\s*.[a-z])\s*$/] [2007-11-13T15:18:00+0000] GET from 59.149.142.206 I:[''] R:[(\s*)\.] [2007-11-13T19:07:50+0000] GET from 71.82.120.220 I:['\tdef addPage(self, title, pageText):\r\n\t\tprint "=====================", title.encode(\'utf-8\'), "====================="\r\n\t\tfor line in pageText.split(\'\\n\'):\r\n\t\t\tif line.find(\'=\') == 0 or line.find(\'[[Category\') == 0:\r\n asdlfkj\r\nawef'] R:[(^|\n)[ \t]+] [2007-11-13T19:08:27+0000] GET from 71.82.120.220 I:['\tdef addPage(self, title, pageText):\r\n\t\tprint "=====================", title.encode(\'utf-8\'), "====================="\r\n\t\tfor line in pageText.split(\'\\n\'):\r\n\t\t\tif line.find(\'=\') == 0 or line.find(\'[[Category\') == 0:\r\n asdlfkj\r\nawef'] R:[^[ \t]+] [2007-11-13T19:08:44+0000] GET from 71.82.120.220 I:['\tdef addPage(self, title, pageText):\r\n\t\tprint "=====================", title.encode(\'utf-8\'), "====================="\r\n\t\tfor line in pageText.split(\'\\n\'):\r\n\t\t\tif line.find(\'=\') == 0 or line.find(\'[[Category\') == 0:\r\n asdlfkj\r\nawef'] R:[[ \t]+] [2007-11-13T19:13:21+0000] GET from 71.82.120.220 I:['\tdef addPage(self, title, pageText):\r\n\t\tprint "=====================", title.encode(\'utf-8\'), "====================="\r\n\t\tfor line in pageText.split(\'\\n\'):\r\n\t\t\tif line.find(\'=\') == 0 or line.find(\'[[Category\') == 0:\r\n asdlfkj\r\nawef'] R:[^[ \t]+] [2007-11-15T08:35:36+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-16T08:36:56+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-17T17:18:23+0000] GET from 24.46.21.192 I:['define("SITE_ID", "44");'] R:[.*define.*[(].*"SITE_ID".*,.*([0-9]+).*?[)].*;] [2007-11-17T17:19:14+0000] GET from 24.46.21.192 I:['define("SITE_ID", "44");'] R:[.*define.*[(].*"SITE_ID".*,.*?([0-9]+).*?[)].*;] [2007-11-19T08:10:59+0000] GET from 145.88.209.33 I:['>aksdhfkajfjafhkahdfk\\natgcctgagctagactacgtgactactggatgtcgtacgtcagactactgcgtacgtacgtagtacgact'] R:[(>).+(\\n)(.+)] [2007-11-19T09:17:19+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\w] [2007-11-19T09:17:27+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s] [2007-11-19T09:17:51+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+.-+] [2007-11-19T09:18:01+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+] [2007-11-19T09:18:21+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+ M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+( M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+ M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+<] [2007-11-19T09:19:09+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+.-+.\s+<.+\?] [2007-11-19T09:19:47+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(.*-+.*)\s+<.+\?] [2007-11-19T09:20:06+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(.*-+.*)\s+<.+\?] [2007-11-19T09:20:22+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(.*-+).*\s+<.+\?] [2007-11-19T09:20:40+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?] [2007-11-19T09:21:13+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?\w\d+)] [2007-11-19T09:21:28+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w\d+] [2007-11-19T09:21:40+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<] [2007-11-19T09:21:47+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+] [2007-11-19T09:21:56+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?] [2007-11-19T09:22:07+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w] [2007-11-19T09:22:14+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w\d+] [2007-11-19T09:22:29+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w\d+>.+] [2007-11-19T09:22:30+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w\d+>.+] [2007-11-19T09:22:54+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+<.+\?\w\d+>.+>] [2007-11-19T09:23:05+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?\w\d+>.+>).+] [2007-11-19T09:23:25+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+] [2007-11-19T09:24:50+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+(.+)\s+(\d+\.\d+)] [2007-11-19T09:25:07+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+] [2007-11-19T09:25:19+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+.+\s] [2007-11-19T09:25:47+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+.+\s+(\d+\.\d+)] [2007-11-19T09:25:56+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+.+\s+] [2007-11-19T09:26:02+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+(.+)\s+] [2007-11-19T09:26:28+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+(.+-*.+)\s+] [2007-11-19T09:26:42+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+(.+)\s+] [2007-11-19T09:26:51+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>).+\s+(.+)\s+(.+)] [2007-11-19T09:27:14+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-19T09:27:29+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0\r\n'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-19T09:27:38+0000] GET from 145.88.209.33 I:[' ------> M00271 AML-1a 100.0'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-19T09:28:46+0000] GET from 145.88.209.33 I:[' <--------- M00011 Evi-1 88.4'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-19T11:02:58+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 92.1'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-19T11:44:18+0000] GET from 145.88.209.33 I:[' - M00101 CdxA 92.1'] R:[\s+(<*-+>*)\s+(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2007-11-20T10:31:37+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[.+\w\d\w] [2007-11-20T10:32:00+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[.+\w\d\w.+\d+\.\d+.+] [2007-11-20T10:32:18+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[.+\w\d\w.+\d+\.\d+.+\d+\.\d+] [2007-11-20T10:33:31+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[.+(\w\d\w).+(\d+\.\d+).+(\d+\.\d+)] [2007-11-20T10:33:59+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[] [2007-11-20T10:34:19+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[(.+)(.+)] [2007-11-20T10:35:39+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[(.+)(.+)(.+)(.+)] [2007-11-20T10:36:20+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[(.+)(.+)(.+)(.+)\s] [2007-11-20T10:36:48+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[(.+)(.+)(.+)(.+)(\s)] [2007-11-20T10:37:01+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65\r\n\r\n.+(\\w\\d\\w).+(\\d+\\.\\d+).+(\\d+\\.\\d+)'] R:[(.+)(.+)(.+)(.+)(\s)(\s)] [2007-11-20T10:37:23+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[(.+)(.+)(.+)(.+)(\s)(\s)] [2007-11-20T10:37:34+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[(.+)(.+)(.+)(.+)(\s)] [2007-11-20T10:37:34+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[(.+)(.+)(.+)(.+)(\s)] [2007-11-20T10:37:47+0000] GET from 145.88.209.33 I:['G5W0.00183.79Class C65'] R:[(.+)(.+)(.+)(.+)] [2007-11-20T12:23:46+0000] GET from 145.88.209.33 I:['Predictions of substitutions entered
'] R:[Predictions of substitutions entered
'] R:[Predictions of substitutions entered
] [2007-11-20T12:24:22+0000] GET from 145.88.209.33 I:['Predictions of substitutions entered
'] R:[Predictions of substitutions entered
] [2007-11-20T12:50:42+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:51:02+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:51:12+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:51:20+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:51:40+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:51:55+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+] [2007-11-20T12:52:53+0000] GET from 145.88.209.33 I:['Substitution at pos 5 from G to W is predicted to AFFECT PROTEIN FUNCTION with a score of 0.01.'] R:[.+(.+).+score\sof\s(\d+\.\d+)] [2007-11-20T13:01:16+0000] GET from 145.88.209.33 I:[' Median sequence conservation: 3.23'] R:[\s+Median sequence conservation:\s(\d+\.\d+)] [2007-11-20T13:04:06+0000] GET from 145.88.209.33 I:[' Sequences represented at this position:12'] R:[\s+Sequences represented at this position:\s?(\d+)] [2007-11-20T16:02:26+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[^(?!\s*)(?!\s*)(?!\s*)$] [2007-11-20T16:06:14+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[(^[aeiou][^aeiou]*[aeiou][^aeiou]*$)([^aeiou]*[aeiou][^aeiou]*[aeiou]$)] [2007-11-20T16:07:28+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[(^[aeiou][^aeiou]*[aeiou][^aeiou]*$)([^aeiou]*[aeiou][^aeiou]*[aeiou]$)([^aeiou]*[aeiou][^aeiou]*[aeiou][^aeiou]*$)] [2007-11-20T16:07:58+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[[^aeiou]*[aeiou][^aeiou]*[aeiou][^aeiou]*$] [2007-11-20T16:08:32+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[\s*[^aeiou]*[aeiou][^aeiou]*[aeiou][^aeiou]*$] [2007-11-20T16:09:41+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou]*\s*] [2007-11-20T16:10:04+0000] GET from 128.62.214.84 I:['this string true has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou]*\s*] [2007-11-20T16:10:52+0000] GET from 128.62.214.84 I:['this string true has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou\s]*\s*] [2007-11-20T16:11:26+0000] GET from 128.62.214.84 I:['this string has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou\s]*\s*] [2007-11-20T16:11:45+0000] GET from 128.62.214.84 I:['this string aarp has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou\s]*\s*] [2007-11-20T17:58:15+0000] GET from 128.62.214.84 I:['this string aarp has spaces.'] R:[\s*[^aeiou\s]*[aeiou][^aeiou\s]*[aeiou][^aeiou\s]*\s*] [2007-11-21T18:09:48+0000] GET from 165.123.207.80 I:['www.nike.com'] R:[(?<=\).+?()] [2007-11-21T18:10:45+0000] GET from 165.123.207.80 I:['
Order custom designed Nike shoes direct from Nike.
nikeid.nike.com'] R:[(?<=\).+?()] [2007-11-25T23:45:44+0000] GET from 65.93.159.57 I:['patate poual pipi caca crotte'] R:[ca|pi] [2007-11-28T16:38:15+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[^\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/662\|(.*)\]\]$] [2007-11-28T16:39:15+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[^\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/662\|(.*)\]\]$] [2007-11-28T16:50:25+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[^\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/002\|(.*)\]\]$] [2007-11-28T16:50:44+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[^\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/002\|(.*?)\]\]$] [2007-11-28T16:51:19+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/002\|(.*?)\]\]] [2007-11-28T16:53:35+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/002\|(.*)\]\]] [2007-11-28T16:53:43+0000] GET from 212.202.164.34 I:['[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/001|I]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/002|II]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/003|1]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/004|2]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/005|3]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/006|4]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/007|5]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/008|6]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/009|7]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/010|8]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/011|9]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/012|10]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/013|11]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/014|12]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/015|13]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/016|14]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/017|15]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/018|16]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/019|17]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/020|18]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/021|19]]\r\n[[Seite:De Memoiren einer Sozialistin - Lehrjahre (Braun).djvu/022|20]]\r\n'] R:[\[\[Seite:De Memoiren einer Sozialistin - Lehrjahre \(Braun\).djvu/002\|(.*?)\]\]] [2007-12-02T09:12:16+0000] GET from 61.95.205.104 I:['PHP Logo

PHP Version 4.4.2-1build1

'] R:[PHP Logo

(.*)

] [2007-12-02T09:13:57+0000] GET from 61.95.205.104 I:['PHP Logo

PHP Version 4.4.2-1build1

'] R:[PHP Logo

(.*)

] [2007-12-02T21:30:06+0000] GET from 83.227.147.68 I:['Helicopter.Heroes'] R:[(Helicopter)] [2007-12-02T21:30:33+0000] GET from 83.227.147.68 I:['Helicopter.Heroes\r\nLegions.Of.Super.Heroes'] R:[(Helicopter|Legions)] [2007-12-03T20:50:45+0000] GET from 67.191.170.187 I:['nickerson6z'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T20:52:12+0000] GET from 67.191.170.187 I:['a2s3ssdfsdfgsdfg'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T20:52:20+0000] GET from 67.191.170.187 I:['a2s3s'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T20:52:25+0000] GET from 67.191.170.187 I:['a2s3s@'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T20:52:31+0000] GET from 67.191.170.187 I:['a2s3sfdgdgfsdfgs@'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T20:55:14+0000] GET from 67.191.170.187 I:['blah35blah@'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-03T21:01:00+0000] GET from 67.191.170.187 I:['blah35bla65h@'] R:[^[a-z]+\d+[a-z]+\d+[a-z]+\w*\@] [2007-12-05T20:30:26+0000] GET from 207.171.191.60 I:['/^group/i'] R:[GROUP BY] [2007-12-05T22:47:19+0000] GET from 24.9.165.170 I:['20060523-009.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d\d).sql] [2007-12-05T22:47:47+0000] GET from 24.9.165.170 I:['20060523-009.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d).sql] [2007-12-05T22:49:23+0000] GET from 24.9.165.170 I:['20060523-009.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d).sql] [2007-12-05T22:49:32+0000] GET from 24.9.165.170 I:['20060523-009.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d\d).sql] [2007-12-06T04:13:06+0000] GET from 67.201.195.107 I:['

Setting SSID of an open Wi-Fi network to "bruceschneier" makes it completely secure.

sdfa'] R:[

(.*)

] [2007-12-06T13:21:50+0000] GET from 24.9.165.170 I:['20060619-03.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d).sql] [2007-12-06T13:42:48+0000] GET from 24.9.165.170 I:['20060619-EB-03.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\d\d).sql] [2007-12-06T18:06:44+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\w)-(\d\d).sql] [2007-12-06T18:07:10+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-*-(\d\d).sql] [2007-12-06T18:07:30+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-.*.sql] [2007-12-06T18:07:57+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-.*-(\d\d).sql] [2007-12-06T18:08:10+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(\w)-(\d\d).sql] [2007-12-06T18:08:21+0000] GET from 24.9.165.170 I:['20071029-EB-14.sql'] R:[(\d\d\d\d)(\d\d)(\d\d)-(.*)-(\d\d).sql] [2007-12-07T11:42:36+0000] GET from 212.227.35.93 I:['background-image: #FFFFFF url("Gfunden!")'] R:[:\s*[#0-9A-Fa-f]*\s*url\s*\(\"?([^{]*?)\"?\)] [2007-12-08T14:02:23+0000] GET from 83.228.222.94 I:['192'] R:[ r'(\d{1,5})$'] [2007-12-08T15:14:12+0000] GET from 125.131.204.90 I:['inline void NiFastCriticalSection::Unlock()'] R:[\s(Ni.+?)(::|\s)] [2007-12-08T15:21:52+0000] GET from 125.131.204.90 I:['woeijfoiwef/wefoiwjfoief/wefoiwjeflskdjflsdf/asads.php'] R:[.+?\.(php|css|js|html)$'] [2007-12-08T15:46:38+0000] GET from 83.228.222.94 I:['192.168.1.1'] R:[r'(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$'] [2007-12-08T15:56:10+0000] GET from 83.228.222.94 I:['"192.168.1.1"'] R:[r'(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$'] [2007-12-08T15:56:19+0000] GET from 83.228.222.94 I:['"192.168.1.1"'] R:[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$] [2007-12-08T15:56:27+0000] GET from 83.228.222.94 I:['"192.168.1.1"'] R:[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})] [2007-12-08T16:09:19+0000] GET from 83.228.222.94 I:['"search ath.cx"'] R:[(^search\ )] [2007-12-08T16:09:29+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[(^search\ )] [2007-12-08T16:09:53+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\ )] [2007-12-08T16:11:25+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)] [2007-12-08T16:11:32+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)(\w)$] [2007-12-08T16:12:17+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)(\w+)$] [2007-12-08T16:12:24+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)(\W+)$] [2007-12-08T16:12:44+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)(\W+\.\W)$] [2007-12-08T16:14:42+0000] GET from 83.228.222.94 I:['search ath.cx'] R:[^(search\s)(\w*\.\w{2,4})$] [2007-12-08T16:34:18+0000] GET from 83.228.222.94 I:['nameserver 192.168.0.1'] R:[^(nameserver\s)((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3}))$] [2007-12-08T16:34:58+0000] GET from 83.228.222.94 I:['nameserver 192.168.0.1'] R:[^(nameserver)\s((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3}))$] [2007-12-09T16:55:14+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]).] [2007-12-09T16:55:34+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: .[^\.].] [2007-12-09T16:55:41+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: .[^\.]*.] [2007-12-09T16:55:51+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]*).] [2007-12-09T16:56:27+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]*).] [2007-12-09T16:58:09+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]*).] [2007-12-09T17:20:29+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]*)\.] [2007-12-09T17:25:05+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait: Toto.'] R:[La r.ponse .tait: (.[^\.]*)\.] [2007-12-09T17:56:18+0000] GET from 82.232.93.247 I:["[Devine le Dessin] Personne n'a trouv\xe9 le terme dessin\xe9 par . La r\xe9ponse \xe9tait : calme. Le premier joueur qui tape la r\xe9ponse sera le prochain dessinateur."] R:[.*La réponse était : (.*)\..*] [2007-12-09T17:57:24+0000] GET from 82.232.93.247 I:['La r\xe9ponse \xe9tait : calme.'] R:[La réponse était : (.*)\.] [2007-12-09T17:57:53+0000] GET from 82.232.93.247 I:["[Devine le Dessin] Personne n'a trouv\xe9 le terme dessin\xe9 par . La r\xe9ponse \xe9tait : calme. Le premier joueur qui tape la r\xe9ponse sera le prochain dessinateur."] R:[.*La réponse était : (.*)\..*] [2007-12-09T17:58:01+0000] GET from 82.232.93.247 I:["[Devine le Dessin] Personne n'a trouv\xe9 le terme dessin\xe9 par . La r\xe9ponse \xe9tait : calme. Le premier joueur qui tape la r\xe9ponse sera le prochain dessinateur."] R:[.*La réponse était : (.*)\.] [2007-12-09T17:58:13+0000] GET from 82.232.93.247 I:["[Devine le Dessin] Personne n'a trouv\xe9 le terme dessin\xe9 par . La r\xe9ponse \xe9tait : calme. Le premier joueur qui tape la r\xe9ponse sera le prochain dessinateur."] R:[.*La réponse était : (.[^\.]*)\.] [2007-12-09T17:58:36+0000] GET from 82.232.93.247 I:["[Devine le Dessin] Personne n'a trouv\xe9 le terme dessin\xe9 par . La r\xe9ponse \xe9tait : calme. Le premier joueur qui tape la r\xe9ponse sera le prochain dessinateur."] R:[.*La réponse était : (.[^\.]*)\..*] [2007-12-10T15:46:00+0000] GET from 74.227.115.206 I:['A0000468601'] R:[A] [2007-12-10T15:46:29+0000] GET from 74.227.115.206 I:['A0000468601'] R:[B] [2007-12-10T15:47:58+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[A|B]+] [2007-12-10T15:48:07+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[D|B]+] [2007-12-10T15:49:21+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[A|B]+0{4}] [2007-12-10T15:50:27+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[A|B]+0{4}[0-9]{6}] [2007-12-10T15:53:04+0000] GET from 74.227.115.206 I:[' A0000468601 '] R:[[A|B]+0{4}[0-9]{6}] [2007-12-10T15:53:20+0000] GET from 74.227.115.206 I:[' A0000468601 '] R:[\b[A|B]+0{4}[0-9]{6}\b] [2007-12-10T15:53:46+0000] GET from 74.227.115.206 I:[' A0000468601 '] R:[[\b]*[A|B]+0{4}[0-9]{6}[\b]*] [2007-12-10T15:53:56+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[\b]*[A|B]+0{4}[0-9]{6}[\b]*] [2007-12-10T15:54:35+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*[A|B]+0{4}[0-9]{6}[[\b]*|\.]] [2007-12-10T15:55:23+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*[A|B]+0{4}[0-9]{6}[\b]*[\.]*] [2007-12-10T15:56:15+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*[A|B]+0{4}[0-9]{6}[^0-9][\b]*[\.]*] [2007-12-10T15:56:23+0000] GET from 74.227.115.206 I:['A00004686014.'] R:[[\b]*[A|B]+0{4}[0-9]{6}[^0-9][\b]*[\.]*] [2007-12-10T15:56:44+0000] GET from 74.227.115.206 I:['A00004686014.'] R:[[\b]*[^A|^B]+0{4}[0-9]{6}[^0-9][\b]*[\.]*] [2007-12-10T15:56:52+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*[^A|^B]+0{4}[0-9]{6}[^0-9][\b]*[\.]*] [2007-12-10T15:57:03+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9][\b]*[\.]*] [2007-12-10T15:58:38+0000] GET from 74.227.115.206 I:['A0000468601.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T15:58:50+0000] GET from 74.227.115.206 I:['A0000468601B.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T15:59:22+0000] GET from 74.227.115.206 I:[' A0000468601B.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T15:59:29+0000] GET from 74.227.115.206 I:[' A0000468601.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T15:59:53+0000] GET from 74.227.115.206 I:[' A0000468601.'] R:[^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T16:00:12+0000] GET from 74.227.115.206 I:[' A0000468601.'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T16:00:46+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T16:00:52+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z][\b]*] [2007-12-10T16:01:03+0000] GET from 74.227.115.206 I:['A0000468601'] R:[^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]] [2007-12-10T16:01:45+0000] GET from 74.227.115.206 I:['A0000468601'] R:[^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:01:54+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:02:05+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[{\b}*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:02:19+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[{\b}*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:02:27+0000] GET from 74.227.115.206 I:['A0000468601'] R:[{\b}*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:02:41+0000] GET from 74.227.115.206 I:['A0000468601'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:02:47+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[[\b]*^[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:03:47+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[([\b]*)(^[A|B]+0{4}[0-9]{6})[^0-9a-zA-Z]*] [2007-12-10T16:05:33+0000] GET from 74.227.115.206 I:[' A0000468601'] R:[[^0-9a-zA-Z]*[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:05:46+0000] GET from 74.227.115.206 I:['(A0000468601)'] R:[[^0-9a-zA-Z]*[A|B]+0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:06:16+0000] GET from 74.227.115.206 I:['(A0000468601)'] R:[[^0-9a-zA-Z]*[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:08:11+0000] GET from 74.227.115.206 I:['(AA0000468601)'] R:[[^0-9a-zA-Z]*[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:08:41+0000] GET from 74.227.115.206 I:['(AA0000468601)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:08:51+0000] GET from 74.227.115.206 I:['(AAA0000468601)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:08:58+0000] GET from 74.227.115.206 I:['(A0000468601)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]*] [2007-12-10T16:09:23+0000] GET from 74.227.115.206 I:['(A0000468601AA)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]{1}] [2007-12-10T16:09:29+0000] GET from 74.227.115.206 I:['(A0000468601A)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]{1}] [2007-12-10T16:09:39+0000] GET from 74.227.115.206 I:['(A00004686011)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]{1}] [2007-12-10T16:09:43+0000] GET from 74.227.115.206 I:['(A00004686011)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]{1}] [2007-12-10T16:09:50+0000] GET from 74.227.115.206 I:['(A0000468601)'] R:[[^0-9a-zA-Z]{1}[A|B]{1}0{4}[0-9]{6}[^0-9a-zA-Z]{1}] [2007-12-10T16:12:57+0000] GET from 74.227.115.206 I:['05/01/24'] R:[[^0-9a-zA-Z]{1}[00-12]{1}/[01-31]{1}/[00-99]{1}[^0-9a-zA-Z]{1}] [2007-12-10T16:13:15+0000] GET from 74.227.115.206 I:['05/01/24'] R:[[^0-9a-zA-Z]{1}[0-12]{1}/[1-31]{1}/[0-99]{1}[^0-9a-zA-Z]{1}] [2007-12-10T16:13:21+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[^0-9a-zA-Z]{1}[0-12]{1}/[1-31]{1}/[0-99]{1}[^0-9a-zA-Z]{1}] [2007-12-10T16:13:37+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[^0-9a-zA-Z]{1}[0-12]{1}\/[1-31]{1}\/[0-99]{1}[^0-9a-zA-Z]{1}] [2007-12-10T16:14:06+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[0-12]{1}] [2007-12-10T16:14:23+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[0-12]{1}/] [2007-12-10T16:14:43+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[0-12]{1}/[0-31]/] [2007-12-10T16:14:54+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[0-12]{1}/[0-31]{1}/] [2007-12-10T16:15:05+0000] GET from 74.227.115.206 I:['5/1/24'] R:[/[0-31]{1}/] [2007-12-10T16:15:26+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[0-12]{1}/[0-31]{1}/] [2007-12-10T16:16:11+0000] GET from 74.227.115.206 I:['5/1/24'] R:[/[0-31]{1}/[0-99]{1}] [2007-12-10T16:16:40+0000] GET from 74.227.115.206 I:['5/1/24'] R:[5/[0-31]{1}/[0-99]{1}] [2007-12-10T16:17:02+0000] GET from 74.227.115.206 I:['5/1/24'] R:[1-12/[1-31]{1}/[0-99]{1}] [2007-12-10T16:17:12+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[1-12]/[1-31]{1}/[0-99]{1}] [2007-12-10T16:17:23+0000] GET from 74.227.115.206 I:['5/1/24'] R:[^[1-12]/[1-31]{1}/[0-99]{1}] [2007-12-10T16:17:34+0000] GET from 74.227.115.206 I:[' 5/1/24'] R:[[1-12]/[1-31]{1}/[0-99]{1}] [2007-12-10T16:19:52+0000] GET from 74.227.115.206 I:['5/1/24'] R:[[1-12]{1,2}/[1-31]{1,2}/[0-99]{1,2}] [2007-12-10T16:19:59+0000] GET from 74.227.115.206 I:['5/1/24'] R:[/[1-31]{1,2}/[0-99]{1,2}] [2007-12-10T16:20:29+0000] GET from 74.227.115.206 I:['5/01/24'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:20:40+0000] GET from 74.227.115.206 I:['5/01/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:21:52+0000] GET from 74.227.115.206 I:['5/3131/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:22:02+0000] GET from 74.227.115.206 I:['5/31/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:22:17+0000] GET from 74.227.115.206 I:['5/32/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:22:37+0000] GET from 74.227.115.206 I:['5/01/1924'] R:[/[0-31]{1}/[0-99]{1,4}] [2007-12-10T16:22:45+0000] GET from 74.227.115.206 I:['5/32/1924'] R:[/[0-31]{1}/[0-99]{1,4}] [2007-12-10T16:22:51+0000] GET from 74.227.115.206 I:['5/31/1924'] R:[/[0-31]{1}/[0-99]{1,4}] [2007-12-10T16:23:12+0000] GET from 74.227.115.206 I:['5/31/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T16:23:18+0000] GET from 74.227.115.206 I:['5/32/1924'] R:[/[0-31]{1,2}/[0-99]{1,4}] [2007-12-10T18:17:28+0000] GET from 74.227.115.206 I:['5'] R:[[1-12]{1,2}] [2007-12-10T18:18:11+0000] GET from 74.227.115.206 I:['5'] R:[[5|6]{1,2}] [2007-12-10T18:18:43+0000] GET from 74.227.115.206 I:['5'] R:[[1-9]{1,2}] [2007-12-10T18:20:08+0000] GET from 74.227.115.206 I:['1'] R:[["01"|"02"|"03"]] [2007-12-10T18:20:49+0000] GET from 74.227.115.206 I:['1'] R:[[01|02|03]] [2007-12-10T18:21:01+0000] GET from 74.227.115.206 I:['1'] R:[[(01)|02|03]] [2007-12-10T18:22:47+0000] GET from 74.227.115.206 I:['1'] R:[01] [2007-12-10T18:22:59+0000] GET from 74.227.115.206 I:['1'] R:[01|02] [2007-12-10T18:23:07+0000] GET from 74.227.115.206 I:['02'] R:[01|02] [2007-12-10T18:23:16+0000] GET from 74.227.115.206 I:['2'] R:[01|02] [2007-12-10T18:24:57+0000] GET from 74.227.115.206 I:['02'] R:[0[1-9]|10|11|12] [2007-12-10T18:25:03+0000] GET from 74.227.115.206 I:['13'] R:[0[1-9]|10|11|12] [2007-12-10T18:25:10+0000] GET from 74.227.115.206 I:['12'] R:[0[1-9]|10|11|12] [2007-12-10T18:25:54+0000] GET from 74.227.115.206 I:['112'] R:[[^0-9,a-z,A-Z]{1}0[1-9]|10|11|12] [2007-12-10T18:26:11+0000] GET from 74.227.115.206 I:['112'] R:[[^0-9,a-z,A-Z]{1}0[1-9]|10|11|12[^0-9,a-z,A-Z]{1}] [2007-12-10T18:26:36+0000] GET from 74.227.115.206 I:['112'] R:[[^0-9,a-z,A-Z]{1}[0[1-9]|10|11|12]{1,2}[^0-9,a-z,A-Z]{1}] [2007-12-10T18:29:14+0000] GET from 74.227.115.206 I:['112'] R:[(?<=[^0-9,a-z,A-Z])[0[1-9]|10|11|12]{1,2}[^0-9,a-z,A-Z]{1}] [2007-12-10T18:29:45+0000] GET from 74.227.115.206 I:['112'] R:[(?Kate: Playing With Her Rabbit
Kate: Playing With Her Rabbit
'] R:[watch.aspx\?.+?] [2007-12-12T14:06:58+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[(watch.aspx\?.+?)\".?>(.+?)<\/a>] [2007-12-12T14:08:08+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[(watch.aspx\?.+?)\".?>] [2007-12-12T14:08:26+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[(watch.aspx\?.+?)\"] [2007-12-12T14:08:37+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[(watch.aspx\?.+?)] [2007-12-12T14:09:43+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[(watch.aspx\?.+?)\"] [2007-12-12T14:15:48+0000] GET from 85.180.157.5 I:['
  • Kate: Playing With Her Rabbit
    Kate: Playing With Her Rabbit
  • '] R:[re.compile(r'(watch.aspx\?.+?)\".?>(.+?)<\/a>',re.DOTALL)] [2007-12-12T15:24:33+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)\n] [2007-12-12T15:25:07+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)$] [2007-12-12T15:25:43+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)$\n] [2007-12-12T15:25:53+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)\n$] [2007-12-12T15:25:59+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)$] [2007-12-12T15:26:08+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)] [2007-12-12T15:26:43+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)\Z] [2007-12-12T15:26:55+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)\\n] [2007-12-12T15:27:01+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)\r] [2007-12-12T15:27:18+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)[\n]] [2007-12-12T15:27:41+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)] [2007-12-12T15:28:13+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)$] [2007-12-12T20:00:32+0000] GET from 170.139.252.252 I:['A0000123456'] R:[[^0-9a-zA-Z][A|B|C]{1}0000[0-9]{6}[^0-9a-zA-Z]] [2007-12-12T20:01:45+0000] GET from 170.139.252.252 I:['A0000123456'] R:[[A|B]+0{4}[0-9]{6}] [2007-12-12T20:01:57+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[A|B]+0{4}[0-9]{6}] [2007-12-12T20:02:13+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[A|B|C]+0{4}[0-9]{6}] [2007-12-12T20:02:27+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:02+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[^0-9a-zA-Z][A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:11+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[^0-9a-zA-Z]*[A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:20+0000] GET from 170.139.252.252 I:['AA0000123456'] R:[[^0-9a-zA-Z][A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:29+0000] GET from 170.139.252.252 I:[' A0000123456'] R:[[^0-9a-zA-Z][A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:36+0000] GET from 170.139.252.252 I:['A0000123456'] R:[[^0-9a-zA-Z][A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:04:53+0000] GET from 170.139.252.252 I:['A0000123456'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:05:05+0000] GET from 170.139.252.252 I:['(A0000123456)'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}] [2007-12-12T20:05:31+0000] GET from 170.139.252.252 I:['(A00001234569'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}[^0-9a-zA-Z]?] [2007-12-12T20:06:11+0000] GET from 170.139.252.252 I:['(A00001234567'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}[^0-9a-zA-Z]?] [2007-12-12T20:10:13+0000] GET from 170.139.252.252 I:['(A00001234567'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}(^\d)?] [2007-12-12T20:10:36+0000] GET from 170.139.252.252 I:['(A00001234567'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}\s] [2007-12-12T20:10:42+0000] GET from 170.139.252.252 I:['(A0000123456'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}\s] [2007-12-12T20:10:49+0000] GET from 170.139.252.252 I:['(A0000123456'] R:[[^0-9a-zA-Z]?[A|B|C]{1}0{4}[0-9]{6}\s?] [2007-12-12T20:12:59+0000] GET from 170.139.252.252 I:['(A0000123456'] R:[\b[A|B|C]{1}0{4}[0-9]{6}\b] [2007-12-12T20:13:06+0000] GET from 170.139.252.252 I:['(A00001234567'] R:[\b[A|B|C]{1}0{4}[0-9]{6}\b] [2007-12-12T20:13:14+0000] GET from 170.139.252.252 I:['(A0000123456)'] R:[\b[A|B|C]{1}0{4}[0-9]{6}\b] [2007-12-12T20:13:22+0000] GET from 170.139.252.252 I:['(A0000123456 '] R:[\b[A|B|C]{1}0{4}[0-9]{6}\b] [2007-12-12T20:13:32+0000] GET from 170.139.252.252 I:[' A0000123456 '] R:[\b[A|B|C]{1}0{4}[0-9]{6}\b] [2007-12-12T20:17:23+0000] GET from 170.139.252.252 I:['123456 '] R:[\b[0-9]{6}\b] [2007-12-12T20:21:05+0000] GET from 170.139.252.252 I:['mRn'] R:[[(?i)MRN|(?i)Record]] [2007-12-12T20:22:18+0000] GET from 170.139.252.252 I:['mRn'] R:[(?i)MRN] [2007-12-12T20:31:01+0000] GET from 170.139.252.252 I:['b7658793456'] R:[\b[A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:31:22+0000] GET from 170.139.252.252 I:['b7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:32:05+0000] GET from 170.139.252.252 I:['n b7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:32:29+0000] GET from 170.139.252.252 I:['bb7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:32:48+0000] GET from 170.139.252.252 I:['C7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:34:06+0000] GET from 170.139.252.252 I:[' c7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:35:00+0000] GET from 170.139.252.252 I:[' 7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:35:10+0000] GET from 170.139.252.252 I:[' A7658793456'] R:[\b[a|b|c|A|B|C]{1}[0-9]{10}\b] [2007-12-12T20:39:11+0000] GET from 170.139.252.252 I:['hne7658793456'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:39:29+0000] GET from 170.139.252.252 I:['HHNE7658793456'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:39:42+0000] GET from 170.139.252.252 I:[' HNE76587934567'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:39:53+0000] GET from 170.139.252.252 I:[' HNE7658793'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:40:03+0000] GET from 170.139.252.252 I:[' HNE'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:40:12+0000] GET from 170.139.252.252 I:[' HNE)'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:40:23+0000] GET from 170.139.252.252 I:[' HNE 12'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-12T20:40:37+0000] GET from 170.139.252.252 I:[' HNE567'] R:[\b((?i)HNE)[0-9]{1,}\b] [2007-12-13T08:53:07+0000] GET from 145.88.209.33 I:['NC_000017:c.1210-12T(5_9)\r\nNC_000017:c.1210-12T[5]\r\nNC_000017:c.76_78del'] R:[(.+):(\w)\.(.+)$] [2007-12-13T15:27:45+0000] GET from 145.88.209.33 I:['w34d'] R:[\w\d+\w] [2007-12-13T15:27:59+0000] GET from 145.88.209.33 I:['w34d'] R:[(\w)(\d+)(\w)] [2007-12-14T12:14:42+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)] [2007-12-14T12:15:55+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)[A\_del]] [2007-12-14T12:17:14+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)[_]] [2007-12-14T12:17:36+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)[A_]] [2007-12-14T12:18:16+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)[A_(del)]] [2007-12-14T12:18:35+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)[A_'del']] [2007-12-14T12:28:13+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[\[] [2007-12-14T12:28:57+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[\[?\(?(\d+)] [2007-12-14T12:29:18+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+)] [2007-12-14T12:30:45+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?)] [2007-12-14T12:31:01+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)] [2007-12-14T12:32:16+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)[\)\]]?] [2007-12-14T12:32:28+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)([\)\]]?)] [2007-12-14T12:33:10+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)([\)\]]?)\w] [2007-12-14T12:33:42+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)([\)\]]?).+] [2007-12-14T12:34:00+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?(\d+?))([\)\]]?).+] [2007-12-14T12:35:18+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)([\)\]]?)\w.+] [2007-12-14T12:35:49+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)([\)\]]?)\w.+] [2007-12-14T12:36:00+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[([\)\]]?)\w.+] [2007-12-14T12:36:27+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\))(\]?)\w.+] [2007-12-14T12:36:43+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\]?)\w.+] [2007-12-14T12:37:17+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)(\))\w.+] [2007-12-14T12:37:37+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)(\)?)\w.+] [2007-12-14T12:38:13+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)(\)?)\w\n] [2007-12-14T12:38:24+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d+?)(\)?).+\n] [2007-12-14T12:39:05+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\d+_?\d?)(\)?).+\n] [2007-12-14T12:41:04+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)\d] [2007-12-14T12:41:42+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)] [2007-12-14T12:42:28+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?] [2007-12-14T12:46:23+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?] [2007-12-14T12:52:48+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?(\w+)] [2007-12-14T12:53:12+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?(\w{3})] [2007-12-14T12:53:47+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?(.{3})] [2007-12-14T12:56:07+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[^(\(?)(\[?)(\d+)(\_\d+)?(\))?(.{3})] [2007-12-14T13:03:03+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?(.{3})(.+)$] [2007-12-14T13:03:26+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\))?(.{3})(.+)] [2007-12-14T13:14:34+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\)?)(.{3})(.+)] [2007-12-14T13:15:47+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_?\d+?)(\)?)(.{3})(.+)] [2007-12-14T13:15:48+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_?\d+?)(\)?)(.{3})(.+)] [2007-12-14T13:17:35+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\)?)(.{3})(.+)] [2007-12-14T13:20:35+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\)?)(.{3})(.+)] [2007-12-15T14:52:09+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[a-d]] [2007-12-15T14:52:21+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[abcdef]] [2007-12-15T14:55:36+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[a-d]+] [2007-12-15T14:56:23+0000] GET from 88.73.210.148 I:['abcd'] R:[[a-d]+] [2007-12-15T14:56:41+0000] GET from 88.73.210.148 I:['abcd'] R:[[a-d]+] [2007-12-15T14:56:47+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[adegz]+] [2007-12-15T14:56:51+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[adegz]+] [2007-12-15T14:56:56+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[degz]+] [2007-12-15T14:57:10+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[/a/d/e/g/z]+] [2007-12-15T14:57:28+0000] GET from 88.73.210.148 I:['abcdefghijklmnopqrstuvwxyz'] R:[[a-d]+] [2007-12-15T14:57:35+0000] GET from 88.73.210.148 I:['abcdefghijklmnopqrstuvwxyza'] R:[[a-d]+] [2007-12-15T14:59:08+0000] GET from 88.73.210.148 I:['abcdefghijklmnopqrstuvwxyza'] R:[.+] [2007-12-15T15:00:15+0000] GET from 88.73.210.148 I:['abcdefghijklm\\nopqrstuvwxyza'] R:[.+] [2007-12-15T15:00:29+0000] GET from 88.73.210.148 I:['abcdefghijklm/nopqrstuvwxyza'] R:[.+] [2007-12-15T15:00:36+0000] GET from 88.73.210.148 I:['abcdefghijklm \\n opqrstuvwxyza'] R:[.+] [2007-12-15T15:02:21+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[\a\d\e\g\z]+] [2007-12-15T15:04:11+0000] GET from 77.182.210.107 I:['abcdefghijklmnopqrstuvwxyz'] R:[[abc]+] [2007-12-15T15:04:14+0000] GET from 88.73.210.148 I:['abcdefghijklm \\n opqrstuvwxyza'] R:[.+] [2007-12-15T15:04:30+0000] GET from 77.182.210.107 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[abc]+] [2007-12-15T15:07:03+0000] GET from 77.182.210.107 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[.*a*.*b*:*c*]+] [2007-12-15T15:07:14+0000] GET from 77.182.210.107 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[.*a*.*b*:*c*]+] [2007-12-15T15:07:27+0000] GET from 88.73.210.148 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[.*a*.*b*:*c*]+] [2007-12-15T15:07:28+0000] GET from 84.133.136.160 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[.*a*.*b*:*c*]+] [2007-12-15T15:13:41+0000] GET from 85.178.223.236 I:['abcdefghijklmnbopqrstuavwxyzc'] R:[[.*a*.*b*:*c*]+] [2007-12-17T00:23:16+0000] GET from 59.100.118.30 I:['

    Permanent link to this comic: http://xkcd.com/357/

    '] R:[^(.*\d)$] [2007-12-17T04:13:37+0000] GET from 68.183.236.139 I:[' IRAI e I M I I M Wolfn l i I'] R:[Wolf] [2007-12-17T04:14:29+0000] GET from 68.183.236.139 I:[' IRAI e I M I I M Wolfn l i I'] R:[Wold] [2007-12-17T04:14:40+0000] GET from 68.183.236.139 I:[' IRAI e I M I I M Wolfn l i I'] R:[Wolf] [2007-12-17T10:05:54+0000] GET from 145.88.209.33 I:['76A>T\r\n76_78delACT\r\n76delA\r\n76dupA\r\n8_9insG\r\n76_77insG\r\n76_83inv\r\n123_678conNM_004006.1:c.123_678\r\n[76A>T]\r\n(67_70)insG'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\)?)(.{3})(.+)] [2007-12-17T13:38:51+0000] GET from 145.88.209.33 I:['w23r'] R:[(\(?)(\[?)(\d+)(\_\d+)?(\)?)(.{3})(.+)?] [2007-12-18T19:24:49+0000] GET from 198.133.210.230 I:['x = new y;\r\nx = new y; // make a new y\r\nx = new (16) y; // make a new y\r\nx = y; // do something new.\r\nx = new y; y = new z;'] R:[^(?!\s*//)(.*)\bnew(\s(:|_|\w))] [2007-12-19T01:02:45+0000] GET from 203.0.223.243 I:['checkme.war'] R:[[.war]$] [2007-12-19T01:03:29+0000] GET from 203.0.223.243 I:['checkme.war'] R:[[.war]] [2007-12-19T01:04:01+0000] GET from 203.0.223.243 I:['checkme.war'] R:[[\.war]] [2007-12-19T01:04:48+0000] GET from 203.0.223.243 I:['checkme.war'] R:[\.war$] [2007-12-20T03:53:56+0000] GET from 203.21.202.34 I:['src="//secure-au.imrworldwide.com/v52.js"'] R:[re.sub( '(src="//)', "src=\"//", result)] [2007-12-20T03:55:06+0000] GET from 203.21.202.34 I:['src="//secure-au.imrworldwide.com/v52.js"'] R:[(src="//)] [2007-12-27T10:24:12+0000] GET from 59.149.142.206 I:['21%co.txt'] R:[[^"]\%(([g-z]|[G-Z])|([g-z]|[G-Z]))] [2007-12-27T10:25:21+0000] GET from 59.149.142.206 I:['21%w2.txt'] R:[[^"]\%(([g-z])|([g-z]))] [2007-12-27T10:26:47+0000] GET from 59.149.142.206 I:['21%we.txt'] R:[[^"]\%[g-z]|[g-z]] [2007-12-27T10:28:04+0000] GET from 59.149.142.206 I:['21%2e.txt'] R:[[^"]\%+([g-z])|([g-z])] [2007-12-27T10:30:06+0000] GET from 59.149.142.206 I:['21%1e.txt'] R:[[^"]\%([g-z])] [2007-12-27T10:30:20+0000] GET from 59.149.142.206 I:['21%we.txt'] R:[[^"]\%([g-z])] [2007-12-27T10:30:34+0000] GET from 59.149.142.206 I:['21%we.txt'] R:[[^"]\%([g-z])|([g-z])] [2007-12-27T10:30:50+0000] GET from 59.149.142.206 I:['21%2e.txt'] R:[[^"]\%([g-z])|([g-z])] [2007-12-27T10:31:29+0000] GET from 59.149.142.206 I:['21%2w.txt'] R:[[^"]\%(([g-z])|([g-z]))*] [2007-12-27T10:31:44+0000] GET from 59.149.142.206 I:['21%2w.txt'] R:[[^"]\%+(([g-z])|([g-z]))*] [2007-12-27T23:19:42+0000] GET from 66.182.125.9 I:['tag1, tag2 tag3'] R:[[,\\s]+] [2007-12-27T23:21:14+0000] GET from 66.182.125.9 I:['tag1, tag2 tag3'] R:[[,\\s]+] [2007-12-27T23:22:17+0000] GET from 66.182.125.9 I:['tag1 tag2 tag3'] R:[[,\\s]+] [2007-12-28T18:37:06+0000] GET from 83.190.154.105 I:['anche google earth è "flight simulator"'] R:[/&#?\w+;/] [2008-01-02T13:48:51+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+?] [2008-01-02T13:48:57+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s+?] [2008-01-02T13:49:07+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s+?version] [2008-01-02T13:49:15+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s?version] [2008-01-02T13:49:18+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s?version] [2008-01-02T13:49:27+0000] GET from 145.88.209.33 I:['VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s?\w+] [2008-01-02T13:49:49+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s?\w+] [2008-01-02T13:49:55+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\s?\w+] [2008-01-02T13:50:23+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:] [2008-01-02T13:50:45+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:(.+)] [2008-01-02T13:50:52+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:(.+)^] [2008-01-02T13:51:23+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:(.+)$] [2008-01-02T13:51:58+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:(.+)/Z] [2008-01-02T13:52:13+0000] GET from 145.88.209.33 I:[' VERSION NP_001020262.1 GI:69354671\r\n'] R:[\w+\s+.+\sGI:(\d+)] [2008-01-02T14:48:26+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\w+_] [2008-01-02T14:48:51+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\w+_\d\.?\d?:] [2008-01-02T14:48:58+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\w+_\d\.?] [2008-01-02T14:49:16+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\w+_\d\.?\d?] [2008-01-02T14:49:23+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\w+_\d\.?\d?\:] [2008-01-02T14:49:38+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[\:] [2008-01-02T14:49:57+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[.+\:\d+\.\.\d+] [2008-01-02T14:50:23+0000] GET from 145.88.209.33 I:['NM_001025091.1:96..2633'] R:[(.+)\:(\d+)\.\.(\d+)] [2008-01-03T16:47:27+0000] GET from 82.41.58.125 I:[''] R:[/*/] [2008-01-04T13:48:12+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no'] R:[^.*[@](lmi.no$)] [2008-01-04T13:48:40+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no'] R:[.*[@](lmi.no$)] [2008-01-04T13:48:58+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no'] R:[.*[@](lmi.no)] [2008-01-04T13:49:28+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no'] R:[.*@(lmi.no)] [2008-01-04T13:49:34+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no'] R:[.*@lmi.no] [2008-01-04T13:49:50+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no\r\nastrid@lmi.no\r\nfrank@roger.com'] R:[.*@lmi.no] [2008-01-04T13:50:08+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no\r\nastrid@lmi.no\r\nfrank@roger.com'] R:[.*@lmi.no] [2008-01-04T13:50:47+0000] GET from 217.8.153.89 I:['bente.velure@lmi.no\r\nfoo@bar.no\r\nastrid@lmi.no\r\nfrank@roger.com'] R:[^.*@lmi.no] [2008-01-05T16:15:54+0000] GET from 24.148.84.156 I:[' Blythed\r\n \r\n '] R:['title="?(.*?)"?'] [2008-01-05T16:16:39+0000] GET from 24.148.84.156 I:[' Blythed\r\n \r\n '] R:[title="?(.*?)"?] [2008-01-05T16:17:07+0000] GET from 24.148.84.156 I:[' Blythed\r\n \r\n '] R:[title="(.*?)"?] [2008-01-05T16:17:27+0000] GET from 24.148.84.156 I:[' Blythed\r\n \r\n '] R:[title="(.*?)"] [2008-01-05T16:22:32+0000] GET from 24.148.84.156 I:[' Blythed\r\n \r\n '] R:[http://twitter.com] [2008-01-05T22:05:09+0000] GET from 24.148.84.156 I:['Following 3'] R:[Following.*?stats_count">(\d*?)?] [2008-01-05T22:06:37+0000] GET from 24.148.84.156 I:['Following 3'] R:[Following.*?stats_count">(\d*?)?] [2008-01-05T22:28:57+0000] GET from 24.148.84.156 I:[' \r\n\r\n harper\r\n \r\n'] R:[(.*?)] [2008-01-05T22:29:26+0000] GET from 24.148.84.156 I:[' \r\n\r\n harper\r\n \r\n'] R:['title="(.*?)"'] [2008-01-05T23:16:55+0000] GET from 24.148.84.156 I:['
    \r\n
    \r\n\t\t

    day off, errands

    \r\n\t \r\n\t
    \r\n\r\n\t\t\t\t\t\r\n\t\t\t @devour1999 for a change? I have 2 usb controllers ready to go.\r\n\t\t\t\r\n'] R:['p class="entry-title entry-content">(.*?)<'] [2008-01-05T23:17:40+0000] GET from 24.148.84.156 I:['
    \r\n
    \r\n\t\t

    day off, errands

    \r\n\t \r\n\t
    \r\n\r\n\t\t\t\t\t\r\n\t\t\t @devour1999 for a change? I have 2 usb controllers ready to go.\r\n\t\t\t\r\n'] R:[p class="entry-title entry-content">(.*?)<] [2008-01-06T03:05:10+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[address.*?class="fn">(\.*?)?] [2008-01-06T03:06:02+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[address\.*?class="fn">(\.*?)?] [2008-01-06T04:17:27+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[address\.*?class="fn">(\.*?)?] [2008-01-06T04:18:20+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[
    \.*?class="fn">(\.*?)?] [2008-01-06T04:18:47+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[
    \.*?class="fn">(\.*?)] [2008-01-06T04:19:13+0000] GET from 67.186.79.170 I:['
    \r\n \r\n
    \r\n'] R:[
    \.*?(\.*?)] [2008-01-06T05:19:49+0000] GET from 67.186.79.170 I:['asshole'] R:[a] [2008-01-06T05:25:49+0000] GET from 67.186.79.170 I:['<type 'exceptions.AttributeError'> at /awesomeguy\r\n'] R:[>] [2008-01-06T05:32:18+0000] GET from 67.186.79.170 I:['@<a href="/nata2">nata2</a>: I know that\r\n'] R:[>] [2008-01-06T05:32:48+0000] GET from 67.186.79.170 I:['@<a href="/nata2">nata2</a>: I know that\r\n'] R:[&gretret;] [2008-01-06T20:13:56+0000] GET from 85.178.228.218 I:["{{Textdaten\r\n|VORIGER=\r\n|NAECHSTER=\r\n|AUTOR=[[Joseph von Eichendorff]] \r\n|TITEL=W\xfcnschelrute\r\n|SUBTITEL=\r\n|HERKUNFT=Gedichte\r\n|HERAUSGEBER=Berlin (Simion)\r\n|AUFLAGE=\r\n|ENTSTEHUNGSJAHR=1835\r\n|ERSCHEINUNGSJAHR=1841\r\n|ERSCHEINUNGSORT=\r\n|\xdcBERSETZER = \r\n|ORIGINALTITEL = \r\n|ORIGINALSUBTITEL = \r\n|ORIGINALHERKUNFT = \r\n|WIKIPEDIA=W\xfcnschelrute (Eichendorff)\r\n|BILD=Eichendorff_Gedichte_W\xfcnschelrute.jpg\r\n|QUELLE=Joseph von Eichendorff. Gesammelte Werke. Band 1: Gedichte, Nachlese, Die Feier. Aufbau Verlag Berlin 1962. Seite 90.\r\n|KURZBESCHREIBUNG=\r\n|SONSTIGES=\r\n|BEARBEITUNGSSTAND=fertig\r\n}}\r\n\r\n\r\n\r\n{{Seite|90||Eichendorff_Gedichte_W\xfcnschelrute.jpg}} '''W\xfcnschelrute'''\r\n\r\nSchl\xe4ft ein Lied in allen Dingen,\r\nDie da tr\xe4umen fort und fort, \r\nUnd die Welt hebt an zu singen,\r\nTriffst du nur das Zauberwort.\r\n\r\n\r\n\r\n\r\n[[Kategorie:19. Jahrhundert]]\r\n[[Kategorie:Deutschland]]\r\n[[Kategorie:Gedicht]]\r\n[[Kategorie:Deutsche Philologie]]\r\n[[Kategorie:Neuhochdeutsch]]\r\n"] R:[(.*)] [2008-01-06T20:15:47+0000] GET from 85.178.228.218 I:["{{Textdaten\r\n|VORIGER=\r\n|NAECHSTER=\r\n|AUTOR=[[Joseph von Eichendorff]] \r\n|TITEL=W\xfcnschelrute\r\n|SUBTITEL=\r\n|HERKUNFT=Gedichte\r\n|HERAUSGEBER=Berlin (Simion)\r\n|AUFLAGE=\r\n|ENTSTEHUNGSJAHR=1835\r\n|ERSCHEINUNGSJAHR=1841\r\n|ERSCHEINUNGSORT=\r\n|\xdcBERSETZER = \r\n|ORIGINALTITEL = \r\n|ORIGINALSUBTITEL = \r\n|ORIGINALHERKUNFT = \r\n|WIKIPEDIA=W\xfcnschelrute (Eichendorff)\r\n|BILD=Eichendorff_Gedichte_W\xfcnschelrute.jpg\r\n|QUELLE=Joseph von Eichendorff. Gesammelte Werke. Band 1: Gedichte, Nachlese, Die Feier. Aufbau Verlag Berlin 1962. Seite 90.\r\n|KURZBESCHREIBUNG=\r\n|SONSTIGES=\r\n|BEARBEITUNGSSTAND=fertig\r\n}}\r\n\r\n\r\n\r\n{{Seite|90||Eichendorff_Gedichte_W\xfcnschelrute.jpg}} '''W\xfcnschelrute'''\r\n\r\nSchl\xe4ft ein Lied in allen Dingen,\r\nDie da tr\xe4umen fort und fort, \r\nUnd die Welt hebt an zu singen,\r\nTriffst du nur das Zauberwort.\r\n\r\n\r\n\r\n\r\n[[Kategorie:19. Jahrhundert]]\r\n[[Kategorie:Deutschland]]\r\n[[Kategorie:Gedicht]]\r\n[[Kategorie:Deutsche Philologie]]\r\n[[Kategorie:Neuhochdeutsch]]\r\n"] R:[(.+?)] [2008-01-06T20:16:29+0000] GET from 85.178.228.218 I:["{{Textdaten\r\n|VORIGER=\r\n|NAECHSTER=\r\n|AUTOR=[[Joseph von Eichendorff]] \r\n|TITEL=W\xfcnschelrute\r\n|SUBTITEL=\r\n|HERKUNFT=Gedichte\r\n|HERAUSGEBER=Berlin (Simion)\r\n|AUFLAGE=\r\n|ENTSTEHUNGSJAHR=1835\r\n|ERSCHEINUNGSJAHR=1841\r\n|ERSCHEINUNGSORT=\r\n|\xdcBERSETZER = \r\n|ORIGINALTITEL = \r\n|ORIGINALSUBTITEL = \r\n|ORIGINALHERKUNFT = \r\n|WIKIPEDIA=W\xfcnschelrute (Eichendorff)\r\n|BILD=Eichendorff_Gedichte_W\xfcnschelrute.jpg\r\n|QUELLE=Joseph von Eichendorff. Gesammelte Werke. Band 1: Gedichte, Nachlese, Die Feier. Aufbau Verlag Berlin 1962. Seite 90.\r\n|KURZBESCHREIBUNG=\r\n|SONSTIGES=\r\n|BEARBEITUNGSSTAND=fertig\r\n}}\r\n\r\n\r\n\r\n{{Seite|90||Eichendorff_Gedichte_W\xfcnschelrute.jpg}} '''W\xfcnschelrute'''\r\n\r\nSchl\xe4ft ein Lied in allen Dingen,\r\nDie da tr\xe4umen fort und fort, \r\nUnd die Welt hebt an zu singen,\r\nTriffst du nur das Zauberwort.\r\n\r\n\r\n\r\n\r\n[[Kategorie:19. Jahrhundert]]\r\n[[Kategorie:Deutschland]]\r\n[[Kategorie:Gedicht]]\r\n[[Kategorie:Deutsche Philologie]]\r\n[[Kategorie:Neuhochdeutsch]]\r\n"] R:[] [2008-01-07T12:19:09+0000] GET from 145.88.209.33 I:[' ------> M00148 SRY 86.4\r\n'] R:[(\s*(<*-+>*)\s*)(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)] [2008-01-07T12:19:26+0000] GET from 145.88.209.33 I:[' ------> M00148 SRY 86.4\r\n'] R:[(\s*(<*-+>*)\s*)(<.+\?(\w\d+)>.+>)\s+(.+)\s+(.+)$] [2008-01-07T12:20:24+0000] GET from 145.88.209.33 I:[' ------> M00148 SRY 86.4\r\n'] R:[(\s*(<*-+>*)\s*)(<.+\?(\w\d+)>.+>)\s+(\w+)\s+(.+)] [2008-01-07T12:20:57+0000] GET from 145.88.209.33 I:[' <----------------- M00235 AhR/Ar 85.5\r\n\r\n'] R:[(\s*(<*-+>*)\s*)(<.+\?(\w\d+)>.+>)\s+(\w+)\s+(.+)] [2008-01-07T12:21:24+0000] GET from 145.88.209.33 I:[' <----------------- M00235 AhR/Ar 85.5\r\n\r\n'] R:[(\s*(<*-+>*)\s*)(<.+\?(\w\d+)>.+>)\s+(\w+/?\w+?)\s+(.+)] [2008-01-08T14:19:30+0000] GET from 89.234.72.54 I:['[01:51] Compyfox, Steve Pordon - Parasite Eve \'Primal Eyes (Tapeworm)\' (3:26)1 2 3 4 5 '] R:[(\[[\d]{2}:[\d]{2}\]) # time left timestamp in format of [xx:xx] .*? # leading up to and including the anchor (.*?) # title of the song \s-\s (.*?) # arist (\([\d]{1,}:[\d]{2}\)) # song length .*? (newstar_dim\.gif)*] [2008-01-08T14:20:00+0000] GET from 193.120.94.35 I:['[01:51] Compyfox, Steve Pordon - Parasite Eve \'Primal Eyes (Tapeworm)\' (3:26)1 2 3 4 5 '] R:[(\[[\d]{2}:[\d]{2}\]).*?(.*?)\s-\s(.*?)(\([\d]{1,}:[\d]{2}\)).*?(newstar_dim\.gif)*.*?] [2008-01-08T14:22:13+0000] GET from 89.234.72.54 I:['[01:51] Compyfox, Steve Pordon - Parasite Eve \'Primal Eyes (Tapeworm)\' (3:26)1 2 3 4 5 '] R:[(\[[\d]{2}:[\d]{2}\]).*?(.*?)\s-\s(.*?)(\([\d]{1,}:[\d]{2}\))(.*?newstar_dim\.gif)*] [2008-01-08T19:43:49+0000] GET from 38.115.133.2 I:['Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'] R:[irefox/(\.*?)] [2008-01-08T19:44:11+0000] GET from 38.115.133.2 I:['Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'] R:[irefox/(\.*)] [2008-01-08T19:44:25+0000] GET from 38.115.133.2 I:['Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'] R:[irefox/(.*)] [2008-01-08T21:33:05+0000] GET from 75.73.210.53 I:['com_strip_970-1197137288.jpg'] R:[_(\d+)-] [2008-01-09T01:12:04+0000] GET from 68.187.145.14 I:['fklf;dajf;dajklfdaklf;djka;jfa {{template}}'] R:[\{\{] [2008-01-09T03:54:37+0000] GET from 203.143.236.98 I:['trunk/dev/products/wincollect/4.6/src/sql/spUpdate_queues.sql\r\n'] R:[/^.*\.sql$/i] [2008-01-09T03:55:12+0000] GET from 203.143.236.98 I:['trunk/dev/products/wincollect/4.6/src/sql/spUpdate_queues.sql\r\n'] R:[/A.*\.sql$/i] [2008-01-09T03:55:23+0000] GET from 203.143.236.98 I:['trunk/dev/products/wincollect/4.6/src/sql/spUpdate_queues.sql\r\n'] R:[/.*\.sql$/i] [2008-01-09T10:04:23+0000] GET from 83.206.37.61 I:["10/8/2007\t00:04:31\t8\t4\t577\tSecurity\tAUTORITE NT\\SYSTEM\t\tSNCRTD02\tService privil\xe9gi\xe9 appel\xe9 : \tServeur :\t\tNT Local Security Authority / Authentication Service \tService :\t\tLsaRegisterLogonProcess() \tNom de l'utilisateur principal :\tSYSTEM \tDomaine principal :\tAUTORITE NT \tN\xba de session principale :\t(0x0,0x3E7) \tNom de l'utilisateur client :\tSYSTEM \tDomaine client :\tAUTORITE NT \tN\xba de la session cliente :\t(0x0,0x3E7) \tPrivil\xe8ges :\tSeTcbPrivilege "] R:[Domaine principal :] [2008-01-09T11:31:50+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[HSV] [2008-01-09T12:02:27+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[== '*HSV*'] [2008-01-09T12:03:04+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[R:[HSV(.*)]] [2008-01-09T12:03:33+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[HSV] [2008-01-09T12:03:52+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[HSV] [2008-01-09T12:04:32+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[^--HSV] [2008-01-09T12:04:41+0000] GET from 62.119.51.98 I:['-HSV Controller Event-- Date/Time Stamp: 9-Jan-2008/12:23:10 StorageCell WWN - Name: 5000-1FE1-500C-A880 EVA6000 Eve'] R:[^-HSV] [2008-01-09T17:25:26+0000] GET from 67.101.65.26 I:['III'] R:[^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$] [2008-01-09T17:25:47+0000] GET from 67.101.65.26 I:['III'] R:[^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$] [2008-01-09T17:25:55+0000] GET from 67.101.65.26 I:['IIIa'] R:[^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$] [2008-01-09T19:11:33+0000] GET from 38.115.133.2 I:['

    @<a href="/detour1999">detour1999</a> thug2?

    '] R:[<] [2008-01-09T19:39:43+0000] GET from 38.115.133.2 I:['

    @<a href="/detour1999">detour1999</a> thug2?

    '] R:[<|<] [2008-01-10T03:28:27+0000] GET from 68.62.222.183 I:['Update #1420 - 01/03/08'] R:['Update'] [2008-01-10T09:52:03+0000] GET from 145.88.209.33 I:['lalalal'] R:[\w+] [2008-01-10T19:49:51+0000] GET from 71.141.161.187 I:['Lower Division Courses\r\n

    \r\n3.  Introduction to Symbolic Programming. (4)  \r\n\r\nRefer to computer science service course restrictions. Two hours of lecture, one hour of discussion, and two hours of scheduled programming laboratory per week.\r\nPrerequisites: High school algebra.'] R:[/

    \n(?:)?([^.\n]+).  (.*)\. (?:\(([^)]+)\))?.*/] [2008-01-11T09:10:36+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[/Error:\S] [2008-01-11T09:11:09+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ] [2008-01-11T09:12:36+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: \s+(.+?)\s+] [2008-01-11T09:12:44+0000] GET from 213.41.240.49 I:['-12564-234'] R:[[1-9]+] [2008-01-11T09:13:06+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^[1-9]+] [2008-01-11T09:13:16+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^-.[1-9]+] [2008-01-11T09:13:26+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^(-.[1-9]+)] [2008-01-11T09:14:28+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^(-.[1-9]+)(-([1-9]+)).] [2008-01-11T09:14:39+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^(-.[1-9]+)(-([1-9]+)).] [2008-01-11T09:15:01+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^(-.[1-9]+)(-([1-9]+)).$] [2008-01-11T09:16:03+0000] GET from 213.41.240.49 I:['-12564-234'] R:[^(-?[1-9]+)(-([1-9]+))?$] [2008-01-11T09:16:15+0000] GET from 213.41.240.49 I:['12564-234'] R:[^(-?[1-9]+)(-([1-9]+))?$] [2008-01-11T09:16:23+0000] GET from 213.41.240.49 I:['12564'] R:[^(-?[1-9]+)(-([1-9]+))?$] [2008-01-11T09:16:37+0000] GET from 213.41.240.49 I:['-12564'] R:[^(-?[1-9]+)(-([1-9]+))?$] [2008-01-11T09:26:24+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: \s+] [2008-01-11T09:26:32+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: \s] [2008-01-11T09:26:43+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ] [2008-01-11T09:26:57+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:['Error: System.out: '] [2008-01-11T09:40:30+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S)] [2008-01-11T09:40:52+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)] [2008-01-11T09:41:42+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s\[0-9]\s] [2008-01-11T09:41:50+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s\[0-9]] [2008-01-11T09:42:02+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s] [2008-01-11T09:42:58+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9])\s] [2008-01-11T10:01:38+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);] [2008-01-11T10:02:24+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*)] [2008-01-11T10:24:01+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*(\s\d\d/\d\d/\d*);] [2008-01-11T10:25:21+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*\s] [2008-01-11T10:26:12+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*] [2008-01-11T10:27:11+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*(\d\d/\d\d/\d*);] [2008-01-11T10:27:24+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*\d\d/\d\d/\d*;] [2008-01-11T10:27:38+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.* \d\d/\d\d/\d*;] [2008-01-11T10:28:00+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.* ] [2008-01-11T10:28:45+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*(\d\d/\d\d/\d*);] [2008-01-11T10:32:48+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[(\d{2}/\d{2}/\d{4});] [2008-01-11T10:32:55+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[\d{2}/\d{2}/\d{4};] [2008-01-11T10:43:36+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:\r\n\r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*] [2008-01-11T10:43:51+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\n\r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*] [2008-01-11T10:47:04+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\n\r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:33; virtualClient2; Server location not known - probable cause: exception raised on client; Notify:'] R:[Error: System.out: ([a-z]\S*)] [2008-01-11T11:35:19+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.* \d\d/\d\d/\d*;] [2008-01-11T11:35:31+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*] [2008-01-11T11:36:01+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:34; virtualClient1; Server location not known - probable cause: exception raised on '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*] [2008-01-11T11:36:49+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:34; virtualClient1; Server location not known - probable cause: exception raised on '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w*.*] [2008-01-11T11:37:10+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:14:34; virtualClient1; Server location not known - probable cause: exception raised on '] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w] [2008-01-11T11:39:47+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w] [2008-01-11T11:39:56+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out: ([a-z]\S*)\s([0-9]);\s-(\d*);\s\w] [2008-01-11T12:55:19+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w*] [2008-01-11T12:56:39+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w*] [2008-01-11T12:56:52+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w*\s] [2008-01-11T12:59:47+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*.+)] [2008-01-11T13:00:05+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*.+):] [2008-01-11T13:00:29+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+):] [2008-01-11T13:01:05+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w.:] [2008-01-11T13:01:11+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w.] [2008-01-11T13:01:29+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w.] [2008-01-11T13:01:52+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+)] [2008-01-11T13:03:00+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+?)] [2008-01-11T13:09:46+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w\.+?)] [2008-01-11T13:11:09+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w\W+?)] [2008-01-11T13:11:44+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w\W] [2008-01-11T13:11:55+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\w] [2008-01-11T13:12:17+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*\W+)] [2008-01-11T13:12:36+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*\W+?)] [2008-01-11T14:06:17+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\s+(.+?)\s+(.+?)\s+(.*)] [2008-01-11T14:07:49+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\s+(.+?)\s+(.+?)] [2008-01-11T14:09:01+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\s+(.+?)] [2008-01-11T14:10:39+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s\s+] [2008-01-11T14:11:53+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s] [2008-01-11T14:20:30+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*.+):] [2008-01-11T14:27:08+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*.+):] [2008-01-11T14:30:37+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w*.+):] [2008-01-11T14:31:49+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w+):] [2008-01-11T14:32:39+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+):] [2008-01-11T14:33:06+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+?):] [2008-01-11T14:34:15+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+?);] [2008-01-11T14:36:01+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);] [2008-01-11T14:37:51+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);] [2008-01-11T14:38:36+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);] [2008-01-11T14:39:50+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);] [2008-01-11T14:41:27+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);] [2008-01-11T14:42:52+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; \r\nError: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\n'] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);] [2008-01-11T14:43:42+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);] [2008-01-11T14:45:18+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);] [2008-01-11T14:46:04+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+(.+?)\s+(.*)] [2008-01-11T14:46:35+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+] [2008-01-11T14:47:06+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+(.+?)] [2008-01-11T14:47:46+0000] GET from 80.238.8.128 I:['Error: System.out: com.bskyb.bd.exceptions.BSBException; 2; -45999; Correspondence error: undefined problem; java.lang.NullPointerException; [[[ java.lang.NullPointerException ]]]; 10/01/2008 11:11:15; virtualClient1; Server location not known - probable cause: exception raised on \r\nError: System.out: com.bskyb.bd.exceptions.BSBException: no message supplied.; 5; 59013; BskybFulfilmentHelper - Current ViewingCard is empty and there is no outstanding card request. unreachable state achieved. ; null; null; 10/01/2008 11:11:13; ORB.thread.pool:24; '] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+(.+?)\r\n] [2008-01-11T15:47:50+0000] GET from 195.6.100.249 I:['#MEDIA test-media'] R:[^\s*#MEDIA (\S+)\s?(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:48:47+0000] GET from 195.6.100.249 I:['#MEDIA test-media "The alt text" '] R:[^\s*#MEDIA (\S+)\s?(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:50:34+0000] GET from 195.6.100.249 I:['#MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s?(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:51:07+0000] GET from 195.6.100.249 I:['#MEDIA test-media'] R:[^\s*#MEDIA (\S+)\s*(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:51:49+0000] GET from 195.6.100.249 I:['#MEDIA test-media'] R:[^\s*#MEDIA (\S+) +(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:52:17+0000] GET from 195.6.100.249 I:[' #MEDIA test-media'] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:52:27+0000] GET from 195.6.100.249 I:[' #MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:52:44+0000] GET from 195.6.100.249 I:[' #MEDIA test-media "alt text"'] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:52:51+0000] GET from 195.6.100.249 I:[' #MEDIA test-media "alt text" '] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:53:00+0000] GET from 195.6.100.249 I:['#MEDIA test-media "alt text" '] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:53:07+0000] GET from 195.6.100.249 I:['#MEDIA test-media "alt text"'] R:[^\s*#MEDIA (\S+)\s+(".*")?\s+(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:53:35+0000] GET from 195.6.100.249 I:['#MEDIA test-media "alt text"'] R:[^\s*#MEDIA (\S+)\s+(".*")?\s?(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:53:43+0000] GET from 195.6.100.249 I:['#MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s+(".*")?\s?(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:53:53+0000] GET from 195.6.100.249 I:['#MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s?(".*")?\s?(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T15:54:15+0000] GET from 195.6.100.249 I:[' #MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s?(".*")?\s?(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T17:25:49+0000] GET from 195.6.100.249 I:[' #MEDIA test-media '] R:[^\s*#MEDIA (\S+)\s?(".*")?\s?(\S+)?\s?(\S+)?\s?(\S+)?\s*$] [2008-01-11T17:44:04+0000] GET from 12.47.208.34 I:['update role a\r\n'] R:[s/update([^\n]+)/add\1/g] [2008-01-11T17:44:35+0000] GET from 12.47.208.34 I:['update role a\r\n'] R:[s/^update([^\n]+)/add\1/g] [2008-01-11T23:51:52+0000] GET from 12.24.60.12 I:['Resources/Generic/Base/Configuration/Paytables/AVV025432-003.config'] R:[(Resources/Generic/Base/Configuration/Paytables/)+(.)+(\.config)$] [2008-01-12T10:59:19+0000] GET from 204.15.20.248 I:['host {\r\n\thost_name=abacus001\r\n\tmodified_attributes=0\r\n\tcheck_command=check-host-alive\r\n\tevent_handler=\r\n\thas_been_checked=1\r\n\tshould_be_scheduled=0\r\n\tcheck_execution_time=0.170\r\n\tcheck_latency=0.000\r\n\tcheck_type=0\r\n\tcurrent_state=0\r\n\tlast_hard_state=0\r\n\tplugin_output=PING OK - Packet loss = 0%, RTA = 0.54 ms\r\n\tperformance_data=\r\n\tlast_check=1192142453\r\n\tnext_check=0\r\n\tcurrent_attempt=1\r\n\tmax_attempts=10\r\n\tstate_type=1\r\n\tlast_state_change=1192142443\r\n\tlast_hard_state_change=1192142443\r\n\tlast_time_up=1192142453\r\n\tlast_time_down=0\r\n\tlast_time_unreachable=0\r\n\tlast_notification=0\r\n\tnext_notification=0\r\n\tno_more_notifications=0\r\n\tcurrent_notification_number=0\r\n\tnotifications_enabled=1\r\n\tproblem_has_been_acknowledged=0\r\n\tacknowledgement_type=0\r\n\tactive_checks_enabled=1\r\n\tpassive_checks_enabled=1\r\n\tevent_handler_enabled=1\r\n\tflap_detection_enabled=1\r\n\tfailure_prediction_enabled=1\r\n\tprocess_performance_data=1\r\n\tobsess_over_host=1\r\n\tlast_update=1200133225\r\n\tis_flapping=0\r\n\tpercent_state_change=0.00\r\n\tscheduled_downtime_depth=0\r\n\t}\r\n'] R:[(?<=current_state=).*?] [2008-01-13T23:41:20+0000] GET from 202.68.80.34 I:['snowwhite and the seven dwarfs'] R:[(snowwhite and the seven dwarfs)] [2008-01-13T23:41:59+0000] GET from 202.68.80.34 I:['snowwhite and the seven dwarfs'] R:[(snowwhite and the seven dwarfs)!(the real story)] [2008-01-13T23:42:18+0000] GET from 202.68.80.34 I:['snowwhite and the seven dwarf'] R:[(snowwhite and the seven dwarfs)!(the real story)] [2008-01-13T23:42:43+0000] GET from 202.68.80.34 I:['snowwhite and the seven dwarfs'] R:[/bsnowwhite and the seven dwarfs/b/bthe real story/b] [2008-01-13T23:42:53+0000] GET from 202.68.80.34 I:['snowwhite and the seven dwarfss'] R:[/bsnowwhite and the seven dwarfs/b/bthe real story/b] [2008-01-14T13:49:50+0000] GET from 84.164.228.37 I:['brnches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:50:01+0000] GET from 84.164.228.37 I:['barnches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:50:16+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:50:58+0000] GET from 84.164.228.37 I:['lib/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:51:21+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:52:42+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:52:49+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:53:00+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(libs/?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:53:52+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/libs/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:54:05+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/libs]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:54:14+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^libs/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:54:28+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:55:53+0000] GET from 84.164.228.37 I:['/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:55:58+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:56:22+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^libs/(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:56:42+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^libs/(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:58:17+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:58:25+0000] GET from 84.164.228.37 I:['tags/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:58:38+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T13:59:18+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^[^/]?libs/(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:59:36+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:59:44+0000] GET from 84.164.228.37 I:['codesys/tags/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T13:59:55+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:00:22+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^[^/]?libs/(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:00:29+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^[^/]?libs/(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:00:58+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:01:10+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:01:27+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:02:39+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T14:03:09+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T14:03:19+0000] GET from 84.164.228.37 I:['tags/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T14:03:51+0000] GET from 84.164.228.37 I:['branches/1.0/lib/x.c'] R:[^(?Pbranches/[^/]+|trunk|tags)(?:/(?P.*))?$] [2008-01-14T14:04:30+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:04:38+0000] GET from 84.164.228.37 I:['/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:11:22+0000] GET from 84.164.228.37 I:['codesys/branches/1.0/x.c'] R:[^(?P[^/]+/[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T14:11:28+0000] GET from 84.164.228.37 I:['libs/codesys/branches/1.0/x.c'] R:[^(?P[^/]+/[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P.*))?$] [2008-01-14T15:31:01+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+(.+?)\r\n] [2008-01-14T15:31:22+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.+?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s(.*?);\s+(virtualClient.+?)\s+(.+?)\s+(.+?)] [2008-01-14T15:38:19+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out: ERROR\s(\w.+?)] [2008-01-14T15:38:38+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\sERROR\s(\w.+?)] [2008-01-14T15:38:53+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s.*?ERROR\s(\w.+?)] [2008-01-14T15:39:03+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s] [2008-01-14T15:39:55+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s] [2008-01-14T15:40:07+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s.*?] [2008-01-14T15:40:37+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s.*?(-\d.*?)] [2008-01-14T15:41:10+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s.*?(-\d.*?)\s.*?] [2008-01-14T15:42:57+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s.*?(-\d.*?)\s.*?(\w.*?\s\w.*?\d.*?:\d.*?:\d.*?\w.*?\d.*?)] [2008-01-14T15:46:01+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s(\w.*?)\s.*?(-\d.*?)\s.*?(\w.*?\s\w.*?\d.*?:\d.*?:\d.*?\w.*?\d.*?)\s(virtualClient.+?)\s+(.+?)\s+(.+?)\s+(.*)] [2008-01-14T15:53:07+0000] GET from 80.238.8.128 I:['Error: System.out: ERROR -204 Mon Jan 14 12:04:40 GMT 2008 virtualClient1 alanth2002 com.chordiant.service.clientagent.BaseSmartStub.baseProcessRequestObject Exception occured forwarding request Notify:'] R:[Error: System.out:\s\w.*?\s.*?(-\d.*?)\s.*?(\w.*?\s\w.*?\d.*?:\d.*?:\d.*?\w.*?\d.*?)\s(virtualClient.+?)\s+(.+?)\s+(.+?)\s+(.*)] [2008-01-14T16:36:35+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(-\d.*?)"] [2008-01-14T16:36:43+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?] [2008-01-14T16:37:45+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S*.?)\r\n] [2008-01-14T16:37:58+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S.?)\r\n] [2008-01-14T16:38:04+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S.*?)\r\n] [2008-01-14T16:38:19+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S)\r\n] [2008-01-14T16:38:26+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S)] [2008-01-14T16:38:33+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S.*?)] [2008-01-14T16:39:14+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S*?)] [2008-01-14T16:39:41+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S.*?)\s] [2008-01-14T16:39:52+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S.*?)\s] [2008-01-14T16:40:02+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S*?)\s] [2008-01-14T16:40:17+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S*?)] [2008-01-14T16:40:29+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\S)] [2008-01-14T16:41:48+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\w.*?)\s] [2008-01-14T16:41:56+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\w.*?)] [2008-01-14T16:43:30+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\w*?)] [2008-01-14T16:43:42+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\w*)] [2008-01-14T16:43:58+0000] GET from 80.238.8.128 I:['System.out: User:- n0001'] R:[System.out:\s\w.*?\s.*?(\w*)\s] [2008-01-14T16:49:03+0000] GET from 80.238.8.128 I:['System.out: 14/01/2008 12:04:59 Starting iteration:- 1'] R:[System.out:\s(\d.*?:\d.*?:\d.*?\w.*?\d.*?)] [2008-01-14T16:49:40+0000] GET from 80.238.8.128 I:['System.out: 14/01/2008 12:04:59 Starting iteration:- 1'] R:[System.out:\s(\d.*?/\d.*?/\d.*?)\s] [2008-01-14T16:50:43+0000] GET from 80.238.8.128 I:['System.out: 14/01/2008 12:04:59 Starting iteration:- 1'] R:[System.out:\s(\d.*?/\d.*?/\d.*?\s\d.*?:\d.*?:\d.*?)\sStarting iteration:- (\d.*?)] [2008-01-14T16:53:55+0000] GET from 80.238.8.128 I:['System.out: 14/01/2008 12:04:59 Ending iteration:- 1'] R:[System.out:\s(\d.*?/\d.*?/\d.*?\s\d.*?:\d.*?:\d.*?)\sEnding iteration:- (\d.*?)] [2008-01-14T16:54:06+0000] GET from 80.238.8.128 I:['System.out: 14/01/2008 12:04:59 Ending iteration:- 1'] R:[System.out:\s(\d.*?/\d.*?/\d.*?\s\d.*?:\d.*?:\d.*?)\sEnding iteration:- (\d.*?)] [2008-01-15T03:01:43+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>[^\n<>])</\.+<url>http://www\.youtube\.com/watch\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:02:51+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[http://www\.youtube\.com/watch\?v=(?P[^\n<>]+)<] [2008-01-15T03:03:20+0000] GET from 24.207.134.133 I:['\r\n10'] R:[.*v=(?P[^\n<>]+)<] [2008-01-15T03:04:12+0000] GET from 24.207.134.133 I:['\r\n10'] R:[youtube.com/?v=(?P[^\n<>]+)<] [2008-01-15T03:04:19+0000] GET from 24.207.134.133 I:['\r\n10'] R:[youtube.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:04:27+0000] GET from 24.207.134.133 I:['\r\n10'] R:[youtube.com/.v=(?P[^\n<>]+)<] [2008-01-15T03:04:46+0000] GET from 24.207.134.133 I:['\r\n10'] R:[http://www\.youtube\.com/.v=(?P[^\n<>]+)<] [2008-01-15T03:04:57+0000] GET from 24.207.134.133 I:['\r\n10'] R:[http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:09:23+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>[^\n<>]).+http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:09:31+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>[^\n<>])<.+<url>http://www\.youtube\.com/\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:09:45+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[(?P<title>[^<>])<.+<url>http://www\.youtube\.com/\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:09:53+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[(?P<title>[^<])<.+<url>http://www\.youtube\.com/\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:10:12+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[(?P<title>[^<])<.*<url>http://www\.youtube\.com/\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:10:26+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[(?P<title>.*)<.*<url>http://www\.youtube\.com/\?v=(?P<url>[^\n<>]+)<] [2008-01-15T03:11:07+0000] GET from 24.207.134.133 I:['<?xml version="1.0" encoding="utf-8"?>\r\n<ut_response status="ok"><video_list><total>10</total><video><author>Wikk</author><id>OKcDa0Kp2K8</id><title>Move Your Feet - Junior Senior1994.852548Junior Senior\'s music video for Move Your Feet. Enjoy!70958111517899741347Move Your Feet Junior Senior Musichttp://www.youtube.com/?v=OKcDa0Kp2K8http://img.youtube.com/vi/OKcDa0Kp2K8/default.jpgok'] R:[(?P<title>[^<>]).+http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:11:19+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>[^<>]).*http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:11:38+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>.*).*http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T03:13:43+0000] GET from 24.207.134.133 I:['\r\n10'] R:[(?P<title>[^<>\r\n]+).*http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T05:19:57+0000] GET from 24.207.134.133 I:[''] R:[(?P<title>[^\n<>]+).*(){1}http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T05:20:23+0000] GET from 24.207.134.133 I:[''] R:[http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T05:20:48+0000] GET from 24.207.134.133 I:[''] R:[(?P<title>[^\n<>]+).*(){1}http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T05:21:47+0000] GET from 24.207.134.133 I:[''] R:[(?P<title>[^<>]+).*(){1}http://www\.youtube\.com/\?v=(?P[^\n<>]+)<] [2008-01-15T05:32:05+0000] GET from 24.207.134.133 I:[''] R:[(?P<title>[^<>]+).*(){1}http://www\.youtube\.com/\?v=(?P[^<>]+)<] [2008-01-15T05:38:58+0000] GET from 24.207.134.133 I:[''] R:[(?P<title>[^<]+)(<[\w_]+>.*){8}http://www\.youtube\.com/\?v=(?P[^<]+)<] [2008-01-15T07:12:44+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{()}"] [2008-01-15T07:15:20+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{] [2008-01-15T07:15:37+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{()] [2008-01-15T07:15:44+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{(.)] [2008-01-15T07:15:54+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{(.*)] [2008-01-15T07:16:07+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{(.*)}"] [2008-01-15T07:19:03+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]+.*)}"] [2008-01-15T07:19:17+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]8.*)}"] [2008-01-15T07:19:58+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]-[\dA-Fa-f]-[\dA-Fa-f]-[\dA-Fa-f]-[\dA-Fa-f])}"] [2008-01-15T07:20:14+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*)}"] [2008-01-15T07:22:21+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]{8}-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*)}"] [2008-01-15T07:22:28+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]{7}-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*)}"] [2008-01-15T07:22:33+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]{8}-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*-[\dA-Fa-f]*)}"] [2008-01-15T07:22:54+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]{8}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{8})}"] [2008-01-15T07:23:12+0000] GET from 145.88.209.33 I:['ProjectGUID="{47957C06-0E47-4F03-A128-767C26BE1CCE}"'] R:[ProjectGUID="{([\dA-Fa-f]{8}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{4}-[\dA-Fa-f]{12})}"] [2008-01-15T09:30:42+0000] GET from 145.88.209.33 I:['\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t 5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w)\<.+\>(\w+)] [2008-01-16T13:55:03+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)\<.+\>(\w+)] [2008-01-16T13:55:16+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>] [2008-01-16T13:55:31+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)\<.+\>(\w+)] [2008-01-16T13:55:46+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)\<.+\>(\w+)] [2008-01-16T13:56:00+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)] [2008-01-16T13:56:01+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)] [2008-01-16T13:56:12+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>] [2008-01-16T13:56:13+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>] [2008-01-16T13:56:37+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)] [2008-01-16T13:56:37+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)] [2008-01-16T13:57:06+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)\<.+\>(\w+)] [2008-01-16T13:58:03+0000] GET from 145.88.209.33 I:['
    5 19 0.93 tgtacgtgtacgtac'] R:[\s*(\d+)\s+(\d+)\s+(\d\.\d+)\s+(\w+)\<.+\>(\w+)\<.+\>(\w+)\<.+\>(\w+)] [2008-01-16T15:29:19+0000] GET from 137.194.26.97 I:['GET /image-et-son/culture/ HTTP/1.0'] R:[/\d+/\w+/] [2008-01-16T15:30:01+0000] GET from 137.194.26.97 I:['GET /image-et-son/culture/ HTTP/1.0'] R:[GET /\d+/\w+/ HTTP/1.0] [2008-01-17T14:42:59+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[>http://www.arana.com/http://www.arana.com/'] R:[>.] [2008-01-17T14:44:12+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[.] [2008-01-17T14:47:18+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[>(?P.)] [2008-01-17T14:47:53+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[(?P.)] [2008-01-17T14:48:17+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[href=(?P.)>] [2008-01-17T14:48:26+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[href\=(?P.)\>] [2008-01-17T14:48:36+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[(?P.)] [2008-01-17T14:48:42+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[(?P.)>] [2008-01-17T14:49:03+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[=(?P.*)>] [2008-01-17T14:49:30+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[=(?P.*?)>] [2008-01-17T14:49:41+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[href=(?P.*?)>] [2008-01-17T14:50:33+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[href=(?P.*?)>] [2008-01-17T14:50:34+0000] GET from 58.174.1.174 I:['http://www.arana.com/'] R:[href=(?P.*?)>] [2008-01-17T16:15:09+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[\w+(\d+).\w+] [2008-01-17T16:15:15+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[\w+(\d+)\.\w+] [2008-01-17T16:15:29+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[(\w+)(\d+)(\.)(\w+)] [2008-01-17T16:16:05+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[(\w+)(\d+)(\.)(\w+)] [2008-01-17T16:17:04+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[(\w+)(20\d+)(\.)(\w+)] [2008-01-17T16:17:21+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[(\w+)(2\d+)(\.)(\w+)] [2008-01-17T16:18:41+0000] GET from 145.88.209.33 I:['TFBindRef200801171525411187.html'] R:[([^0-9]+)(\d+)(\.)(\w+)] [2008-01-17T18:14:23+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.\r\n Median sequence conservation: 3.54\r\n Sequences represented at this position:4'] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:17:33+0000] GET from 145.88.209.33 I:['\r\n

    \r\nPredictions\r\n

    \r\n
    \r\nSubstitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.\r\n    Median sequence conservation: 3.54\r\n    Sequences represented at this position:4\r\n\r\n
    '] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:17:55+0000] GET from 145.88.209.33 I:['\r\n

    \r\nPredictions\r\n

    \r\n
    \r\nSubstitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.\r\n    Median sequence conservation: 3.54\r\n    Sequences represented at this position:4\r\n\r\n
    '] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w)] [2008-01-17T18:25:52+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:26:05+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:26:45+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:26:45+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T18:26:52+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s(\w)] [2008-01-17T18:27:01+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos] [2008-01-17T18:27:11+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s] [2008-01-17T18:27:12+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s\w+\s] [2008-01-17T18:27:22+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d)\s] [2008-01-17T18:27:35+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20.'] R:[.+pos\s(\d+)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-17T21:35:29+0000] GET from 66.11.117.140 I:[' test
    Test.com Web Based Testing Software  Easily Author and Administer your own Training Content, Tests, ...  www.test.com/
    NerdTests.com Fun Tests - Nerd Quiz  Determine your Nerd Quotient (NQ)! Quiz Brought to you by NerdTests.com.  www.nerdtests.com/ft_nq.php
    Personality test based on Jung - Myers-Briggs typology  Online test based on Jung-Myers-Briggs typology provides your personality ...  www.humanmetrics.com/cgi-win/JTypes...
    Personality Disorder Test - Personality Test  This is a test to help determine if you have a personality disorder.  www.4degreez.com/misc/personality_d...
    (.*?)(.*?)] [2008-01-17T21:37:19+0000] GET from 66.11.117.140 I:['test'] R:[\d] [2008-01-17T21:41:11+0000] GET from 66.11.117.140 I:['Test.com Web Based Testing Software  Easily Author and Administer your own Training Content, Tests, ...  www.test.com/'] R:['(.*?)(.*?)] [2008-01-18T03:09:42+0000] GET from 70.251.230.15 I:['1d,09,92,80808080,000000e6,000000ea,002b,00,01,02,00,▲☺▲☺▲\xb7[23:13:04] ▲☺The Mouse Bat misses Guzen.⌂1'] R:[\s[A-Z][a-z]+\.] [2008-01-18T03:12:10+0000] GET from 68.187.145.14 I:['{{WPCHINA|class=stub}}'] R:[class=stub] [2008-01-18T20:05:36+0000] GET from 64.132.84.148 I:['testname_a0.asm.1'] R:[\w+_(\a+)(\d+)] [2008-01-18T20:05:52+0000] GET from 64.132.84.148 I:['testname_a0.asm.1'] R:[\w+] [2008-01-18T20:07:47+0000] GET from 64.132.84.148 I:['testname_a0.asm.1'] R:[\w+_(\w+)(\d+)] [2008-01-18T20:09:55+0000] GET from 64.132.84.148 I:['testname_a0.asm.1'] R:[\w+_(\w+)] [2008-01-18T20:16:22+0000] GET from 64.132.84.148 I:['testname_a0.asm.1'] R:[\w+_(\w+)()] [2008-01-18T21:05:51+0000] GET from 64.132.84.56 I:['testname_a.asm.1'] R:[\w+_(\w+)()] [2008-01-18T21:06:05+0000] GET from 64.132.84.56 I:['testname_a.asm.1'] R:[\w+_(\w+)()] [2008-01-20T13:54:43+0000] GET from 212.45.53.122 I:['flop'] R:[f(.*)p] [2008-01-21T12:22:58+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20'] R:[.+pos\s(\d+)\s\w+\s(\w)\s\w+\s(\w).+(.+).+score\sof\s(\d+\.\d+)] [2008-01-21T12:23:38+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20'] R:[.+pos\s(\d+)\s\w+\s(\w)\s\w+\s(\w).+\s(.+)\s.+score\sof\s(\d+\.\d+)] [2008-01-21T12:24:06+0000] GET from 145.88.209.33 I:['Substitution at pos 14 from W to P is predicted to be TOLERATED with a score of 0.20'] R:[.+pos\s(\d+)\s\w+\s(\w)\s\w+\s(\w).+be\s(.+)\swith.+score\sof\s(\d+\.\d+)] [2008-01-21T13:02:53+0000] GET from 145.88.209.33 I:['Alignment in FASTA format (for modification)
    The alignment taken from PSIBLAST is returned in msf format.
    Note: Xes are placeholders at the beginning and end of sequences. While - means a gap in the alignment an X means a lack of information such as a partial alignment or incomplete sequence and do not contribute to the prediction.
    Please check the sequences that have been chosen. If the sequences are too diverged from your query or the alignment is questionable, we suggest you modify the fasta-formatted file above and resubmit.


    SIFT amino acid predictions for:
    Positions 1 to 100\r\n\r\n'] R:[Alignment in FASTA format (for modification)
    The alignment taken from PSIBLAST is returned in msf format.
    Note: Xes are placeholders at the beginning and end of sequences. While - means a gap in the alignment an X means a lack of information such as a partial alignment or incomplete sequence and do not contribute to the prediction.
    Please check the sequences that have been chosen. If the sequences are too diverged from your query or the alignment is questionable, we suggest you modify the fasta-formatted file above and resubmit.


    SIFT amino acid predictions for:
    Positions 1 to 100\r\n\r\n'] R:[Alignment in FASTA format (for modification)
    The alignment taken from PSIBLAST is returned in msf format.
    Note: Xes are placeholders at the beginning and end of sequences. While - means a gap in the alignment an X means a lack of information such as a partial alignment or incomplete sequence and do not contribute to the prediction.
    Please check the sequences that have been chosen. If the sequences are too diverged from your query or the alignment is questionable, we suggest you modify the fasta-formatted file above and resubmit.


    SIFT amino acid predictions for:
    Positions 1 to 100\r\n\r\n'] R:[A HREF="(.+)"\s+TARGET.+] [2008-01-21T13:08:05+0000] GET from 145.88.209.33 I:['A HREF="/sift-bin/catfile_notitle.csh?../tmp/3456.alignedfasta+PRE" TARGET=_blank>Alignment in FASTA format (for modification)
    The alignment taken from PSIBLAST is returned in msf format.
    Note: Xes are placeholders at the beginning and end of sequences. While - means a gap in the alignment an X means a lack of information such as a partial alignment or incomplete sequence and do not contribute to the prediction.
    Please check the sequences that have been chosen. If the sequences are too diverged from your query or the alignment is questionable, we suggest you modify the fasta-formatted file above and resubmit.


    SIFT amino acid predictions for:
    Positions 1 to 100\r\n\r\n'] R:[A HREF="(.+)"\s+TARGET=_blank>Alignment in FASTA format.+] [2008-01-21T13:12:10+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*[3].+\:] [2008-01-21T13:12:22+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*[3].+\:(.+)] [2008-01-21T13:12:31+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*[3]] [2008-01-21T13:12:37+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*] [2008-01-21T13:12:46+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*\*\*] [2008-01-21T13:13:35+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*\*\*] [2008-01-21T13:13:42+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}] [2008-01-21T13:13:49+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{2}] [2008-01-21T13:13:59+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:] [2008-01-21T13:14:22+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:(.+)] [2008-01-21T13:15:11+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:\s+(.+)] [2008-01-21T13:15:22+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:\s+(.+)\.] [2008-01-21T13:15:55+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:\s+(.+),\.] [2008-01-21T13:38:48+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:\s+(.+),\.'] [2008-01-21T13:38:55+0000] GET from 145.88.209.33 I:['*** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.\r\n'] R:[\*{3}.+\:\s+(.+),\.] [2008-01-21T13:39:32+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[\*{3}.+\:\s+(.+),\.] [2008-01-21T13:39:44+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-21T13:40:12+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-21T17:09:42+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-22T07:54:54+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-23T08:24:10+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-23T18:06:03+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-23T19:46:27+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-23T19:46:48+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+(_)(\w+)(\d+)] [2008-01-23T19:48:30+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w_*] [2008-01-23T19:48:35+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_*] [2008-01-23T19:48:41+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_*] [2008-01-23T19:49:17+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_\w\.\w+.\d] [2008-01-23T19:50:26+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w)+\.\w+.\d] [2008-01-23T19:50:33+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_(\w)+\.\w+.\d] [2008-01-23T19:50:49+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_(\w)+\.] [2008-01-23T19:51:14+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w\.\d] [2008-01-23T19:51:20+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+] [2008-01-23T19:51:40+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-23T19:53:07+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[^\w+_(\w+)(\d+)] [2008-01-23T19:53:14+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w+)(\d+)$] [2008-01-23T19:53:19+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-23T19:53:31+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:53:31+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:53:59+0000] GET from 64.132.84.56 I:['ksjfklsj_a23423.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:54:13+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:54:22+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+] [2008-01-23T19:54:25+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+] [2008-01-23T19:54:29+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+] [2008-01-23T19:54:35+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w] [2008-01-23T19:54:48+0000] GET from 64.132.84.56 I:['ksjfklsj_a.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:57:37+0000] GET from 64.132.84.56 I:['ksjfklsj_a3423423.prt.1'] R:[_\w+\.\w+\.\d+$] [2008-01-23T19:58:04+0000] GET from 64.132.84.56 I:['ksjfklsj_a3423423.prt.1'] R:[_[a-zA-Z]+\.\w+\.\d+$] [2008-01-23T19:58:09+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd.prt.1'] R:[_[a-zA-Z]+\.\w+\.\d+$] [2008-01-23T19:58:47+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd.prt.1'] R:[_([a-zA-Z]|([a-zA-Z]|\d)+)+\.\w+\.\d+$] [2008-01-23T19:58:51+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[_([a-zA-Z]|([a-zA-Z]|\d)+)+\.\w+\.\d+$] [2008-01-23T20:03:16+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?=_)([a-zA-Z]|([a-zA-Z]|\d)+)+\.\w+\.\d+$] [2008-01-23T20:03:22+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?=_)([a-zA-Z]|([a-zA-Z]|\d)+)+\.\w+\.\d+$] [2008-01-23T20:04:35+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)([a-zA-Z]|([a-zA-Z]|\d)+)+\.\w+\.\d+$] [2008-01-23T20:06:12+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)[a-zA-Z]+(?=\d*\.\w+\.\d+)$] [2008-01-23T20:06:52+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)[a-zA-Z]+(?=\d*\.\w+\.\d+)] [2008-01-23T20:08:31+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-23T20:08:48+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)[a-zA-Z]+(?=\d*\.\w+\.\d+)] [2008-01-23T20:09:43+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?=_[a-zA-Z]+)\d*(?=\.\w+\.\d+)] [2008-01-23T20:10:12+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)[a-zA-Z]+(?=\d*\.\w+\.\d+)] [2008-01-23T20:11:17+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-23T20:11:45+0000] GET from 64.132.84.56 I:['ksjfklsj_sfsd23432.prt.1'] R:[(?<=\.)\d+$] [2008-01-23T20:12:19+0000] GET from 64.132.84.56 I:['sfsd23432'] R:[^[a-zA-Z]] [2008-01-23T20:12:24+0000] GET from 64.132.84.56 I:['sfsd23432'] R:[^[a-zA-Z]+] [2008-01-23T20:12:38+0000] GET from 64.132.84.56 I:['sfsd23432'] R:[\d+$] [2008-01-24T08:26:34+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-24T14:21:12+0000] GET from 64.132.84.56 I:['sldfjklsjfl_sfsd23432.prt.4434'] R:[\w+_(\w+)(\d+)] [2008-01-24T14:21:39+0000] GET from 64.132.84.56 I:['sldfjklsjfl_sfsd23432.prt.4434'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-24T14:21:39+0000] GET from 64.132.84.56 I:['sldfjklsjfl_sfsd23432.prt.4434'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-24T14:22:05+0000] GET from 64.132.84.56 I:['600004_mold_06.prt.1'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-24T14:22:22+0000] GET from 64.132.84.56 I:['600004_mold_06.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T14:22:49+0000] GET from 64.132.84.56 I:['600004_mold_as06.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T14:24:31+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T14:28:11+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[(?<=\.)\d+$] [2008-01-24T14:31:32+0000] GET from 64.132.84.56 I:['600362_06_tube_a7.prt.1'] R:[(?<=\.)\d+$] [2008-01-24T14:31:43+0000] GET from 64.132.84.56 I:['600362_06_tube_a7.prt.1'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-24T14:31:54+0000] GET from 64.132.84.56 I:['600362_06_tube_a7.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T14:33:14+0000] GET from 64.132.84.56 I:['a7'] R:[^[a-zA-Z]+] [2008-01-24T14:33:33+0000] GET from 64.132.84.56 I:['a7'] R:[\d+$] [2008-01-24T14:33:39+0000] GET from 64.132.84.56 I:['a7'] R:[\d+$] [2008-01-24T14:44:19+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[(?<=_)(\w)+(?=\.\w+\.\d+)] [2008-01-24T14:44:36+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T14:44:58+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-24T20:22:53+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T20:23:50+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-24T20:23:55+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-24T20:24:15+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[[a-zA-Z0-9]+_(\w+)(\d+)] [2008-01-24T20:25:19+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)\.] [2008-01-24T20:25:48+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)\..*] [2008-01-24T20:25:58+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[\w+_(\w+)(\d+)] [2008-01-24T20:30:31+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[\w+_(\w+)(\d+)] [2008-01-24T20:30:39+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[\w+_(\w+)(\d+)$] [2008-01-24T20:30:59+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[\w+_(\w+)(\d*)$] [2008-01-24T20:31:06+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[\w+_(\w+)(\d*)$] [2008-01-24T20:32:29+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[(\w+)_(\w+)(\d*)$] [2008-01-24T20:32:41+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[(\w+)_(\w+)()$] [2008-01-24T20:35:06+0000] GET from 64.132.84.209 I:['600362_06_tube_a'] R:[(\w+)_(\w+)()\..*$] [2008-01-24T20:35:21+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_(\w+)()\..*$] [2008-01-24T20:35:35+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_(\w+)()\..*$] [2008-01-24T20:35:44+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_(\w+)()\..*] [2008-01-24T21:09:48+0000] GET from 64.132.84.209 I:['600362_06_tube_a0.prt.1'] R:[(\w+)_(\w+)(\d+)$] [2008-01-24T21:10:04+0000] GET from 64.132.84.209 I:['600362_06_tube_a0.prt.1'] R:[(\w+)_(\w+)(\d+)\..*$] [2008-01-24T21:10:13+0000] GET from 64.132.84.209 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_(\w+)(\d+)\..*$] [2008-01-24T21:10:58+0000] GET from 64.132.84.209 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z])(\d+)\..*$] [2008-01-24T21:11:09+0000] GET from 64.132.84.209 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)(\d+)\..*$] [2008-01-24T21:12:08+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_([a-zA-Z]+)()\..*$ ] [2008-01-24T21:12:29+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_([a-zA-Z]+)()\..*$ ] [2008-01-24T21:12:38+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_(\w+)()\..*$ ] [2008-01-24T21:12:52+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_(\w+)()\..*$] [2008-01-24T21:13:04+0000] GET from 64.132.84.209 I:['600362_06_tube_a.prt.1'] R:[(\w+)_([a-zA-Z]+)()\..*$] [2008-01-24T21:17:13+0000] GET from 64.132.84.56 I:['600362_06_tube_a.prt.1'] R:[(\w+)_([a-zA-Z]+)()\..*$] [2008-01-24T21:17:51+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)(\d+)\..*$] [2008-01-24T21:20:44+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)([a-zA-Z]+|[0-9]+)(?=\.\w+\.\d+)] [2008-01-24T21:20:56+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)([a-zA-Z]+|[0-9]+)+(?=\.\w+\.\d+)] [2008-01-24T21:21:43+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)[a-zA-Z]+[0-9]*(?=\.\w+\.\d+)] [2008-01-24T21:22:01+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)[a-zA-Z]+[0-9]*(?=\.\w+\.\d+)] [2008-01-24T21:22:19+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)[a-zA-Z]+[0-9]*(?=\.\w+\.)\d+$] [2008-01-24T21:22:39+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)[a-zA-Z]+[0-9]*\.\w+\.\d+$] [2008-01-24T21:22:55+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)([a-zA-Z]+)[0-9]*\.\w+\.\d+$] [2008-01-24T21:23:12+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:23:34+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w)(?<=_)([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:23:46+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w)([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:23:53+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:25:31+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)()\..*$] [2008-01-24T21:25:48+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)(\d+)\..*$ ] [2008-01-24T21:25:53+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)(\d+)\..*$ ] [2008-01-24T21:26:26+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(?<=_)([a-zA-Z0-9])+(?=\.\w+\.\d+)] [2008-01-24T21:26:37+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:27:05+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:27:30+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:29:48+0000] GET from 64.132.84.56 I:['600362_06_tube_aa1.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:30:03+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:33:55+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?=>_))((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:34:07+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?<=_))((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:34:25+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?=_))((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:35:30+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?=_))((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:35:56+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?=_)$)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:36:02+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:36:59+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)(?=_)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:37:06+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+(?=_))((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:37:25+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:37:38+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:37:52+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.3'] R:[^(\w+)((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:39:10+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[(\w+)_([a-zA-Z]+)(\d+)\..*$] [2008-01-24T21:39:52+0000] GET from 64.132.84.56 I:['600362_06_tube_aa01.prt.1'] R:[^(\w+)_([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:40:08+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.1'] R:[^(\w+)_([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:42:04+0000] GET from 64.132.84.56 I:['600362_06_tube_aa.prt.1'] R:[^(\w+)_([a-zA-Z]*)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T21:42:11+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_([a-zA-Z]*)([0-9]*)\.\w+\.(\d+)$] [2008-01-24T23:12:58+0000] GET from 68.187.145.14 I:['127.0.1.0'] R:[\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b] [2008-01-24T23:21:14+0000] GET from 68.187.145.14 I:['goddess'] R:[(g|G)o(d|ddess)(s|es)] [2008-01-25T09:35:36+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-25T10:27:43+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-25T14:50:14+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_((?<=_)[a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-25T14:55:22+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_((?<=_)[a-zA-Z]+(?=([0-9]\.+|\.)))([0-9]*)\.\w+\.(\d+)$] [2008-01-25T14:55:36+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_((?<=_)[a-zA-Z]+(?=[0-9]\.+|\.))([0-9]*)\.\w+\.(\d+)$] [2008-01-25T14:56:17+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_(?<=_)[a-zA-Z]+(?=[0-9]\.+|\.)([0-9]*)\.\w+\.(\d+)$] [2008-01-25T14:57:13+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_([a-zA-Z]+)([0-9]*)\.\w+\.(\d+)$] [2008-01-26T16:24:25+0000] GET from 88.70.242.48 I:['{Name}{342342}'] R:[{(\d)*}] [2008-01-26T16:25:33+0000] GET from 88.70.242.48 I:['{Name}{342342}'] R:[{(.*)}{(\d)}] [2008-01-26T16:25:42+0000] GET from 88.70.242.48 I:['{Name}{342342}'] R:[{(.*)}{(\d*)}] [2008-01-26T16:27:01+0000] GET from 88.70.242.48 I:['{Name}{342342}\r\n{Name}{342342}\r\n\r\n'] R:[{(.*)}{(\d*)}] [2008-01-26T16:27:08+0000] GET from 88.70.242.48 I:['{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[{(.*)}{(\d*)}] [2008-01-26T16:27:15+0000] GET from 88.70.242.48 I:['sdf{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[{(.*)}{(\d*)}] [2008-01-26T16:27:25+0000] GET from 88.70.242.48 I:['sdf{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[.*{(.*)}{(\d*)}.*] [2008-01-26T17:28:40+0000] GET from 88.70.242.48 I:['sdf{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[.*{(.*)}{(\d*)}.*] [2008-01-26T17:30:06+0000] GET from 88.70.242.48 I:['sdf{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[{(.*)}{(\d*)}] [2008-01-26T17:32:09+0000] GET from 88.70.242.48 I:['sdf{Name}{342342}sdf\r\n{Name}{342342}dfs\r\n\r\n'] R:[{(.*)}{(\d*)}] [2008-01-26T17:35:04+0000] GET from 88.70.242.48 I:['asda{Name}{1212}sadas'] R:[\{(.*)\}\{(\d*)\}] [2008-01-28T01:44:16+0000] GET from 72.195.132.41 I:['dashboardDB.ExecuteNonQuery("UPDATE_ACTIVATE_OBLIGATION_SP",borrowerObligationId,user);'] R:[as] [2008-01-28T08:20:34+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-28T13:54:57+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(\w+)_([a-zA-Z]*)([0-9]*)\.\w+\.(\d+)$] [2008-01-28T16:00:12+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[(?P(\w+))] [2008-01-28T16:00:53+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(?P(\w+))_(?P([a-zA-Z]+))(?P([0-9]*))\.\w+\.(?P(\d+))$] [2008-01-28T16:52:29+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(?P\w+)_(?P[a-zA-Z]+)(?P[0-9]*)\.\w+\.(?P\d+)$] [2008-01-28T16:54:43+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(?P\w+)_(?P[a-zA-Z]+)(?P[0-9]*)\.\w+\.(?P\d+)$] [2008-01-28T23:23:27+0000] GET from 128.135.125.241 I:[''] R:[<\?\.\?>] [2008-01-28T23:23:56+0000] GET from 128.135.125.241 I:[''] R:[<\?\.\n\#] [2008-01-28T23:24:42+0000] GET from 128.135.125.241 I:[''] R:[<\?\n\#'] [2008-01-28T23:25:06+0000] GET from 128.135.125.241 I:[''] R:[range\(] [2008-01-29T10:31:40+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-29T17:06:32+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-29T18:05:39+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[^(?P\w+)_(?P[a-zA-Z]+)(?P[0-9]*)\.\w+\.(?P\d+)$] [2008-01-29T18:07:01+0000] GET from 64.132.84.56 I:['600362_06_tube.prt.1'] R:[(?P)(?P)\.\w+\.(?P\d+)$] [2008-01-29T20:41:09+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-29T22:26:07+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-30T00:03:08+0000] GET from 81.56.255.213 I:['page/jura/\r\n'] R:[^page/(?P\w+)/$] [2008-01-30T00:04:11+0000] GET from 81.56.255.213 I:['page/jura/'] R:[^page/(?P\w+)/$] [2008-01-30T00:04:22+0000] GET from 81.56.255.213 I:['page/jura-histoire/'] R:[^page/(?P\w+)/$] [2008-01-30T00:04:45+0000] GET from 81.56.255.213 I:['page/jura/'] R:[^page/(?P\w+)/$] [2008-01-30T00:05:31+0000] GET from 81.56.255.213 I:['page/jura-histoire/'] R:[^page/(?P\w+)/$] [2008-01-30T00:05:49+0000] GET from 81.56.255.213 I:['page/jura-histoire/'] R:[^page/(?P\W+)/$] [2008-01-30T00:06:10+0000] GET from 81.56.255.213 I:['page/jura/'] R:[^page/(?P\w+)/$] [2008-01-30T02:26:17+0000] GET from 157.238.154.18 I:['foo'] R:[\w] [2008-01-30T09:46:05+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[bin\\java] [2008-01-30T09:46:40+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[bin\\java.*(-Duser.language=en)] [2008-01-30T09:46:49+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java).*(-Duser.language=en)] [2008-01-30T09:47:14+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java).*(-Duser.language=en)!?] [2008-01-30T09:47:26+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java).*(?!-Duser.language=en)] [2008-01-30T09:48:03+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java).*(?!user.language=en)] [2008-01-30T09:48:16+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[bin\\java.+(?!user.language=en)] [2008-01-30T09:48:27+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+)(?!user.language=en)] [2008-01-30T09:48:45+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+)(user.language=en)] [2008-01-30T09:48:57+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+?)(user.language=en)] [2008-01-30T09:49:04+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+?)(?!user.language=en)] [2008-01-30T09:49:13+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.*?)(?!user.language=en)] [2008-01-30T09:49:19+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+)(?!user.language=en)] [2008-01-30T09:50:25+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+)(?!user.language=en).*? -jar] [2008-01-30T09:50:54+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[(bin\\java.+?)(?!user.language=en).*? -jar] [2008-01-30T09:52:11+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[-Duser.language=en ] [2008-01-30T09:52:47+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[-Duser.language=.+ ] [2008-01-30T09:52:58+0000] GET from 206.165.101.124 I:[' %FASTSEARCH%\\_jvm5\\bin\\java -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Duser.language=en -Duser.country=US -Desp.coreservices.log.dir.default=%FASTSEARCH%\\var\\log -Xmx1000m -Dmarsrunner=%FASTSEARCH% -Djava.io.tmpdir=../data/tmp -Dcom.sun.management.config.file=jmx.properties -DRunningUnderEsp=true -jar plugins/org.eclipse.osgi_3.2.1_R32x_v20060919.jar\r\n'] R:[-Duser.language=.+?\w ] [2008-01-30T11:16:46+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-30T16:57:28+0000] GET from 90.152.10.135 I:['user=hello'] R:[user=*$] [2008-01-30T17:01:04+0000] GET from 90.152.10.135 I:['what'] R:[wah] [2008-01-31T10:11:18+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-01-31T14:05:35+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-02-01T10:01:25+0000] GET from 145.88.209.33 I:['If you received a warning that the sequences were not diverse enough, you can have SIFT choose more diverse sequences here.

    *** The following sequences have been removed because they were found to be over 90% identical with your protein query: gi12398070, gi11991539, gi90960804, gi15736499, gi12780154, gi56404330, gi38970021, gi12630961, gi73972119, gi11962370,.

    '] R:[.+\*{3}.+\:\s+(.+),\.] [2008-02-01T16:51:03+0000] GET from 198.204.141.208 I:['ENV_FILE = /appl/mdltest/vn10.2.0/envDir/m20031210.env\r\n\r\nPREPA_FILE = /appl/mdltest/restatement/ment/standard.ppmcfg \r\n\r\nPREPA_FILE = -0.5 ;\r\nPREPA_FILE = 0.5\r\nerte = 4444\r\n sdfsdf '] R:[(?<=\=[\s])([\s]+[\D][\S]*)] [2008-02-03T18:01:13+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[[a-z]] [2008-02-03T18:02:43+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01\w{3}] [2008-02-03T18:03:12+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1] [2008-02-03T18:03:24+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1$] [2008-02-03T18:03:50+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1+] [2008-02-03T18:04:11+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1] [2008-02-03T18:04:23+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})$] [2008-02-03T18:04:33+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})] [2008-02-03T18:05:00+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[$(S01\w{3}){3}] [2008-02-03T18:05:07+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3}){3}] [2008-02-03T18:31:34+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})] [2008-02-03T18:31:56+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01] [2008-02-03T18:33:58+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01] [2008-02-03T19:13:39+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1] [2008-02-03T19:13:54+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})\1{3}] [2008-02-03T19:19:05+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3}){3}] [2008-02-03T19:19:18+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3}){3,6}] [2008-02-03T19:22:39+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})$] [2008-02-03T19:24:51+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[$(S01\w{3})] [2008-02-03T19:27:21+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(^S01)\w{3}] [2008-02-03T19:27:35+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[^S01\w{3}] [2008-02-03T19:30:12+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[[^S01]\w{3}] [2008-02-03T19:30:25+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01\w{3}] [2008-02-03T19:40:28+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01(\w{3})\1] [2008-02-03T19:40:35+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01(\w{3})/1] [2008-02-03T19:40:44+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01(\w{3})\$1] [2008-02-03T19:40:55+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01(\w{3})\1] [2008-02-03T19:42:43+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[^(S01)\w{3} | \1] [2008-02-03T19:42:57+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01)\w{3} | ^\1] [2008-02-03T19:50:08+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3}) | ^(S01)] [2008-02-03T19:54:11+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[(S01\w{3})] [2008-02-03T20:07:05+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01$\w{3}] [2008-02-03T20:07:14+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[S01^\w{3}] [2008-02-03T20:28:41+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[w{3}(?=S01)] [2008-02-03T20:28:54+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[\w{3}(?=S01)] [2008-02-03T20:29:12+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[\w{3}(?=S)] [2008-02-03T20:29:25+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[01(?=S)] [2008-02-03T20:33:36+0000] GET from 172.201.75.141 I:['/tor/3537379/30.Rock.S01E01.HDTV.XviD-LOL">30.Rock.S01E01.HDTV.XviD-LOL'] R:[1(?=0)] [2008-02-03T20:48:19+0000] GET from 172.201.75.141 I:['S01E02'] R:[\w{3}(?!E02)] [2008-02-03T21:26:12+0000] GET from 172.201.75.141 I:['S01E02'] R:[\w{3}(?!E02)] [2008-02-03T21:26:17+0000] GET from 172.201.75.141 I:['S01E02'] R:[\w{3}(?!E02)] [2008-02-03T21:27:51+0000] GET from 172.201.75.141 I:['07.09.27.Bones.S03E01.HDTV.RIP.X264.a720.AAC.F@Silu'] R:[E\w{2}(?!S03)] [2008-02-03T21:28:07+0000] GET from 172.201.75.141 I:['07.09.26Prison.Break.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[E\w{2}(?!S03)] [2008-02-03T22:29:30+0000] GET from 172.201.75.141 I:['07.09.26Prison.Break.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[E\w{2}(?!S03)] [2008-02-03T22:29:51+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[E\w{2}(?!S03)] [2008-02-03T22:30:33+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[S03(?=E\w{2})] [2008-02-03T22:30:53+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[S03(?!E\w{2})] [2008-02-03T22:30:53+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[S03(?!E\w{2})] [2008-02-03T22:31:42+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?!E\w{2})S03] [2008-02-03T22:31:51+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?=E\w{2})S03] [2008-02-03T22:32:20+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?=E\w{2})S03] [2008-02-03T22:32:27+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?!=E\w{2})S03] [2008-02-03T22:32:33+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?!E\w{2})S03] [2008-02-03T22:32:51+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?!S03)E\w{2}] [2008-02-03T22:33:00+0000] GET from 172.201.75.141 I:['07.09.26Prison.BrEak.S03E02.HDTVRIP.a720.X264.AAC.F@Silu'] R:[(?![^aeiou]+)([aeiou](?:[:alpha:]+)?)([^[:alpha:]]+)?'] R:[cabadd] [2008-02-09T13:52:33+0000] GET from 82.107.54.81 I:['qualcosa da prendere nel testo'] R:[qualco.{1,15}testo] [2008-02-10T04:28:09+0000] GET from 118.90.123.175 I:['AC_INIT([conduit], [0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^\(\)$] [2008-02-10T04:32:15+0000] GET from 118.90.123.175 I:['AC_INIT([conduit], [0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^\(\[(.+),\)$] [2008-02-10T04:35:09+0000] GET from 118.90.123.175 I:['AC_INIT([conduit],[0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^\(\[*(.+)\]*,\[*(.+)\]*\)$] [2008-02-10T04:38:36+0000] GET from 118.90.123.175 I:['AC_INIT([conduit],[0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^AC_INIT\(\[*(.+)\]*,\[*(.+)\]*\)] [2008-02-10T04:43:34+0000] GET from 118.90.123.175 I:['AC_INIT([conduit],[0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^AC_INIT\(\[*(.+)\]*,\[*(.+)\]*,\[*(.+)\]*] [2008-02-10T04:45:37+0000] GET from 118.90.123.175 I:['AC_INIT([conduit],[0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^AC_INIT\(\[*?(.+)?\]*?,\[*?(.+)?\]*?,\[*?(.+)?\]*?] [2008-02-10T04:46:08+0000] GET from 118.90.123.175 I:['AC_INIT([conduit],[0.3.7],[john.stowers@gmail.com],[conduit])'] R:[^AC_INIT\(\[*?(.+)\]*?,\[*?(.+)\]*?,\[*?(.+)\]*?] [2008-02-11T01:48:53+0000] GET from 69.209.58.199 I:['Test Title: @who\r\nTest Title: test test test\r\n'] R:[^(.+):((?=\s)|(?=$))] [2008-02-11T01:49:19+0000] GET from 69.209.58.199 I:['Test Title: @who\r\nTest Title: test test test\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))] [2008-02-11T01:49:50+0000] GET from 69.209.58.199 I:['Test Title: @who\r\nTest Title: test test test\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(\s@\w)+] [2008-02-11T01:50:04+0000] GET from 69.209.58.199 I:['Test Title: @who\r\nTest Title: test test test\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(\s@\w{1,})+] [2008-02-11T01:50:31+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(\s@\w{1,})*] [2008-02-11T01:50:42+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(.*)(\s@\w{1,})*] [2008-02-11T01:50:55+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(\s(@\w{1,}))*] [2008-02-11T01:51:10+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))(\s(@\w{1,}))*] [2008-02-11T01:51:43+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)|(?=$))((?<=\s)@\w{1,})*] [2008-02-11T01:52:13+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s)((?<=\s)@\w{1,})*|(?=$))] [2008-02-11T01:52:24+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s))] [2008-02-11T01:52:31+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):((?=\s))(.+)] [2008-02-11T01:52:55+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):(.+)] [2008-02-11T01:53:07+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):(\w\s+)] [2008-02-11T01:53:15+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):(\w\s)+] [2008-02-11T01:53:22+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):] [2008-02-11T01:53:38+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[^([^\n\r-]+):(.*)] [2008-02-11T01:53:45+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[([^\n\r-]+):(.*)] [2008-02-11T01:53:58+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[([^\n\r-]+):\s(.*)] [2008-02-11T01:54:04+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[([^\n\r-]+)] [2008-02-11T01:54:06+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[([^\n\r-]+)] [2008-02-11T01:54:13+0000] GET from 69.209.58.199 I:['Test Title: \r\nTest Title: @who\r\nTest Title: test test test\r\nTest Title: test test test @who\r\n'] R:[([^\n\r-]+)] [2008-02-11T15:07:27+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,2,3})([s])] [2008-02-11T15:08:13+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])] [2008-02-11T15:08:55+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2})] [2008-02-11T15:09:20+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.)] [2008-02-11T15:09:33+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,2,3})] [2008-02-11T15:09:44+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})] [2008-02-11T15:10:00+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:10:08+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:10:16+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:12:36+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:13:16+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:13:23+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:13:45+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:14:04+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )] [2008-02-11T15:14:17+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})] [2008-02-11T15:14:26+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])] [2008-02-11T15:14:43+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])(\s{0,1})([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:14:53+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])(\s{0,1})([0-9]{1,2})([m])(\s{0,1})([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T15:18:40+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])(\s{0,1})([0-9]{1,2})([m])(\s{0,1})([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-11T20:32:58+0000] GET from 90.184.55.246 I:['1342'] R:[^\d{1,7}$] [2008-02-11T20:33:38+0000] GET from 90.184.55.246 I:['134223535345'] R:[^\d{1,7}$] [2008-02-11T20:33:56+0000] GET from 90.184.55.246 I:['134223535345'] R:[^\d[a-z]{1,7}$] [2008-02-11T20:34:05+0000] GET from 90.184.55.246 I:['agdad'] R:[^\d[a-z]{1,7}$] [2008-02-11T20:34:18+0000] GET from 90.184.55.246 I:['agdad'] R:[^\d{1,7}[a-z]$] [2008-02-11T20:38:20+0000] GET from 90.184.55.246 I:['agdad'] R:[^\d{1,7}[a-z]\d$] [2008-02-11T20:40:29+0000] GET from 90.184.55.246 I:['agdad'] R:[^\d[a-z]{1,7}\d$] [2008-02-11T20:40:43+0000] GET from 90.184.55.246 I:['agdad'] R:[\d[a-z]{1,7}\d] [2008-02-11T20:40:56+0000] GET from 90.184.55.246 I:['agdad'] R:[^\d[a-z]{1,7}\d$] [2008-02-11T20:43:31+0000] GET from 90.184.55.246 I:['a'] R:[^\d[a-z]\d$] [2008-02-11T20:43:36+0000] GET from 90.184.55.246 I:['a'] R:[^\d[a-z]$] [2008-02-11T20:43:42+0000] GET from 90.184.55.246 I:['a'] R:[[a-z]] [2008-02-11T20:43:54+0000] GET from 90.184.55.246 I:['a'] R:[[a-z]{1,7}] [2008-02-11T20:44:00+0000] GET from 90.184.55.246 I:['aadsfasfa'] R:[[a-z]{1,7}] [2008-02-11T20:44:04+0000] GET from 90.184.55.246 I:['aadsfasfaasdsafas'] R:[[a-z]{1,7}] [2008-02-11T20:44:36+0000] GET from 90.184.55.246 I:['aadsfasfaasdsafas'] R:[[a-z]{1,7}$] [2008-02-11T20:44:54+0000] GET from 90.184.55.246 I:['aadsfasfaasdsafas'] R:[\d[a-z]{1,7}$] [2008-02-11T20:45:02+0000] GET from 90.184.55.246 I:['aadsfasf\r\n'] R:[\d[a-z]{1,7}$] [2008-02-11T20:45:08+0000] GET from 90.184.55.246 I:['aadsf\r\n'] R:[\d[a-z]{1,7}$] [2008-02-11T20:45:15+0000] GET from 90.184.55.246 I:['aadsf\r\n'] R:[[a-z]{1,7}$] [2008-02-11T20:45:23+0000] GET from 90.184.55.246 I:['aadsfdd\r\n'] R:[[a-z]{1,7}$] [2008-02-11T20:45:29+0000] GET from 90.184.55.246 I:['aadsfddd\r\n'] R:[[a-z]{1,7}$] [2008-02-11T20:45:34+0000] GET from 90.184.55.246 I:['aadsfddddddd\r\n'] R:[[a-z]{1,7}$] [2008-02-11T20:45:39+0000] GET from 90.184.55.246 I:['aadsfddddddd\r\n'] R:[[a-z]{1,7}] [2008-02-11T20:45:45+0000] GET from 90.184.55.246 I:['aadsfddddddd\r\n'] R:[[a-z]{1,7}$] [2008-02-11T20:45:57+0000] GET from 90.184.55.246 I:['aadsfddddddd\r\n'] R:[\b[a-z]{1,7}] [2008-02-11T20:46:08+0000] GET from 90.184.55.246 I:['aadsfddddddd\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:15+0000] GET from 90.184.55.246 I:['aads\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:22+0000] GET from 90.184.55.246 I:['aadsdfsdaf\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:28+0000] GET from 90.184.55.246 I:['aadsdfs\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:32+0000] GET from 90.184.55.246 I:['aadsdfsd\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:42+0000] GET from 90.184.55.246 I:['a\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:46:45+0000] GET from 90.184.55.246 I:['\r\n'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:47:14+0000] GET from 90.184.55.246 I:['sagasgwrtw243'] R:[\b[a-z]{1,7}\b] [2008-02-11T20:47:20+0000] GET from 90.184.55.246 I:['tw243'] R:[\b[a-z]{1,7}\b] [2008-02-13T08:00:52+0000] GET from 172.159.26.92 I:['prog10Info'] R:[prog*info/i] [2008-02-13T08:01:00+0000] GET from 172.159.26.92 I:['prog10Info'] R:[prog] [2008-02-13T08:01:14+0000] GET from 172.159.26.92 I:['prog10Info'] R:[prog??info] [2008-02-13T08:04:54+0000] GET from 172.159.26.92 I:['prog10Info'] R:[prog[0-9]info] [2008-02-13T08:04:59+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]info] [2008-02-13T08:05:07+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]info\i] [2008-02-13T08:05:14+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]Info\i] [2008-02-13T08:05:19+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]Info] [2008-02-13T08:06:58+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]Info] [2008-02-13T08:07:10+0000] GET from 172.159.26.92 I:['prog17Info'] R:[prog[0-9]+Info] [2008-02-13T08:07:28+0000] GET from 172.159.26.92 I:['prog17Info'] R:[prog[0-9]{2}Info] [2008-02-13T08:07:30+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]{2}Info] [2008-02-13T08:10:13+0000] GET from 172.159.26.92 I:['prog1Info'] R:[prog[0-9]{1,2}Info] [2008-02-13T08:10:17+0000] GET from 172.159.26.92 I:['prog11Info'] R:[prog[0-9]{1,2}Info] [2008-02-13T08:10:34+0000] GET from 172.159.26.92 I:['prog11Info'] R:[^prog[0-9]{1,2}Info] [2008-02-13T08:10:40+0000] GET from 172.159.26.92 I:['prog11Info'] R:[^prog[0-9]{1,2}Info$] [2008-02-13T08:13:54+0000] GET from 172.159.26.92 I:['prog11Info'] R:[^prog[0-9]{1,2}Info$] [2008-02-13T08:17:48+0000] GET from 172.159.26.92 I:['prog11Info'] R:[^prog[0-9]+Info$] [2008-02-13T10:35:37+0000] GET from 89.137.117.97 I:['cell_12_6'] R:[cell_(\d)_(\d)] [2008-02-13T10:36:23+0000] GET from 89.137.117.97 I:['cell_12_6'] R:[cell_([0..9]*)_(\d)] [2008-02-13T10:36:45+0000] GET from 89.137.117.97 I:['cell_12_6'] R:[cell_([0..9]*)_([0..9]*)] [2008-02-13T10:38:58+0000] GET from 89.137.117.97 I:['cell_12_6'] R:[cell_([0-9]+)_([0-9]+)] [2008-02-13T10:43:07+0000] GET from 89.137.117.97 I:['duracell_12_6'] R:[cell_([0-9]+)_([0-9]+)] [2008-02-13T10:43:24+0000] GET from 89.137.117.97 I:['duracell_12_6'] R:[^cell_([0-9]+)_([0-9]+)] [2008-02-13T10:43:39+0000] GET from 89.137.117.97 I:['cell_12_6s'] R:[^cell_([0-9]+)_([0-9]+)$] [2008-02-13T13:43:48+0000] GET from 172.159.26.92 I:['sadcridas'] R:[crid] [2008-02-13T13:45:00+0000] GET from 172.159.26.92 I:['sadcridas'] R:[crid] [2008-02-13T13:45:09+0000] GET from 172.159.26.92 I:['sadcridas'] R:[crid] [2008-02-13T13:50:58+0000] GET from 172.159.26.92 I:['http://www.itv.com/?vodcrid=crid://itv.com/12696'] R:[http://www.itv.com/\?vodcrid=crid://itv.com/12696] [2008-02-13T13:51:11+0000] GET from 172.159.26.92 I:['http://www.itv.com/?vodcrid=crid://itv.com/12696'] R:[^http://www.itv.com/\?vodcrid=crid://itv.com/12696] [2008-02-13T13:51:20+0000] GET from 172.159.26.92 I:['http://www.itv.com/?vodcrid=crid://itv.com/12696'] R:[^http://www.itv.com/\?vodcrid=crid://itv.com/] [2008-02-13T13:51:32+0000] GET from 172.159.26.92 I:['http://www.itv.com/?vodcrid=crid://itv.com/12696'] R:[^http://www.itv.com/?vodcrid=crid://itv.com/] [2008-02-13T18:56:01+0000] GET from 65.118.247.6 I:['5555555555'] R:[(\d{10})] [2008-02-13T23:46:43+0000] GET from 143.66.66.219 I:['"aa"'] R:[^a.*" ] [2008-02-14T02:02:34+0000] GET from 125.236.212.40 I:['create table CTW_TTL_INST_TEXT ( TTIN_ID INTEGER not null, ADDITIONAL_TEXT LVARCHAR, TEXT_MODIFIED_DT DATETIME YEAR TO SECOND, USR_ID_MODIFIED VARCHAR(20) ) in data1dbs extent size 32 next size 16 lock mode row'] R:[create\s*table\s*(\S*)\s*\(\s*((\S*)\s*(\S*)[^,]*\,?)\s*\)] [2008-02-14T02:27:02+0000] GET from 125.236.212.40 I:['create table blach (bob int, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*\,?)\s*\)] [2008-02-14T02:27:35+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*\,?)\s*\)] [2008-02-14T02:28:03+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*\,?)\s*\)] [2008-02-14T02:31:26+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*,?)\s*\)] [2008-02-14T02:31:50+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*,?)\s*\)] [2008-02-14T02:32:10+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,)\s*\)] [2008-02-14T02:32:21+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,).*\)] [2008-02-14T02:34:24+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,)+.*\)] [2008-02-14T02:34:41+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,)+\s*\)] [2008-02-14T02:34:51+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,)+.*\)] [2008-02-14T02:35:05+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*,)+] [2008-02-14T02:35:45+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,],?)+] [2008-02-14T02:35:57+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,],)+] [2008-02-14T02:36:10+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*)[^,]*,)+] [2008-02-14T02:44:38+0000] GET from 125.236.212.40 I:['create table blach_bloo (bob int not null, joe varchar) other opts'] R:[create\s*table\s*(\S*)\s*\((\s*(\S*)\s*(\S*).*[,\)])*] [2008-02-14T02:48:40+0000] GET from 125.236.212.40 I:['bob int not null, joe varchar)'] R:[\s*(\S*)\s*(\S*).*[,\)]] [2008-02-14T04:44:43+0000] GET from 146.171.16.9 I:['add (bob is)'] R:[\s*(\S*)\s*\(?\s*(\S*)\s*(\S*)/.*] [2008-02-14T11:45:25+0000] GET from 172.159.26.92 I:['playVideo asd\r\n'] R:[^playVideo*] [2008-02-14T13:01:10+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-14T13:01:18+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([m])(\s)([0-9]{1,2}\.[0-9]{1,3})([s])] [2008-02-14T13:01:19+0000] GET from 212.8.184.2 I:['Run time: 0h 16m 4.453s'] R:[(Run time: )([0-9]{1,2})([h])] [2008-02-14T13:01:20+0000] GET from 212.8.184.2 I:['Run time: 0h 0m 4.453s'] R:[([0-9]{1,2})([m])(\s)([0-9]{1,2}\.)] [2008-02-14T13:04:01+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(('CoverageData'))] [2008-02-14T13:04:11+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(['CoverageData'])] [2008-02-14T13:04:21+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[((['CoverageData']))] [2008-02-14T13:04:57+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[('(CoverageData)')] [2008-02-14T13:05:09+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[('(CoverageData)(.*)')] [2008-02-14T13:05:28+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:['(CoverageData)(.*)'] [2008-02-14T13:06:13+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun\tRun\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[('(CoverageData)(.*)')] [2008-02-14T13:06:40+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun'] R:[('(CoverageData)(.*)')] [2008-02-14T13:06:53+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun'] R:[CoverageData] [2008-02-14T13:07:06+0000] GET from 212.8.184.2 I:['CoverageData\tThisRun'] R:["(CoverageData)"] [2008-02-14T13:28:02+0000] GET from 212.8.184.2 I:['65.09\t8051'] R:[(\d+\.\d+)] [2008-02-14T13:28:22+0000] GET from 212.8.184.2 I:['65.09\t8051'] R:[(\d+\.\d+)|(\d+)] [2008-02-14T13:28:30+0000] GET from 212.8.184.2 I:['65.09\t8051'] R:[((\d+\.\d+)|(\d+))] [2008-02-14T13:28:44+0000] GET from 212.8.184.2 I:['8051'] R:[((\d+\.\d+)|(\d+))] [2008-02-14T13:31:43+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[CoverageData\t(.+)\t(.+)\t(.+)\t(.+)\t(\d+)\t(\d+)\t(\d+)\t((\d+\.\d+)|(\d+))\t(\d+)\t(\d+)\t(\d+)\t((\d+\.\d+)|(\d+))\t(()|(\d+))\t(\d+)'] [2008-02-14T13:32:22+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[CoverageData\t(.+)] [2008-02-14T13:32:41+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[CoverageData\t(.+)\t(.+)] [2008-02-14T13:32:55+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[CoverageData\t(.+)\t(.+)\t(.+)\t(.+)\t(\d+)] [2008-02-14T13:34:15+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(CoverageData\t)((.+))\t(.+)\t(.+)\t(.+)\t(\d+)] [2008-02-14T13:34:43+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(CoverageData\t)((.+))\t((.+))\t((.+))\t((.+))\t((\d+))] [2008-02-14T13:35:15+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(CoverageData\t)((.+))\t((.+))\t((.+))\t((.+))\t((\d+))\t(\d+)\t(\d+)\t((\d+\.\d+)|(\d+))\t] [2008-02-14T13:35:24+0000] GET from 212.8.184.2 I:['CoverageData\tU:\\embed3_build\\_copy\\msvc6\\i86_win32\\dbg\\run_ooctest_asr.exe\tModule\t\t\t296\t552\t848\t 65.09\t8051\t10571\t18622\t 56.77\t\t6689717'] R:[(CoverageData\t)((.+))\t((.+))\t((.+))\t((.+))\t((\d+))\t(\d+)\t(\d+)\t] [2008-02-15T10:35:41+0000] GET from 172.159.26.92 I:['/iplayer/atoz/?filter=azgroup:efg&scope=iplayeratoz#b-a2z'] R:[^/iplayer/page/item/*.shtml*] [2008-02-15T10:36:19+0000] GET from 172.159.26.92 I:['/iplayer/page/itemb008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/*.shtml*] [2008-02-15T10:36:37+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/*.shtml*] [2008-02-15T10:36:51+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/*\.shtml*] [2008-02-15T10:37:09+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/*] [2008-02-15T10:37:18+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/*s] [2008-02-15T10:40:06+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w*.shtml] [2008-02-15T10:40:18+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w[1,3].shtml] [2008-02-15T10:40:28+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w[1,8].shtml] [2008-02-15T10:40:39+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w[1-8].shtml] [2008-02-15T10:41:22+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{1,8}.shtml] [2008-02-15T10:41:27+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{1,5}.shtml] [2008-02-15T10:41:30+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{1,7}.shtml] [2008-02-15T10:41:34+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{1,8}.shtml] [2008-02-15T10:41:41+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{3,8}.shtml] [2008-02-15T10:42:00+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{3,8}.shtmul] [2008-02-15T10:42:06+0000] GET from 172.159.26.92 I:['/iplayer/page/item/b008h3zq.shtml?filter=azgroup%3Aefg&start=1&scope=iplayeratoz&version_pid=b008h3yz'] R:[^/iplayer/page/item/\w{3,8}.shtml] [2008-02-15T18:28:33+0000] GET from 65.57.245.11 I:['foo nick.p@google.com

    L@@K\r\nfoo@bar.com

    \r\n

    bob@yoyo-dyne.com'] R:[(\w|\.)+\@(\w|\.)+] [2008-02-16T00:01:46+0000] GET from 190.64.40.181 I:['"analoga.com.uy"'] R:[^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,4}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$^] [2008-02-16T04:21:28+0000] GET from 202.37.229.66 I:['TheBush/en'] R:[^(?P\w+)/(?P\w{2})/?$] [2008-02-16T04:21:58+0000] GET from 202.37.229.66 I:['TheBush/en'] R:[^(?P\w+)/(?Pen|mi})/?$] [2008-02-16T04:22:06+0000] GET from 202.37.229.66 I:['TheBush/mi'] R:[^(?P\w+)/(?Pen|mi})/?$] [2008-02-16T04:22:15+0000] GET from 202.37.229.66 I:['TheBush/mi'] R:[^(?P\w+)/(?Pen|mi)/?$] [2008-02-16T19:58:55+0000] GET from 63.238.157.75 I:['WBS'] R:[[WBST]] [2008-02-18T13:58:57+0000] GET from 89.159.194.80 I:['Mon Feb 18 13:04:30 2008 [pid 4771] [julien] FAIL LOGIN: Client "192.192.192.192"'] R:[\w{3} \w{3} \d{1,2} \d{2}:\d{2}:\d{2} \d{4} \[.+\] \[.+\] FAIL LOGIN: Client ""$] [2008-02-18T13:59:37+0000] GET from 89.159.194.80 I:['Mon Feb 18 13:04:30 2008 [pid 4771] [julien] FAIL LOGIN: Client "192.192.192.192"'] R:[\w{3} \w{3} \d{1,2} \d{2}:\d{2}:\d{2} \d{4} \[.+\] \[.+\] FAIL LOGIN: Client ""$] [2008-02-18T20:35:43+0000] GET from 142.58.184.215 I:['hello world'] R:[] [2008-02-18T20:40:52+0000] GET from 142.58.184.215 I:['hello world'] R:[] [2008-02-19T10:16:23+0000] GET from 192.91.191.29 I:['blablbal=rowCreateAndGo'] R:[(rowCreateAndGo)|(rowActive)] [2008-02-19T10:17:05+0000] GET from 192.91.191.29 I:['blablbal=rowCreateAndGo'] R:[rowCreateAndGo|rowActive] [2008-02-19T10:18:29+0000] GET from 192.91.191.29 I:['blablbal=rowCreateAndGo'] R:[rowCreateAndGo] [2008-02-19T10:18:53+0000] GET from 192.91.191.29 I:['blablbal=rowCreateAndGo'] R:[piddle|rowCreateAndGo] [2008-02-20T17:07:47+0000] GET from 209.29.50.66 I:['br>Website: http://www.roundlittleowl.com/relentless/forums\r\n'] R:[/]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>/siU] [2008-02-21T11:24:02+0000] GET from 201.83.35.9 I:['articles/2003'] R:[^articles/(\d{4})/$] [2008-02-23T01:15:14+0000] GET from 69.138.181.174 I:['a<>c<>e'] R:[/<<[^<].*?[^>]>>/] [2008-02-23T03:31:52+0000] GET from 75.22.18.3 I:['sample project: @who \r\nsample project: \r\nsample project: asdf\r\nsample project: asdf @who'] R:[(.+):(.+)] [2008-02-23T03:32:12+0000] GET from 75.22.18.3 I:['sample project: @who \r\nsample project: \r\nsample project: asdf\r\nsample project: asdf @who'] R:[(.+):(.*)] [2008-02-23T09:17:46+0000] GET from 84.103.221.102 I:['rss/test'] R:[(?P(rss|atom)/)] [2008-02-23T09:18:57+0000] GET from 84.103.221.102 I:['rssi/societe'] R:[(?P(rss|atom)/)] [2008-02-23T09:19:23+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(?P(rss|atom)/)] [2008-02-23T09:19:38+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(?P.*/)] [2008-02-23T09:25:33+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(?P(rss|atom)/)] [2008-02-23T09:29:29+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(?P(?:rss|atom)/)] [2008-02-23T09:34:51+0000] GET from 84.103.221.102 I:['rss/societe'] R:['(.*(?!rss|atom))/$] [2008-02-23T09:34:56+0000] GET from 84.103.221.102 I:['rss/societe'] R:['(.*(?!rss|atom))/$] [2008-02-23T09:35:03+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(.*(?!rss|atom))/$] [2008-02-23T09:35:10+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(.*(?!rssr|atom))/$] [2008-02-23T09:35:27+0000] GET from 84.103.221.102 I:['rss/societe'] R:[(.*)(?!rssr|atom)/$] [2008-02-25T14:57:39+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[a=.*] [2008-02-25T14:58:06+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[m=.*] [2008-02-25T14:59:57+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[m=.*|o.*] [2008-02-25T15:00:19+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=.*)|(o=.*)] [2008-02-25T15:00:33+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[{m=.*}|{o=.*}] [2008-02-25T15:00:34+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[{m=.*}|{o=.*}] [2008-02-25T15:14:44+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=.*)|(o=.*)] [2008-02-25T15:14:49+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=.*)|(o=.*)] [2008-02-25T15:15:09+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(^m=.*)|(^o=.*)] [2008-02-25T15:21:21+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:['(m=.*)'|'(o=.*)'] [2008-02-25T15:25:26+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:["m="|"o=".*] [2008-02-25T15:25:35+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[m=|o=.*] [2008-02-25T15:25:47+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=|o=).*] [2008-02-25T15:26:04+0000] GET from 193.49.124.107 I:['a=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=|a=).*] [2008-02-25T15:26:10+0000] GET from 193.49.124.107 I:['m=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=|a=).*] [2008-02-25T15:26:19+0000] GET from 193.49.124.107 I:['i=rtpmap:101 telephone-event/8000\r\n\r\n'] R:[(m=|a=).*] [2008-02-25T15:33:09+0000] GET from 193.49.124.107 I:['m=audio 6000 RTP/AVP 18 8 101\r\n\r\n\r\n'] R:[m=audio [0-9]+RTP/AVP.*] [2008-02-25T15:33:33+0000] GET from 193.49.124.107 I:['m=audio 6000 RTP/AVP 18 8 101'] R:[m=audio.*[0-9]+.*RTP/AVP.*] [2008-02-25T15:33:40+0000] GET from 193.49.124.107 I:['m=audio 6000 RTP/VP 18 8 101'] R:[m=audio.*[0-9]+.*RTP/AVP.*] [2008-02-25T15:34:15+0000] GET from 193.49.124.107 I:['m=audio 6000 RTP/AVP 18 8 101'] R:[m=audio.*[0-9]+.*RTP/AVP.*] [2008-02-25T15:34:59+0000] GET from 193.49.124.107 I:['m=audio 6000 RTP/AVP 18 8 101'] R:[m=audio.*([0-9]+).*RTP/AVP.*] [2008-02-26T09:21:13+0000] GET from 213.41.253.46 I:['STF.txt'] R:[^(?P.{1,8}).txt$] [2008-02-26T18:39:12+0000] GET from 38.114.210.38 I:['756155-902180129*VIAJES EL CORTE INGLES'] R:[([2-9]\\d\\d)[\\-]*(\\d\\d\\d\\d)[\\*]*([\\w\\s.\\-]*)] [2008-02-26T18:39:43+0000] GET from 38.114.210.38 I:['7561551*test'] R:[([2-9]\\d\\d)[\\-]*(\\d\\d\\d\\d)[\\*]*([\\w\\s.\\-]*)] [2008-02-26T18:40:03+0000] GET from 38.114.210.38 I:['7561551*test'] R:[([2-9]\d\d)[\-]*(\d\d\d\d)[\*]*([\w\s.\-]*)] [2008-02-26T18:40:21+0000] GET from 38.114.210.38 I:['756155-902180129*VIAJES EL CORTE INGLES'] R:[([2-9]\d\d)[\-]*(\d\d\d\d)[\*]*([\w\s.\-]*)] [2008-02-26T18:41:45+0000] GET from 38.114.210.38 I:['756155-902180129*VIAJES EL CORTE INGLES'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:42:20+0000] GET from 38.114.210.38 I:['756155-902180129*VIAJES EL CORTE INGLES'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:43:04+0000] GET from 38.114.210.38 I:['756155-902180129*VIAJES EL CORTE INGLES'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:43:36+0000] GET from 38.114.210.38 I:['7561559'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:44:04+0000] GET from 38.114.210.38 I:['13245-7561559*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:44:54+0000] GET from 38.114.210.38 I:['13245-756155912*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:49:00+0000] GET from 38.114.210.38 I:['13245-756155912*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:50:24+0000] GET from 38.114.210.38 I:['13245-756155912*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:56:27+0000] GET from 38.114.210.38 I:['13245-756155912*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:56:29+0000] GET from 38.114.210.38 I:['13245-756155912*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-26T18:57:05+0000] GET from 38.114.210.38 I:['011-507-2606920*test test'] R:[(?P[2-9]\d\d[\-]*\d\d\d\d)[\*]*(?P[\w\s.\-]*)] [2008-02-28T22:04:44+0000] GET from 74.1.208.59 I:['src=test.gif'] R:[src=/([a-zA-Z0-9]*/)] [2008-02-28T22:05:26+0000] GET from 74.1.208.59 I:['src=test.gif'] R:[src=/([a-zA-Z0-9]*/)*] [2008-03-01T09:26:41+0000] GET from 86.17.238.114 I:['sdflkj1243423rlj'] R:[\d+] [2008-03-02T02:45:25+0000] GET from 68.187.145.14 I:['[[en:wikipedia]]'] R:[\[\[(.*?)\:(.*?)\]\]] [2008-03-02T03:38:53+0000] GET from 18.215.1.88 I:['Barrel - Part 1'] R:[[^] [2008-03-02T03:48:53+0000] GET from 18.215.1.88 I:['Barrel - Part 1'] R:[Barrel - Part 1'] R:[Barrel - Part 1'] R:[\r\n

    \r\n
    \r\n
    \r\nBarrel - Part 1
    \r\n
    \r\n] [2008-03-24T19:33:42+0000] GET from 84.175.74.134 I:['
    \r\n\r\nDas ist ein test\r\n\r\n
    '] R:[]*>(.*?)
    ] [2008-03-24T19:34:06+0000] GET from 84.175.74.134 I:['
    \r\n\r\n
    \r\n\r\n\r\nDas ist ein test\r\n\r\n
    \r\n\r\nDas ist ein test\r\n\r\n
    '] R:[]*>(.*?)
    ] [2008-03-24T19:34:44+0000] GET from 84.175.74.134 I:['\r\n\r\n\r\nDas ist ein test\r\n\r\n
    \r\n\r\nDas ist ein test\r\n'] R:[]*>(.*?)] [2008-03-25T07:29:43+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) shows \[(.*)])] [2008-03-25T07:30:22+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) shows \[(.*)]) &! (?=(.*) folds and shows (.*))] [2008-03-25T07:30:53+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) shows \[(.*)]) | (?=(.*) folds and shows (.*))] [2008-03-25T07:31:04+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) shows \[(.*)]) & (?=(.*) folds and shows (.*))] [2008-03-25T07:32:02+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)]) &! (?=(.*) folds and shows (.*)))] [2008-03-25T07:32:12+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)]) & (?=(.*) folds and shows (.*)))] [2008-03-25T07:32:23+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)]) &! (?=(.*) folds and shows (.*)))] [2008-03-25T07:32:43+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)]))] [2008-03-25T07:32:51+0000] GET from 192.94.41.120 I:['grohmi folds and shows [XX Qc]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)])&! (?=(.*) folds and shows (.*)))] [2008-03-25T22:02:08+0000] GET from 192.91.147.35 I:['CREATE TABLE IF NOT EXISTS `MessageSRMeasTgtState` (`id` int(32) NOT NULL AUTO_INCREMENT, `sender_model_id` int(32) NOT NULL, `sender_unit_id` int(32) NOT NULL, `msg_id` int(32) NOT NULL,`entity` int(32) NOT NULL, `pos_x` double NOT NULL,`pos_y` double NOT NULL,`pos_z` double NOT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;\r\n'] R:[^CREATE TABLE (IF NOT EXISTS )?[`]?([a-zA-Z]+)[`]?] [2008-03-25T22:29:43+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[startSearchString='(?=(.*) Mucks)|((?=(.*) shows \[(.*)])&! (?=(.*) folds and shows (.*)))'] [2008-03-25T22:31:04+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[startSearchString=((.*) Mucks)|((.*) shows \[(.*)])] [2008-03-25T22:31:56+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) Mucks)|(?=(.*) shows \[(.*)])] [2008-03-25T22:32:15+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) shows \[(.*)])&! (?=(.*) folds and shows (.*))] [2008-03-25T22:32:36+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) shows \[(.*)])&!(?=(.*) folds and shows (.*))] [2008-03-25T22:32:45+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) shows \[(.*)\])&!(?=(.*) folds and shows (.*))] [2008-03-25T22:33:31+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) shows \[(.*)])&!(?=(.*) folds and (.*))] [2008-03-25T22:33:50+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[((?=(.*) shows \[(.*)])&!(?=(.*) folds and (.*)))] [2008-03-25T22:34:20+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) folds and (.*))] [2008-03-25T22:34:45+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[((?=(.*) shows \[(.*)])|(?=(.*) folds and (.*)))] [2008-03-25T22:35:15+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[((?=(.*) shows \[(.*)])&(!(?=(.*) folds and (.*))))] [2008-03-25T22:35:30+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[((?=(.*) shows \[(.*)])!&(?=(.*) folds and (.*)))] [2008-03-25T22:38:38+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[(?=(.*) Mucks)|((?=(.*) shows \[(.*)])&(?!(.*) folds and shows (.*)))] [2008-03-25T22:41:22+0000] GET from 210.9.184.146 I:['Salsadippa shows [Ks 8c]'] R:[''] [2008-03-25T22:46:26+0000] GET from 210.9.184.146 I:['pokerluxi raises to $38.83'] R:[(?=(.*) raises to \$(.*))] [2008-03-25T23:35:56+0000] GET from 65.113.40.1 I:['Total snapshots: 12\r\n'] R:['Total [snapshots|runningVMs]: \D'] [2008-03-26T03:35:32+0000] GET from 202.106.180.68 I:['111'] R:[[\d]{1,3}] [2008-03-26T03:36:03+0000] GET from 202.106.180.68 I:['Hello World'] R:[.*?\s.*] [2008-03-26T03:36:38+0000] GET from 202.106.180.68 I:['HelloWorld'] R:[.*?\s.*] [2008-03-26T03:36:49+0000] GET from 202.106.180.68 I:['Hello World'] R:[.*? .*] [2008-03-26T03:37:02+0000] GET from 202.106.180.68 I:['HelloWorld'] R:[.*? .*] [2008-03-26T06:32:12+0000] GET from 192.94.41.120 I:['Foccer posts the small blind of $1'] R:[(?=([a-zA-Z0-9]{5,16}) posts small blind \(\$([0-9\.\,]*)\).*)] [2008-03-26T06:32:23+0000] GET from 192.94.41.120 I:['Foccer posts small blind of $1'] R:[(?=([a-zA-Z0-9]{5,16}) posts small blind \(\$([0-9\.\,]*)\).*)] [2008-03-26T06:32:34+0000] GET from 192.94.41.120 I:['Foccer posts small blind of ($1)'] R:[(?=([a-zA-Z0-9]{5,16}) posts small blind \(\$([0-9\.\,]*)\).*)] [2008-03-26T06:33:05+0000] GET from 192.94.41.120 I:['Foccer posts small blind ($1)'] R:[(?=([a-zA-Z0-9]{5,16}) posts small blind \(\$([0-9\.\,]*)\).*)] [2008-03-26T06:33:15+0000] GET from 192.94.41.120 I:['Foccer posts small blind ($1) (allin)'] R:[(?=([a-zA-Z0-9]{5,16}) posts small blind \(\$([0-9\.\,]*)\).*)] [2008-03-26T08:45:10+0000] GET from 202.106.180.68 I:['111'] R:[[\d]{1,3}] [2008-03-26T08:45:15+0000] GET from 202.106.180.68 I:['1111'] R:[[\d]{1,3}] [2008-03-26T08:45:33+0000] GET from 202.106.180.68 I:['1234'] R:[^[\d]{1,3}$] [2008-03-26T08:45:38+0000] GET from 202.106.180.68 I:['123'] R:[^[\d]{1,3}$] [2008-03-26T08:47:39+0000] GET from 202.106.180.68 I:['123'] R:[^.*?\s.*$] [2008-03-26T08:47:47+0000] GET from 202.106.180.68 I:['123 a'] R:[^.*?\s.*$] [2008-03-26T08:47:50+0000] GET from 202.106.180.68 I:['abcd'] R:[^.*?\s.*$] [2008-03-26T08:51:19+0000] GET from 218.94.9.35 I:['# 1. Lines staring with # is comment.\r\n# 2. Variables don\'t need to be declared before they can be used. You can define\r\n# your own variables and use $ to refer to them.\r\n# 3. There are some predefined variables, eg. ROLES, TYPES. These varialbes are\r\n# in upper case.\r\n\r\n################################################################################\r\n# Role and Type specification.\r\n################################################################################\r\n\r\n# "ROLES" and "TYPES" contain all the roles and types that can be used.\r\n# Use += to add new values to these variables.\r\n# A role or type must to have been added in this two predefined variables before\r\n# they can be refered to.\r\nROLES += ftpserver, httpserv, sys_user\r\nTYPES += ftpdata, httpdata, sys_data\r\n\r\n# use {} to define a set of file system objects and assign it to a variable.\r\n# path name can be enclosed in double quote.\r\nvsftpd_exec = [\r\n /usr/sbin/vsftpd,\r\n # path name with space and comma should be enclosed in "..."\r\n "/path/with/space and comma , like this"\r\n]\r\nvsftpd_conf = [ /etc/vsftpd.conf ]\r\n\r\n# You can use previously defined variable to create new variable\r\nvsftpd = [ $vsftpd_exec, $vsftpd_conf ]\r\n\r\n# assigning role to file system objects means that when it is executed, what\r\n# role should the process have.\r\nvsftpd_exec.{role: ftpserv}\r\n\r\n# XXX Do we need this?\r\n# or you can combine variable assignment and type specification together.\r\n#vsftpd_servdir = [\r\n #/var/ftp, /home/ftp/\r\n#].{type = ftpdata}\r\n\r\n# or you can assign type or role to an fs object without creating a variable.\r\n[/usr/bin].{type: sys_exec_file, role: inherit}\r\n\r\n################################################################################\r\n# Role Compatible specification\r\n################################################################################\r\n\r\n# The supported access modes include:\r\n# READ, WRITE, EXEC\r\n\r\n# The following syntax defines role and type compatibility.\r\nftpserver -- ftpdata, [READ]\r\nhttpserver -- httpdata, [READ, EXEC]\r\n\r\n# The following syntax defines role compatibility.\r\n# This is used when a process want to change its role.\r\nftpserver -> sys_user\r\nhttpserver -> sys_user'] R:[#.*$] [2008-03-26T08:51:34+0000] GET from 218.94.9.35 I:['# 1. Lines staring with # is comment.\r\n# 2. Variables don\'t need to be declared before they can be used. You can define\r\n# your own variables and use $ to refer to them.\r\n# 3. There are some predefined variables, eg. ROLES, TYPES. These varialbes are\r\n# in upper case.\r\n\r\n################################################################################\r\n# Role and Type specification.\r\n################################################################################\r\n\r\n# "ROLES" and "TYPES" contain all the roles and types that can be used.\r\n# Use += to add new values to these variables.\r\n# A role or type must to have been added in this two predefined variables before\r\n# they can be refered to.\r\nROLES += ftpserver, httpserv, sys_user\r\nTYPES += ftpdata, httpdata, sys_data\r\n\r\n# use {} to define a set of file system objects and assign it to a variable.\r\n# path name can be enclosed in double quote.\r\nvsftpd_exec = [\r\n /usr/sbin/vsftpd,\r\n # path name with space and comma should be enclosed in "..."\r\n "/path/with/space and comma , like this"\r\n]\r\nvsftpd_conf = [ /etc/vsftpd.conf ]\r\n\r\n# You can use previously defined variable to create new variable\r\nvsftpd = [ $vsftpd_exec, $vsftpd_conf ]\r\n\r\n# assigning role to file system objects means that when it is executed, what\r\n# role should the process have.\r\nvsftpd_exec.{role: ftpserv}\r\n\r\n# XXX Do we need this?\r\n# or you can combine variable assignment and type specification together.\r\n#vsftpd_servdir = [\r\n #/var/ftp, /home/ftp/\r\n#].{type = ftpdata}\r\n\r\n# or you can assign type or role to an fs object without creating a variable.\r\n[/usr/bin].{type: sys_exec_file, role: inherit}\r\n\r\n################################################################################\r\n# Role Compatible specification\r\n################################################################################\r\n\r\n# The supported access modes include:\r\n# READ, WRITE, EXEC\r\n\r\n# The following syntax defines role and type compatibility.\r\nftpserver -- ftpdata, [READ]\r\nhttpserver -- httpdata, [READ, EXEC]\r\n\r\n# The following syntax defines role compatibility.\r\n# This is used when a process want to change its role.\r\nftpserver -> sys_user\r\nhttpserver -> sys_user'] R:[#.*] [2008-03-26T08:51:57+0000] GET from 218.94.9.35 I:['# 1. Lines staring with # is comment.\r\n# 2. Variables don\'t need to be declared before they can be used. You can define\r\n# your own variables and use $ to refer to them.\r\n# 3. There are some predefined variables, eg. ROLES, TYPES. These varialbes are\r\n# in upper case.\r\n\r\n################################################################################\r\n# Role and Type specification.\r\n################################################################################\r\n\r\n# "ROLES" and "TYPES" contain all the roles and types that can be used.\r\n# Use += to add new values to these variables.\r\n# A role or type must to have been added in this two predefined variables before\r\n# they can be refered to.\r\nROLES += ftpserver, httpserv, sys_user\r\nTYPES += ftpdata, httpdata, sys_data\r\n\r\n# use {} to define a set of file system objects and assign it to a variable.\r\n# path name can be enclosed in double quote.\r\nvsftpd_exec = [\r\n /usr/sbin/vsftpd,\r\n # path name with space and comma should be enclosed in "..."\r\n "/path/with/space and comma , like this"\r\n]\r\nvsftpd_conf = [ /etc/vsftpd.conf ]\r\n\r\n# You can use previously defined variable to create new variable\r\nvsftpd = [ $vsftpd_exec, $vsftpd_conf ]\r\n\r\n# assigning role to file system objects means that when it is executed, what\r\n# role should the process have.\r\nvsftpd_exec.{role: ftpserv}\r\n\r\n# XXX Do we need this?\r\n# or you can combine variable assignment and type specification together.\r\n#vsftpd_servdir = [\r\n #/var/ftp, /home/ftp/\r\n#].{type = ftpdata}\r\n\r\n# or you can assign type or role to an fs object without creating a variable.\r\n[/usr/bin].{type: sys_exec_file, role: inherit}\r\n\r\n################################################################################\r\n# Role Compatible specification\r\n################################################################################\r\n\r\n# The supported access modes include:\r\n# READ, WRITE, EXEC\r\n\r\n# The following syntax defines role and type compatibility.\r\nftpserver -- ftpdata, [READ]\r\nhttpserver -- httpdata, [READ, EXEC]\r\n\r\n# The following syntax defines role compatibility.\r\n# This is used when a process want to change its role.\r\nftpserver -> sys_user\r\nhttpserver -> sys_user'] R:[#.*] [2008-03-26T13:59:48+0000] GET from 202.106.180.68 I:['a b c'] R:[^.*?\s.*$] [2008-03-26T14:00:04+0000] GET from 202.106.180.68 I:['a a b e c'] R:[^.*?\s.*$] [2008-03-27T15:25:51+0000] GET from 68.187.145.14 I:['\\[http\\://www\\.exotica\\.org\\.uk/wiki/(.*?)\\s(.*?)\\]'] R:[[http://www.exotica.org.uk/wiki/Agony_%28game%29 Agony]] [2008-03-27T15:26:07+0000] GET from 68.187.145.14 I:['\\[http\\://www\\.exotica\\.org\\.uk/wiki/(.*?) (.*?)\\]'] R:[[http://www.exotica.org.uk/wiki/Agony_%28game%29 Agony]] [2008-03-28T00:00:20+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[[\"|\']([\s\d\w\*\?=\*\?\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;A-Z]|(\\.?))*[\"|\']] [2008-03-28T00:08:03+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[[\"|\']([^\\\'\"]*(\\[\s\d\w\*\?=\*\?\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]))*[\"|\']] [2008-03-28T00:10:32+0000] GET from 77.48.209.10 I:["kjkj 'lkl'"] R:[[\"|\']([^\\\'\"]*(\\[\s\d\w\*\?=\*\?\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]))*[\"|\']] [2008-03-28T00:13:11+0000] GET from 77.48.209.10 I:["kjkj 'lkl'"] R:[[\"|\']([^\\\'\"]*(\\[\s\d\w\*\?=\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]))*[\"|\']] [2008-03-28T00:14:25+0000] GET from 77.48.209.10 I:["kjkj 'lkl'"] R:[[\"|\']([^\\\'\"]*(\\[\s\d\w\*\?=\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]))?[\"|\']] [2008-03-28T00:18:20+0000] GET from 77.48.209.10 I:["kjkj 'lkl'"] R:[[\"|\']([^\\\'\"]*(\\.?))*[\"|\']] [2008-03-28T00:20:44+0000] GET from 77.48.209.10 I:["kjkj 'lkl'"] R:[[\"|\'][^\\\'\"]*[\"|\']] [2008-03-28T00:24:41+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^(\r\n)]*)|((/*)[^/]*(/))] [2008-03-28T00:27:41+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^\r\n]*)|((/*)[^/]*(/))] [2008-03-28T00:29:24+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^\r\n]*(\r\n))|((/*)[^/]*(/))] [2008-03-28T00:30:59+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^\r\n]*(\r\n))|((/*)[^/]*(/))] [2008-03-28T00:32:33+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^\r\n]*(\r\n))|((/*)[^/]*(/))] [2008-03-28T00:34:07+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\\\'\"]*[\"|\'])|((//)[^\r\n]*(\r\n))|((/\*)[^/]*(/))] [2008-03-28T00:35:40+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[([\"|\'][^\'\"]*[\"|\'])|((//)[^\r\n]*(\r\n))|((/\*)[^/]*(/))] [2008-03-28T00:37:10+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((\"|\')[^\'\"]*(\"|\'))|((//)[^\r\n]*(\r\n))|((/\*)[^/]*(/))] [2008-03-28T01:20:53+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\Aasm\Z|\Aenum\Z|\Aoperator\Z|\Athrow\Z|\Aauto\Z|\Aexplicit\Z|\Aprivate\Z|\Atrue\Z|\Abool\Z|\Aextern\Z|\Aprotected\Z|\Atry\Z|\Abreak\Z|\Afalse\Z|\Apublic\Z|\Atypeid\Z|\Acase\Z|\Afloat\Z|\Aregister\Z|\Atypename\Z|\Acatch\Z|\Afor\Z|\Areinterpret_cast\Z|\Aunion\Z|\Aclass\Z|\Afriend\Z|\Ashort\Z|\Aunsigned\Z|\Aconst\Z|\Agoto\Z|\Asigned\Z|\Ausing\Z|\Aconst_cast\Z|\Achar\Z|\Asizeof\Z|\Avirtual\Z|\Acontinue\Z|\Ainline\Z|\Astatic\Z|\Avoid\Z|\Adefault\Z|\Aint\Z|\Astatic_cast\Z|\Avolatile\Z|\Ado\Z|\Along\Z|\Astruct\Z|\Awhile\Z|\Adouble\Z|\Amutable\Z|\Aswitch\Z|\Awchar_t\Z|\Adynamic_cast\Z|\Anamespace\Z|\Atemplate\Z|\Aelse\Z|\Anew\Z|\Athis\Z] [2008-03-28T01:22:05+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[float] [2008-03-28T01:23:53+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\Aasm\Z|\Aenum\Z|\Aoperator\Z|\Athrow\Z|\Aauto\Z|\Aexplicit\Z|\Aprivate\Z|\Atrue\Z|\Abool\Z|\Aextern\Z|\Aprotected\Z|\Atry\Z|\Abreak\Z|\Afalse\Z|\Apublic\Z|\Atypeid\Z|\Acase\Z|\Afloat\Z|\Aregister\Z|\Atypename\Z|\Acatch\Z|\Afor\Z|\Areinterpret_cast\Z|\Aunion\Z|\Aclass\Z|\Afriend\Z|\Ashort\Z|\Aunsigned\Z|\Aconst\Z|\Agoto\Z|\Asigned\Z|\Ausing\Z|\Aconst_cast\Z|\Achar\Z|\Asizeof\Z|\Avirtual\Z|\Acontinue\Z|\Ainline\Z|\Astatic\Z|\Avoid\Z|\Adefault\Z|\Aint\Z|\Astatic_cast\Z|\Avolatile\Z|\Ado\Z|\Along\Z|\Astruct\Z|\Awhile\Z|\Adouble\Z|\Amutable\Z|\Aswitch\Z|\Awchar_t\Z|\Adynamic_cast\Z|\Anamespace\Z|\Atemplate\Z|\Aelse\Z|\Anew\Z|\Athis\Z] [2008-03-28T01:25:10+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[float] [2008-03-28T01:25:36+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\Afloat\Z] [2008-03-28T01:33:50+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[^float$] [2008-03-28T01:34:11+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\Afloat\Z] [2008-03-28T01:34:29+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\Afloat\Z] [2008-03-28T01:37:23+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:['float'] [2008-03-28T01:37:37+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[float] [2008-03-28T01:42:46+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\bfloat\b] [2008-03-28T01:42:56+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\bfloat\b] [2008-03-28T01:46:17+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\basm\b|\benum\b|\boperator\b|\bthrow\b|\bauto\b|\bexplicit\b|\bprivate\b|\btrue\b|\bbool\b|\bextern\b|\bprotected\b|\btry\b|\bbreak\b|\bfalse\b|\bpublic\b|\btypeid\b|\bcase\b|\bfloat\b|\bregister\b|\btypename\b|\bcatch\b|\bfor\b|\breinterpret_cast\b|\bunion\b|\bclass\b|\bfriend\b|\bshort\b|\bunsigned\b|\bconst\b|\bgoto\b|\bsigned\b|\busing\b|\bconst_cast\b|\bchar\b|\bsizeof\b|\bvirtual\b|\bcontinue\b|\binline\b|\bstatic\b|\bvoid\b|\bdefault\b|\bint\b|\bstatic_cast\b|\bvolatile\b|\bdo\b|\blong\b|\bstruct\b|\bwhile\b|\bdouble\b|\bmutable\b|\bswitch\b|\bwchar_t\b|\bdynamic_cast\b|\bnamespace\b|\btemplate\b|\belse\b|\bnew\b|\bthis\b] [2008-03-28T01:48:25+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[\basm\b|\benum\b|\boperator\b|\bthrow\b|\bauto\b|\bexplicit\b|\bprivate\b|\btrue\b|\bbool\b|\bextern\b|\bprotected\b|\btry\b|\bbreak\b|\bfalse\b|\bpublic\b|\btypeid\b|\bcase\b|\bfloat\b|\bregister\b|\btypename\b|\bcatch\b|\bfor\b|\breinterpret_cast\b|\bunion\b|\bclass\b|\bfriend\b|\bshort\b|\bunsigned\b|\bconst\b|\bgoto\b|\bsigned\b|\busing\b|\bconst_cast\b|\bchar\b|\bsizeof\b|\bvirtual\b|\bcontinue\b|\binline\b|\bstatic\b|\bvoid\b|\bdefault\b|\bint\b|\bstatic_cast\b|\bvolatile\b|\bdo\b|\blong\b|\bstruct\b|\bwhile\b|\bdouble\b|\bmutable\b|\bswitch\b|\bchar_t\b|\bdynamic_cast\b|\bnamespace\b|\btemplate\b|\belse\b|\bnew\b|\bthis\b] [2008-03-28T05:32:21+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((\"|\')[^\'\"]*(\"|\'))] [2008-03-28T05:34:01+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((\"|\')([\s\d\w\*\?=\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]|(\\.))*(\"|\'))] [2008-03-28T05:34:56+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((\"|\')([\s\d\w\*\?=\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;]|(\\.))*(\"|\'))] [2008-03-28T05:40:12+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((//)[^\r\n]*(\r\n))] [2008-03-28T05:42:12+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((//)[^[:cntrl:]]*(\r\n))] [2008-03-28T05:44:07+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((//)[^[:cntrl:]]*(\r\n))] [2008-03-28T05:44:32+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((//)[^[[:cntrl:]]]*(\r\n))] [2008-03-28T05:46:54+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(//).*] [2008-03-28T05:53:19+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((/\*)([^\*](\*)[^\\])*(\\))] [2008-03-28T05:53:42+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((/\*)([^\*][^\\])*(\\))] [2008-03-28T05:55:09+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((/\*)([^\*]*(\*)[^/])*(/))] [2008-03-28T06:03:29+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(/\*)([^\*]|(\*[^/]))*(/)] [2008-03-28T06:04:19+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(/\*)(([^\*])|(\*[^/]))*(/)] [2008-03-28T06:04:49+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(/\*)(([^\*])|(\*[^/]))*(\*/)] [2008-03-28T06:05:50+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(/\*)([^\*]|(\*[^/]))*(\*/)] [2008-03-28T06:07:55+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\n\r\nuiy \'gj\\"gj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef floate real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[((\"|\')([^\'\"\\]|(\\.))*(\"|\'))] [2008-03-28T12:40:42+0000] GET from 141.150.72.236 I:['(WAR, SMPS Rectifier Current Limit Summary, 608), (UW, Jafrabad, 1154), (2009-03-25T00:05:01), (Vodafone, Reliance, Dishnet, Military)'] R:[\(.*\)] [2008-03-28T12:41:42+0000] GET from 141.150.72.236 I:['(WAR, SMPS Rectifier Current Limit Summary, 608), (UW, Jafrabad, 1154), (2009-03-25T00:05:01), (Vodafone, Reliance, Dishnet, Military)'] R:[(\(.*\))] [2008-03-28T12:42:21+0000] GET from 141.150.72.236 I:['(WAR, SMPS Rectifier Current Limit Summary, 608), (UW, Jafrabad, 1154), (2009-03-25T00:05:01), (Vodafone, Reliance, Dishnet, Military)'] R:[(\(.*\))] [2008-03-28T18:26:40+0000] GET from 172.188.54.206 I:['nested=yes'] R:[(?i)[(nested)(small)(class)(importance)]] [2008-03-28T18:27:05+0000] GET from 172.188.54.206 I:['nested=yes'] R:[(?i)(nested)|(small)|(class)|(importance)] [2008-03-28T18:27:34+0000] GET from 172.188.54.206 I:['peer-review=yes'] R:[(?i)(nested)|(small)|(class)|(importance)] [2008-03-28T18:27:41+0000] GET from 172.188.54.206 I:['Small=yes'] R:[(?i)(nested)|(small)|(class)|(importance)] [2008-03-28T19:05:24+0000] GET from 24.124.117.234 I:['http://everyround.com/golfer/camflan/'] R:[^https?://.*?\.com/golfer/([\w_-]*)/] [2008-03-28T19:06:00+0000] GET from 24.124.117.234 I:['http://everyround.com/golfer/camflan/'] R:[^https?://.*?\.com/golfer/([\w_-]*)/[0]] [2008-03-28T19:25:51+0000] GET from 216.9.243.103 I:[" DEBUGPRINTF App: 'mtp jni - UsbMtpReceiveBuffer r+++'"] R:[\s*DEBUGPRINTF\s*App:\s*'(.*?)(\+{3})?'] [2008-03-28T19:27:34+0000] GET from 216.9.243.103 I:[" DEBUGPRINTF App: 'eturn =0'"] R:[\s*DEBUGPRINTF\s*App:\s*'(.*?)(\+{3})?'] [2008-03-30T01:08:45+0000] GET from 84.57.244.121 I:['iajsd'] R:[^[0-9]|[0-9][,\.][0-9]$] [2008-03-30T01:35:16+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[[\"|\']([\s\d\w\*\?=\*\?\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;A-Z]|(\\.?))*[\"|\']] [2008-03-30T01:52:02+0000] GET from 77.48.209.10 I:['sdsdf'] R:[(<<=|>>=)?(::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T01:52:20+0000] GET from 77.48.209.10 I:['sdsdf ='] R:[(<<=|>>=)?(::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T01:52:36+0000] GET from 77.48.209.10 I:['sdsdf >='] R:[(<<=|>>=)?(::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T01:52:55+0000] GET from 77.48.209.10 I:['sdsdf >>='] R:[(<<=|>>=)?(::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:00:42+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[[\"|\']([\s\d\w\*\?=\*\?\!#@\$%\^\.\+\{\}\[\]\|,-/><&:;A-Z]|(\\.?))*[\"|\']] [2008-03-30T02:04:54+0000] GET from 77.48.209.10 I:['='] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:05:10+0000] GET from 77.48.209.10 I:['=>'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:05:24+0000] GET from 77.48.209.10 I:['<='] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:05:34+0000] GET from 77.48.209.10 I:['>>='] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:05:48+0000] GET from 77.48.209.10 I:['>>'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->)] [2008-03-30T02:09:58+0000] GET from 77.48.209.10 I:['>>'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->|.\..|\+|-|!|~|(type)|\*|&|sizeof|/|%|<|>|&|\^|\|=)] [2008-03-30T02:10:06+0000] GET from 77.48.209.10 I:['++'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->|.\..|\+|-|!|~|(type)|\*|&|sizeof|/|%|<|>|&|\^|\|=)] [2008-03-30T02:10:21+0000] GET from 77.48.209.10 I:['xdfsd++wserw'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->|.\..|\+|-|!|~|(type)|\*|&|sizeof|/|%|<|>|&|\^|\|=)] [2008-03-30T02:10:34+0000] GET from 77.48.209.10 I:['xdfsd++wserw'] R:[(<<=|>>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->|.\..|\+|-|!|~|(type)|\*|&|sizeof|/|%|<|>|&|\^|\|=)] [2008-03-30T02:30:38+0000] GET from 77.48.209.10 I:['// Define the greatest possible value:\r\n#define MAX_RANGE 100\r\n\r\nmain ()\r\n{\r\n int counter=0;\r\n long value,input;\r\n\r\n srand ( time (NULL) ); // Initialize random generator\r\n value = rand()%MAX_RANGE+1; // Get random between 1 and MAX_RANGE\r\n\r\n cout << "\\nInsert a value between 1 and " << MAX_RANGE << " : ";\r\n\r\n do {\r\n\r\n cin >> input; // Get user input\r\n counter++; // increase attempts counter\r\n\r\n if (value>input) // is value grater than the input?\r\n cout << "Value is greater than " << input << ". Try again : ";\r\n\r\n else if (value> input; // Get user input\r\n counter++; // increase attempts counter\r\n\r\n if (value>input) // is value grater than the input?\r\n cout << "Value is greater than " << input << ". Try again : ";\r\n\r\n else if (value>=|::|\+\+|--|&&|\|\||==|!=|>=|<=|<<|>>|\.\*|->\*|typeid|const_cast|dynamic_cast|reinterpret_cast|static_cast|c\?t:f|\+=|-=|\*=|/=|%=|&=|\^=|\|=|->|.\..|\+|-|!|~|(type)|\*|&|sizeof|/|%|<|>|&|\^|\|=)] [2008-03-30T05:39:25+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene float\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n float\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else if\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[(//).*|(/\*)([^\*]|(\*[^/]))*(\*/)] [2008-03-30T06:35:11+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene float\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n float\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else if\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[//.*|/\*([^\*]|\*[^/])*\*/] [2008-03-30T06:38:48+0000] GET from 77.48.209.10 I:['/* ========================================================================== */\r\n/* */\r\n/* Filename.c */\r\n/* (c) 2001 Author */\r\n/* */\r\n/* Description */\r\n/* */\r\n/* ========================================================================== */\r\n\r\nuiy \'gjgj\'\r\n// Prepocet palcu na centimetry a obracene float\r\n#include \r\nmain()\r\n{\r\n typedef float real;\r\n /*Definice noveho typu (zde v C++ jsme standardn\xed float\r\n zamenili nestandardnim, ale v jinych jazycich obvyklym slovnim\r\n symbolem real*/\r\n const real PREPOCET=2.54; // Definice konstanty\r\n real x,palec,cm;\r\n char ch=0; //Definice promenne typu char s pocatecnim prirazenim\r\n cout << "\\nCti delku a co je zadano: p -- palce c -- cm\\n";\r\n cin >> x >> ch;\r\n float\r\n if(ch==\'p\') // Prepocet palcu na cm\r\n {\r\n palec=x;cm=PREPOCET*x;\r\n }\r\n else if\r\n if(ch==\'c\') // Prepocet centimetru\r\n {\r\n cm=x;palec=x/PREPOCET;\r\n }\r\n if(ch==\'p\'|| ch==\'c\')\r\n cout << palec << " = " << cm << "cm\\n";\r\n else\r\n cout << "\\n Chybne zadani!!!\\n";\r\n}'] R:[//.*|/\*([^\*]|\*[^/])*\*/] [2008-04-01T07:04:56+0000] GET from 194.228.230.147 I:['\\n\\n,\\xa0\\n\\n\\n \\n\\n \\n\\n\\nAsystent Brand Manager\\n\\n\\n\\n \\n\\n\\nWarszawa\\n\\n \\n'] R:[\w+$] [2008-04-01T13:51:59+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*@\.yahoo\.com] [2008-04-01T13:52:38+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*@\.yahoo\.com$] [2008-04-01T13:52:50+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.+@\.yahoo\.com$] [2008-04-01T13:53:11+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.+@\.yahoo\.com] [2008-04-01T13:54:01+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*] [2008-04-01T13:54:12+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*@] [2008-04-01T13:54:27+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*@yahoo] [2008-04-01T13:54:34+0000] GET from 61.97.134.18 I:['dsgkshgshdg@yahoo.com'] R:[^.*@yahoo\.com] [2008-04-02T23:51:20+0000] GET from 216.116.102.82 I:['Please return signed agreement to IntraLinks by fax at 1 (212) 208-2600 IntraLinks, the IntraLinks logo and On-Demand Workspaces are trademarks of IntraLinks, Inc. \xa9 2006 IntraLinks, Inc. FINANCE '] R:[]*>.*?]*>] [2008-04-02T23:54:38+0000] GET from 216.116.102.82 I:['Please return signed agreement to IntraLinks by fax at 1 (212) 208-2600 IntraLinks, the IntraLinks logo and On-Demand Workspaces are trademarks of IntraLinks, Inc. \xa9 2006 IntraLinks, Inc. FINANCE '] R:[]*>.*?]*>] [2008-04-02T23:55:21+0000] GET from 216.116.102.82 I:['