milovidov@mtlog-perftest03j:~$ ./duckdb
v0.3.0 46a0fc50a
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
D PRAGMA threads = 16;
D PRAGMA temp_directory='duckdb.tmp';
D .timing on
Error: unknown command or invalid arguments:  "timing". Enter ".help" for help
D .timing=on
Error: unknown command or invalid arguments:  "timing=on". Enter ".help" for help
D .timer on
D CREATE TABLE hits AS SELECT * FROM parquet_scan('hits.parquet');
Run Time: real 315.828 user 447.896000 sys 126.552000
D SELECT count(*) FROM hits;
30), sum(ResolutionWidth + ┌──────────────┐
│ count_star() │
├──────────────┤
│ 100000000    │
└──────────────┘
Run Time: real 0.189 user 0.172000 sys 0.000000
D SELECT count(*) FROM hits WHERE AdvEngineID != 0;t
┌──────────────┐
│ count_star() │
├──────────────┤
│ 630535       │
└──────────────┘
Run Time: real 0.063 user 0.420000 sys 0.008000
D SELECT sum(AdvEngineID), count(*), avg(ResolutionWidth) FROM hits;(
┌──────────────────┬──────────────┬──────────────────────┐
│ sum(advengineid) │ count_star() │ avg(resolutionwidth) │
├──────────────────┼──────────────┼──────────────────────┤
│ 7280824          │ 100000000    │ 1513.48908394        │
└──────────────────┴──────────────┴──────────────────────┘
Run Time: real 0.097 user 0.744000 sys 0.116000
D SELECT sum(UserID) FROM hits;s
┌────────────────────────┐
│      sum(userid)       │
├────────────────────────┤
│ 3.2306058694090605e+26 │
└────────────────────────┘
Run Time: real 0.095 user 0.684000 sys 0.012000
D SELECT COUNT(DISTINCT UserID) FROM hits;+
┌───────────────┐
│ count(userid) │
├───────────────┤
│ 17630976      │
└───────────────┘
Run Time: real 10.279 user 10.520000 sys 2.380000
D SELECT COUNT(DISTINCT SearchPhrase) FROM hits;
┌─────────────────────┐
│ count(searchphrase) │
├─────────────────────┤
│ 6019589             │
└─────────────────────┘
Run Time: real 12.691 user 15.776000 sys 1.444000
D SELECT min(EventDate), max(EventDate) FROM hits;
┌────────────────┬────────────────┐
│ min(eventdate) │ max(eventdate) │
├────────────────┼────────────────┤
│ 15888          │ 15917          │
└────────────────┴────────────────┘
Run Time: real 0.119 user 0.608000 sys 0.020000
D SELECT AdvEngineID, count(*) FROM hits WHERE AdvEngineID != 0 GROUP BY AdvEngineID ORDER BY count(*) DESC;o
┌─────────────┬──────────────┐
│ AdvEngineID │ count_star() │
├─────────────┼──────────────┤
│ 2           │ 404620       │
│ 27          │ 113167       │
│ 13          │ 45633        │
│ 45          │ 38974        │
│ 44          │ 9731         │
│ 3           │ 6896         │
│ 62          │ 5266         │
│ 52          │ 3554         │
│ 50          │ 938          │
│ 28          │ 836          │
│ 53          │ 350          │
│ 25          │ 343          │
│ 61          │ 158          │
│ 21          │ 38           │
│ 42          │ 20           │
│ 16          │ 7            │
│ 7           │ 3            │
│ 22          │ 1            │
└─────────────┴──────────────┘
Run Time: real 0.050 user 0.608000 sys 0.164000
D SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10;
┌──────────┬─────────┐
│ RegionID │    u    │
├──────────┼─────────┤
│ 229      │ 2845673 │
│ 2        │ 1081016 │
│ 208      │ 831676  │
│ 169      │ 604583  │
│ 184      │ 322661  │
│ 158      │ 307152  │
│ 34       │ 299479  │
│ 55       │ 286525  │
│ 107      │ 272448  │
│ 42       │ 243181  │
└──────────┴─────────┘
Run Time: real 10.522 user 10.800000 sys 2.108000
D SELECT RegionID, sum(AdvEngineID), count(*) AS c, avg(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10;o
┌──────────┬──────────────────┬──────────┬──────────────────────┬───────────────┐
│ RegionID │ sum(advengineid) │    c     │ avg(resolutionwidth) │ count(userid) │
├──────────┼──────────────────┼──────────┼──────────────────────┼───────────────┤
│ 229      │ 2078084          │ 18296430 │ 1506.0876750819696   │ 2845673       │
│ 2        │ 441711           │ 6687708  │ 1479.8410618406187   │ 1081016       │
│ 208      │ 285925           │ 4261945  │ 1285.260504769536    │ 831676        │
│ 169      │ 100887           │ 3320286  │ 1465.90517142198     │ 604583        │
│ 32       │ 81498            │ 1843721  │ 1538.0370495318978   │ 216010        │
│ 34       │ 161779           │ 1792406  │ 1548.364990409539    │ 299479        │
│ 184      │ 55526            │ 1755223  │ 1506.8102679830426   │ 322661        │
│ 42       │ 108820           │ 1542771  │ 1587.1074287758845   │ 243181        │
│ 107      │ 120470           │ 1516722  │ 1548.6039623609336   │ 272448        │
│ 51       │ 98212            │ 1435598  │ 1579.8864215469791   │ 211505        │
└──────────┴──────────────────┴──────────┴──────────────────────┴───────────────┘
Run Time: real 12.087 user 13.296000 sys 2.408000
D SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10;
┌──────────────────┬─────────┐
│ MobilePhoneModel │    u    │
├──────────────────┼─────────┤
│ iPad             │ 1090347 │
│ iPhone           │ 45758   │
│ A500             │ 16046   │
│ N8-00            │ 5565    │
│ iPho             │ 3300    │
│ ONE TOUCH 6030A  │ 2759    │
│ GT-P7300B        │ 1907    │
│ 3110000          │ 1871    │
│ GT-I9500         │ 1598    │
│ eagle75          │ 1492    │
└──────────────────┴─────────┘
Run Time: real 2.262 user 5.536000 sys 0.564000
D SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10;
┌─────────────┬──────────────────┬────────┐
│ MobilePhone │ MobilePhoneModel │   u    │
├─────────────┼──────────────────┼────────┤
│ 1           │ iPad             │ 931038 │
│ 5           │ iPad             │ 48385  │
│ 6           │ iPad             │ 29710  │
│ 7           │ iPad             │ 28391  │
│ 118         │ A500             │ 16005  │
│ 6           │ iPhone           │ 14516  │
│ 26          │ iPhone           │ 13566  │
│ 10          │ iPad             │ 11433  │
│ 32          │ iPad             │ 9503   │
│ 13          │ iPad             │ 9417   │
└─────────────┴──────────────────┴────────┘
Run Time: real 2.487 user 6.048000 sys 0.412000
D SELECT SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   c   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 70263 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 34675 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 24579 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 21649 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 19703 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 19195 │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 17284 │
│ galaxy table                                                                       │ 16746 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 16620 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 12317 │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.772 user 16.624000 sys 1.884000
D SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10;(
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   u   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 23671 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 19738 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 18394 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 17550 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 14599 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 14529 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 14197 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 9001  │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 8792  │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xB1\xD0\xB8\xD0\xBD\xD0\xB8\xD1\x80\xD0\xBE\xD0\xB... │ 7572  │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 20.063 user 17.784000 sys 3.104000
D SELECT SearchEngineID, SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10;(
┌────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────┐
│ SearchEngineID │                                    SearchPhrase                                    │   c   │
├────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ 2              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 46258 │
│ 2              │ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 18871 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 16905 │
│ 3              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 16748 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 14911 │
│ 2              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 13716 │
│ 2              │ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 13414 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 13105 │
│ 3              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 12815 │
│ 2              │ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 11946 │
└────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.371 user 18.692000 sys 0.164000
D SELECT UserID, count(*) FROM hits GROUP BY UserID ORDER BY count(*) DESC LIMIT 10;e
┌─────────────────────┬──────────────┐
│       UserID        │ count_star() │
├─────────────────────┼──────────────┤
│ 1313338681122956954 │ 29097        │
│ 1907779576417363396 │ 25333        │
│ 2305303682471783379 │ 10611        │
│ 7982623143712728547 │ 7584         │
│ 6018350421959114808 │ 6678         │
│ 7280399273658728997 │ 6411         │
│ 1090981537032625727 │ 6197         │
│ 5730251990344211405 │ 6019         │
│ 835157184735512989  │ 5211         │
│ 770542365400669095  │ 4906         │
└─────────────────────┴──────────────┘
Run Time: real 1.016 user 12.592000 sys 0.120000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY count(*) DESC LIMIT 10;i
┌─────────────────────┬──────────────┬──────────────┐
│       UserID        │ SearchPhrase │ count_star() │
├─────────────────────┼──────────────┼──────────────┤
│ 1313338681122956954 │              │ 29097        │
│ 1907779576417363396 │              │ 25333        │
│ 2305303682471783379 │              │ 10611        │
│ 7982623143712728547 │              │ 6669         │
│ 7280399273658728997 │              │ 6408         │
│ 1090981537032625727 │              │ 6196         │
│ 5730251990344211405 │              │ 6019         │
│ 6018350421959114808 │              │ 5990         │
│ 835157184735512989  │              │ 5209         │
│ 770542365400669095  │              │ 4906         │
└─────────────────────┴──────────────┴──────────────┘
Run Time: real 3.555 user 29.324000 sys 3.220000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10;
(┌──────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬──────────────┐
│        UserID        │                                    SearchPhrase                                    │ count_star() │
├──────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼──────────────┤
│ 1429668226731527516  │                                                                                    │ 10           │
│ 7090682690943997576  │                                                                                    │ 9            │
│ 581931296369147468   │                                                                                    │ 28           │
│ 1303966184265002832  │                                                                                    │ 3            │
│ 3410567899957317285  │                                                                                    │ 1            │
│ 1144785580888361492  │                                                                                    │ 2            │
│ 8350014103248889436  │                                                                                    │ 4            │
│ 2765306422664525607  │                                                                                    │ 1            │
│ 1499056669116975597  │ \xD1\x85\xD0\xBE\xD1\x81\xD1\x82\xD1\x8C \xD0\xBE\xD0\xBD\xD0\xBB\xD0\xB0\xD0\x... │ 1            │
│ 16159576947204565573 │                                                                                    │ 79           │
└──────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴──────────────┘
Run Time: real 2.360 user 30.528000 sys 1.528000
D SELECT UserID, extract(minute FROM (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) AS m, SearchPhrase, count(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY count(*) DESC LIMIT 10;
┌─────────────────────┬────┬──────────────┬──────────────┐
│       UserID        │ m  │ SearchPhrase │ count_star() │
├─────────────────────┼────┼──────────────┼──────────────┤
│ 1313338681122956954 │ 31 │              │ 589          │
│ 1313338681122956954 │ 28 │              │ 578          │
│ 1313338681122956954 │ 29 │              │ 572          │
│ 1313338681122956954 │ 33 │              │ 567          │
│ 1313338681122956954 │ 27 │              │ 557          │
│ 1313338681122956954 │ 32 │              │ 554          │
│ 1313338681122956954 │ 30 │              │ 552          │
│ 1313338681122956954 │ 34 │              │ 546          │
│ 1313338681122956954 │ 26 │              │ 540          │
│ 1313338681122956954 │ 10 │              │ 539          │
└─────────────────────┴────┴──────────────┴──────────────┘
Run Time: real 8.635 user 52.720000 sys 1.648000
D SELECT UserID FROM hits WHERE UserID = 12345678901234567890;
Run Time: real 0.257 user 0.256000 sys 0.000000
D SELECT count(*) FROM hits WHERE URL::TEXT LIKE '%metrika%';e
┌──────────────┐
│ count_star() │
├──────────────┤
│ 211          │
└──────────────┘
Run Time: real 7.228 user 46.668000 sys 0.300000
D SELECT SearchPhrase, min(URL), count(*) AS c FROM hits WHERE URL::TEXT LIKE '%metrika%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;u
┌────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───┐
│                                    SearchPhrase                                    │                                      min(url)                                      │ c │
├────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───┤
│ \xD1\x80\xD0\xB0\xD0\xB1\xD0\xBE\xD0\xB2\xD1\x8B\xD0\xB5 \xD0\xB4\xD0\xBE\xD1\x... │ http://smeshariki.ru/index.ua/auto.ria.ua/change=0&s_yers=0&with_video.yandex.u... │ 1 │
│ \xD1\x80\xD0\xB5\xD1\x86\xD0\xB5\xD0\xBF\xD1\x82                                   │ http://smeshariki.ru/index.ua/search/metrikanske-urali-belorussia/28.html?1=1&c... │ 1 │
│ \xD0\xBE\xD0\xBA\xD0\xB5\xD0\xB0\xD0\xBD\xD1\x81\xD0\xBA\xD0\xBE\xD0\xB5 \xD1\x... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD0\xB8\xD1\x89\xD1\x83 \xD1\x80\xD0\xB0\xD0\xB1\xD0\xBE\xD1\x82\xD0\xB0 \xD0\... │ http://smeshariki.ru/index.ua/advanceForce.1primea/forum=1&district=25586/page4... │ 1 │
│ \xD0\xB4\xD0\xB8\xD0\xBD\xD0\xB0 \xD0\xB2\xD0\xB0\xD0\xBA\xD0\xB0\xD0\xBD\xD1\x... │ http://ecrn.ru/personal/gost277572,9589&pt=b&pd=8&pw=2&page3/?state=0&damages/0... │ 1 │
│ \xD0\xBC\xD1\x8B\xD1\x81\xD0\xBB \xD0\xBF\xD0\xB5\xD1\x81\xD0\xB5\xD0\xBD \xD1\... │ http://smeshariki.ru/a-folder=cmarka=15&sort=&sll=36872/metrika/frl-2/bage-all/... │ 1 │
│ \xD0\xB2\xD0\xB8\xD0\xB4\xD0\xB5\xD0\xBE \xD1\x82\xD0\xB0\xD0\xBA\xD0\xBE\xD0\x... │ http://maximum_438424&pvno=2&evlg=VC,0;VL,628;IC,1653-82676212&op_page=0&door=0... │ 1 │
│ \xD1\x82\xD0\xB5\xD0\xBA\xD1\x81\xD1\x82\xD1\x8B \xD0\xBF\xD0\xBE\xD0\xB4\xD1\x... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD0\xBA\xD0\xBE\xD1\x88\xD0\xBA\xD1\x83 \xD1\x81\xD0\xB7\xD0\xB0\xD0\xBE \xD1\... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD1\x82\xD1\x80\xD1\x83\xD0\xB4\xD0\xB0 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xB2\xD1\... │ http://smeshariki.ru/recipes/sadovka.ru/gorod55.ru/search?text=\xD0\xB8\xD0\xB7... │ 1 │
└────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───┘
Run Time: real 0.829 user 13.020000 sys 0.000000
D count(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title::TEXT LIKE '%Яндекс%' AND URL::TEXT NOT LIKE '%.yandex.%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;(
Run Time: real 7.200 user 22.172000 sys 0.560000
D SELECT * FROM hits WHERE URL::TEXT LIKE '%metrika%' ORDER BY EventTime LIMIT 10;
┌─────────────────────┬────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬────────────┬───────────┬───────────┬────────────┬──────────┬─────────────────────┬──────────────┬─────┬───────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬─────────┬───────────────────┬─────────────────┬───────────────┬─────────────┬─────────────────┬──────────────────┬─────────────────┬────────────┬────────────┬─────────────┬──────────┬──────────┬────────────────┬────────────────┬──────────────┬──────────────────┬──────────┬─────────────┬──────────────────┬────────┬─────────────┬────────────────┬────────────────┬──────────────┬─────────────┬─────────────┬───────────────────┬────────────────────┬────────────────┬─────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬──────────────────────┬─────────────┬────────┬────────────┬─────────────┬─────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬──────────────┬─────────┬─────────────┬───────────────┬──────────┬──────────┬────────────────┬─────┬─────┬────────┬───────────┬───────────┬────────────┬────────────┬────────────┬───────────────┬─────────────────┬────────────────┬───────────────┬──────────────┬───────────┬────────────┬───────────┬───────────────┬─────────────────────┬───────────────────┬─────────────┬───────────────────────┬──────────────────┬────────────┬──────────────┬───────────────┬─────────────────┬─────────────────────┬────────────────────┬──────────────┬──────────────────┬───────────┬───────────┬─────────────┬────────────┬─────────┬─────────┬──────────┬──────────────────────┬──────────────────────┬──────┐
│       WatchID       │ JavaEnable │                                       Title                                        │ GoodEvent │ EventTime  │ EventDate │ CounterID │  ClientIP  │ RegionID │       UserID        │ CounterClass │ OS  │ UserAgent │                                        URL                                         │                                      Referer                                       │ Refresh │ RefererCategoryID │ RefererRegionID │ URLCategoryID │ URLRegionID │ ResolutionWidth │ ResolutionHeight │ ResolutionDepth │ FlashMajor │ FlashMinor │ FlashMinor2 │ NetMajor │ NetMinor │ UserAgentMajor │ UserAgentMinor │ CookieEnable │ JavascriptEnable │ IsMobile │ MobilePhone │ MobilePhoneModel │ Params │ IPNetworkID │ TraficSourceID │ SearchEngineID │ SearchPhrase │ AdvEngineID │ IsArtifical │ WindowClientWidth │ WindowClientHeight │ ClientTimeZone │ ClientEventTime │ SilverlightVersion1 │ SilverlightVersion2 │ SilverlightVersion3 │ SilverlightVersion4 │     PageCharset      │ CodeVersion │ IsLink │ IsDownload │ IsNotBounce │       FUniqID       │                                    OriginalURL                                     │    HID    │ IsOldCounter │ IsEvent │ IsParameter │ DontCountHits │ WithHash │ HitColor │ LocalEventTime │ Age │ Sex │ Income │ Interests │ Robotness │  RemoteIP  │ WindowName │ OpenerName │ HistoryLength │ BrowserLanguage │ BrowserCountry │ SocialNetwork │ SocialAction │ HTTPError │ SendTiming │ DNSTiming │ ConnectTiming │ ResponseStartTiming │ ResponseEndTiming │ FetchTiming │ SocialSourceNetworkID │ SocialSourcePage │ ParamPrice │ ParamOrderID │ ParamCurrency │ ParamCurrencyID │ OpenstatServiceName │ OpenstatCampaignID │ OpenstatAdID │ OpenstatSourceID │ UTMSource │ UTMMedium │ UTMCampaign │ UTMContent │ UTMTerm │ FromTag │ HasGCLID │     RefererHash      │       URLHash        │ CLID │
├─────────────────────┼────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼────────────┼───────────┼───────────┼────────────┼──────────┼─────────────────────┼──────────────┼─────┼───────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼─────────┼───────────────────┼─────────────────┼───────────────┼─────────────┼─────────────────┼──────────────────┼─────────────────┼────────────┼────────────┼─────────────┼──────────┼──────────┼────────────────┼────────────────┼──────────────┼──────────────────┼──────────┼─────────────┼──────────────────┼────────┼─────────────┼────────────────┼────────────────┼──────────────┼─────────────┼─────────────┼───────────────────┼────────────────────┼────────────────┼─────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼──────────────────────┼─────────────┼────────┼────────────┼─────────────┼─────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼─────────┼─────────────┼───────────────┼──────────┼──────────┼────────────────┼─────┼─────┼────────┼───────────┼───────────┼────────────┼────────────┼────────────┼───────────────┼─────────────────┼────────────────┼───────────────┼──────────────┼───────────┼────────────┼───────────┼───────────────┼─────────────────────┼───────────────────┼─────────────┼───────────────────────┼──────────────────┼────────────┼──────────────┼───────────────┼─────────────────┼─────────────────────┼────────────────────┼──────────────┼──────────────────┼───────────┼───────────┼─────────────┼────────────┼─────────┼─────────┼──────────┼──────────────────────┼──────────────────────┼──────┤
│ 9008228978173248400 │ 1          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372714203 │ 15888     │ 46429     │ 1741285710 │ 208      │ 727970985383478408  │ 0            │ 2   │ 2         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page%3D%26ev_n%3Dtvor_3_4                                     │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1638            │ 1658             │ 37              │ 14         │ 0          │ 700.22      │ 0        │ 0        │ 15             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2349927     │ -1             │ 0              │              │ 0           │ 0           │ 1844              │ 888                │ 135            │ 1372711075      │ 3                   │ 0                   │ 29241               │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 0                   │                                                                                    │ 926364569 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372755313     │ 31  │ 1   │ 0      │ 0         │ 0         │ 1985697352 │ 13001      │ -1         │ 22            │ vG              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 16989158750233735299 │ 2619784076535420345  │ 0    │
│ 7319686668886932386 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742048 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ sO             │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713898      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721190565 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747193     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 22084      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 5650132582613869356 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742083 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713960      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721255326 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747245     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 64225      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 6211862319117980382 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372744794 │ 15888     │ 46429     │ 1384976586 │ 208      │ 45205883125357727   │ 0            │ 8   │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │                                                                                    │ 0       │ 0                 │ 0               │ 9911          │ 216         │ 475             │ 368              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 7              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 3195177     │ 0              │ 0              │              │ 0           │ 0           │ 412               │ 286                │ 135            │ 1372732810      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 7015666733105959947 │                                                                                    │ 641313121 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372774931     │ 28  │ 1   │ 2      │ 1         │ 0         │ 1889444196 │ 44835      │ -1         │ 0             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18150585289071012696 │ 2619784076535420345  │ 0    │
│ 8127216893234548048 │ 0          │ \xD0\xA2\xD0\xBE\xD0\xBB\xD1\x81\xD1\x82\xD1\x83\xD1\x85\xD1\x83, \xD0\xB5\xD1\... │ 1         │ 1372752539 │ 15888     │ 46429     │ 1237806922 │ 208      │ 750085446646698731  │ 0            │ 2   │ 3         │ http://smeshariki.ru/used/99114578622-14406072,9269587/roometrika/?page=7&pw=2&... │ http://smeshariki.ru/page=11956bd3f5ba-bolshiient                                  │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1081            │ 979              │ 23              │ 15         │ 7          │ 700         │ 0        │ 0        │ 17             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2914423     │ -1             │ 0              │              │ 0           │ 0           │ 1434              │ 739                │ 623            │ 1372781865      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 5496132257355632424 │                                                                                    │ 983272850 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372760187     │ 50  │ 2   │ 2      │ 60        │ 18        │ 1113465640 │ 60610      │ -1         │ 29            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 194           │ 1631                │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 13570011243001147277 │ 11339053197878713733 │ 0    │
│ 5016976626924998727 │ 1          │ Toyota \xD1\x80\xD1\x83\xD0\xBA\xD0\xB0\xD0\xBB\xD1\x8B \xD0\xB4\xD0\xBB\xD1\x8... │ 1         │ 1372758784 │ 15888     │ 5645      │ 3888153915 │ 107      │ 4058808124307537573 │ 1            │ 2   │ 88        │ http:%2F%2Fwwww.bonprix.ru&pvid=131&op_products/transformality.pulsceness/01-me... │ http://forum.amur.info/node/12451180167540                                         │ 0       │ 10868             │ 635             │ 16361         │ 943         │ 1638            │ 777              │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 1              │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2726799     │ -1             │ 0              │              │ 0           │ 0           │ 1509              │ 618                │ 135            │ 1372835656      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 6227398498798751865 │                                                                                    │ 255959698 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372763371     │ 31  │ 1   │ 3      │ 3555      │ 13        │ 4006630121 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 10333931216342739575 │ 10009133566342666602 │ 0    │
│ 4963765960745323978 │ 0          │ \xD0\x93\xD0\x90\xD0\x97 (ZAZ) 5403J \xE2\x80\x93 \xD0\xA4\xD0\xB8\xD0\xBB\xD1\... │ 1         │ 1372793626 │ 15888     │ 46429     │ 2063319617 │ 23967    │ 5283184799411504286 │ 0            │ 44  │ 2         │ http://smeshariki.ru/userId=0&matched_car=Volkswagency=1&p=8090/roometrika/?pag... │ http://smeshariki.ru/smsarhiv/num/33363634383294&lr=66&v6s=2&bodystyle             │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1996            │ 1781             │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 10             │ nA             │ 1            │ 1                │ 0        │ 0           │                  │        │ 4110783     │ -1             │ 0              │              │ 0           │ 0           │ 1551              │ 955                │ 291            │ 1372730435      │ 7                   │ 1                   │ 9577                │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 8904020920948834668 │                                                                                    │ 883138215 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372777308     │ 22  │ 2   │ 2      │ 11339     │ 18        │ 2136940575 │ 1653       │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18276268115953212999 │ 9484754903086635093  │ 0    │
│ 6284148982888572412 │ 1          │ Morskoj port \xE2\x80\x93 \xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD1\x82\xD1\... │ 1         │ 1372795222 │ 15889     │ 3922      │ 2460998382 │ 40       │ 1643466856862289966 │ 1            │ 44  │ 7         │ http://moikrug.ru/message-12-kak-pravdorubovnik_metrika-info.php?f=23&prr          │ http://diary.ru/GameMain.aspx?d=1412&lr=75&mode=photo/login=igorod.irr.ru/i6102... │ 0       │ 306               │ 29199           │ 92            │ 247         │ 1368            │ 554              │ 37              │ 15         │ 7          │ 800.94      │ 0        │ 0        │ 12             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 1166094     │ 1              │ 0              │              │ 0           │ 0           │ 1253              │ 642                │ 135            │ 1372799147      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7061143530822060136 │                                                                                    │ 699865379 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372810401     │ 31  │ 2   │ 3      │ 6         │ 0         │ 3849445958 │ -1         │ -1         │ -1            │ S0              │ h1             │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 14060834305267311691 │ 1791983733815963315  │ 0    │
│ 6024648629746505393 │ 0          │ \xD0\x9F\xD0\xBE\xD0\xB3\xD1\x80\xD0\xB5\xD0\xB2\xD0\xB0\xD1\x82\xD0\xB5\xD0\xB... │ 1         │ 1372795271 │ 15889     │ 1200      │ 2932550360 │ 208      │ 1578473929930714515 │ 1            │ 107 │ 82        │ http://afisha.yandex.ru/real-estate/out-of-town/household_app_metrika.ru/wildbe... │ http://ad.adrive_type_id=1959251&stUrl%3Dpopular/kw/306161&lr=1418][to]=&input_... │ 0       │ 15265             │ 19757           │ 8953          │ 32252       │ 958             │ 1871             │ 37              │ 0          │ 0          │             │ 0        │ 0        │ 3              │ D\xE0          │ 1            │ 1                │ 1        │ 6           │                  │        │ 4010641     │ -1             │ 0              │              │ 0           │ 0           │ 521               │ 1803               │ -1             │ 1372870507      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 0                   │ http://b.kavanga.ru/tags/%FD%ED%FB%E2%F3%E6%E5%E6%ED%E8%ED%F1%FF%ED&ti=%D0%BD%D... │ 120241233 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372842094     │ 0   │ 0   │ 0      │ 0         │ 0         │ 3975911785 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 9685011611637290144  │ 5941547189901908071  │ 0    │
│ 4857420640250996887 │ 1          │ Suzuki Escort 4* (\xD0\xA4\xD1\x80\xD0\xB0\xD0\xBD\xD1\x86\xD1\x8B 3 \xD1\x81\x... │ 1         │ 1372800737 │ 15889     │ 3922      │ 3201307115 │ 190      │ 7335986183190726964 │ 1            │ 44  │ 88        │ http://pova-ul-mir.irr.ru/search.php?gidcar=37408&uuid=1&bc=3&city=0&pv=20&s_ye... │ http://news/238/~6/?cauth=1&av=1&nm=1&ms=1,2/currency=RUR/page_num_id=15366563&... │ 0       │ 306               │ 144             │ 304           │ 132         │ 1368            │ 554              │ 37              │ 15         │ 4          │ 202         │ 0        │ 0        │ 1              │ fi             │ 1            │ 1                │ 0        │ 0           │                  │        │ 2311071     │ -1             │ 0              │              │ 0           │ 0           │ 1333              │ 924                │ 322            │ 1372840359      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7659179697273795837 │                                                                                    │ 232010762 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372866397     │ 31  │ 2   │ 2      │ 3658      │ 28        │ 2920265313 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 8839345929686869081  │ 5449259806403761803  │ 0    │
└─────────────────────┴────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴────────────┴───────────┴───────────┴────────────┴──────────┴─────────────────────┴──────────────┴─────┴───────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴─────────┴───────────────────┴─────────────────┴───────────────┴─────────────┴─────────────────┴──────────────────┴─────────────────┴────────────┴────────────┴─────────────┴──────────┴──────────┴────────────────┴────────────────┴──────────────┴──────────────────┴──────────┴─────────────┴──────────────────┴────────┴─────────────┴────────────────┴────────────────┴──────────────┴─────────────┴─────────────┴───────────────────┴────────────────────┴────────────────┴─────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴──────────────────────┴─────────────┴────────┴────────────┴─────────────┴─────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴──────────────┴─────────┴─────────────┴───────────────┴──────────┴──────────┴────────────────┴─────┴─────┴────────┴───────────┴───────────┴────────────┴────────────┴────────────┴───────────────┴─────────────────┴────────────────┴───────────────┴──────────────┴───────────┴────────────┴───────────┴───────────────┴─────────────────────┴───────────────────┴─────────────┴───────────────────────┴──────────────────┴────────────┴──────────────┴───────────────┴─────────────────┴─────────────────────┴────────────────────┴──────────────┴──────────────────┴───────────┴───────────┴─────────────┴────────────┴─────────┴─────────┴──────────┴──────────────────────┴──────────────────────┴──────┘
Run Time: real 36.001 user 164.452000 sys 5.964000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD0\xB1\xD1\x80\xD0\xB8\xD1\x82\xD0\xB0 \xD0\xB3\xD0\xB0\xD0\xBD\xD0\xB0\xD0\x... │
│ \xD1\x81\xD0\xBB\xD0\xBE\xD0\xBD.\xD1\x80\xD1\x83\xD0\xB1., \xD0\xB4. \xD0\xB0.... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.255 user 3.820000 sys 0.172000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY SearchPhrase LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ ! hektdf gjcgjhn conster                                                           │
│ ! \xD1\x81\xD0\xBA\xD0\xB0\xD1\x80\xD0\xBF                                         │
│ !(\xD0\xBA\xD0\xB0\xD0\xBA \xD0\xB2\xD0\xBE\xD1\x80\xD0\xBE\xD0\xBD\xD0\xB8        │
│ !(\xD0\xBF\xD0\xBE \xD0\xB3\xD0\xBE\xD1\x80\xD0\xB8\xD1\x8E \xD0\xB2 \xD1\x8F\x... │
│ !(\xD1\x81) \xD0\xBF\xD1\x80\xD0\xBE \xD0\xB4\xD0\xBF\xD0\xBE \xD1\x81\xD0\xB5\... │
│ !(\xD1\x81\xD0\xB0\xD0\xBB\xD0\xBE\xD0\xBD\xD1\x8B \xD0\xBE\xD1\x81\xD1\x82\xD0... │
│ !(\xD1\x81\xD1\x82\xD0\xB0\xD1\x80\xD1\x82\xD0\xB5\xD1\x80 rav4 \xD1\x82\xD1\x8... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xBC\xD1\x8F\xD1... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xBC\xD0\xB0\xD1\x83\xD1\x81 \xD0\xBA\xD0... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD1\x81\xD0\xB5\xD1\x80\xD0\xB8\xD0\xB8         │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.251 user 3.676000 sys 0.104000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime, SearchPhrase LIMIT 10;
D┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD0\xB0\xD0\xBD\xD0\xB0\xD0\xBF\xD0\xB0 \xD0\xBE\xD0\xBF\xD0\xB5\xD1\x80\xD0\x... │
│ \xD0\xB1\xD1\x80\xD0\xB8\xD1\x82\xD0\xB0 \xD0\xB3\xD0\xB0\xD0\xBD\xD0\xB0\xD0\x... │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.232 user 3.660000 sys 0.000000
D SELECT CounterID, avg(octet_length(URL)) AS l, count(*) AS c FROM hits WHERE octet_length(URL) > 0 GROUP BY CounterID HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;L
┌───────────┬────────────────────┬─────────┐
│ CounterID │         l          │    c    │
├───────────┼────────────────────┼─────────┤
│ 233773    │ 469.18537326484886 │ 2938865 │
│ 245438    │ 271.7892512777364  │ 2510103 │
│ 122612    │ 238.64530987208474 │ 3574007 │
│ 234004    │ 204.28793262381632 │ 238660  │
│ 1634      │ 197.83321731651554 │ 323229  │
│ 786       │ 186.75537634408602 │ 120528  │
│ 114157    │ 142.91881538575285 │ 216408  │
│ 515       │ 126.22860040706026 │ 146907  │
│ 256004    │ 125.37108455074805 │ 858171  │
│ 95427     │ 120.26856903175477 │ 374306  │
│ 199550    │ 109.81720498866335 │ 7115413 │
│ 220992    │ 105.85666196266179 │ 494614  │
│ 196239    │ 98.34882201749727  │ 163797  │
│ 62        │ 93.15981711034343  │ 738150  │
│ 96948     │ 92.74321182146618  │ 396093  │
│ 188878    │ 91.98308322489247  │ 311998  │
│ 249603    │ 91.88026594639518  │ 120325  │
│ 3922      │ 87.83856410684609  │ 8527069 │
│ 191697    │ 86.95776647628826  │ 124664  │
│ 97467     │ 84.2953696503987   │ 131178  │
│ 186300    │ 83.97258027738701  │ 802561  │
│ 146891    │ 77.77430173504756  │ 605286  │
│ 38        │ 76.43757015971798  │ 507770  │
│ 230962    │ 76.3127707226559   │ 169223  │
│ 77639     │ 75.38681923602442  │ 253961  │
└───────────┴────────────────────┴─────────┘
Run Time: real 0.443 user 6.476000 sys 0.504000
D //(?:www\.)?([^/]+)/.*$', '\1') AS key, avg(octet_length(Referer)) AS l, count(*) AS c, min(Referer) FROM hits WHERE octet_length(Referer) > 0 GROUP BY key HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;E
┌────────────────────────────────────────────────────────────────────────┬────────────────────┬─────────┬────────────────────────────────────────────────────────────────────────────────────┐
│                                  key                                   │         l          │    c    │                                    min(referer)                                    │
├────────────────────────────────────────────────────────────────────────┼────────────────────┼─────────┼────────────────────────────────────────────────────────────────────────────────────┤
│ svpressa.ru                                                            │ 307.980979437341   │ 242527  │ http://svpressa.ru/                                                                │
│ msuzie-showforumdisplay                                                │ 263.327228380409   │ 183676  │ http://msuzie-showforumdisplay/63/~2/?name=&cost_neu%3D400%26retpath=default777... │
│ saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80 │ 242.5236948271821  │ 200529  │ http://saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80/c... │
│ domics                                                                 │ 212.92990978061542 │ 326094  │ http://domics/825179.11931861234499792                                             │
│ e96.ru                                                                 │ 210.09628206687884 │ 1019276 │ http://e96.ru/%3Ffrom]=&input_act[count_num=0&dff=arian-carrina1201517&cad=rjt&... │
│ gadgets.irr.ru                                                         │ 131.9597008950273  │ 349710  │ https://gadgets.irr.ru/2jmj7l5rSw0yVb                                              │
│ google.ru                                                              │ 109.24485253818524 │ 2158491 │ http://google.ru/                                                                  │
│ go.mail                                                                │ 108.63930572737723 │ 8228007 │ http://go.mail/04/detskaia-moda-zhiensmed                                          │
│ msouz.ru                                                               │ 106.10887286512423 │ 301774  │ http://msouz.ru/?ffshop                                                            │
│ state=19945206                                                         │ 105.6469046513171  │ 512414  │ http://state=19945206/foto-4/login%20NoTs3M&where=all&filmId=u8aGGqtWs3M&where=... │
│ loveplanet.ru                                                          │ 104.60136383347789 │ 461200  │ http://loveplanet.ru/%3Faw_opel/page=2013                                          │
│ bonprix.ru                                                             │ 104.41683309557774 │ 1125105 │ http://bonprix.ru/                                                                 │
│ novjob.ru                                                              │ 96.75331644732393  │ 133049  │ http://novjob.ru/                                                                  │
│ cn.ru                                                                  │ 95.63198716663325  │ 124675  │ http://cn.ru/GameMain.aspx#catalog/100523&tails.xml?market_pc.html?pid=9403&lr=... │
│ geomethiettai.ru                                                       │ 94.78816556817006  │ 115916  │ https://geomethiettai.ru/GameMain.aspx?group=houses/list=266559j7077&num=7&prun... │
│ kino                                                                   │ 90.27628829938655  │ 120139  │ http://kino/6/21/2/women.asp?whichpage4/#oversion=unreadm&uid                      │
│ yaroslavens.ru                                                         │ 90.17077281117085  │ 124610  │ http://yaroslavens.ru/main.aspx#catalog%2F1004-1100000147-otvet/actions/disloca... │
│ mysw.info                                                              │ 89.68684313159915  │ 984596  │ http://mysw.info/                                                                  │
│ m.myloveplanet.ru                                                      │ 88.73233749439181  │ 151564  │ http://m.myloveplanet.ru/                                                          │
│ povarenok.ru                                                           │ 83.97395952020882  │ 144813  │ http://povarenok.ru/                                                               │
│ gorod                                                                  │ 80.33107253811141  │ 110728  │ http://gorod/%3Fauto.ria.ua%2Fjob                                                  │
│ yandsearch                                                             │ 80.21664430621621  │ 245970  │ http://www.yandsearch/rooms=1/page2                                                │
│ myloveplanet.ru                                                        │ 80.08183067768715  │ 110582  │ http://myloveplanet.ru/#associety/auto                                             │
│ tambov.irr.ru                                                          │ 77.8650188064113   │ 315318  │ http://tambov.irr.ru/0/c1/tgFtaeLDK0yb01A7xvQF08sjCFqQxn51                         │
│ kurortmag.ru                                                           │ 75.74958779884584  │ 155264  │ http://kurortmag.ru/                                                               │
└────────────────────────────────────────────────────────────────────────┴────────────────────┴─────────┴────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 121.613 user 1864.148000 sys 2.320000
D  + 82), sum(ResolutionWidth + 83), sum(ResolutionWidth + 84), sum(ResolutionWidth + 85), sum(ResolutionWidth + 86), sum(ResolutionWidth + 87), sum(ResolutionWidth + 88), sum(ResolutionWidth + 89) FROM hits;
┌──────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┐
│ sum(resolutionwidth) │ sum(resolutionwidth + 1) │ sum(resolutionwidth + 2) │ sum(resolutionwidth + 3) │ sum(resolutionwidth + 4) │ sum(resolutionwidth + 5) │ sum(resolutionwidth + 6) │ sum(resolutionwidth + 7) │ sum(resolutionwidth + 8) │ sum(resolutionwidth + 9) │ sum(resolutionwidth + 10) │ sum(resolutionwidth + 11) │ sum(resolutionwidth + 12) │ sum(resolutionwidth + 13) │ sum(resolutionwidth + 14) │ sum(resolutionwidth + 15) │ sum(resolutionwidth + 16) │ sum(resolutionwidth + 17) │ sum(resolutionwidth + 18) │ sum(resolutionwidth + 19) │ sum(resolutionwidth + 20) │ sum(resolutionwidth + 21) │ sum(resolutionwidth + 22) │ sum(resolutionwidth + 23) │ sum(resolutionwidth + 24) │ sum(resolutionwidth + 25) │ sum(resolutionwidth + 26) │ sum(resolutionwidth + 27) │ sum(resolutionwidth + 28) │ sum(resolutionwidth + 29) │ sum(resolutionwidth + 30) │ sum(resolutionwidth + 31) │ sum(resolutionwidth + 32) │ sum(resolutionwidth + 33) │ sum(resolutionwidth + 34) │ sum(resolutionwidth + 35) │ sum(resolutionwidth + 36) │ sum(resolutionwidth + 37) │ sum(resolutionwidth + 38) │ sum(resolutionwidth + 39) │ sum(resolutionwidth + 40) │ sum(resolutionwidth + 41) │ sum(resolutionwidth + 42) │ sum(resolutionwidth + 43) │ sum(resolutionwidth + 44) │ sum(resolutionwidth + 45) │ sum(resolutionwidth + 46) │ sum(resolutionwidth + 47) │ sum(resolutionwidth + 48) │ sum(resolutionwidth + 49) │ sum(resolutionwidth + 50) │ sum(resolutionwidth + 51) │ sum(resolutionwidth + 52) │ sum(resolutionwidth + 53) │ sum(resolutionwidth + 54) │ sum(resolutionwidth + 55) │ sum(resolutionwidth + 56) │ sum(resolutionwidth + 57) │ sum(resolutionwidth + 58) │ sum(resolutionwidth + 59) │ sum(resolutionwidth + 60) │ sum(resolutionwidth + 61) │ sum(resolutionwidth + 62) │ sum(resolutionwidth + 63) │ sum(resolutionwidth + 64) │ sum(resolutionwidth + 65) │ sum(resolutionwidth + 66) │ sum(resolutionwidth + 67) │ sum(resolutionwidth + 68) │ sum(resolutionwidth + 69) │ sum(resolutionwidth + 70) │ sum(resolutionwidth + 71) │ sum(resolutionwidth + 72) │ sum(resolutionwidth + 73) │ sum(resolutionwidth + 74) │ sum(resolutionwidth + 75) │ sum(resolutionwidth + 76) │ sum(resolutionwidth + 77) │ sum(resolutionwidth + 78) │ sum(resolutionwidth + 79) │ sum(resolutionwidth + 80) │ sum(resolutionwidth + 81) │ sum(resolutionwidth + 82) │ sum(resolutionwidth + 83) │ sum(resolutionwidth + 84) │ sum(resolutionwidth + 85) │ sum(resolutionwidth + 86) │ sum(resolutionwidth + 87) │ sum(resolutionwidth + 88) │ sum(resolutionwidth + 89) │
├──────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┤
│ 151348908394         │ 151448908394             │ 151548908394             │ 151648908394             │ 151748908394             │ 151848908394             │ 151948908394             │ 152048908394             │ 152148908394             │ 152248908394             │ 152348908394              │ 152448908394              │ 152548908394              │ 152648908394              │ 152748908394              │ 152848908394              │ 152948908394              │ 153048908394              │ 153148908394              │ 153248908394              │ 153348908394              │ 153448908394              │ 153548908394              │ 153648908394              │ 153748908394              │ 153848908394              │ 153948908394              │ 154048908394              │ 154148908394              │ 154248908394              │ 154348908394              │ 154448908394              │ 154548908394              │ 154648908394              │ 154748908394              │ 154848908394              │ 154948908394              │ 155048908394              │ 155148908394              │ 155248908394              │ 155348908394              │ 155448908394              │ 155548908394              │ 155648908394              │ 155748908394              │ 155848908394              │ 155948908394              │ 156048908394              │ 156148908394              │ 156248908394              │ 156348908394              │ 156448908394              │ 156548908394              │ 156648908394              │ 156748908394              │ 156848908394              │ 156948908394              │ 157048908394              │ 157148908394              │ 157248908394              │ 157348908394              │ 157448908394              │ 157548908394              │ 157648908394              │ 157748908394              │ 157848908394              │ 157948908394              │ 158048908394              │ 158148908394              │ 158248908394              │ 158348908394              │ 158448908394              │ 158548908394              │ 158648908394              │ 158748908394              │ 158848908394              │ 158948908394              │ 159048908394              │ 159148908394              │ 159248908394              │ 159348908394              │ 159448908394              │ 159548908394              │ 159648908394              │ 159748908394              │ 159848908394              │ 159948908394              │ 160048908394              │ 160148908394              │ 160248908394              │
└──────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┘
Run Time: real 6.264 user 99.452000 sys 0.008000
D SELECT SearchEngineID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10;
┌────────────────┬────────────┬──────┬──────────────┬──────────────────────┐
│ SearchEngineID │  ClientIP  │  c   │ sum(refresh) │ avg(resolutionwidth) │
├────────────────┼────────────┼──────┼──────────────┼──────────────────────┤
│ 2              │ 1138507705 │ 1633 │ 35           │ 1408.0122473974282   │
│ 2              │ 1740861572 │ 1331 │ 28           │ 1577.945905334335    │
│ 2              │ 3487820196 │ 1144 │ 35           │ 1553.1984265734266   │
│ 2              │ 3797060577 │ 1140 │ 36           │ 1543.4140350877192   │
│ 2              │ 2349209741 │ 1105 │ 30           │ 1557.387330316742    │
│ 2              │ 2424344199 │ 1102 │ 31           │ 1555.6588021778584   │
│ 2              │ 3663904793 │ 1083 │ 31           │ 1581.8171745152354   │
│ 2              │ 3829154130 │ 1082 │ 30           │ 1541.253234750462    │
│ 2              │ 2551371145 │ 1080 │ 24           │ 1559.8092592592593   │
│ 2              │ 4029049820 │ 1058 │ 32           │ 1556.2003780718337   │
└────────────────┴────────────┴──────┴──────────────┴──────────────────────┘
Run Time: real 0.996 user 13.080000 sys 0.064000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 4623938834438874046 │ 3335652175 │ 2 │ 0            │ 1917.0               │
│ 8570880866533920844 │ 2776099975 │ 2 │ 0            │ 1917.0               │
│ 6816565865734300637 │ 3770216628 │ 2 │ 0            │ 2038.0               │
│ 7411827807718521758 │ 2301434990 │ 2 │ 0            │ 1087.0               │
│ 8423042978509451644 │ 2960255590 │ 2 │ 0            │ 1368.0               │
│ 8672760597587433971 │ 1269590216 │ 2 │ 0            │ 1368.0               │
│ 5851512534509153320 │ 3968091174 │ 2 │ 0            │ 1368.0               │
│ 5191389486841953200 │ 1487376472 │ 2 │ 0            │ 1828.0               │
│ 7726072175618541265 │ 1876840662 │ 2 │ 0            │ 1638.0               │
│ 8425973212606442266 │ 3882647820 │ 2 │ 0            │ 1368.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 2.661 user 16.820000 sys 0.380000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 9204615339472918567 │ 2852648576 │ 2 │ 0            │ 1638.0               │
│ 4831526837317665710 │ 4079908211 │ 2 │ 0            │ 1917.0               │
│ 6588223849545190851 │ 1818568139 │ 2 │ 0            │ 1638.0               │
│ 7068064253809492202 │ 1818568139 │ 2 │ 0            │ 1638.0               │
│ 8472345177156920540 │ 1607181793 │ 2 │ 0            │ 1638.0               │
│ 7154833339725729693 │ 2038096066 │ 2 │ 0            │ 508.0                │
│ 7985169136791284011 │ 481976292  │ 2 │ 0            │ 1638.0               │
│ 5261458931164052280 │ 481976292  │ 2 │ 0            │ 1638.0               │
│ 8672760597587433971 │ 1269590216 │ 2 │ 0            │ 1368.0               │
│ 4848145794958638974 │ 3938580212 │ 2 │ 0            │ 1638.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 20.238 user 75.988000 sys 23.744000
D SELECT URL, count(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│                                        URL                                         │    c    │
├────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ http://kinopoisk.ru                                                                │ 1625251 │
│ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ http://video.yandex                                                                │ 582404  │
│ http://smeshariki.ru/region                                                        │ 514984  │
│ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ http://tienskaia-moda                                                              │ 289355  │
└────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 12.508 user 54.784000 sys 2.344000
D SELECT 1, URL, count(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10;
┌───┬────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│ 1 │                                        URL                                         │    c    │
├───┼────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ 1 │ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ 1 │ http://kinopoisk.ru                                                                │ 1625251 │
│ 1 │ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ 1 │ http://video.yandex                                                                │ 582404  │
│ 1 │ http://smeshariki.ru/region                                                        │ 514984  │
│ 1 │ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ 1 │ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ 1 │ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ 1 │ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ 1 │ http://tienskaia-moda                                                              │ 289355  │
└───┴────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 4.310 user 59.804000 sys 0.172000
D SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, count(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10;
┌────────────┬──────────────┬──────────────┬──────────────┬───────┐
│  ClientIP  │ clientip - 1 │ clientip - 2 │ clientip - 3 │   c   │
├────────────┼──────────────┼──────────────┼──────────────┼───────┤
│ 4255045322 │ 4255045321   │ 4255045320   │ 4255045319   │ 47008 │
│ 2596862839 │ 2596862838   │ 2596862837   │ 2596862836   │ 29121 │
│ 3119147744 │ 3119147743   │ 3119147742   │ 3119147741   │ 25333 │
│ 1696638182 │ 1696638181   │ 1696638180   │ 1696638179   │ 20230 │
│ 1138507705 │ 1138507704   │ 1138507703   │ 1138507702   │ 15778 │
│ 3367941774 │ 3367941773   │ 3367941772   │ 3367941771   │ 12768 │
│ 3032827420 │ 3032827419   │ 3032827418   │ 3032827417   │ 11349 │
│ 1740861572 │ 1740861571   │ 1740861570   │ 1740861569   │ 11315 │
│ 3487820196 │ 3487820195   │ 3487820194   │ 3487820193   │ 9881  │
│ 3663904793 │ 3663904792   │ 3663904791   │ 3663904790   │ 9718  │
└────────────┴──────────────┴──────────────┴──────────────┴───────┘
Run Time: real 2.423 user 32.668000 sys 0.276000
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 1.153 user 1.492000 sys 0.064000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 1.461 user 1.320000 sys 0.108000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://notes=1/currency                                                            │ 27        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://direct                                                                      │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│                                                                                    │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://loveplanet                                                                  │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://video                                                                       │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://edp2.adrive_type=4754679564&pt=b&pd=9&price                                 │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ http://auto.ria.ua/auto_auto.ria                                                   │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ http://pogoda.yandex.php?t=14555667679/?PAGEN_3=5&s_yers=0&numphoto/62232/7#f      │ 2         │
│ http://wildberries<{bonprix.ru/forum.materinburg                                   │ 2         │
│ http://smeshariki.ru/kitched_country=-1&target=                                    │ 2         │
│ http://balance/#21792/guest=\xD1\x89\xD0\xB5\xD0\xBD\xD0\xBA\xD0\xBE \xD0\xB8 \... │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://smeshariki.ru/user_id=1&bodystyle=0&vip=&int[12][from=last_auto_id=13143... │ 2         │
│ http://video=0&wi=1362653061306535333&site_id=&auth                                │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://en.lyrsense.com/iframe-owa.html?query=2&hide_black.asp?TOPIC_ID=914958&o... │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ur.hh.ru/page=10&can_be_checked_auto_region=1&rm=1&lang=all&film/18212.1... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://3dnews.ru/iva-vesta.info.php?link=114737131                                 │ 2         │
│ http://guid=6&pw=2&pv=0&price=690&s_yers=1916                                      │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://pogoda.yandex.ru/places/premiery%2Fpage=2&confiscategoriya                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://rlsnet.ru/nogin.html5/v12                                                   │ 2         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&category_name=\x... │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://video.yandex.html5/v12                                                      │ 2         │
│ http://loveplants/740392319                                                        │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 2         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 2         │
│ http:%2F%2Fwww.bonprix.ru/search=0&deletedAutos&marketing                          │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://afisha.yandex.php?id=1620_4_licanel                                         │ 2         │
│ http://afisha.yandex.php?s=4d450&pid                                               │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://afisha.yandex.php?city=418&view                                             │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.415 user 0.532000 sys 0.028000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/litlip/saint-peter557932E-8C62-4917%26ad%3D64... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-smi.org%2F40 (KHTML, like Gecko) Version... │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_sell/pansiyskaya-obl.irr.html%... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search?text=\xD1\x84\x... │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert269257798044.html_partmen... │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.683 user 1.444000 sys 0.132000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 1.480 user 0.196000 sys 0.048000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 1.744 user 0.252000 sys 0.172000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.508 user 0.712000 sys 0.024000
D
D
D
D
D
D
D SELECT count(*) FROM hits;+
┌──────────────┐
│ count_star() │
├──────────────┤
│ 100000000    │
└──────────────┘
Run Time: real 0.010 user 0.080000 sys 0.000000
D SELECT count(*) FROM hits WHERE AdvEngineID != 0;d
┌──────────────┐
│ count_star() │
├──────────────┤
│ 630535       │
└──────────────┘
Run Time: real 0.639 user 0.520000 sys 0.060000
D SELECT sum(AdvEngineID), count(*), avg(ResolutionWidth) FROM hits;m
┌──────────────────┬──────────────┬──────────────────────┐
│ sum(advengineid) │ count_star() │ avg(resolutionwidth) │
├──────────────────┼──────────────┼──────────────────────┤
│ 7280824          │ 100000000    │ 1513.48908394        │
└──────────────────┴──────────────┴──────────────────────┘
Run Time: real 0.053 user 0.780000 sys 0.044000
D SELECT sum(UserID) FROM hits;
┌───────────────────────┐
│      sum(userid)      │
├───────────────────────┤
│ 3.230605869408804e+26 │
└───────────────────────┘
Run Time: real 0.039 user 0.604000 sys 0.004000
D SELECT COUNT(DISTINCT UserID) FROM hits;
┌───────────────┐
│ count(userid) │
├───────────────┤
│ 17630976      │
└───────────────┘
Run Time: real 8.105 user 9.812000 sys 0.996000
D SELECT COUNT(DISTINCT SearchPhrase) FROM hits;
o┌─────────────────────┐
│ count(searchphrase) │
├─────────────────────┤
│ 6019589             │
└─────────────────────┘
Run Time: real 12.975 user 17.084000 sys 1.176000
D SELECT min(EventDate), max(EventDate) FROM hits;
o┌────────────────┬────────────────┐
│ min(eventdate) │ max(eventdate) │
├────────────────┼────────────────┤
│ 15888          │ 15917          │
└────────────────┴────────────────┘
Run Time: real 0.338 user 0.560000 sys 0.040000
D SELECT AdvEngineID, count(*) FROM hits WHERE AdvEngineID != 0 GROUP BY AdvEngineID ORDER BY count(*) DESC;s
┌─────────────┬──────────────┐
│ AdvEngineID │ count_star() │
├─────────────┼──────────────┤
│ 2           │ 404620       │
│ 27          │ 113167       │
│ 13          │ 45633        │
│ 45          │ 38974        │
│ 44          │ 9731         │
│ 3           │ 6896         │
│ 62          │ 5266         │
│ 52          │ 3554         │
│ 50          │ 938          │
│ 28          │ 836          │
│ 53          │ 350          │
│ 25          │ 343          │
│ 61          │ 158          │
│ 21          │ 38           │
│ 42          │ 20           │
│ 16          │ 7            │
│ 7           │ 3            │
│ 22          │ 1            │
└─────────────┴──────────────┘
Run Time: real 0.030 user 0.456000 sys 0.000000
D SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10;
┌──────────┬─────────┐
│ RegionID │    u    │
├──────────┼─────────┤
│ 229      │ 2845673 │
│ 2        │ 1081016 │
│ 208      │ 831676  │
│ 169      │ 604583  │
│ 184      │ 322661  │
│ 158      │ 307152  │
│ 34       │ 299479  │
│ 55       │ 286525  │
│ 107      │ 272448  │
│ 42       │ 243181  │
└──────────┴─────────┘
Run Time: real 9.257 user 11.444000 sys 1.204000
D SELECT RegionID, sum(AdvEngineID), count(*) AS c, avg(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10;i
┌──────────┬──────────────────┬──────────┬──────────────────────┬───────────────┐
│ RegionID │ sum(advengineid) │    c     │ avg(resolutionwidth) │ count(userid) │
├──────────┼──────────────────┼──────────┼──────────────────────┼───────────────┤
│ 229      │ 2078084          │ 18296430 │ 1506.0876750819696   │ 2845673       │
│ 2        │ 441711           │ 6687708  │ 1479.8410618406187   │ 1081016       │
│ 208      │ 285925           │ 4261945  │ 1285.260504769536    │ 831676        │
│ 169      │ 100887           │ 3320286  │ 1465.90517142198     │ 604583        │
│ 32       │ 81498            │ 1843721  │ 1538.0370495318978   │ 216010        │
│ 34       │ 161779           │ 1792406  │ 1548.364990409539    │ 299479        │
│ 184      │ 55526            │ 1755223  │ 1506.8102679830426   │ 322661        │
│ 42       │ 108820           │ 1542771  │ 1587.1074287758845   │ 243181        │
│ 107      │ 120470           │ 1516722  │ 1548.6039623609336   │ 272448        │
│ 51       │ 98212            │ 1435598  │ 1579.8864215469791   │ 211505        │
└──────────┴──────────────────┴──────────┴──────────────────────┴───────────────┘
Run Time: real 10.892 user 14.136000 sys 1.056000
D SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10;e
┌──────────────────┬─────────┐
│ MobilePhoneModel │    u    │
├──────────────────┼─────────┤
│ iPad             │ 1090347 │
│ iPhone           │ 45758   │
│ A500             │ 16046   │
│ N8-00            │ 5565    │
│ iPho             │ 3300    │
│ ONE TOUCH 6030A  │ 2759    │
│ GT-P7300B        │ 1907    │
│ 3110000          │ 1871    │
│ GT-I9500         │ 1598    │
│ eagle75          │ 1492    │
└──────────────────┴─────────┘
Run Time: real 2.245 user 5.984000 sys 0.540000
D SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10;,
┌─────────────┬──────────────────┬────────┐
│ MobilePhone │ MobilePhoneModel │   u    │
├─────────────┼──────────────────┼────────┤
│ 1           │ iPad             │ 931038 │
│ 5           │ iPad             │ 48385  │
│ 6           │ iPad             │ 29710  │
│ 7           │ iPad             │ 28391  │
│ 118         │ A500             │ 16005  │
│ 6           │ iPhone           │ 14516  │
│ 26          │ iPhone           │ 13566  │
│ 10          │ iPad             │ 11433  │
│ 32          │ iPad             │ 9503   │
│ 13          │ iPad             │ 9417   │
└─────────────┴──────────────────┴────────┘
Run Time: real 2.461 user 6.304000 sys 0.532000
D SELECT SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;+
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   c   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 70263 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 34675 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 24579 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 21649 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 19703 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 19195 │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 17284 │
│ galaxy table                                                                       │ 16746 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 16620 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 12317 │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.045 user 14.536000 sys 0.016000
D SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10;m
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   u   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 23673 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 19743 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 18394 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 17553 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 14600 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 14529 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 14198 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 9007  │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 8792  │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xB1\xD0\xB8\xD0\xBD\xD0\xB8\xD1\x80\xD0\xBE\xD0\xB... │ 7572  │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 14.072 user 18.988000 sys 1.104000
D SELECT SearchEngineID, SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10;m
┌────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────┐
│ SearchEngineID │                                    SearchPhrase                                    │   c   │
├────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ 2              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 46258 │
│ 2              │ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 18871 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 16905 │
│ 3              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 16748 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 14911 │
│ 2              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 13716 │
│ 2              │ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 13414 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 13105 │
│ 3              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 12815 │
│ 2              │ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 11946 │
└────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.297 user 18.044000 sys 0.072000
D SELECT UserID, count(*) FROM hits GROUP BY UserID ORDER BY count(*) DESC LIMIT 10;
┌─────────────────────┬──────────────┐
│       UserID        │ count_star() │
├─────────────────────┼──────────────┤
│ 1313338681122956954 │ 29097        │
│ 1907779576417363396 │ 25333        │
│ 2305303682471783379 │ 10611        │
│ 7982623143712728547 │ 7584         │
│ 6018350421959114808 │ 6678         │
│ 7280399273658728997 │ 6411         │
│ 1090981537032625727 │ 6197         │
│ 5730251990344211405 │ 6019         │
│ 835157184735512989  │ 5211         │
│ 770542365400669095  │ 4906         │
└─────────────────────┴──────────────┘
Run Time: real 1.002 user 12.864000 sys 0.004000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY count(*) DESC LIMIT 10;l
┌─────────────────────┬──────────────┬──────────────┐
│       UserID        │ SearchPhrase │ count_star() │
├─────────────────────┼──────────────┼──────────────┤
│ 1313338681122956954 │              │ 29097        │
│ 1907779576417363396 │              │ 25333        │
│ 2305303682471783379 │              │ 10611        │
│ 7982623143712728547 │              │ 6669         │
│ 7280399273658728997 │              │ 6408         │
│ 1090981537032625727 │              │ 6196         │
│ 5730251990344211405 │              │ 6019         │
│ 6018350421959114808 │              │ 5990         │
│ 835157184735512989  │              │ 5209         │
│ 770542365400669095  │              │ 4906         │
└─────────────────────┴──────────────┴──────────────┘
Run Time: real 2.324 user 30.028000 sys 0.292000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10;
h┌─────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬──────────────┐
│       UserID        │                                    SearchPhrase                                    │ count_star() │
├─────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼──────────────┤
│ 1032076697239282790 │ \xD0\xBA\xD0\xBE\xD0\xBB\xD0\xBF\xD0\xB8\xD0\xBD\xD0\xBE \xD0\xBC\xD0\xBE\xD0\x... │ 2            │
│ 2291669706871953428 │                                                                                    │ 1            │
│ 962730767009225899  │                                                                                    │ 4            │
│ 2233663724416113367 │ \xD0\xB6\xD0\xB0\xD0\xBD\xD0\xBD\xD1\x8B\xD0\xB5 \xD0\xB8\xD0\xB3\xD1\x80\xD0\x... │ 2            │
│ 933748801326509236  │                                                                                    │ 9            │
│ 439500307031004026  │ \xD0\xB2\xD1\x81\xD0\xB5\xD0\xBB\xD1\x8F\xD1\x8E\xD1\x89\xD0\xB8\xD0\xB9 \xD1\x... │ 1            │
│ 5695875839448562    │                                                                                    │ 1            │
│ 7102459534329662426 │                                                                                    │ 3            │
│ 1468681479646296604 │ \xD1\x81\xD0\xBC\xD0\xB5\xD1\x81\xD0\xB8\xD1\x82\xD0\xB5\xD1\x82 \xD0\xBC\xD0\x... │ 1            │
│ 737933678636519547  │                                                                                    │ 22           │
└─────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴──────────────┘
Run Time: real 1.908 user 29.032000 sys 0.268000
D SELECT UserID, extract(minute FROM (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) AS m, SearchPhrase, count(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY count(*) DESC LIMIT 10;)
┌─────────────────────┬────┬──────────────┬──────────────┐
│       UserID        │ m  │ SearchPhrase │ count_star() │
├─────────────────────┼────┼──────────────┼──────────────┤
│ 1313338681122956954 │ 31 │              │ 589          │
│ 1313338681122956954 │ 28 │              │ 578          │
│ 1313338681122956954 │ 29 │              │ 572          │
│ 1313338681122956954 │ 33 │              │ 567          │
│ 1313338681122956954 │ 27 │              │ 557          │
│ 1313338681122956954 │ 32 │              │ 554          │
│ 1313338681122956954 │ 30 │              │ 552          │
│ 1313338681122956954 │ 34 │              │ 546          │
│ 1313338681122956954 │ 26 │              │ 540          │
│ 1313338681122956954 │ 10 │              │ 539          │
└─────────────────────┴────┴──────────────┴──────────────┘
Run Time: real 4.255 user 50.680000 sys 1.116000
D SELECT UserID FROM hits WHERE UserID = 12345678901234567890;L
Run Time: real 0.258 user 0.260000 sys 0.000000
D SELECT count(*) FROM hits WHERE URL::TEXT LIKE '%metrika%';e
┌──────────────┐
│ count_star() │
├──────────────┤
│ 211          │
└──────────────┘
Run Time: real 2.665 user 42.256000 sys 0.000000
D SELECT SearchPhrase, min(URL), count(*) AS c FROM hits WHERE URL::TEXT LIKE '%metrika%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;u
┌────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───┐
│                                    SearchPhrase                                    │                                      min(url)                                      │ c │
├────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───┤
│ \xD0\xB8\xD1\x89\xD1\x83 \xD1\x80\xD0\xB0\xD0\xB1\xD0\xBE\xD1\x82\xD0\xB0 \xD0\... │ http://smeshariki.ru/index.ua/advanceForce.1primea/forum=1&district=25586/page4... │ 1 │
│ \xD1\x82\xD0\xB5\xD0\xBA\xD1\x81\xD1\x82\xD1\x8B \xD0\xBF\xD0\xBE\xD0\xB4\xD1\x... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD0\xBE\xD0\xBA\xD0\xB5\xD0\xB0\xD0\xBD\xD1\x81\xD0\xBA\xD0\xBE\xD0\xB5 \xD1\x... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD1\x80\xD0\xB5\xD1\x86\xD0\xB5\xD0\xBF\xD1\x82                                   │ http://smeshariki.ru/index.ua/search/metrikanske-urali-belorussia/28.html?1=1&c... │ 1 │
│ \xD0\xB4\xD0\xB8\xD0\xBD\xD0\xB0 \xD0\xB2\xD0\xB0\xD0\xBA\xD0\xB0\xD0\xBD\xD1\x... │ http://ecrn.ru/personal/gost277572,9589&pt=b&pd=8&pw=2&page3/?state=0&damages/0... │ 1 │
│ \xD1\x82\xD1\x80\xD1\x83\xD0\xB4\xD0\xB0 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xB2\xD1\... │ http://smeshariki.ru/recipes/sadovka.ru/gorod55.ru/search?text=\xD0\xB8\xD0\xB7... │ 1 │
│ \xD0\xBC\xD1\x8B\xD1\x81\xD0\xBB \xD0\xBF\xD0\xB5\xD1\x81\xD0\xB5\xD0\xBD \xD1\... │ http://smeshariki.ru/a-folder=cmarka=15&sort=&sll=36872/metrika/frl-2/bage-all/... │ 1 │
│ \xD0\xB2\xD0\xB8\xD0\xB4\xD0\xB5\xD0\xBE \xD1\x82\xD0\xB0\xD0\xBA\xD0\xBE\xD0\x... │ http://maximum_438424&pvno=2&evlg=VC,0;VL,628;IC,1653-82676212&op_page=0&door=0... │ 1 │
│ \xD1\x80\xD0\xB0\xD0\xB1\xD0\xBE\xD0\xB2\xD1\x8B\xD0\xB5 \xD0\xB4\xD0\xBE\xD1\x... │ http://smeshariki.ru/index.ua/auto.ria.ua/change=0&s_yers=0&with_video.yandex.u... │ 1 │
│ \xD1\x83\xD0\xBD\xD0\xB8\xD0\xB2\xD0\xB5\xD1\x80\xD0\xBC\xD0\xB5\xD0\xB4\xD0\xB... │ http://smeshariki.ru/index.ua/syllanet.ru/busine-tyazin?model=4878/page=10&cate... │ 1 │
└────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───┘
Run Time: real 0.721 user 11.368000 sys 0.000000
D count(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title::TEXT LIKE '%Яндекс%' AND URL::TEXT NOT LIKE '%.yandex.%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;(
Run Time: real 8.537 user 19.856000 sys 1.200000
D SELECT * FROM hits WHERE URL::TEXT LIKE '%metrika%' ORDER BY EventTime LIMIT 10;
┌─────────────────────┬────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬────────────┬───────────┬───────────┬────────────┬──────────┬─────────────────────┬──────────────┬─────┬───────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬─────────┬───────────────────┬─────────────────┬───────────────┬─────────────┬─────────────────┬──────────────────┬─────────────────┬────────────┬────────────┬─────────────┬──────────┬──────────┬────────────────┬────────────────┬──────────────┬──────────────────┬──────────┬─────────────┬──────────────────┬────────┬─────────────┬────────────────┬────────────────┬──────────────┬─────────────┬─────────────┬───────────────────┬────────────────────┬────────────────┬─────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬──────────────────────┬─────────────┬────────┬────────────┬─────────────┬─────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬──────────────┬─────────┬─────────────┬───────────────┬──────────┬──────────┬────────────────┬─────┬─────┬────────┬───────────┬───────────┬────────────┬────────────┬────────────┬───────────────┬─────────────────┬────────────────┬───────────────┬──────────────┬───────────┬────────────┬───────────┬───────────────┬─────────────────────┬───────────────────┬─────────────┬───────────────────────┬──────────────────┬────────────┬──────────────┬───────────────┬─────────────────┬─────────────────────┬────────────────────┬──────────────┬──────────────────┬───────────┬───────────┬─────────────┬────────────┬─────────┬─────────┬──────────┬──────────────────────┬──────────────────────┬──────┐
│       WatchID       │ JavaEnable │                                       Title                                        │ GoodEvent │ EventTime  │ EventDate │ CounterID │  ClientIP  │ RegionID │       UserID        │ CounterClass │ OS  │ UserAgent │                                        URL                                         │                                      Referer                                       │ Refresh │ RefererCategoryID │ RefererRegionID │ URLCategoryID │ URLRegionID │ ResolutionWidth │ ResolutionHeight │ ResolutionDepth │ FlashMajor │ FlashMinor │ FlashMinor2 │ NetMajor │ NetMinor │ UserAgentMajor │ UserAgentMinor │ CookieEnable │ JavascriptEnable │ IsMobile │ MobilePhone │ MobilePhoneModel │ Params │ IPNetworkID │ TraficSourceID │ SearchEngineID │ SearchPhrase │ AdvEngineID │ IsArtifical │ WindowClientWidth │ WindowClientHeight │ ClientTimeZone │ ClientEventTime │ SilverlightVersion1 │ SilverlightVersion2 │ SilverlightVersion3 │ SilverlightVersion4 │     PageCharset      │ CodeVersion │ IsLink │ IsDownload │ IsNotBounce │       FUniqID       │                                    OriginalURL                                     │    HID    │ IsOldCounter │ IsEvent │ IsParameter │ DontCountHits │ WithHash │ HitColor │ LocalEventTime │ Age │ Sex │ Income │ Interests │ Robotness │  RemoteIP  │ WindowName │ OpenerName │ HistoryLength │ BrowserLanguage │ BrowserCountry │ SocialNetwork │ SocialAction │ HTTPError │ SendTiming │ DNSTiming │ ConnectTiming │ ResponseStartTiming │ ResponseEndTiming │ FetchTiming │ SocialSourceNetworkID │ SocialSourcePage │ ParamPrice │ ParamOrderID │ ParamCurrency │ ParamCurrencyID │ OpenstatServiceName │ OpenstatCampaignID │ OpenstatAdID │ OpenstatSourceID │ UTMSource │ UTMMedium │ UTMCampaign │ UTMContent │ UTMTerm │ FromTag │ HasGCLID │     RefererHash      │       URLHash        │ CLID │
├─────────────────────┼────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼────────────┼───────────┼───────────┼────────────┼──────────┼─────────────────────┼──────────────┼─────┼───────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼─────────┼───────────────────┼─────────────────┼───────────────┼─────────────┼─────────────────┼──────────────────┼─────────────────┼────────────┼────────────┼─────────────┼──────────┼──────────┼────────────────┼────────────────┼──────────────┼──────────────────┼──────────┼─────────────┼──────────────────┼────────┼─────────────┼────────────────┼────────────────┼──────────────┼─────────────┼─────────────┼───────────────────┼────────────────────┼────────────────┼─────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼──────────────────────┼─────────────┼────────┼────────────┼─────────────┼─────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼─────────┼─────────────┼───────────────┼──────────┼──────────┼────────────────┼─────┼─────┼────────┼───────────┼───────────┼────────────┼────────────┼────────────┼───────────────┼─────────────────┼────────────────┼───────────────┼──────────────┼───────────┼────────────┼───────────┼───────────────┼─────────────────────┼───────────────────┼─────────────┼───────────────────────┼──────────────────┼────────────┼──────────────┼───────────────┼─────────────────┼─────────────────────┼────────────────────┼──────────────┼──────────────────┼───────────┼───────────┼─────────────┼────────────┼─────────┼─────────┼──────────┼──────────────────────┼──────────────────────┼──────┤
│ 9008228978173248400 │ 1          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372714203 │ 15888     │ 46429     │ 1741285710 │ 208      │ 727970985383478408  │ 0            │ 2   │ 2         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page%3D%26ev_n%3Dtvor_3_4                                     │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1638            │ 1658             │ 37              │ 14         │ 0          │ 700.22      │ 0        │ 0        │ 15             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2349927     │ -1             │ 0              │              │ 0           │ 0           │ 1844              │ 888                │ 135            │ 1372711075      │ 3                   │ 0                   │ 29241               │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 0                   │                                                                                    │ 926364569 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372755313     │ 31  │ 1   │ 0      │ 0         │ 0         │ 1985697352 │ 13001      │ -1         │ 22            │ vG              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 16989158750233735299 │ 2619784076535420345  │ 0    │
│ 7319686668886932386 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742048 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ sO             │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713898      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721190565 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747193     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 22084      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 5650132582613869356 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742083 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713960      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721255326 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747245     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 64225      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 6211862319117980382 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372744794 │ 15888     │ 46429     │ 1384976586 │ 208      │ 45205883125357727   │ 0            │ 8   │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │                                                                                    │ 0       │ 0                 │ 0               │ 9911          │ 216         │ 475             │ 368              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 7              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 3195177     │ 0              │ 0              │              │ 0           │ 0           │ 412               │ 286                │ 135            │ 1372732810      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 7015666733105959947 │                                                                                    │ 641313121 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372774931     │ 28  │ 1   │ 2      │ 1         │ 0         │ 1889444196 │ 44835      │ -1         │ 0             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18150585289071012696 │ 2619784076535420345  │ 0    │
│ 8127216893234548048 │ 0          │ \xD0\xA2\xD0\xBE\xD0\xBB\xD1\x81\xD1\x82\xD1\x83\xD1\x85\xD1\x83, \xD0\xB5\xD1\... │ 1         │ 1372752539 │ 15888     │ 46429     │ 1237806922 │ 208      │ 750085446646698731  │ 0            │ 2   │ 3         │ http://smeshariki.ru/used/99114578622-14406072,9269587/roometrika/?page=7&pw=2&... │ http://smeshariki.ru/page=11956bd3f5ba-bolshiient                                  │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1081            │ 979              │ 23              │ 15         │ 7          │ 700         │ 0        │ 0        │ 17             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2914423     │ -1             │ 0              │              │ 0           │ 0           │ 1434              │ 739                │ 623            │ 1372781865      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 5496132257355632424 │                                                                                    │ 983272850 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372760187     │ 50  │ 2   │ 2      │ 60        │ 18        │ 1113465640 │ 60610      │ -1         │ 29            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 194           │ 1631                │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 13570011243001147277 │ 11339053197878713733 │ 0    │
│ 5016976626924998727 │ 1          │ Toyota \xD1\x80\xD1\x83\xD0\xBA\xD0\xB0\xD0\xBB\xD1\x8B \xD0\xB4\xD0\xBB\xD1\x8... │ 1         │ 1372758784 │ 15888     │ 5645      │ 3888153915 │ 107      │ 4058808124307537573 │ 1            │ 2   │ 88        │ http:%2F%2Fwwww.bonprix.ru&pvid=131&op_products/transformality.pulsceness/01-me... │ http://forum.amur.info/node/12451180167540                                         │ 0       │ 10868             │ 635             │ 16361         │ 943         │ 1638            │ 777              │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 1              │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2726799     │ -1             │ 0              │              │ 0           │ 0           │ 1509              │ 618                │ 135            │ 1372835656      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 6227398498798751865 │                                                                                    │ 255959698 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372763371     │ 31  │ 1   │ 3      │ 3555      │ 13        │ 4006630121 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 10333931216342739575 │ 10009133566342666602 │ 0    │
│ 4963765960745323978 │ 0          │ \xD0\x93\xD0\x90\xD0\x97 (ZAZ) 5403J \xE2\x80\x93 \xD0\xA4\xD0\xB8\xD0\xBB\xD1\... │ 1         │ 1372793626 │ 15888     │ 46429     │ 2063319617 │ 23967    │ 5283184799411504286 │ 0            │ 44  │ 2         │ http://smeshariki.ru/userId=0&matched_car=Volkswagency=1&p=8090/roometrika/?pag... │ http://smeshariki.ru/smsarhiv/num/33363634383294&lr=66&v6s=2&bodystyle             │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1996            │ 1781             │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 10             │ nA             │ 1            │ 1                │ 0        │ 0           │                  │        │ 4110783     │ -1             │ 0              │              │ 0           │ 0           │ 1551              │ 955                │ 291            │ 1372730435      │ 7                   │ 1                   │ 9577                │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 8904020920948834668 │                                                                                    │ 883138215 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372777308     │ 22  │ 2   │ 2      │ 11339     │ 18        │ 2136940575 │ 1653       │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18276268115953212999 │ 9484754903086635093  │ 0    │
│ 6284148982888572412 │ 1          │ Morskoj port \xE2\x80\x93 \xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD1\x82\xD1\... │ 1         │ 1372795222 │ 15889     │ 3922      │ 2460998382 │ 40       │ 1643466856862289966 │ 1            │ 44  │ 7         │ http://moikrug.ru/message-12-kak-pravdorubovnik_metrika-info.php?f=23&prr          │ http://diary.ru/GameMain.aspx?d=1412&lr=75&mode=photo/login=igorod.irr.ru/i6102... │ 0       │ 306               │ 29199           │ 92            │ 247         │ 1368            │ 554              │ 37              │ 15         │ 7          │ 800.94      │ 0        │ 0        │ 12             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 1166094     │ 1              │ 0              │              │ 0           │ 0           │ 1253              │ 642                │ 135            │ 1372799147      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7061143530822060136 │                                                                                    │ 699865379 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372810401     │ 31  │ 2   │ 3      │ 6         │ 0         │ 3849445958 │ -1         │ -1         │ -1            │ S0              │ h1             │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 14060834305267311691 │ 1791983733815963315  │ 0    │
│ 6024648629746505393 │ 0          │ \xD0\x9F\xD0\xBE\xD0\xB3\xD1\x80\xD0\xB5\xD0\xB2\xD0\xB0\xD1\x82\xD0\xB5\xD0\xB... │ 1         │ 1372795271 │ 15889     │ 1200      │ 2932550360 │ 208      │ 1578473929930714515 │ 1            │ 107 │ 82        │ http://afisha.yandex.ru/real-estate/out-of-town/household_app_metrika.ru/wildbe... │ http://ad.adrive_type_id=1959251&stUrl%3Dpopular/kw/306161&lr=1418][to]=&input_... │ 0       │ 15265             │ 19757           │ 8953          │ 32252       │ 958             │ 1871             │ 37              │ 0          │ 0          │             │ 0        │ 0        │ 3              │ D\xE0          │ 1            │ 1                │ 1        │ 6           │                  │        │ 4010641     │ -1             │ 0              │              │ 0           │ 0           │ 521               │ 1803               │ -1             │ 1372870507      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 0                   │ http://b.kavanga.ru/tags/%FD%ED%FB%E2%F3%E6%E5%E6%ED%E8%ED%F1%FF%ED&ti=%D0%BD%D... │ 120241233 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372842094     │ 0   │ 0   │ 0      │ 0         │ 0         │ 3975911785 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 9685011611637290144  │ 5941547189901908071  │ 0    │
│ 4857420640250996887 │ 1          │ Suzuki Escort 4* (\xD0\xA4\xD1\x80\xD0\xB0\xD0\xBD\xD1\x86\xD1\x8B 3 \xD1\x81\x... │ 1         │ 1372800737 │ 15889     │ 3922      │ 3201307115 │ 190      │ 7335986183190726964 │ 1            │ 44  │ 88        │ http://pova-ul-mir.irr.ru/search.php?gidcar=37408&uuid=1&bc=3&city=0&pv=20&s_ye... │ http://news/238/~6/?cauth=1&av=1&nm=1&ms=1,2/currency=RUR/page_num_id=15366563&... │ 0       │ 306               │ 144             │ 304           │ 132         │ 1368            │ 554              │ 37              │ 15         │ 4          │ 202         │ 0        │ 0        │ 1              │ fi             │ 1            │ 1                │ 0        │ 0           │                  │        │ 2311071     │ -1             │ 0              │              │ 0           │ 0           │ 1333              │ 924                │ 322            │ 1372840359      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7659179697273795837 │                                                                                    │ 232010762 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372866397     │ 31  │ 2   │ 2      │ 3658      │ 28        │ 2920265313 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 8839345929686869081  │ 5449259806403761803  │ 0    │
└─────────────────────┴────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴────────────┴───────────┴───────────┴────────────┴──────────┴─────────────────────┴──────────────┴─────┴───────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴─────────┴───────────────────┴─────────────────┴───────────────┴─────────────┴─────────────────┴──────────────────┴─────────────────┴────────────┴────────────┴─────────────┴──────────┴──────────┴────────────────┴────────────────┴──────────────┴──────────────────┴──────────┴─────────────┴──────────────────┴────────┴─────────────┴────────────────┴────────────────┴──────────────┴─────────────┴─────────────┴───────────────────┴────────────────────┴────────────────┴─────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴──────────────────────┴─────────────┴────────┴────────────┴─────────────┴─────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴──────────────┴─────────┴─────────────┴───────────────┴──────────┴──────────┴────────────────┴─────┴─────┴────────┴───────────┴───────────┴────────────┴────────────┴────────────┴───────────────┴─────────────────┴────────────────┴───────────────┴──────────────┴───────────┴────────────┴───────────┴───────────────┴─────────────────────┴───────────────────┴─────────────┴───────────────────────┴──────────────────┴────────────┴──────────────┴───────────────┴─────────────────┴─────────────────────┴────────────────────┴──────────────┴──────────────────┴───────────┴───────────┴─────────────┴────────────┴─────────┴─────────┴──────────┴──────────────────────┴──────────────────────┴──────┘
Run Time: real 72.104 user 135.356000 sys 10.484000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD1\x81\xD0\xBB\xD0\xBE\xD0\xBD.\xD1\x80\xD1\x83\xD0\xB1., \xD0\xB4. \xD0\xB0.... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
│ \xD0\xB0\xD0\xBD\xD0\xB0\xD0\xBF\xD0\xB0 \xD0\xBE\xD0\xBF\xD0\xB5\xD1\x80\xD0\x... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.232 user 3.520000 sys 0.132000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY SearchPhrase LIMIT 10;e
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ ! hektdf gjcgjhn conster                                                           │
│ ! \xD1\x81\xD0\xBA\xD0\xB0\xD1\x80\xD0\xBF                                         │
│ !(\xD0\xBA\xD0\xB0\xD0\xBA \xD0\xB2\xD0\xBE\xD1\x80\xD0\xBE\xD0\xBD\xD0\xB8        │
│ !(\xD0\xBF\xD0\xBE \xD0\xB3\xD0\xBE\xD1\x80\xD0\xB8\xD1\x8E \xD0\xB2 \xD1\x8F\x... │
│ !(\xD1\x81) \xD0\xBF\xD1\x80\xD0\xBE \xD0\xB4\xD0\xBF\xD0\xBE \xD1\x81\xD0\xB5\... │
│ !(\xD1\x81\xD0\xB0\xD0\xBB\xD0\xBE\xD0\xBD\xD1\x8B \xD0\xBE\xD1\x81\xD1\x82\xD0... │
│ !(\xD1\x81\xD1\x82\xD0\xB0\xD1\x80\xD1\x82\xD0\xB5\xD1\x80 rav4 \xD1\x82\xD1\x8... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xBC\xD1\x8F\xD1... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xBC\xD0\xB0\xD1\x83\xD1\x81 \xD0\xBA\xD0... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD1\x81\xD0\xB5\xD1\x80\xD0\xB8\xD0\xB8         │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.248 user 3.696000 sys 0.012000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime, SearchPhrase LIMIT 10;
D┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD0\xB0\xD0\xBD\xD0\xB0\xD0\xBF\xD0\xB0 \xD0\xBE\xD0\xBF\xD0\xB5\xD1\x80\xD0\x... │
│ \xD0\xB1\xD1\x80\xD0\xB8\xD1\x82\xD0\xB0 \xD0\xB3\xD0\xB0\xD0\xBD\xD0\xB0\xD0\x... │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.231 user 3.648000 sys 0.008000
D SELECT CounterID, avg(octet_length(URL)) AS l, count(*) AS c FROM hits WHERE octet_length(URL) > 0 GROUP BY CounterID HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;L
┌───────────┬────────────────────┬─────────┐
│ CounterID │         l          │    c    │
├───────────┼────────────────────┼─────────┤
│ 233773    │ 469.18537326484886 │ 2938865 │
│ 245438    │ 271.7892512777364  │ 2510103 │
│ 122612    │ 238.64530987208474 │ 3574007 │
│ 234004    │ 204.28793262381632 │ 238660  │
│ 1634      │ 197.83321731651554 │ 323229  │
│ 786       │ 186.75537634408602 │ 120528  │
│ 114157    │ 142.91881538575285 │ 216408  │
│ 515       │ 126.22860040706026 │ 146907  │
│ 256004    │ 125.37108455074805 │ 858171  │
│ 95427     │ 120.26856903175477 │ 374306  │
│ 199550    │ 109.81720498866335 │ 7115413 │
│ 220992    │ 105.85666196266179 │ 494614  │
│ 196239    │ 98.34882201749727  │ 163797  │
│ 62        │ 93.15981711034343  │ 738150  │
│ 96948     │ 92.74321182146618  │ 396093  │
│ 188878    │ 91.98308322489247  │ 311998  │
│ 249603    │ 91.88026594639518  │ 120325  │
│ 3922      │ 87.83856410684609  │ 8527069 │
│ 191697    │ 86.95776647628826  │ 124664  │
│ 97467     │ 84.2953696503987   │ 131178  │
│ 186300    │ 83.97258027738701  │ 802561  │
│ 146891    │ 77.77430173504756  │ 605286  │
│ 38        │ 76.43757015971798  │ 507770  │
│ 230962    │ 76.3127707226559   │ 169223  │
│ 77639     │ 75.38681923602442  │ 253961  │
└───────────┴────────────────────┴─────────┘
Run Time: real 0.439 user 6.632000 sys 0.300000
D //(?:www\.)?([^/]+)/.*$', '\1') AS key, avg(octet_length(Referer)) AS l, count(*) AS c, min(Referer) FROM hits WHERE octet_length(Referer) > 0 GROUP BY key HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;
┌────────────────────────────────────────────────────────────────────────┬────────────────────┬─────────┬────────────────────────────────────────────────────────────────────────────────────┐
│                                  key                                   │         l          │    c    │                                    min(referer)                                    │
├────────────────────────────────────────────────────────────────────────┼────────────────────┼─────────┼────────────────────────────────────────────────────────────────────────────────────┤
│ svpressa.ru                                                            │ 307.980979437341   │ 242527  │ http://svpressa.ru/                                                                │
│ msuzie-showforumdisplay                                                │ 263.327228380409   │ 183676  │ http://msuzie-showforumdisplay/63/~2/?name=&cost_neu%3D400%26retpath=default777... │
│ saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80 │ 242.5236948271821  │ 200529  │ http://saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80/c... │
│ domics                                                                 │ 212.92990978061542 │ 326094  │ http://domics/825179.11931861234499792                                             │
│ e96.ru                                                                 │ 210.09628206687884 │ 1019276 │ http://e96.ru/%3Ffrom]=&input_act[count_num=0&dff=arian-carrina1201517&cad=rjt&... │
│ gadgets.irr.ru                                                         │ 131.9597008950273  │ 349710  │ https://gadgets.irr.ru/2jmj7l5rSw0yVb                                              │
│ google.ru                                                              │ 109.24485253818524 │ 2158491 │ http://google.ru/                                                                  │
│ go.mail                                                                │ 108.63930572737723 │ 8228007 │ http://go.mail/04/detskaia-moda-zhiensmed                                          │
│ msouz.ru                                                               │ 106.10887286512423 │ 301774  │ http://msouz.ru/?ffshop                                                            │
│ state=19945206                                                         │ 105.6469046513171  │ 512414  │ http://state=19945206/foto-4/login%20NoTs3M&where=all&filmId=u8aGGqtWs3M&where=... │
│ loveplanet.ru                                                          │ 104.60136383347789 │ 461200  │ http://loveplanet.ru/%3Faw_opel/page=2013                                          │
│ bonprix.ru                                                             │ 104.41683309557774 │ 1125105 │ http://bonprix.ru/                                                                 │
│ novjob.ru                                                              │ 96.75331644732393  │ 133049  │ http://novjob.ru/                                                                  │
│ cn.ru                                                                  │ 95.63198716663325  │ 124675  │ http://cn.ru/GameMain.aspx#catalog/100523&tails.xml?market_pc.html?pid=9403&lr=... │
│ geomethiettai.ru                                                       │ 94.78816556817006  │ 115916  │ https://geomethiettai.ru/GameMain.aspx?group=houses/list=266559j7077&num=7&prun... │
│ kino                                                                   │ 90.27628829938655  │ 120139  │ http://kino/6/21/2/women.asp?whichpage4/#oversion=unreadm&uid                      │
│ yaroslavens.ru                                                         │ 90.17077281117085  │ 124610  │ http://yaroslavens.ru/main.aspx#catalog%2F1004-1100000147-otvet/actions/disloca... │
│ mysw.info                                                              │ 89.68684313159915  │ 984596  │ http://mysw.info/                                                                  │
│ m.myloveplanet.ru                                                      │ 88.73233749439181  │ 151564  │ http://m.myloveplanet.ru/                                                          │
│ povarenok.ru                                                           │ 83.97395952020882  │ 144813  │ http://povarenok.ru/                                                               │
│ gorod                                                                  │ 80.33107253811141  │ 110728  │ http://gorod/%3Fauto.ria.ua%2Fjob                                                  │
│ yandsearch                                                             │ 80.21664430621621  │ 245970  │ http://www.yandsearch/rooms=1/page2                                                │
│ myloveplanet.ru                                                        │ 80.08183067768715  │ 110582  │ http://myloveplanet.ru/#associety/auto                                             │
│ tambov.irr.ru                                                          │ 77.8650188064113   │ 315318  │ http://tambov.irr.ru/0/c1/tgFtaeLDK0yb01A7xvQF08sjCFqQxn51                         │
│ kurortmag.ru                                                           │ 75.74958779884584  │ 155264  │ http://kurortmag.ru/                                                               │
└────────────────────────────────────────────────────────────────────────┴────────────────────┴─────────┴────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 119.865 user 1866.652000 sys 4.096000
D  + 82), sum(ResolutionWidth + 83), sum(ResolutionWidth + 84), sum(ResolutionWidth + 85), sum(ResolutionWidth + 86), sum(ResolutionWidth + 87), sum(ResolutionWidth + 88), sum(ResolutionWidth + 89) FROM hits;
┌──────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┐
│ sum(resolutionwidth) │ sum(resolutionwidth + 1) │ sum(resolutionwidth + 2) │ sum(resolutionwidth + 3) │ sum(resolutionwidth + 4) │ sum(resolutionwidth + 5) │ sum(resolutionwidth + 6) │ sum(resolutionwidth + 7) │ sum(resolutionwidth + 8) │ sum(resolutionwidth + 9) │ sum(resolutionwidth + 10) │ sum(resolutionwidth + 11) │ sum(resolutionwidth + 12) │ sum(resolutionwidth + 13) │ sum(resolutionwidth + 14) │ sum(resolutionwidth + 15) │ sum(resolutionwidth + 16) │ sum(resolutionwidth + 17) │ sum(resolutionwidth + 18) │ sum(resolutionwidth + 19) │ sum(resolutionwidth + 20) │ sum(resolutionwidth + 21) │ sum(resolutionwidth + 22) │ sum(resolutionwidth + 23) │ sum(resolutionwidth + 24) │ sum(resolutionwidth + 25) │ sum(resolutionwidth + 26) │ sum(resolutionwidth + 27) │ sum(resolutionwidth + 28) │ sum(resolutionwidth + 29) │ sum(resolutionwidth + 30) │ sum(resolutionwidth + 31) │ sum(resolutionwidth + 32) │ sum(resolutionwidth + 33) │ sum(resolutionwidth + 34) │ sum(resolutionwidth + 35) │ sum(resolutionwidth + 36) │ sum(resolutionwidth + 37) │ sum(resolutionwidth + 38) │ sum(resolutionwidth + 39) │ sum(resolutionwidth + 40) │ sum(resolutionwidth + 41) │ sum(resolutionwidth + 42) │ sum(resolutionwidth + 43) │ sum(resolutionwidth + 44) │ sum(resolutionwidth + 45) │ sum(resolutionwidth + 46) │ sum(resolutionwidth + 47) │ sum(resolutionwidth + 48) │ sum(resolutionwidth + 49) │ sum(resolutionwidth + 50) │ sum(resolutionwidth + 51) │ sum(resolutionwidth + 52) │ sum(resolutionwidth + 53) │ sum(resolutionwidth + 54) │ sum(resolutionwidth + 55) │ sum(resolutionwidth + 56) │ sum(resolutionwidth + 57) │ sum(resolutionwidth + 58) │ sum(resolutionwidth + 59) │ sum(resolutionwidth + 60) │ sum(resolutionwidth + 61) │ sum(resolutionwidth + 62) │ sum(resolutionwidth + 63) │ sum(resolutionwidth + 64) │ sum(resolutionwidth + 65) │ sum(resolutionwidth + 66) │ sum(resolutionwidth + 67) │ sum(resolutionwidth + 68) │ sum(resolutionwidth + 69) │ sum(resolutionwidth + 70) │ sum(resolutionwidth + 71) │ sum(resolutionwidth + 72) │ sum(resolutionwidth + 73) │ sum(resolutionwidth + 74) │ sum(resolutionwidth + 75) │ sum(resolutionwidth + 76) │ sum(resolutionwidth + 77) │ sum(resolutionwidth + 78) │ sum(resolutionwidth + 79) │ sum(resolutionwidth + 80) │ sum(resolutionwidth + 81) │ sum(resolutionwidth + 82) │ sum(resolutionwidth + 83) │ sum(resolutionwidth + 84) │ sum(resolutionwidth + 85) │ sum(resolutionwidth + 86) │ sum(resolutionwidth + 87) │ sum(resolutionwidth + 88) │ sum(resolutionwidth + 89) │
├──────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┤
│ 151348908394         │ 151448908394             │ 151548908394             │ 151648908394             │ 151748908394             │ 151848908394             │ 151948908394             │ 152048908394             │ 152148908394             │ 152248908394             │ 152348908394              │ 152448908394              │ 152548908394              │ 152648908394              │ 152748908394              │ 152848908394              │ 152948908394              │ 153048908394              │ 153148908394              │ 153248908394              │ 153348908394              │ 153448908394              │ 153548908394              │ 153648908394              │ 153748908394              │ 153848908394              │ 153948908394              │ 154048908394              │ 154148908394              │ 154248908394              │ 154348908394              │ 154448908394              │ 154548908394              │ 154648908394              │ 154748908394              │ 154848908394              │ 154948908394              │ 155048908394              │ 155148908394              │ 155248908394              │ 155348908394              │ 155448908394              │ 155548908394              │ 155648908394              │ 155748908394              │ 155848908394              │ 155948908394              │ 156048908394              │ 156148908394              │ 156248908394              │ 156348908394              │ 156448908394              │ 156548908394              │ 156648908394              │ 156748908394              │ 156848908394              │ 156948908394              │ 157048908394              │ 157148908394              │ 157248908394              │ 157348908394              │ 157448908394              │ 157548908394              │ 157648908394              │ 157748908394              │ 157848908394              │ 157948908394              │ 158048908394              │ 158148908394              │ 158248908394              │ 158348908394              │ 158448908394              │ 158548908394              │ 158648908394              │ 158748908394              │ 158848908394              │ 158948908394              │ 159048908394              │ 159148908394              │ 159248908394              │ 159348908394              │ 159448908394              │ 159548908394              │ 159648908394              │ 159748908394              │ 159848908394              │ 159948908394              │ 160048908394              │ 160148908394              │ 160248908394              │
└──────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┘
Run Time: real 6.176 user 97.964000 sys 0.000000
D SELECT SearchEngineID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10;
┌────────────────┬────────────┬──────┬──────────────┬──────────────────────┐
│ SearchEngineID │  ClientIP  │  c   │ sum(refresh) │ avg(resolutionwidth) │
├────────────────┼────────────┼──────┼──────────────┼──────────────────────┤
│ 2              │ 1138507705 │ 1633 │ 35           │ 1408.0122473974282   │
│ 2              │ 1740861572 │ 1331 │ 28           │ 1577.945905334335    │
│ 2              │ 3487820196 │ 1144 │ 35           │ 1553.1984265734266   │
│ 2              │ 3797060577 │ 1140 │ 36           │ 1543.4140350877192   │
│ 2              │ 2349209741 │ 1105 │ 30           │ 1557.387330316742    │
│ 2              │ 2424344199 │ 1102 │ 31           │ 1555.6588021778584   │
│ 2              │ 3663904793 │ 1083 │ 31           │ 1581.8171745152354   │
│ 2              │ 3829154130 │ 1082 │ 30           │ 1541.253234750462    │
│ 2              │ 2551371145 │ 1080 │ 24           │ 1559.8092592592593   │
│ 2              │ 4029049820 │ 1058 │ 32           │ 1556.2003780718337   │
└────────────────┴────────────┴──────┴──────────────┴──────────────────────┘
Run Time: real 0.991 user 13.144000 sys 0.080000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 8425973212606442266 │ 3882647820 │ 2 │ 0            │ 1368.0               │
│ 4822815447136935941 │ 4109934802 │ 2 │ 0            │ 1638.0               │
│ 5851512534509153320 │ 3968091174 │ 2 │ 0            │ 1368.0               │
│ 7542988325649023791 │ 303701440  │ 2 │ 0            │ 1828.0               │
│ 6992742809870752121 │ 3979611525 │ 2 │ 0            │ 100.0                │
│ 8469206111441108042 │ 1485652260 │ 2 │ 0            │ 1368.0               │
│ 8268832962994556606 │ 1627418068 │ 2 │ 0            │ 1638.0               │
│ 6959397072495903875 │ 1568492334 │ 2 │ 0            │ 1368.0               │
│ 8672760597587433971 │ 1269590216 │ 2 │ 0            │ 1368.0               │
│ 6637243485645608094 │ 1468144163 │ 2 │ 0            │ 1917.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 1.552 user 16.744000 sys 0.356000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 4784371382202293288 │ 3735345744 │ 2 │ 0            │ 1638.0               │
│ 6711685491586624976 │ 1408513058 │ 2 │ 0            │ 1638.0               │
│ 7162529939784944130 │ 3932318335 │ 2 │ 0            │ 1996.0               │
│ 8775946809982825654 │ 3518457715 │ 2 │ 0            │ 1368.0               │
│ 8716405327873619806 │ 3518457715 │ 2 │ 0            │ 1368.0               │
│ 8723645685735855902 │ 2003188719 │ 2 │ 0            │ 1594.0               │
│ 9007142022850874662 │ 4006219740 │ 2 │ 0            │ 1638.0               │
│ 7542988325649023791 │ 303701440  │ 2 │ 0            │ 1828.0               │
│ 4632233196500506143 │ 93692316   │ 2 │ 0            │ 1750.0               │
│ 7726072175618541265 │ 1876840662 │ 2 │ 0            │ 1638.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 55.584 user 81.372000 sys 17.980000
D SELECT URL, count(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│                                        URL                                         │    c    │
├────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ http://kinopoisk.ru                                                                │ 1625251 │
│ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ http://video.yandex                                                                │ 582404  │
│ http://smeshariki.ru/region                                                        │ 514984  │
│ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ http://tienskaia-moda                                                              │ 289355  │
└────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 14.208 user 54.440000 sys 3.008000
D SELECT 1, URL, count(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10;
┌───┬────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│ 1 │                                        URL                                         │    c    │
├───┼────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ 1 │ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ 1 │ http://kinopoisk.ru                                                                │ 1625251 │
│ 1 │ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ 1 │ http://video.yandex                                                                │ 582404  │
│ 1 │ http://smeshariki.ru/region                                                        │ 514984  │
│ 1 │ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ 1 │ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ 1 │ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ 1 │ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ 1 │ http://tienskaia-moda                                                              │ 289355  │
└───┴────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 4.586 user 65.340000 sys 0.188000
D SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, count(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10;
┌────────────┬──────────────┬──────────────┬──────────────┬───────┐
│  ClientIP  │ clientip - 1 │ clientip - 2 │ clientip - 3 │   c   │
├────────────┼──────────────┼──────────────┼──────────────┼───────┤
│ 4255045322 │ 4255045321   │ 4255045320   │ 4255045319   │ 47008 │
│ 2596862839 │ 2596862838   │ 2596862837   │ 2596862836   │ 29121 │
│ 3119147744 │ 3119147743   │ 3119147742   │ 3119147741   │ 25333 │
│ 1696638182 │ 1696638181   │ 1696638180   │ 1696638179   │ 20230 │
│ 1138507705 │ 1138507704   │ 1138507703   │ 1138507702   │ 15778 │
│ 3367941774 │ 3367941773   │ 3367941772   │ 3367941771   │ 12768 │
│ 3032827420 │ 3032827419   │ 3032827418   │ 3032827417   │ 11349 │
│ 1740861572 │ 1740861571   │ 1740861570   │ 1740861569   │ 11315 │
│ 3487820196 │ 3487820195   │ 3487820194   │ 3487820193   │ 9881  │
│ 3663904793 │ 3663904792   │ 3663904791   │ 3663904790   │ 9718  │
└────────────┴──────────────┴──────────────┴──────────────┴───────┘
Run Time: real 4.737 user 38.872000 sys 0.148000
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.819 user 1.016000 sys 0.152000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.870 user 1.416000 sys 0.040000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://notes=1/currency                                                            │ 27        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://direct                                                                      │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│                                                                                    │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://loveplanet                                                                  │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://video                                                                       │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://rlsnet.ru/nogin.html5/v12                                                   │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://edp2.adrive_type=4754679564&pt=b&pd=9&price                                 │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://afisha.yandex.php?id=1620_4_licanel                                         │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://mysw.inform%26q%3Dversion.cheltyj                                           │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://wildberries.ru/index.ua                                                     │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://smeshariki.ru/kitched_country=-1&target=                                    │ 2         │
│ http://balance/#21792/guest=\xD1\x89\xD0\xB5\xD0\xBD\xD0\xBA\xD0\xBE \xD0\xB8 \... │ 2         │
│ http://afisha.yandex.php?s=4d450&pid                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://diary.ru/search?familliklink                                                │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://afisha.yandex.php?city=418&view                                             │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://video.yandex.html?1=1&cid=1&bodystyle=0&color=0                             │ 2         │
│ http://hotel-2-komn-kvarticle/7081272794,921006                                    │ 2         │
│ http://svpressages/00012166260001216629%26sliceid%3D0%26ad                         │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://video.yandex.ru/?win=82a&cid                                                │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://news/398261_enl.jpg-1                                                       │ 2         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 2         │
│ http://auto.ria.ua/auto_auto.ria                                                   │ 2         │
│ http://loveplants/740392319                                                        │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://masterlingvo/#I 1                                                           │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ur.hh.ru/page=10&can_be_checked_auto_region=1&rm=1&lang=all&film/18212.1... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://video.yandex.html5/v12                                                      │ 2         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 2         │
│ http://pogoda.yandex.ru&xdm_e=http://name=\xD0\x91\xD0\xB0\xD0\xBB\xD0\xB5\xD1\... │ 2         │
│ http://auto_id=3159&input_age2                                                     │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://smeshariki.ru/user_id=1&bodystyle=0&vip=&int[12][from=last_auto_id=13143... │ 2         │
│ http://en.lyrsense.com/iframe-owa.html?query=2&hide_black.asp?TOPIC_ID=914958&o... │ 2         │
│ http://pogoda.yandex.ru/places/premiery%2Fpage=2&confiscategoriya                  │ 2         │
│ http://video=0&wi=1362653061306535333&site_id=&auth                                │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.117 user 0.520000 sys 0.028000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert269257798044.html_partmen... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2651734&pt=b&pd=7&pw=1&pr... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-smi.org%2F40 (KHTML, like Gecko) Version... │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_sell/pansiyskaya-obl.irr.html%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga664.1721/deti74.ru/animals-planet.ru        │ http://irr.ru/index.php?showalbum/login=K-SR-B-13-9635095,9661/9#f                 │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.487 user 1.308000 sys 0.100000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.548 user 0.680000 sys 0.028000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.139 user 0.392000 sys 0.012000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.017 user 0.200000 sys 0.020000
D
D
D
D SELECT count(*) FROM hits;+
┌──────────────┐
│ count_star() │
├──────────────┤
│ 100000000    │
└──────────────┘
Run Time: real 0.012 user 0.180000 sys 0.000000
D SELECT count(*) FROM hits WHERE AdvEngineID != 0;
d┌──────────────┐
│ count_star() │
├──────────────┤
│ 630535       │
└──────────────┘
Run Time: real 0.154 user 0.400000 sys 0.052000
D SELECT sum(AdvEngineID), count(*), avg(ResolutionWidth) FROM hits;
┌──────────────────┬──────────────┬──────────────────────┐
│ sum(advengineid) │ count_star() │ avg(resolutionwidth) │
├──────────────────┼──────────────┼──────────────────────┤
│ 7280824          │ 100000000    │ 1513.48908394        │
└──────────────────┴──────────────┴──────────────────────┘
Run Time: real 0.049 user 0.728000 sys 0.032000
D SELECT sum(UserID) FROM hits;e
┌───────────────────────┐
│      sum(userid)      │
├───────────────────────┤
│ 3.230605869407883e+26 │
└───────────────────────┘
Run Time: real 0.471 user 0.608000 sys 0.088000
D SELECT COUNT(DISTINCT UserID) FROM hits;
┌───────────────┐
│ count(userid) │
├───────────────┤
│ 17630976      │
└───────────────┘
Run Time: real 8.319 user 10.196000 sys 0.916000
D SELECT COUNT(DISTINCT SearchPhrase) FROM hits;
o┌─────────────────────┐
│ count(searchphrase) │
├─────────────────────┤
│ 6019589             │
└─────────────────────┘
Run Time: real 12.888 user 17.264000 sys 1.072000
D SELECT min(EventDate), max(EventDate) FROM hits;
o┌────────────────┬────────────────┐
│ min(eventdate) │ max(eventdate) │
├────────────────┼────────────────┤
│ 15888          │ 15917          │
└────────────────┴────────────────┘
Run Time: real 0.183 user 0.528000 sys 0.040000
D SELECT AdvEngineID, count(*) FROM hits WHERE AdvEngineID != 0 GROUP BY AdvEngineID ORDER BY count(*) DESC;s
┌─────────────┬──────────────┐
│ AdvEngineID │ count_star() │
├─────────────┼──────────────┤
│ 2           │ 404620       │
│ 27          │ 113167       │
│ 13          │ 45633        │
│ 45          │ 38974        │
│ 44          │ 9731         │
│ 3           │ 6896         │
│ 62          │ 5266         │
│ 52          │ 3554         │
│ 50          │ 938          │
│ 28          │ 836          │
│ 53          │ 350          │
│ 25          │ 343          │
│ 61          │ 158          │
│ 21          │ 38           │
│ 42          │ 20           │
│ 16          │ 7            │
│ 7           │ 3            │
│ 22          │ 1            │
└─────────────┴──────────────┘
Run Time: real 0.048 user 0.684000 sys 0.000000
D SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10;)
┌──────────┬─────────┐
│ RegionID │    u    │
├──────────┼─────────┤
│ 229      │ 2845673 │
│ 2        │ 1081016 │
│ 208      │ 831676  │
│ 169      │ 604583  │
│ 184      │ 322661  │
│ 158      │ 307152  │
│ 34       │ 299479  │
│ 55       │ 286525  │
│ 107      │ 272448  │
│ 42       │ 243181  │
└──────────┴─────────┘
Run Time: real 10.040 user 11.608000 sys 1.272000
D SELECT RegionID, sum(AdvEngineID), count(*) AS c, avg(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10;i
┌──────────┬──────────────────┬──────────┬──────────────────────┬───────────────┐
│ RegionID │ sum(advengineid) │    c     │ avg(resolutionwidth) │ count(userid) │
├──────────┼──────────────────┼──────────┼──────────────────────┼───────────────┤
│ 229      │ 2078084          │ 18296430 │ 1506.0876750819696   │ 2845673       │
│ 2        │ 441711           │ 6687708  │ 1479.8410618406187   │ 1081016       │
│ 208      │ 285925           │ 4261945  │ 1285.260504769536    │ 831676        │
│ 169      │ 100887           │ 3320286  │ 1465.90517142198     │ 604583        │
│ 32       │ 81498            │ 1843721  │ 1538.0370495318978   │ 216010        │
│ 34       │ 161779           │ 1792406  │ 1548.364990409539    │ 299479        │
│ 184      │ 55526            │ 1755223  │ 1506.8102679830426   │ 322661        │
│ 42       │ 108820           │ 1542771  │ 1587.1074287758845   │ 243181        │
│ 107      │ 120470           │ 1516722  │ 1548.6039623609336   │ 272448        │
│ 51       │ 98212            │ 1435598  │ 1579.8864215469791   │ 211505        │
└──────────┴──────────────────┴──────────┴──────────────────────┴───────────────┘
Run Time: real 10.689 user 13.532000 sys 1.120000
D SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10;e
┌──────────────────┬─────────┐
│ MobilePhoneModel │    u    │
├──────────────────┼─────────┤
│ iPad             │ 1090347 │
│ iPhone           │ 45758   │
│ A500             │ 16046   │
│ N8-00            │ 5565    │
│ iPho             │ 3300    │
│ ONE TOUCH 6030A  │ 2759    │
│ GT-P7300B        │ 1907    │
│ 3110000          │ 1871    │
│ GT-I9500         │ 1598    │
│ eagle75          │ 1492    │
└──────────────────┴─────────┘
Run Time: real 2.253 user 6.108000 sys 0.468000
D SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(MobilePhoneModel) > 0 GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10;,
┌─────────────┬──────────────────┬────────┐
│ MobilePhone │ MobilePhoneModel │   u    │
├─────────────┼──────────────────┼────────┤
│ 1           │ iPad             │ 931038 │
│ 5           │ iPad             │ 48385  │
│ 6           │ iPad             │ 29710  │
│ 7           │ iPad             │ 28391  │
│ 118         │ A500             │ 16005  │
│ 6           │ iPhone           │ 14516  │
│ 26          │ iPhone           │ 13566  │
│ 10          │ iPad             │ 11433  │
│ 32          │ iPad             │ 9503   │
│ 13          │ iPad             │ 9417   │
└─────────────┴──────────────────┴────────┘
Run Time: real 2.528 user 6.544000 sys 0.508000
D SELECT SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;+
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   c   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 70263 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 34675 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 24579 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 21649 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 19703 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 19195 │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 17284 │
│ galaxy table                                                                       │ 16746 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 16620 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 12317 │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.127 user 16.040000 sys 0.016000
D SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10;m
┌────────────────────────────────────────────────────────────────────────────────────┬───────┐
│                                    SearchPhrase                                    │   u   │
├────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 23673 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 19743 │
│ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 18394 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 17553 │
│ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 14600 │
│ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 14529 │
│ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 14198 │
│ \xD1\x81\xD0\xBA\xD0\xBE\xD0\xBB\xD1\x8C\xD0\xBA\xD0\xBE \xD0\xBC\xD1\x8B\xD1\x... │ 9007  │
│ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 8792  │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xB1\xD0\xB8\xD0\xBD\xD0\xB8\xD1\x80\xD0\xBE\xD0\xB... │ 7572  │
└────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 13.811 user 18.612000 sys 1.096000
D SELECT SearchEngineID, SearchPhrase, count(*) AS c FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10;m
┌────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────┐
│ SearchEngineID │                                    SearchPhrase                                    │   c   │
├────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────┤
│ 2              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 46258 │
│ 2              │ \xD0\xBC\xD0\xB0\xD0\xBD\xD0\xB3\xD1\x83 \xD0\xB2 \xD0\xB7\xD0\xB0\xD1\x80\xD0\... │ 18871 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 16905 │
│ 3              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 16748 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C \xD0\xBE\xD0\x... │ 14911 │
│ 2              │ \xD0\xB0\xD0\xBB\xD0\xB1\xD0\xB0\xD1\x82\xD1\x80\xD1\x83\xD1\x82\xD0\xB4\xD0\xB... │ 13716 │
│ 2              │ \xD1\x8D\xD0\xBA\xD0\xB7\xD0\xBE\xD0\xB8\xD0\xB4\xD0\xBD\xD1\x8B\xD0\xB5           │ 13414 │
│ 2              │ \xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD1\x80\xD0\xB5\xD1\x82\xD1\x8C                   │ 13105 │
│ 3              │ \xD0\xBA\xD0\xB0\xD1\x80\xD0\xB5\xD0\xBB\xD0\xBA\xD0\xB8                           │ 12815 │
│ 2              │ \xD0\xB4\xD1\x80\xD1\x83\xD0\xB6\xD0\xBA\xD0\xB5 \xD0\xBF\xD0\xBE\xD0\xBC\xD0\x... │ 11946 │
└────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────┘
Run Time: real 1.170 user 16.316000 sys 0.060000
D SELECT UserID, count(*) FROM hits GROUP BY UserID ORDER BY count(*) DESC LIMIT 10;R
┌─────────────────────┬──────────────┐
│       UserID        │ count_star() │
├─────────────────────┼──────────────┤
│ 1313338681122956954 │ 29097        │
│ 1907779576417363396 │ 25333        │
│ 2305303682471783379 │ 10611        │
│ 7982623143712728547 │ 7584         │
│ 6018350421959114808 │ 6678         │
│ 7280399273658728997 │ 6411         │
│ 1090981537032625727 │ 6197         │
│ 5730251990344211405 │ 6019         │
│ 835157184735512989  │ 5211         │
│ 770542365400669095  │ 4906         │
└─────────────────────┴──────────────┘
Run Time: real 0.961 user 12.416000 sys 0.028000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY count(*) DESC LIMIT 10;l
┌─────────────────────┬──────────────┬──────────────┐
│       UserID        │ SearchPhrase │ count_star() │
├─────────────────────┼──────────────┼──────────────┤
│ 1313338681122956954 │              │ 29097        │
│ 1907779576417363396 │              │ 25333        │
│ 2305303682471783379 │              │ 10611        │
│ 7982623143712728547 │              │ 6669         │
│ 7280399273658728997 │              │ 6408         │
│ 1090981537032625727 │              │ 6196         │
│ 5730251990344211405 │              │ 6019         │
│ 6018350421959114808 │              │ 5990         │
│ 835157184735512989  │              │ 5209         │
│ 770542365400669095  │              │ 4906         │
└─────────────────────┴──────────────┴──────────────┘
Run Time: real 2.309 user 29.740000 sys 0.256000
D SELECT UserID, SearchPhrase, count(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10;h
┌──────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬──────────────┐
│        UserID        │                                    SearchPhrase                                    │ count_star() │
├──────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼──────────────┤
│ 2033505069917754133  │                                                                                    │ 13           │
│ 4177603680108851335  │                                                                                    │ 2            │
│ 2865865758754579169  │                                                                                    │ 4            │
│ 1348434893485989289  │                                                                                    │ 1            │
│ 4623542685155091116  │ \xD0\xB0\xD0\xB2\xD1\x82\xD0\xBE\xD1\x80\xD0\xBE\xD0\xB9 \xD0\xBF\xD0\xB5\xD1\x... │ 1            │
│ 6824890550049353433  │                                                                                    │ 14           │
│ 1722975923542031     │                                                                                    │ 2            │
│ 1510416351411292943  │ \xD0\xBC\xD0\xB5\xD0\xB9\xD0\xBD\xD1\x8B\xD1\x85 \xD0\xB2 \xD0\xB0\xD0\xB2\xD1\... │ 2            │
│ 10675348576094566371 │                                                                                    │ 1            │
│ 5485742187896741713  │ \xD0\xBF\xD0\xBE\xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                                   │ 3            │
└──────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴──────────────┘
Run Time: real 2.013 user 29.824000 sys 0.232000
D SELECT UserID, extract(minute FROM (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) AS m, SearchPhrase, count(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY count(*) DESC LIMIT 10;)
┌─────────────────────┬────┬──────────────┬──────────────┐
│       UserID        │ m  │ SearchPhrase │ count_star() │
├─────────────────────┼────┼──────────────┼──────────────┤
│ 1313338681122956954 │ 31 │              │ 589          │
│ 1313338681122956954 │ 28 │              │ 578          │
│ 1313338681122956954 │ 29 │              │ 572          │
│ 1313338681122956954 │ 33 │              │ 567          │
│ 1313338681122956954 │ 27 │              │ 557          │
│ 1313338681122956954 │ 32 │              │ 554          │
│ 1313338681122956954 │ 30 │              │ 552          │
│ 1313338681122956954 │ 34 │              │ 546          │
│ 1313338681122956954 │ 26 │              │ 540          │
│ 1313338681122956954 │ 10 │              │ 539          │
└─────────────────────┴────┴──────────────┴──────────────┘
Run Time: real 4.940 user 52.524000 sys 1.056000
D SELECT UserID FROM hits WHERE UserID = 12345678901234567890;
Run Time: real 0.258 user 0.256000 sys 0.004000
D SELECT count(*) FROM hits WHERE URL::TEXT LIKE '%metrika%';e
┌──────────────┐
│ count_star() │
├──────────────┤
│ 211          │
└──────────────┘
Run Time: real 2.626 user 41.564000 sys 0.000000
D SELECT SearchPhrase, min(URL), count(*) AS c FROM hits WHERE URL::TEXT LIKE '%metrika%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;u
┌────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───┐
│                                    SearchPhrase                                    │                                      min(url)                                      │ c │
├────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───┤
│ \xD0\xBC\xD1\x8B\xD1\x81\xD0\xBB \xD0\xBF\xD0\xB5\xD1\x81\xD0\xB5\xD0\xBD \xD1\... │ http://smeshariki.ru/a-folder=cmarka=15&sort=&sll=36872/metrika/frl-2/bage-all/... │ 1 │
│ \xD0\xB2\xD0\xB8\xD0\xB4\xD0\xB5\xD0\xBE \xD1\x82\xD0\xB0\xD0\xBA\xD0\xBE\xD0\x... │ http://maximum_438424&pvno=2&evlg=VC,0;VL,628;IC,1653-82676212&op_page=0&door=0... │ 1 │
│ \xD1\x82\xD0\xB5\xD0\xBA\xD1\x81\xD1\x82\xD1\x8B \xD0\xBF\xD0\xBE\xD0\xB4\xD1\x... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD1\x83\xD0\xBD\xD0\xB8\xD0\xB2\xD0\xB5\xD1\x80\xD0\xBC\xD0\xB5\xD0\xB4\xD0\xB... │ http://smeshariki.ru/index.ua/syllanet.ru/busine-tyazin?model=4878/page=10&cate... │ 1 │
│ \xD0\xB4\xD0\xB8\xD0\xBD\xD0\xB0 \xD0\xB2\xD0\xB0\xD0\xBA\xD0\xB0\xD0\xBD\xD1\x... │ http://ecrn.ru/personal/gost277572,9589&pt=b&pd=8&pw=2&page3/?state=0&damages/0... │ 1 │
│ \xD1\x82\xD1\x80\xD1\x83\xD0\xB4\xD0\xB0 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xB2\xD1\... │ http://smeshariki.ru/recipes/sadovka.ru/gorod55.ru/search?text=\xD0\xB8\xD0\xB7... │ 1 │
│ \xD0\xBA\xD0\xBE\xD1\x88\xD0\xBA\xD1\x83 \xD1\x81\xD0\xB7\xD0\xB0\xD0\xBE \xD1\... │ http://bdsmpeople.ru/index.ru/metrikadeletedAutoSearch                             │ 1 │
│ \xD1\x80\xD0\xB5\xD1\x86\xD0\xB5\xD0\xBF\xD1\x82                                   │ http://smeshariki.ru/index.ua/search/metrikanske-urali-belorussia/28.html?1=1&c... │ 1 │
│ \xD0\xB4\xD0\xB8\xD0\xBD\xD0\xB0 \xD0\xB2\xD0\xB0\xD0\xBA\xD0\xB0\xD0\xBD\xD1\x... │ http://ecrn.ru/personal/gost277572,9589&pt=b&pd=8&pw=2&page3/?state=0&damages/0... │ 1 │
│ \xD1\x80\xD0\xB0\xD0\xB1\xD0\xBE\xD0\xB2\xD1\x8B\xD0\xB5 \xD0\xB4\xD0\xBE\xD1\x... │ http://smeshariki.ru/index.ua/auto.ria.ua/change=0&s_yers=0&with_video.yandex.u... │ 1 │
└────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───┘
Run Time: real 0.716 user 11.292000 sys 0.000000
D count(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title::TEXT LIKE '%Яндекс%' AND URL::TEXT NOT LIKE '%.yandex.%' AND octet_length(SearchPhrase) > 0 GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;(
Run Time: real 3.669 user 19.464000 sys 0.932000
D SELECT * FROM hits WHERE URL::TEXT LIKE '%metrika%' ORDER BY EventTime LIMIT 10;e
┌─────────────────────┬────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬────────────┬───────────┬───────────┬────────────┬──────────┬─────────────────────┬──────────────┬─────┬───────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬─────────┬───────────────────┬─────────────────┬───────────────┬─────────────┬─────────────────┬──────────────────┬─────────────────┬────────────┬────────────┬─────────────┬──────────┬──────────┬────────────────┬────────────────┬──────────────┬──────────────────┬──────────┬─────────────┬──────────────────┬────────┬─────────────┬────────────────┬────────────────┬──────────────┬─────────────┬─────────────┬───────────────────┬────────────────────┬────────────────┬─────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬─────────────────────┬──────────────────────┬─────────────┬────────┬────────────┬─────────────┬─────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┬──────────────┬─────────┬─────────────┬───────────────┬──────────┬──────────┬────────────────┬─────┬─────┬────────┬───────────┬───────────┬────────────┬────────────┬────────────┬───────────────┬─────────────────┬────────────────┬───────────────┬──────────────┬───────────┬────────────┬───────────┬───────────────┬─────────────────────┬───────────────────┬─────────────┬───────────────────────┬──────────────────┬────────────┬──────────────┬───────────────┬─────────────────┬─────────────────────┬────────────────────┬──────────────┬──────────────────┬───────────┬───────────┬─────────────┬────────────┬─────────┬─────────┬──────────┬──────────────────────┬──────────────────────┬──────┐
│       WatchID       │ JavaEnable │                                       Title                                        │ GoodEvent │ EventTime  │ EventDate │ CounterID │  ClientIP  │ RegionID │       UserID        │ CounterClass │ OS  │ UserAgent │                                        URL                                         │                                      Referer                                       │ Refresh │ RefererCategoryID │ RefererRegionID │ URLCategoryID │ URLRegionID │ ResolutionWidth │ ResolutionHeight │ ResolutionDepth │ FlashMajor │ FlashMinor │ FlashMinor2 │ NetMajor │ NetMinor │ UserAgentMajor │ UserAgentMinor │ CookieEnable │ JavascriptEnable │ IsMobile │ MobilePhone │ MobilePhoneModel │ Params │ IPNetworkID │ TraficSourceID │ SearchEngineID │ SearchPhrase │ AdvEngineID │ IsArtifical │ WindowClientWidth │ WindowClientHeight │ ClientTimeZone │ ClientEventTime │ SilverlightVersion1 │ SilverlightVersion2 │ SilverlightVersion3 │ SilverlightVersion4 │     PageCharset      │ CodeVersion │ IsLink │ IsDownload │ IsNotBounce │       FUniqID       │                                    OriginalURL                                     │    HID    │ IsOldCounter │ IsEvent │ IsParameter │ DontCountHits │ WithHash │ HitColor │ LocalEventTime │ Age │ Sex │ Income │ Interests │ Robotness │  RemoteIP  │ WindowName │ OpenerName │ HistoryLength │ BrowserLanguage │ BrowserCountry │ SocialNetwork │ SocialAction │ HTTPError │ SendTiming │ DNSTiming │ ConnectTiming │ ResponseStartTiming │ ResponseEndTiming │ FetchTiming │ SocialSourceNetworkID │ SocialSourcePage │ ParamPrice │ ParamOrderID │ ParamCurrency │ ParamCurrencyID │ OpenstatServiceName │ OpenstatCampaignID │ OpenstatAdID │ OpenstatSourceID │ UTMSource │ UTMMedium │ UTMCampaign │ UTMContent │ UTMTerm │ FromTag │ HasGCLID │     RefererHash      │       URLHash        │ CLID │
├─────────────────────┼────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼────────────┼───────────┼───────────┼────────────┼──────────┼─────────────────────┼──────────────┼─────┼───────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼─────────┼───────────────────┼─────────────────┼───────────────┼─────────────┼─────────────────┼──────────────────┼─────────────────┼────────────┼────────────┼─────────────┼──────────┼──────────┼────────────────┼────────────────┼──────────────┼──────────────────┼──────────┼─────────────┼──────────────────┼────────┼─────────────┼────────────────┼────────────────┼──────────────┼─────────────┼─────────────┼───────────────────┼────────────────────┼────────────────┼─────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼─────────────────────┼──────────────────────┼─────────────┼────────┼────────────┼─────────────┼─────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼─────────┼─────────────┼───────────────┼──────────┼──────────┼────────────────┼─────┼─────┼────────┼───────────┼───────────┼────────────┼────────────┼────────────┼───────────────┼─────────────────┼────────────────┼───────────────┼──────────────┼───────────┼────────────┼───────────┼───────────────┼─────────────────────┼───────────────────┼─────────────┼───────────────────────┼──────────────────┼────────────┼──────────────┼───────────────┼─────────────────┼─────────────────────┼────────────────────┼──────────────┼──────────────────┼───────────┼───────────┼─────────────┼────────────┼─────────┼─────────┼──────────┼──────────────────────┼──────────────────────┼──────┤
│ 9008228978173248400 │ 1          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372714203 │ 15888     │ 46429     │ 1741285710 │ 208      │ 727970985383478408  │ 0            │ 2   │ 2         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page%3D%26ev_n%3Dtvor_3_4                                     │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1638            │ 1658             │ 37              │ 14         │ 0          │ 700.22      │ 0        │ 0        │ 15             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2349927     │ -1             │ 0              │              │ 0           │ 0           │ 1844              │ 888                │ 135            │ 1372711075      │ 3                   │ 0                   │ 29241               │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 0                   │                                                                                    │ 926364569 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372755313     │ 31  │ 1   │ 0      │ 0         │ 0         │ 1985697352 │ 13001      │ -1         │ 22            │ vG              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 16989158750233735299 │ 2619784076535420345  │ 0    │
│ 7319686668886932386 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742048 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ sO             │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713898      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721190565 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747193     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 22084      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 5650132582613869356 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372742083 │ 15888     │ 46429     │ 675534320  │ 208      │ 1167829038705361511 │ 0            │ 45  │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │ http://smeshariki.ru/page=6&sqi=2&ved=0CC0QFjAA                                    │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 280             │ 733              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 4              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 1444853     │ -1             │ 0              │              │ 0           │ 0           │ 997               │ 800                │ 623            │ 1372713960      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 4655941889681510909 │                                                                                    │ 721255326 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372747245     │ 31  │ 2   │ 3      │ 717       │ 0         │ 2935426383 │ 64225      │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 11629579472615090596 │ 2619784076535420345  │ 0    │
│ 6211862319117980382 │ 0          │ \xD0\x9A\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │ 1         │ 1372744794 │ 15888     │ 46429     │ 1384976586 │ 208      │ 45205883125357727   │ 0            │ 8   │ 1         │ http://smeshariki.ru/used/Audi-1993527&stateID=0&metrikauto/bmw_74012099/0/&&pu... │                                                                                    │ 0       │ 0                 │ 0               │ 9911          │ 216         │ 475             │ 368              │ 0               │ 0          │ 0          │             │ 0        │ 0        │ 7              │ D\xE0          │ 1            │ 1                │ 1        │ 0           │                  │        │ 3195177     │ 0              │ 0              │              │ 0           │ 0           │ 412               │ 286                │ 135            │ 1372732810      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 7015666733105959947 │                                                                                    │ 641313121 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372774931     │ 28  │ 1   │ 2      │ 1         │ 0         │ 1889444196 │ 44835      │ -1         │ 0             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18150585289071012696 │ 2619784076535420345  │ 0    │
│ 8127216893234548048 │ 0          │ \xD0\xA2\xD0\xBE\xD0\xBB\xD1\x81\xD1\x82\xD1\x83\xD1\x85\xD1\x83, \xD0\xB5\xD1\... │ 1         │ 1372752539 │ 15888     │ 46429     │ 1237806922 │ 208      │ 750085446646698731  │ 0            │ 2   │ 3         │ http://smeshariki.ru/used/99114578622-14406072,9269587/roometrika/?page=7&pw=2&... │ http://smeshariki.ru/page=11956bd3f5ba-bolshiient                                  │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1081            │ 979              │ 23              │ 15         │ 7          │ 700         │ 0        │ 0        │ 17             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2914423     │ -1             │ 0              │              │ 0           │ 0           │ 1434              │ 739                │ 623            │ 1372781865      │ 0                   │ 0                   │ 0                   │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 5496132257355632424 │                                                                                    │ 983272850 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372760187     │ 50  │ 2   │ 2      │ 60        │ 18        │ 1113465640 │ 60610      │ -1         │ 29            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 194           │ 1631                │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 13570011243001147277 │ 11339053197878713733 │ 0    │
│ 5016976626924998727 │ 1          │ Toyota \xD1\x80\xD1\x83\xD0\xBA\xD0\xB0\xD0\xBB\xD1\x8B \xD0\xB4\xD0\xBB\xD1\x8... │ 1         │ 1372758784 │ 15888     │ 5645      │ 3888153915 │ 107      │ 4058808124307537573 │ 1            │ 2   │ 88        │ http:%2F%2Fwwww.bonprix.ru&pvid=131&op_products/transformality.pulsceness/01-me... │ http://forum.amur.info/node/12451180167540                                         │ 0       │ 10868             │ 635             │ 16361         │ 943         │ 1638            │ 777              │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 1              │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 2726799     │ -1             │ 0              │              │ 0           │ 0           │ 1509              │ 618                │ 135            │ 1372835656      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 6227398498798751865 │                                                                                    │ 255959698 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372763371     │ 31  │ 1   │ 3      │ 3555      │ 13        │ 4006630121 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 10333931216342739575 │ 10009133566342666602 │ 0    │
│ 4963765960745323978 │ 0          │ \xD0\x93\xD0\x90\xD0\x97 (ZAZ) 5403J \xE2\x80\x93 \xD0\xA4\xD0\xB8\xD0\xBB\xD1\... │ 1         │ 1372793626 │ 15888     │ 46429     │ 2063319617 │ 23967    │ 5283184799411504286 │ 0            │ 44  │ 2         │ http://smeshariki.ru/userId=0&matched_car=Volkswagency=1&p=8090/roometrika/?pag... │ http://smeshariki.ru/smsarhiv/num/33363634383294&lr=66&v6s=2&bodystyle             │ 0       │ 16000             │ 158             │ 9911          │ 216         │ 1996            │ 1781             │ 37              │ 15         │ 7          │ 700         │ 0        │ 0        │ 10             │ nA             │ 1            │ 1                │ 0        │ 0           │                  │        │ 4110783     │ -1             │ 0              │              │ 0           │ 0           │ 1551              │ 955                │ 291            │ 1372730435      │ 7                   │ 1                   │ 9577                │ 0                   │ windows-1251;charset │ 1601        │ 0      │ 0          │ 0           │ 8904020920948834668 │                                                                                    │ 883138215 │ 0            │ 0       │ 0           │ 0             │ 0        │ g        │ 1372777308     │ 22  │ 2   │ 2      │ 11339     │ 18        │ 2136940575 │ 1653       │ -1         │ 1             │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 18276268115953212999 │ 9484754903086635093  │ 0    │
│ 6284148982888572412 │ 1          │ Morskoj port \xE2\x80\x93 \xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD1\x82\xD1\... │ 1         │ 1372795222 │ 15889     │ 3922      │ 2460998382 │ 40       │ 1643466856862289966 │ 1            │ 44  │ 7         │ http://moikrug.ru/message-12-kak-pravdorubovnik_metrika-info.php?f=23&prr          │ http://diary.ru/GameMain.aspx?d=1412&lr=75&mode=photo/login=igorod.irr.ru/i6102... │ 0       │ 306               │ 29199           │ 92            │ 247         │ 1368            │ 554              │ 37              │ 15         │ 7          │ 800.94      │ 0        │ 0        │ 12             │ D\xE0          │ 1            │ 1                │ 0        │ 0           │                  │        │ 1166094     │ 1              │ 0              │              │ 0           │ 0           │ 1253              │ 642                │ 135            │ 1372799147      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7061143530822060136 │                                                                                    │ 699865379 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372810401     │ 31  │ 2   │ 3      │ 6         │ 0         │ 3849445958 │ -1         │ -1         │ -1            │ S0              │ h1             │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 14060834305267311691 │ 1791983733815963315  │ 0    │
│ 6024648629746505393 │ 0          │ \xD0\x9F\xD0\xBE\xD0\xB3\xD1\x80\xD0\xB5\xD0\xB2\xD0\xB0\xD1\x82\xD0\xB5\xD0\xB... │ 1         │ 1372795271 │ 15889     │ 1200      │ 2932550360 │ 208      │ 1578473929930714515 │ 1            │ 107 │ 82        │ http://afisha.yandex.ru/real-estate/out-of-town/household_app_metrika.ru/wildbe... │ http://ad.adrive_type_id=1959251&stUrl%3Dpopular/kw/306161&lr=1418][to]=&input_... │ 0       │ 15265             │ 19757           │ 8953          │ 32252       │ 958             │ 1871             │ 37              │ 0          │ 0          │             │ 0        │ 0        │ 3              │ D\xE0          │ 1            │ 1                │ 1        │ 6           │                  │        │ 4010641     │ -1             │ 0              │              │ 0           │ 0           │ 521               │ 1803               │ -1             │ 1372870507      │ 0                   │ 0                   │ 0                   │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 0                   │ http://b.kavanga.ru/tags/%FD%ED%FB%E2%F3%E6%E5%E6%ED%E8%ED%F1%FF%ED&ti=%D0%BD%D... │ 120241233 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372842094     │ 0   │ 0   │ 0      │ 0         │ 0         │ 3975911785 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 9685011611637290144  │ 5941547189901908071  │ 0    │
│ 4857420640250996887 │ 1          │ Suzuki Escort 4* (\xD0\xA4\xD1\x80\xD0\xB0\xD0\xBD\xD1\x86\xD1\x8B 3 \xD1\x81\x... │ 1         │ 1372800737 │ 15889     │ 3922      │ 3201307115 │ 190      │ 7335986183190726964 │ 1            │ 44  │ 88        │ http://pova-ul-mir.irr.ru/search.php?gidcar=37408&uuid=1&bc=3&city=0&pv=20&s_ye... │ http://news/238/~6/?cauth=1&av=1&nm=1&ms=1,2/currency=RUR/page_num_id=15366563&... │ 0       │ 306               │ 144             │ 304           │ 132         │ 1368            │ 554              │ 37              │ 15         │ 4          │ 202         │ 0        │ 0        │ 1              │ fi             │ 1            │ 1                │ 0        │ 0           │                  │        │ 2311071     │ -1             │ 0              │              │ 0           │ 0           │ 1333              │ 924                │ 322            │ 1372840359      │ 4                   │ 1                   │ 16561               │ 0                   │ windows              │ 1           │ 0      │ 0          │ 0           │ 7659179697273795837 │                                                                                    │ 232010762 │ 0            │ 0       │ 0           │ 0             │ 0        │ 5        │ 1372866397     │ 31  │ 2   │ 2      │ 3658      │ 28        │ 2920265313 │ -1         │ -1         │ -1            │ S0              │ \xD0\x0C       │               │              │ 0         │ 0          │ 0         │ 0             │ 0                   │ 0                 │ 0           │ 0                     │                  │ 0          │              │ NH\x1C        │ 0               │                     │                    │              │                  │           │           │             │            │         │         │ 0        │ 8839345929686869081  │ 5449259806403761803  │ 0    │
└─────────────────────┴────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴────────────┴───────────┴───────────┴────────────┴──────────┴─────────────────────┴──────────────┴─────┴───────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴─────────┴───────────────────┴─────────────────┴───────────────┴─────────────┴─────────────────┴──────────────────┴─────────────────┴────────────┴────────────┴─────────────┴──────────┴──────────┴────────────────┴────────────────┴──────────────┴──────────────────┴──────────┴─────────────┴──────────────────┴────────┴─────────────┴────────────────┴────────────────┴──────────────┴─────────────┴─────────────┴───────────────────┴────────────────────┴────────────────┴─────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴─────────────────────┴──────────────────────┴─────────────┴────────┴────────────┴─────────────┴─────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┴──────────────┴─────────┴─────────────┴───────────────┴──────────┴──────────┴────────────────┴─────┴─────┴────────┴───────────┴───────────┴────────────┴────────────┴────────────┴───────────────┴─────────────────┴────────────────┴───────────────┴──────────────┴───────────┴────────────┴───────────┴───────────────┴─────────────────────┴───────────────────┴─────────────┴───────────────────────┴──────────────────┴────────────┴──────────────┴───────────────┴─────────────────┴─────────────────────┴────────────────────┴──────────────┴──────────────────┴───────────┴───────────┴─────────────┴────────────┴─────────┴─────────┴──────────┴──────────────────────┴──────────────────────┴──────┘
Run Time: real 38.169 user 135.808000 sys 9.856000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
│ \xD1\x81\xD0\xBA\xD0\xB0\xD1\x87\xD0\xB0\xD1\x82\xD1\x8C \xD1\x87\xD0\xB8\xD1\x... │
│ \xD0\xB0\xD0\xBD\xD0\xB0\xD0\xBF\xD0\xB0 \xD0\xBE\xD0\xBF\xD0\xB5\xD1\x80\xD0\x... │
│ \xD1\x81\xD0\xBB\xD0\xBE\xD0\xBD.\xD1\x80\xD1\x83\xD0\xB1., \xD0\xB4. \xD0\xB0.... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.227 user 3.484000 sys 0.080000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY SearchPhrase LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ ! hektdf gjcgjhn conster                                                           │
│ ! \xD1\x81\xD0\xBA\xD0\xB0\xD1\x80\xD0\xBF                                         │
│ !(\xD0\xBA\xD0\xB0\xD0\xBA \xD0\xB2\xD0\xBE\xD1\x80\xD0\xBE\xD0\xBD\xD0\xB8        │
│ !(\xD0\xBF\xD0\xBE \xD0\xB3\xD0\xBE\xD1\x80\xD0\xB8\xD1\x8E \xD0\xB2 \xD1\x8F\x... │
│ !(\xD1\x81) \xD0\xBF\xD1\x80\xD0\xBE \xD0\xB4\xD0\xBF\xD0\xBE \xD1\x81\xD0\xB5\... │
│ !(\xD1\x81\xD0\xB0\xD0\xBB\xD0\xBE\xD0\xBD\xD1\x8B \xD0\xBE\xD1\x81\xD1\x82\xD0... │
│ !(\xD1\x81\xD1\x82\xD0\xB0\xD1\x80\xD1\x82\xD0\xB5\xD1\x80 rav4 \xD1\x82\xD1\x8... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xB4\xD0\xBB\xD1\x8F \xD0\xBC\xD1\x8F\xD1... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD0\xBC\xD0\xB0\xD1\x83\xD1\x81 \xD0\xBA\xD0... │
│ !\xD0\xBA\xD1\x83\xD0\xB3\xD0\xB8 \xD1\x81\xD0\xB5\xD1\x80\xD0\xB8\xD0\xB8         │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.271 user 3.996000 sys 0.092000
D SELECT SearchPhrase FROM hits WHERE octet_length(SearchPhrase) > 0 ORDER BY EventTime, SearchPhrase LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┐
│                                    SearchPhrase                                    │
├────────────────────────────────────────────────────────────────────────────────────┤
│ galaxy s4 zoom \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC                            │
│ \xD0\xBD\xD0\xBE\xD1\x87\xD0\xBD\xD0\xBE \xD0\xBA\xD0\xB8\xD1\x82\xD0\xB0\xD1\x... │
│ \xD1\x81\xD0\xB8\xD0\xBC\xD0\xBF\xD1\x82\xD0\xBE\xD0\xBC\xD1\x8B \xD1\x80\xD0\x... │
│ \xD1\x84\xD0\xB8\xD0\xBB\xD1\x8C\xD0\xBC \xD0\xBD\xD0\xB5\xD0\xB1\xD0\xBE\xD0\x... │
│ \xD0\xB0\xD0\xB2\xD0\xBE\xD0\xBC \xD0\xBA\xD0\xBE\xD0\xBD\xD1\x81\xD1\x82\xD0\x... │
│ \xD0\xB0\xD0\xBD\xD0\xB0\xD0\xBF\xD0\xB0 \xD0\xBE\xD0\xBF\xD0\xB5\xD1\x80\xD0\x... │
│ \xD0\xB1\xD1\x80\xD0\xB8\xD1\x82\xD0\xB0 \xD0\xB3\xD0\xB0\xD0\xBD\xD0\xB0\xD0\x... │
│ \xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBF\xD1\x8C\xD1\x8E\xD1\x82\xD0\xB5\xD1\x80\xD0\xB... │
│ \xD0\xBE\xD1\x82\xD0\xB4\xD1\x8B\xD1\x85\xD0\xB0 \xD1\x87\xD0\xB5\xD0\xBC \xD0\... │
│ \xD1\x80\xD0\xB0\xD1\x81\xD0\xBF\xD0\xB8\xD1\x81\xD0\xB0\xD0\xBD\xD0\xB8\xD0\xB... │
└────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 0.231 user 3.632000 sys 0.008000
D SELECT CounterID, avg(octet_length(URL)) AS l, count(*) AS c FROM hits WHERE octet_length(URL) > 0 GROUP BY CounterID HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;L
┌───────────┬────────────────────┬─────────┐
│ CounterID │         l          │    c    │
├───────────┼────────────────────┼─────────┤
│ 233773    │ 469.18537326484886 │ 2938865 │
│ 245438    │ 271.7892512777364  │ 2510103 │
│ 122612    │ 238.64530987208474 │ 3574007 │
│ 234004    │ 204.28793262381632 │ 238660  │
│ 1634      │ 197.83321731651554 │ 323229  │
│ 786       │ 186.75537634408602 │ 120528  │
│ 114157    │ 142.91881538575285 │ 216408  │
│ 515       │ 126.22860040706026 │ 146907  │
│ 256004    │ 125.37108455074805 │ 858171  │
│ 95427     │ 120.26856903175477 │ 374306  │
│ 199550    │ 109.81720498866335 │ 7115413 │
│ 220992    │ 105.85666196266179 │ 494614  │
│ 196239    │ 98.34882201749727  │ 163797  │
│ 62        │ 93.15981711034343  │ 738150  │
│ 96948     │ 92.74321182146618  │ 396093  │
│ 188878    │ 91.98308322489247  │ 311998  │
│ 249603    │ 91.88026594639518  │ 120325  │
│ 3922      │ 87.83856410684609  │ 8527069 │
│ 191697    │ 86.95776647628826  │ 124664  │
│ 97467     │ 84.2953696503987   │ 131178  │
│ 186300    │ 83.97258027738701  │ 802561  │
│ 146891    │ 77.77430173504756  │ 605286  │
│ 38        │ 76.43757015971798  │ 507770  │
│ 230962    │ 76.3127707226559   │ 169223  │
│ 77639     │ 75.38681923602442  │ 253961  │
└───────────┴────────────────────┴─────────┘
Run Time: real 0.426 user 6.372000 sys 0.356000
D //(?:www\.)?([^/]+)/.*$', '\1') AS key, avg(octet_length(Referer)) AS l, count(*) AS c, min(Referer) FROM hits WHERE octet_length(Referer) > 0 GROUP BY key HAVING count(*) > 100000 ORDER BY l DESC LIMIT 25;E
┌────────────────────────────────────────────────────────────────────────┬────────────────────┬─────────┬────────────────────────────────────────────────────────────────────────────────────┐
│                                  key                                   │         l          │    c    │                                    min(referer)                                    │
├────────────────────────────────────────────────────────────────────────┼────────────────────┼─────────┼────────────────────────────────────────────────────────────────────────────────────┤
│ svpressa.ru                                                            │ 307.980979437341   │ 242527  │ http://svpressa.ru/                                                                │
│ msuzie-showforumdisplay                                                │ 263.327228380409   │ 183676  │ http://msuzie-showforumdisplay/63/~2/?name=&cost_neu%3D400%26retpath=default777... │
│ saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80 │ 242.5236948271821  │ 200529  │ http://saint-peters-total=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5 80/c... │
│ domics                                                                 │ 212.92990978061542 │ 326094  │ http://domics/825179.11931861234499792                                             │
│ e96.ru                                                                 │ 210.09628206687884 │ 1019276 │ http://e96.ru/%3Ffrom]=&input_act[count_num=0&dff=arian-carrina1201517&cad=rjt&... │
│ gadgets.irr.ru                                                         │ 131.9597008950273  │ 349710  │ https://gadgets.irr.ru/2jmj7l5rSw0yVb                                              │
│ google.ru                                                              │ 109.24485253818524 │ 2158491 │ http://google.ru/                                                                  │
│ go.mail                                                                │ 108.63930572737723 │ 8228007 │ http://go.mail/04/detskaia-moda-zhiensmed                                          │
│ msouz.ru                                                               │ 106.10887286512423 │ 301774  │ http://msouz.ru/?ffshop                                                            │
│ state=19945206                                                         │ 105.6469046513171  │ 512414  │ http://state=19945206/foto-4/login%20NoTs3M&where=all&filmId=u8aGGqtWs3M&where=... │
│ loveplanet.ru                                                          │ 104.60136383347789 │ 461200  │ http://loveplanet.ru/%3Faw_opel/page=2013                                          │
│ bonprix.ru                                                             │ 104.41683309557774 │ 1125105 │ http://bonprix.ru/                                                                 │
│ novjob.ru                                                              │ 96.75331644732393  │ 133049  │ http://novjob.ru/                                                                  │
│ cn.ru                                                                  │ 95.63198716663325  │ 124675  │ http://cn.ru/GameMain.aspx#catalog/100523&tails.xml?market_pc.html?pid=9403&lr=... │
│ geomethiettai.ru                                                       │ 94.78816556817006  │ 115916  │ https://geomethiettai.ru/GameMain.aspx?group=houses/list=266559j7077&num=7&prun... │
│ kino                                                                   │ 90.27628829938655  │ 120139  │ http://kino/6/21/2/women.asp?whichpage4/#oversion=unreadm&uid                      │
│ yaroslavens.ru                                                         │ 90.17077281117085  │ 124610  │ http://yaroslavens.ru/main.aspx#catalog%2F1004-1100000147-otvet/actions/disloca... │
│ mysw.info                                                              │ 89.68684313159915  │ 984596  │ http://mysw.info/                                                                  │
│ m.myloveplanet.ru                                                      │ 88.73233749439181  │ 151564  │ http://m.myloveplanet.ru/                                                          │
│ povarenok.ru                                                           │ 83.97395952020882  │ 144813  │ http://povarenok.ru/                                                               │
│ gorod                                                                  │ 80.33107253811141  │ 110728  │ http://gorod/%3Fauto.ria.ua%2Fjob                                                  │
│ yandsearch                                                             │ 80.21664430621621  │ 245970  │ http://www.yandsearch/rooms=1/page2                                                │
│ myloveplanet.ru                                                        │ 80.08183067768715  │ 110582  │ http://myloveplanet.ru/#associety/auto                                             │
│ tambov.irr.ru                                                          │ 77.8650188064113   │ 315318  │ http://tambov.irr.ru/0/c1/tgFtaeLDK0yb01A7xvQF08sjCFqQxn51                         │
│ kurortmag.ru                                                           │ 75.74958779884584  │ 155264  │ http://kurortmag.ru/                                                               │
└────────────────────────────────────────────────────────────────────────┴────────────────────┴─────────┴────────────────────────────────────────────────────────────────────────────────────┘
Run Time: real 123.649 user 1892.300000 sys 4.120000
D  + 82), sum(ResolutionWidth + 83), sum(ResolutionWidth + 84), sum(ResolutionWidth + 85), sum(ResolutionWidth + 86), sum(ResolutionWidth + 87), sum(ResolutionWidth + 88), sum(ResolutionWidth + 89) FROM hits;
┌──────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┬───────────────────────────┐
│ sum(resolutionwidth) │ sum(resolutionwidth + 1) │ sum(resolutionwidth + 2) │ sum(resolutionwidth + 3) │ sum(resolutionwidth + 4) │ sum(resolutionwidth + 5) │ sum(resolutionwidth + 6) │ sum(resolutionwidth + 7) │ sum(resolutionwidth + 8) │ sum(resolutionwidth + 9) │ sum(resolutionwidth + 10) │ sum(resolutionwidth + 11) │ sum(resolutionwidth + 12) │ sum(resolutionwidth + 13) │ sum(resolutionwidth + 14) │ sum(resolutionwidth + 15) │ sum(resolutionwidth + 16) │ sum(resolutionwidth + 17) │ sum(resolutionwidth + 18) │ sum(resolutionwidth + 19) │ sum(resolutionwidth + 20) │ sum(resolutionwidth + 21) │ sum(resolutionwidth + 22) │ sum(resolutionwidth + 23) │ sum(resolutionwidth + 24) │ sum(resolutionwidth + 25) │ sum(resolutionwidth + 26) │ sum(resolutionwidth + 27) │ sum(resolutionwidth + 28) │ sum(resolutionwidth + 29) │ sum(resolutionwidth + 30) │ sum(resolutionwidth + 31) │ sum(resolutionwidth + 32) │ sum(resolutionwidth + 33) │ sum(resolutionwidth + 34) │ sum(resolutionwidth + 35) │ sum(resolutionwidth + 36) │ sum(resolutionwidth + 37) │ sum(resolutionwidth + 38) │ sum(resolutionwidth + 39) │ sum(resolutionwidth + 40) │ sum(resolutionwidth + 41) │ sum(resolutionwidth + 42) │ sum(resolutionwidth + 43) │ sum(resolutionwidth + 44) │ sum(resolutionwidth + 45) │ sum(resolutionwidth + 46) │ sum(resolutionwidth + 47) │ sum(resolutionwidth + 48) │ sum(resolutionwidth + 49) │ sum(resolutionwidth + 50) │ sum(resolutionwidth + 51) │ sum(resolutionwidth + 52) │ sum(resolutionwidth + 53) │ sum(resolutionwidth + 54) │ sum(resolutionwidth + 55) │ sum(resolutionwidth + 56) │ sum(resolutionwidth + 57) │ sum(resolutionwidth + 58) │ sum(resolutionwidth + 59) │ sum(resolutionwidth + 60) │ sum(resolutionwidth + 61) │ sum(resolutionwidth + 62) │ sum(resolutionwidth + 63) │ sum(resolutionwidth + 64) │ sum(resolutionwidth + 65) │ sum(resolutionwidth + 66) │ sum(resolutionwidth + 67) │ sum(resolutionwidth + 68) │ sum(resolutionwidth + 69) │ sum(resolutionwidth + 70) │ sum(resolutionwidth + 71) │ sum(resolutionwidth + 72) │ sum(resolutionwidth + 73) │ sum(resolutionwidth + 74) │ sum(resolutionwidth + 75) │ sum(resolutionwidth + 76) │ sum(resolutionwidth + 77) │ sum(resolutionwidth + 78) │ sum(resolutionwidth + 79) │ sum(resolutionwidth + 80) │ sum(resolutionwidth + 81) │ sum(resolutionwidth + 82) │ sum(resolutionwidth + 83) │ sum(resolutionwidth + 84) │ sum(resolutionwidth + 85) │ sum(resolutionwidth + 86) │ sum(resolutionwidth + 87) │ sum(resolutionwidth + 88) │ sum(resolutionwidth + 89) │
├──────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┼───────────────────────────┤
│ 151348908394         │ 151448908394             │ 151548908394             │ 151648908394             │ 151748908394             │ 151848908394             │ 151948908394             │ 152048908394             │ 152148908394             │ 152248908394             │ 152348908394              │ 152448908394              │ 152548908394              │ 152648908394              │ 152748908394              │ 152848908394              │ 152948908394              │ 153048908394              │ 153148908394              │ 153248908394              │ 153348908394              │ 153448908394              │ 153548908394              │ 153648908394              │ 153748908394              │ 153848908394              │ 153948908394              │ 154048908394              │ 154148908394              │ 154248908394              │ 154348908394              │ 154448908394              │ 154548908394              │ 154648908394              │ 154748908394              │ 154848908394              │ 154948908394              │ 155048908394              │ 155148908394              │ 155248908394              │ 155348908394              │ 155448908394              │ 155548908394              │ 155648908394              │ 155748908394              │ 155848908394              │ 155948908394              │ 156048908394              │ 156148908394              │ 156248908394              │ 156348908394              │ 156448908394              │ 156548908394              │ 156648908394              │ 156748908394              │ 156848908394              │ 156948908394              │ 157048908394              │ 157148908394              │ 157248908394              │ 157348908394              │ 157448908394              │ 157548908394              │ 157648908394              │ 157748908394              │ 157848908394              │ 157948908394              │ 158048908394              │ 158148908394              │ 158248908394              │ 158348908394              │ 158448908394              │ 158548908394              │ 158648908394              │ 158748908394              │ 158848908394              │ 158948908394              │ 159048908394              │ 159148908394              │ 159248908394              │ 159348908394              │ 159448908394              │ 159548908394              │ 159648908394              │ 159748908394              │ 159848908394              │ 159948908394              │ 160048908394              │ 160148908394              │ 160248908394              │
└──────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┴───────────────────────────┘
Run Time: real 6.374 user 101.052000 sys 0.008000
D SELECT SearchEngineID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10;
┌────────────────┬────────────┬──────┬──────────────┬──────────────────────┐
│ SearchEngineID │  ClientIP  │  c   │ sum(refresh) │ avg(resolutionwidth) │
├────────────────┼────────────┼──────┼──────────────┼──────────────────────┤
│ 2              │ 1138507705 │ 1633 │ 35           │ 1408.0122473974282   │
│ 2              │ 1740861572 │ 1331 │ 28           │ 1577.945905334335    │
│ 2              │ 3487820196 │ 1144 │ 35           │ 1553.1984265734266   │
│ 2              │ 3797060577 │ 1140 │ 36           │ 1543.4140350877192   │
│ 2              │ 2349209741 │ 1105 │ 30           │ 1557.387330316742    │
│ 2              │ 2424344199 │ 1102 │ 31           │ 1555.6588021778584   │
│ 2              │ 3663904793 │ 1083 │ 31           │ 1581.8171745152354   │
│ 2              │ 3829154130 │ 1082 │ 30           │ 1541.253234750462    │
│ 2              │ 2551371145 │ 1080 │ 24           │ 1559.8092592592593   │
│ 2              │ 4029049820 │ 1058 │ 32           │ 1556.2003780718337   │
└────────────────┴────────────┴──────┴──────────────┴──────────────────────┘
Run Time: real 0.999 user 13.236000 sys 0.068000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits WHERE octet_length(SearchPhrase) > 0 GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 4623938834438874046 │ 3335652175 │ 2 │ 0            │ 1917.0               │
│ 6231340535817185610 │ 4012918818 │ 2 │ 0            │ 1638.0               │
│ 8423042978509451644 │ 2960255590 │ 2 │ 0            │ 1368.0               │
│ 8268832962994556606 │ 1627418068 │ 2 │ 0            │ 1638.0               │
│ 5191389486841953200 │ 1487376472 │ 2 │ 0            │ 1828.0               │
│ 6816565865734300637 │ 3770216628 │ 2 │ 0            │ 2038.0               │
│ 7726072175618541265 │ 1876840662 │ 2 │ 0            │ 1638.0               │
│ 8672760597587433971 │ 1269590216 │ 2 │ 0            │ 1368.0               │
│ 7542988325649023791 │ 303701440  │ 2 │ 0            │ 1828.0               │
│ 4792336058495451538 │ 3494775397 │ 2 │ 0            │ 2038.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 1.531 user 16.536000 sys 0.392000
D SELECT WatchID, ClientIP, count(*) AS c, sum("refresh"), avg(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
┌─────────────────────┬────────────┬───┬──────────────┬──────────────────────┐
│       WatchID       │  ClientIP  │ c │ sum(refresh) │ avg(resolutionwidth) │
├─────────────────────┼────────────┼───┼──────────────┼──────────────────────┤
│ 4744389098628902911 │ 1500313270 │ 2 │ 0            │ 1368.0               │
│ 6489627466297098899 │ 1558450287 │ 2 │ 0            │ 1368.0               │
│ 7485059124808740671 │ 1755688921 │ 2 │ 0            │ 1996.0               │
│ 7229362496802796571 │ 1388026619 │ 2 │ 0            │ 1087.0               │
│ 5699795602773001237 │ 1148637937 │ 2 │ 0            │ 1917.0               │
│ 5513990774603668383 │ 1769439966 │ 2 │ 0            │ 1368.0               │
│ 6466230155642720170 │ 720685641  │ 2 │ 0            │ 1368.0               │
│ 5561182283490038976 │ 83735824   │ 2 │ 0            │ 1087.0               │
│ 4784371382202293288 │ 3735345744 │ 2 │ 0            │ 1638.0               │
│ 6244717263232015267 │ 1898460905 │ 2 │ 0            │ 1996.0               │
└─────────────────────┴────────────┴───┴──────────────┴──────────────────────┘
Run Time: real 63.046 user 79.256000 sys 10.484000
D SELECT URL, count(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│                                        URL                                         │    c    │
├────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ http://kinopoisk.ru                                                                │ 1625251 │
│ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ http://video.yandex                                                                │ 582404  │
│ http://smeshariki.ru/region                                                        │ 514984  │
│ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ http://tienskaia-moda                                                              │ 289355  │
└────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 7.564 user 55.552000 sys 1.156000
D SELECT 1, URL, count(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10;
┌───┬────────────────────────────────────────────────────────────────────────────────────┬─────────┐
│ 1 │                                        URL                                         │    c    │
├───┼────────────────────────────────────────────────────────────────────────────────────┼─────────┤
│ 1 │ http://liver.ru/belgorod/page/1006.j\xD0\xBA\xD0\xB8/\xD0\xB4\xD0\xBE\xD0\xBF_\... │ 3288173 │
│ 1 │ http://kinopoisk.ru                                                                │ 1625251 │
│ 1 │ http://bdsm_po_yers=0&with_video                                                   │ 791465  │
│ 1 │ http://video.yandex                                                                │ 582404  │
│ 1 │ http://smeshariki.ru/region                                                        │ 514984  │
│ 1 │ http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with                              │ 507995  │
│ 1 │ http://liver.ru/place_rukodel=365115eb7bbb90                                       │ 359893  │
│ 1 │ http://kinopoisk.ru/vladimir.irr.ru                                                │ 354690  │
│ 1 │ http://video.yandex.ru/search/?jenre=50&s_yers                                     │ 318979  │
│ 1 │ http://tienskaia-moda                                                              │ 289355  │
└───┴────────────────────────────────────────────────────────────────────────────────────┴─────────┘
Run Time: real 4.014 user 55.408000 sys 0.152000
D SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, count(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10;
┌────────────┬──────────────┬──────────────┬──────────────┬───────┐
│  ClientIP  │ clientip - 1 │ clientip - 2 │ clientip - 3 │   c   │
├────────────┼──────────────┼──────────────┼──────────────┼───────┤
│ 4255045322 │ 4255045321   │ 4255045320   │ 4255045319   │ 47008 │
│ 2596862839 │ 2596862838   │ 2596862837   │ 2596862836   │ 29121 │
│ 3119147744 │ 3119147743   │ 3119147742   │ 3119147741   │ 25333 │
│ 1696638182 │ 1696638181   │ 1696638180   │ 1696638179   │ 20230 │
│ 1138507705 │ 1138507704   │ 1138507703   │ 1138507702   │ 15778 │
│ 3367941774 │ 3367941773   │ 3367941772   │ 3367941771   │ 12768 │
│ 3032827420 │ 3032827419   │ 3032827418   │ 3032827417   │ 11349 │
│ 1740861572 │ 1740861571   │ 1740861570   │ 1740861569   │ 11315 │
│ 3487820196 │ 3487820195   │ 3487820194   │ 3487820193   │ 9881  │
│ 3663904793 │ 3663904792   │ 3663904791   │ 3663904790   │ 9718  │
└────────────┴──────────────┴──────────────┴──────────────┴───────┘
Run Time: real 2.404 user 32.444000 sys 0.256000
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.278 user 0.800000 sys 0.092000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.852 user 1.004000 sys 0.036000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://notes=1/currency                                                            │ 27        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://direct                                                                      │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│                                                                                    │ 6         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://loveplanet                                                                  │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://video                                                                       │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ur.hh.ru/page=10&can_be_checked_auto_region=1&rm=1&lang=all&film/18212.1... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://pogoda.yandex.php?t=14555667679/?PAGEN_3=5&s_yers=0&numphoto/62232/7#f      │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://rlsnet.ru/nogin.html5/v12                                                   │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://edp2.adrive_type=4754679564&pt=b&pd=9&price                                 │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ http://auto.ria.ua/auto_auto.ria                                                   │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ http://pogoda.yandex.ru/images/0001216629/0                                        │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://masterlingvo/#I 1                                                           │ 2         │
│ http:%2F%2Fwww.bonprix.ru/search=0&deletedAutos&marketing                          │ 2         │
│ http://pogoda.yandex.ru/places/premiery%2Fpage=2&confiscategoriya                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://smeshariki.ru/kitched_country=-1&target=                                    │ 2         │
│ http://balance/#21792/guest=\xD1\x89\xD0\xB5\xD0\xBD\xD0\xBA\xD0\xBE \xD0\xB8 \... │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://video=0&wi=1362653061306535333&site_id=&auth                                │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://en.lyrsense.com/iframe-owa.html?query=2&hide_black.asp?TOPIC_ID=914958&o... │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
│ http://smeshariki.ru/user_id=1&bodystyle=0&vip=&int[12][from=last_auto_id=13143... │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
│ http://omsk.spb.ru/cars/art/MVEF2WkMweE5qVTVJOHN - Gl\xC3\xB6\xC3\xB6ckler         │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://smeshariki.ru/tashkinsk                                                     │ 2         │
│ http://pogoda.yandex.ru/chat/ivan                                                  │ 2         │
│ http://video.yandex.html5/v12                                                      │ 2         │
│ http://loveplants/740392319                                                        │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://kinopoisk                                                                   │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://video=0&input_state                                                         │ 2         │
│ http://board=11.ua.150.html%3Fhtml                                                 │ 2         │
│ http://slovarenok.ru/chapochki                                                     │ 2         │
│ http://pogoda.yandex.ru/real                                                       │ 2         │
│ https://diary/2013-07-05/101090/currency                                           │ 2         │
│ http://krasnyj-chastory                                                            │ 2         │
│ http://kinopoisk.ru/saint                                                          │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.139 user 0.404000 sys 0.020000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga664.1721/deti74.ru/animals-planet.ru        │ http://irr.ru/index.php?showalbum/login=K-SR-B-13-9635095,9661/9#f                 │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search?text=\xD1\x84\x... │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/doc.ru/belgorod.irr.ru... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-smi.org%2F40 (KHTML, like Gecko) Version... │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_sell/pansiyskaya-obl.irr.html%... │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.986 user 1.912000 sys 0.104000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.861 user 0.860000 sys 0.044000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 1.168 user 1.208000 sys 0.096000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.171 user 0.248000 sys 0.020000
D
D CREATE INDEX counter_id_idx ON hits (CounterID)
> ;
Run Time: real 18.194 user 16.256000 sys 0.092000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.022 user 0.296000 sys 0.000000
D
D
D
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.068 user 0.844000 sys 0.000000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.045 user 0.584000 sys 0.000000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://notes=1/currency                                                            │ 27        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://direct                                                                      │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│                                                                                    │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://loveplanet                                                                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://video                                                                       │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://pogoda.yandex.php?t=14555667679/?PAGEN_3=5&s_yers=0&numphoto/62232/7#f      │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://pogoda.yandex.ru&xdm_e=http://name=\xD0\x91\xD0\xB0\xD0\xBB\xD0\xB5\xD1\... │ 2         │
│ http://auto_id=3159&input_age2                                                     │ 2         │
│ http://pogoda.yandex.ru/chat/ivan                                                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://kinopoisk                                                                   │ 2         │
│ http://video=0&input_state                                                         │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://smeshariki.ru/tashkinsk                                                     │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://board=11.ua.150.html%3Fhtml                                                 │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ https://diary/2013-07-05/101090/currency                                           │ 2         │
│ http://slovarenok.ru/chapochki                                                     │ 2         │
│ http://kinopoisk.ru/saint                                                          │ 2         │
│ http://krasnyj-chastory                                                            │ 2         │
│ http://pogoda.yandex.ru/real                                                       │ 2         │
│ http://3dnews.ru/msk/events                                                        │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://pogoda.yandex.php?showalbum                                                 │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://omsk.spb.ru/filmId=RUb3Hf2m0Cw&where=all&text                               │ 2         │
│ http://afisha.yandex.php?s=4d450&pid                                               │ 2         │
│ http://afisha.yandex.php?city=418&view                                             │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 2         │
│ http://news/398261_enl.jpg-1                                                       │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://pogoda.yandex.ru/images/0001216629/0                                        │ 2         │
│ http://rlsnet.ru/nogin.html5/v12                                                   │ 2         │
│ http://guid=6&pw=2&pv=0&price=690&s_yers=1916                                      │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://ur.hh.ru/page=10&can_be_checked_auto_region=1&rm=1&lang=all&film/18212.1... │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.041 user 0.380000 sys 0.004000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga664.1721/deti74.ru/animals-planet.ru        │ http://irr.ru/index.php?showalbum/login=K-SR-B-13-9635095,9661/9#f                 │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert269257798044.html_partmen... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/litlip/saint-peter557932E-8C62-4917%26ad%3D64... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2651734&pt=b&pd=7&pw=1&pr... │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.127 user 1.216000 sys 0.004000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.014 user 0.180000 sys 0.000000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.018 user 0.240000 sys 0.000000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.012 user 0.156000 sys 0.000000
D
D
D
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.065 user 0.800000 sys 0.008000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.046 user 0.580000 sys 0.004000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://notes=1/currency                                                            │ 27        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://direct                                                                      │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│                                                                                    │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://loveplanet                                                                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://afishers/story                                                              │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video                                                                       │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://pogoda.yandex.ru/chat/ivan                                                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://news/398261_enl.jpg-1                                                       │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://kinopoisk                                                                   │ 2         │
│ http://video=0&input_state                                                         │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://smeshariki.ru/tashkinsk                                                     │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://board=11.ua.150.html%3Fhtml                                                 │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ https://diary/2013-07-05/101090/currency                                           │ 2         │
│ http://slovarenok.ru/chapochki                                                     │ 2         │
│ http://pogoda.yandex.php?showalbum                                                 │ 2         │
│ http://kinopoisk.ru/saint                                                          │ 2         │
│ http://krasnyj-chastory                                                            │ 2         │
│ http://pogoda.yandex.ru/real                                                       │ 2         │
│ http://3dnews.ru/msk/events                                                        │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
│ http://diary.ru/search?familliklink                                                │ 2         │
│ http://omsk.spb.ru/filmId=RUb3Hf2m0Cw&where=all&text                               │ 2         │
│ http:%2F%2Fwww.bonprix.ru/search=0&deletedAutos&marketing                          │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://pogoda.yandex.php?t=14555667679/?PAGEN_3=5&s_yers=0&numphoto/62232/7#f      │ 2         │
│ http://pogoda.yandex.ru&xdm_e=http://name=\xD0\x91\xD0\xB0\xD0\xBB\xD0\xB5\xD1\... │ 2         │
│ http://auto_id=3159&input_age2                                                     │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://guid=6&pw=2&pv=0&price=690&s_yers=1916                                      │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
│ http://afisha.yandex.php?s=4d450&pid                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://afisha.yandex.php?city=418&view                                             │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.040 user 0.372000 sys 0.008000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga664.1721/deti74.ru/animals-planet.ru        │ http://irr.ru/index.php?showalbum/login=K-SR-B-13-9635095,9661/9#f                 │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/litlip/saint-peter557932E-8C62-4917%26ad%3D64... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2651734&pt=b&pd=7&pw=1&pr... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search?text=\xD1\x84\x... │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.126 user 1.188000 sys 0.004000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.014 user 0.188000 sys 0.004000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.019 user 0.264000 sys 0.000000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.012 user 0.164000 sys 0.000000
D
D
D
D
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.064 user 0.792000 sys 0.000000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.045 user 0.576000 sys 0.004000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://notes=1/currency                                                            │ 27        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://direct                                                                      │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│                                                                                    │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://loveplanet                                                                  │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://video                                                                       │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://pogoda.yandex.ru&xdm_e=http://name=\xD0\x91\xD0\xB0\xD0\xBB\xD0\xB5\xD1\... │ 2         │
│ http://krasnyj-chastory                                                            │ 2         │
│ http://board=11.ua.150.html%3Fhtml                                                 │ 2         │
│ http://wildberries.ru/index.ua                                                     │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 2         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 2         │
│ http://masterlingvo/#I 1                                                           │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://news/398261_enl.jpg-1                                                       │ 2         │
│ http://auto_id=3159&input_age2                                                     │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://pogoda.yandex.ru/images/0001216629/0                                        │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://kinopoisk                                                                   │ 2         │
│ http://video=0&input_state                                                         │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://smeshariki.ru/tashkinsk                                                     │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ https://diary/2013-07-05/101090/currency                                           │ 2         │
│ http://slovarenok.ru/chapochki                                                     │ 2         │
│ http://pogoda.yandex.php?showalbum                                                 │ 2         │
│ http://pogoda.yandex.ru/real                                                       │ 2         │
│ http://kinopoisk.ru/saint                                                          │ 2         │
│ http://3dnews.ru/msk/events                                                        │ 2         │
│ http://afisha.yandex.php?id=1620_4_licanel                                         │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://pogoda.yandex.ru/chat/ivan                                                  │ 2         │
│ http://afisha.yandex.php?s=4d450&pid                                               │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://afisha.yandex.php?city=418&view                                             │ 2         │
│ http://guid=6&pw=2&pv=0&price=690&s_yers=1916                                      │ 2         │
│ http://en.lyrsense.com.ua/?tag=type=category_id=2furii10.html?city=0&hide          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://diary.ru/search?familliklink                                                │ 2         │
│ http://omsk.spb.ru/filmId=RUb3Hf2m0Cw&where=all&text                               │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://wildberrin/foton                                                            │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.040 user 0.368000 sys 0.012000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2651734&pt=b&pd=7&pw=1&pr... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/litlip/saint-peter557932E-8C62-4917%26ad%3D64... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga664.1721/deti74.ru/animals-planet.ru        │ http://irr.ru/index.php?showalbum/login=K-SR-B-13-9635095,9661/9#f                 │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search?text=\xD1\x84\x... │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.132 user 1.200000 sys 0.020000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.014 user 0.184000 sys 0.000000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.019 user 0.248000 sys 0.000000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.012 user 0.152000 sys 0.000000
D
D
D '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(URL) > 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
┌──────────────────────────────────────────────────────────────────────────┬───────────┐
│                                   URL                                    │ pageviews │
├──────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130          │ 102341    │
│ http://komme%2F27.0.1453.116                                             │ 51218     │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 │ 18315     │
│ http://irr.ru/index.php?showalbum/login-kapustic/product_name            │ 16461     │
│ http://irr.ru/index.php                                                  │ 12577     │
│ http://irr.ru/index.php?showalbum/login                                  │ 10880     │
│ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;         │ 7627      │
│ http://irr.ru/index.php?showalbum/login-kupalnik                         │ 4369      │
│ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params  │ 4058      │
│ http://komme%2F27.0.1453.116 Safari                                      │ 3021      │
└──────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.077 user 0.900000 sys 0.016000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND DontCountHits = 0 AND "refresh" = 0 AND octet_length(Title) > 0 GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                       Title                                        │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ \xD0\xA2\xD0\xB5\xD1\x81\xD1\x82 (\xD0\xA0\xD0\xBE\xD1\x81\xD1\x81\xD0\xB8\xD1\... │ 122407    │
│ \xD0\xA8\xD0\xB0\xD1\x80\xD0\xB0\xD1\x80\xD0\xB0\xD0\xB9), \xD0\x92\xD1\x8B\xD0... │ 82935     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA - IRR.ru          │ 80958     │
│ \xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\xB8 New Era H (\xD0\x90\xD1\x81\xD1\x83\xD... │ 39098     │
│ \xD0\xA2\xD0\xB5\xD0\xBF\xD0\xBB\xD0\xBE\xD1\x81\xD0\xBA\xD1\x83 \xD0\xBD\xD0\x... │ 23123     │
│ Dave and Hotpoint sport \xE2\x80\x93 \xD1\x81\xD0\xB0\xD0\xBC\xD1\x8B\xD0\xB5 \... │ 14329     │
│ AUTO.ria.ua \xE2\x84\xA2 - \xD0\x90\xD0\xBF\xD0\xBF\xD0\xB5\xD1\x80                │ 14053     │
│ \xD0\x9F\xD1\x80\xD0\xB8\xD0\xBC\xD0\xBE\xD1\x80\xD1\x81\xD0\xBA (\xD0\xA0\xD0\... │ 13912     │
│ OWAProfessign), \xD0\xBF\xD1\x80\xD0\xBE\xD0\xB4\xD0\xB0\xD1\x82\xD1\x8C           │ 10919     │
│ \xD0\xA2\xD1\x80\xD1\x83\xD1\x81\xD0\xB8 - \xD0\xA8\xD0\xBE\xD1\x83\xD0\xB1\xD0... │ 10157     │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.051 user 0.688000 sys 0.000000
D  AND (DATE '1970-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND IsLink != 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
┌────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│                                        URL                                         │ pageviews │
├────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 7479      │
│ http://aliningrad                                                                  │ 4791      │
│ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 3584      │
│ http://smeshariki.ru/obucheyelants                                                 │ 3064      │
│ http://video.yandex.php                                                            │ 2887      │
│ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 1084      │
│ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 891       │
│ http://afisha.yandex.ru/index                                                      │ 855       │
│ http://sslow_13507.html?aspx?naId=6HS                                              │ 521       │
│ http://wildberrior/uphold                                                          │ 484       │
│ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 289       │
│ http://obninsk/detail                                                              │ 241       │
│ http://diary.ru/forum/intries                                                      │ 208       │
│ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 185       │
│ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 185       │
│ http://kurort/SINA, ADRIAN                                                         │ 157       │
│ http://afisha.yandex.ru                                                            │ 132       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 124       │
│ http://ssl.hurra.com/iframe                                                        │ 123       │
│ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 119       │
│ http://stars-visa.html_params%3Drhost%3Dad.adriver.ru/catalog.php                  │ 105       │
│ http://komme%2F27.0.1453.116                                                       │ 83        │
│ http://pogoda.yandex                                                               │ 80        │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 79        │
│ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 73        │
│ http://video.yandex                                                                │ 71        │
│ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 68        │
│ http://wildberries.ru/daily                                                        │ 68        │
│ http://smeshariki.ru/ru/index.ru%26bid                                             │ 68        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 64        │
│ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 64        │
│ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 63        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 59        │
│ http://sslow_135000008&position=search                                             │ 58        │
│ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 53        │
│ http://sslow_13507.html/articles                                                   │ 52        │
│ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 51        │
│ http://rsdn.ru/rss.ya.ru/catalog                                                   │ 51        │
│ http://ekburg.irr.ru/#lingvo                                                       │ 46        │
│ http://pogoda.yandex.ru                                                            │ 45        │
│ http://sslow_13500000%26rnd%3D2788881.html                                         │ 44        │
│ http://maps#ru_5_ru_22106.377648194,975924][to]=&int[14270pa106&op_uid=17759/6#... │ 42        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 37        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 37        │
│ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 36        │
│ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 35        │
│ http://direct.yandex                                                               │ 34        │
│ http://sslow_13507.html?aspx?naId=3X_3bhLcs3M                                      │ 33        │
│ http://gotovim-doma                                                                │ 32        │
│ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 31        │
│ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 30        │
│ http://video.yandex.ru/Newsletter                                                  │ 29        │
│ http://sslow_13507.html?aspx?naId=6D8IzMGys3M                                      │ 29        │
│ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ http://video.yandex.ru                                                             │ 28        │
│ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 28        │
│ http://notes=1/currency                                                            │ 27        │
│ http://sslow_13507.html?aspx?naId=649&state/out-of-town=\xD0\xA5\xD0\xB0\xD0\xB... │ 27        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 26        │
│ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 26        │
│ http:%2F%2Fwwww.bonprix.ru/tambov                                                  │ 24        │
│ http://kinopoisk.ru/shoppich.ru/search?clid                                        │ 24        │
│ http://wildberries                                                                 │ 23        │
│ http:%2F%2Fwwwwww.bonprix.ru/searchAutoSearch?text=\xD0\xB2\xD0\xB5\xD0\xBB\xD0... │ 22        │
│ http://myloveplanet                                                                │ 20        │
│ http://stars-visa-litraj.txt","lpu":"http://pogoda                                 │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/secondary                             │ 20        │
│ http://msuzie-shop/premiery-c-38208_2.html                                         │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 20        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 20        │
│ http://smeshariki                                                                  │ 19        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 19        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ http://irr.ru/6323%26bn%3D27888895,96772,97436                                     │ 18        │
│ http://kinopoisk.ru                                                                │ 18        │
│ http://nepogoda.yandex.ru%2Fproducts/search?text=subscripts/busineshop             │ 17        │
│ http://wildberries.ru                                                              │ 17        │
│ http://kinopoisk.ru/catalog/9902224                                                │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://direct.yandex.html                                                          │ 17        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 17        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 17        │
│ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 16        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 16        │
│ http://afisha.yandex.php?gidcar=36281664                                           │ 16        │
│ http://auto.ria.ua/search                                                          │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://direct                                                                      │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ http://irr.ru/index.php?showalbum/login-kupalnaya-obl                              │ 15        │
│ http://kinopoisk.ru/odessya                                                        │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 15        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 14        │
│ http://ekburg.irr.irr.ru/maker                                                     │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.yandex                                                               │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 14        │
│ http://afisha.mail/rnd=0.9788                                                      │ 14        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 13        │
│ http://auto_many_to_auto.ria.ua/igrush43/                                          │ 13        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 13        │
│ http://afisha.yandex.ru/cars                                                       │ 13        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 13        │
│ http://love.ru/a-myprofi                                                           │ 13        │
│ http:                                                                              │ 13        │
│ http:%2F%2Fwww.bonprix                                                             │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://real-estate/aparther/offiliates/corruption/russinsk                         │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 12        │
│ http://on-online=on&accetti                                                        │ 12        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 12        │
│ http://samara.irr.html5/v12/?from]=                                                │ 12        │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 12        │
│ http://kinopoisk.ru/saledParams                                                    │ 12        │
│ http://en.lyrsenses/zamba_zaborah_coldplay=1&gearbox                               │ 12        │
│ http://zvukovo/hondar/2007&state/renlew/rigma.ru/scribed                           │ 12        │
│ http://pogoda.yandex.php?SECTION                                                   │ 12        │
│ http://msk/platia-nashing/vanny.diary.ru/moscow                                    │ 12        │
│ http://video.yandex.ru/GameMain.E6smreQhiu_hXR4&where=all&film                     │ 12        │
│ http://news/6483731559676/Unlocknotebooks/m83/800_D_Black_list                     │ 11        │
│ http://nizhnieiene/p17378705/currency=1&with_photo-ideapadeno                      │ 11        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 11        │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty/photo-12/#imag... │ 11        │
│ http://msk/platia-nashing/vanny.diary.ru/sale/liver                                │ 11        │
│ http://video.yandex.ru/GameMain.aspx#location                                      │ 11        │
│ http://guid=6&pw=6&pv=13                                                           │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 11        │
│ http://wildberries.ru/rost.html?1                                                  │ 11        │
│ http://pogoda.yandex.ru/catalog/jokers                                             │ 11        │
│ http://smeshariki.ru/?win=82&stat=1&page/196264&pt                                 │ 11        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 11        │
│ http://en.lyrsenses/zamba_zabudtrimazok.html?page=12&prr=http://fap1.adrive_typ... │ 11        │
│ http://bonprix.ru%26bid                                                            │ 11        │
│ http://loveplanet.ru/GameMain                                                      │ 10        │
│ http://bdsmpeople.ru                                                               │ 10        │
│ http://video.yandex.ru&pvid                                                        │ 10        │
│ http://liver.ru/cheboksicily/foto.aspx?sort=newly&trafkey                          │ 10        │
│ http:%2F%2F%2Fwwww.bonprix                                                         │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://club.ru/spokoiteli/photo37775280000                                         │ 10        │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 10        │
│ http:%2F%2Fwwww.bonprix                                                            │ 10        │
│ http://auto_id=240&n=13901038                                                      │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 10        │
│ http://smeshariki.ru                                                               │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://slovariant_new3077940810/detail                                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 10        │
│ http://en.lyrsenses/zamba_zabor_id=1012_blank%26site                               │ 10        │
│ http://sslow_13500000%26rnd%3D2788881.html?parts/passe                             │ 10        │
│ http://pogoda.html%3Fhtml_params%3Drhost%3D43                                      │ 10        │
│ http://irr.ru/index.php?showalbum/logout%26verstova.ru                             │ 10        │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://pogoda.yandex.php                                                           │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://irr.ru/imagecache/wm/2013&where=all&film/6781203.html?id=242037047/detai... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://mysw.info/blog/sankt-peter%3D1216/00001216629                               │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 9         │
│ http://e96.ru/albumfotok-15-fotki                                                  │ 9         │
│ http://alpari.yandex.html?html_param=0&users/#page/Search/ab_dob%2Ffieiie-razvo... │ 9         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu               │ 9         │
│ http://bonprix.ru/catalog/8570/1006790                                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http://b2b.testered/main/discuss/matched_country=-1&top=0&cityid=1024&wi=1366&o... │ 9         │
│ http://svpressa.ru/topic=17082630                                                  │ 9         │
│ http://bonprix.ru                                                                  │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 9         │
│ http:%2F%2Fwwww.bonprix.ru/filmId=8j5j97LRs3M&where=all&sources                    │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 9         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/#win_13.html_p... │ 9         │
│ http:%2F%2Fwwwwww.bonprix.ru/mymail/?folders/4744089758                            │ 9         │
│ http://nail=Yes&target=search                                                      │ 9         │
│ http://yoshka.diary.ru/exp?sid=3149&op_produkty%2F&sr=http://slovaria              │ 9         │
│ http://rlsnet.ru/vacancy/view_type_id=9677548268010367                             │ 9         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/imagecache/wm/2013&where=all&filmId                                  │ 8         │
│ https://m.myloveplanet.ru/forum/abrika-kobelenie_nebestsenal                       │ 8         │
│ http://zapchast.com/iframe-owa.html?1=1&cid=577&oki=1&op                           │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 8         │
│ http://poisk.ru/price_ot=&price_ot=&price                                          │ 8         │
│ http://afisha.yandex.php?t=141880517                                               │ 8         │
│ http://zarplata.ru/velika_all=\xD0\xBE\xD1\x82                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http:%2F%2Fwwwwww.bonprix.ru/news/222974895&op                                     │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://fore=3&marka=0&top=0                                                        │ 8         │
│ http://direct.yandex.ru/catalog                                                    │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96777&oki                                       │ 8         │
│ http://video.yandex.ru&xdm_p=1#item/search                                         │ 8         │
│ http://masterh4.adriver.yandex                                                     │ 8         │
│ http://zarplata.ru/?p=12977-B26358/currency=RUR/page=1080&wi=1024&lo=http://rzh... │ 8         │
│ http://en.lyrsenses/zamba_zabor/bedroomolsk                                        │ 8         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ==&page_avtomodules.php?f=100&ref... │ 8         │
│ http://mastered/main.aspx#location=1&bc=3&ct=1&pr=60322056107100919/page5/?_h=s... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://omsk.mlsn.ru                                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://irr.ru/6323%26bn%3D27888895,96779/87                                        │ 8         │
│ http://smeshariki.ru/GameMain                                                      │ 8         │
│ http://che.ru&pvid=13733142835/100/topic,5240556895&ch=UTF-8&sF=11,7,7,0           │ 8         │
│ http://afisha.yandex.php?gidcar=367108851%2Fr%2F1                                  │ 8         │
│ http://love.ru/?p=17059                                                            │ 8         │
│ http://wildberries.xml?from]=&input                                                │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 8         │
│ http://irr.ru/index.php?showalbum/login-kupit-topy%2Fplatjie-gotovlexandex.html... │ 8         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 8         │
│ http://auto.ria.ua/auto_id=24126629/0/index.ru/real-estate/out                     │ 8         │
│ http://victor?page_type=city.stol-yar.ru/cars                                      │ 8         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://video.yandex.ru%2F&sr=http://loveplants/65398f55                            │ 7         │
│ http://kinopoisk.ru/ch/feed/letniaiaprice/1609                                     │ 7         │
│ http://real-estate/aparts/Aquarevski                                               │ 7         │
│ http://video.yandex.ru/a-album/login-vitiju/photo                                  │ 7         │
│ http://bonprix.ru/social/product_id                                                │ 7         │
│ http://moscow/detail/5552/0/2792834&m=111,7,7,5                                    │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 7         │
│ http://irr.ru/Registered/main/topnewsru.com/page=6                                 │ 7         │
│ http://irr.ru/index.php?showalbum/login-kapustics?sort=pogoda.yandex.ru%26bt%3D... │ 7         │
│ http://bonprix.ru/catalog/8570/14139489                                            │ 7         │
│ http://afisha.yandex.ru/\xD0\xB4\xD0\xBE\xD0\xBC\xD0\xB0/\xD0\x91\xD0\xA1\xD0\x... │ 7         │
│ http://irr.htm?from]=&int[85][from]=&input_vsegodnyie                              │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://love.ru/?p=1#country=&op_seo                                                │ 7         │
│ http://bdsmpeople.ru/niktory/shtory/308/roomed.ru/p59473682740295                  │ 7         │
│ http:%2F%2Fwwwww.bonprix                                                           │ 7         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&can_be_check_PP     │ 7         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 7         │
│ http://myloveplantrackIt?tid                                                       │ 7         │
│ http://pogoda.yandex.ru&pvid=1                                                     │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 7         │
│ http://irr.ru/index.php?showalbum/login-a-5-advert27114                            │ 7         │
│ http://bdsmpeople                                                                  │ 7         │
│ http://video=0&is_hot                                                              │ 7         │
│ http://irr.ru/index.php?showalbum/login-zk34/pages/0001216629                      │ 7         │
│ http://svpressa.ru                                                                 │ 7         │
│ http://money.yandex                                                                │ 7         │
│ http://gotovim-doma.ru                                                             │ 7         │
│ http://afisha                                                                      │ 7         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 7         │
│ http://omsk/evential/house.ru/catalog/kitchedule=213-606361653965283               │ 6         │
│                                                                                    │ 6         │
│ http://video.yandex.ru%2Fkategory_id                                               │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://afisha.yandex.ru%2F%2Fmail/169                                              │ 6         │
│ http://love.ru/?p=1#country=-1&sq_liver.ru/kyrgyzstan                              │ 6         │
│ http://video.yandex.ru/ekt                                                         │ 6         │
│ http://stars-varenok.ru/16745959680706/800_0.jpeg.html%3Fhtml5/v123593             │ 6         │
│ http://bdsmpeople.ru/film/64544.690022.rar.html_params%3Drhost%3D_black_list=0&... │ 6         │
│ http://afisha.yandex.ru/catalog=on                                                 │ 6         │
│ http://bdsmpeople.ru/GameMain                                                      │ 6         │
│ http://v102.ru/investate/apartments-sale                                           │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://omsk/evential/housession%3D0                                                │ 6         │
│ http://wildberries.ru/search                                                       │ 6         │
│ http://video.yandex.ru/GameMain.aspx#location/page_type=category                   │ 6         │
│ http://direct.yandex.ru/refererprofile%2F2.10                                      │ 6         │
│ http://video.yandex.ru/a-topy                                                      │ 6         │
│ http://afisha.yandex.ru%26bt%3D43%26anbietersburg                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://rukodel=0&sort=newly&trafkey=2750                                           │ 6         │
│ http://moscow/details                                                              │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://smeshariki.ru/world/photofider_credit=0&view                                │ 6         │
│ http://irr.ru/index.php?showalbum/login-12.html%26custom                           │ 6         │
│ http://novosibirsk.irr.ru%26bid                                                    │ 6         │
│ http://solutions.diary.ru/realtitroenie_v_jurman.ru/albums/frame-owa.html?stric... │ 6         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 6         │
│ http://mr7.ru/newsru.com/iframe_right%3D43                                         │ 6         │
│ http://autodoc.ru/real-estate/apart                                                │ 6         │
│ http://smeshariki.ru/catalog                                                       │ 6         │
│ http://povari.yandex.ru/greecondary/Products_id=&auto_vaz_2111                     │ 6         │
│ http://edp2.adriver.ru/hocketshop.ru/moscow/detailanude                            │ 6         │
│ http://video.yandex.ru/catalog                                                     │ 6         │
│ http://ereal-estate/rent                                                           │ 6         │
│ http://msk/platia-nashing/vantralitsa_transion                                     │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://3dnewsru.com/iframe_right.html?1=1&cid=51538                                │ 6         │
│ http://afisha.yandex.php/board,39.04839                                            │ 6         │
│ http://novo/detail.aspx?group_cod_1s                                               │ 6         │
│ http://auto_hyundai_sarator                                                        │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://kalininmyclonus1                                                            │ 6         │
│ http://bdsmpeople.ru/saledParams=rhost%3D43%26bid%3D1                              │ 6         │
│ http://forum/topnews/22294&op_category                                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://love.ru/?p=17055335                                                         │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://real-estate=week/page=1&expand_search?film/298677435615.html                │ 6         │
│ http://afisha.yandex.ru/mymail.php                                                 │ 6         │
│ http://koolinar.ru/port.ru/doc                                                     │ 6         │
│ http://video=0&with_exchangeType                                                   │ 6         │
│ http://afisha.yandex.ru/index.ru/recipe                                            │ 6         │
│ http://kinel-lab.com/rus/20130709_117485994,93304&op_seo_entry=1&gearbox=0&type... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ https://slovakia-600dd903c07022,101595,91194&op_seo_entry                          │ 6         │
│ http://video.yandex.php?search?text=\xD0\x9A\xD0\xBE\xD0\xBD\xD1\x8C\xD1\x8F\xD... │ 6         │
│ http://diary.ru/exp?sid=3205                                                       │ 6         │
│ http://video.yandex.php?from]=&interapy-wkti/ &cd                                  │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 6         │
│ http://love.ru/ru/irk/event/search/                                                │ 6         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D8393224                             │ 6         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 6         │
│ http://kinopoisk.ru/catalog                                                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen/vologdano/il_dlya-dnevka.ru                                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 5         │
│ http://barnaul/details/?cauth                                                      │ 5         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD0\xB5\xD1\x80&where=... │ 5         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 5         │
│ http://metal-lodku-Obzor                                                           │ 5         │
│ http://sp-mamrostova                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 5         │
│ http://zvukovo-gorodsk                                                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://tp66.ru/exp?sid=3860217/rooms=2/men.aspx#location%3D0%26rnd                 │ 5         │
│ http://rmnt.ru/search/offilia_Sovetov_living_chamber/?78142                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://e96.ru/movies/614418821/artir.ua/search                                     │ 5         │
│ http://video.yandex.by/?state_id=&auth=1..630;IC,7711588                           │ 5         │
│ http:%2F%2Fwwww.bonprix.ru/?id=2013&where=all&filmId                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://povari.yandex                                                               │ 5         │
│ http://slovari.yandex.ru%26orderovskij-index.ru                                    │ 5         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_seo_entry=&op_category_... │ 5         │
│ http://tks.ru/cat/publish-cherkalnaya-ttpodporyadushek                             │ 5         │
│ http://slovarenok.com                                                              │ 5         │
│ http://video.yandex.ru/GameMain.aspx?Link                                          │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://auto.ria.ua/auto_id=241269.html?1=1&cid=2127970                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://auto_volkswagen-Palities/horobki                                            │ 5         │
│ http://slovari.yandex                                                              │ 5         │
│ http://radio&planet.ru/work.ru/catalog                                             │ 5         │
│ http://afisha.yandex.php?r=23436303135353.html?1                                   │ 5         │
│ http://en.lyrsenses/zamba_zaborah_chamberk                                         │ 5         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82 40007&pt                  │ 5         │
│ http://rustnye-sht-riemnikoi                                                       │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 5         │
│ http://sslow_135000008&position=search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 5         │
│ http://pogoda.yandex.php?gidcar                                                    │ 5         │
│ http://myloveplanet.ru/v14572&lb_id=13000001216629                                 │ 5         │
│ http://topnews.ru/GameMain.aspx?group_cod_1s=1983&pt=b&pd=9&pw=0                   │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://bibidohertki-i-OOOO_REPORT/07_2013                                          │ 5         │
│ http://real-estate=week&m=Dvigenie.html?option                                     │ 5         │
│ http://autodoc.ru/moscow                                                           │ 5         │
│ http://avtomobile/motory.ru/comp.ru/view.php                                       │ 5         │
│ http://love.ru/product_id=0&po_yers=0&po_yers=2&refererro/model=1346488078722&c... │ 5         │
│ http://auto.ria.ua/auto                                                            │ 5         │
│ http://loveplanet.ru/mymail/rudi                                                   │ 5         │
│ http://video.yandex.ru/firms.turizm                                                │ 5         │
│ http://video.yandex.ru%2FkategoriendflowerTo=&powerTo=                             │ 5         │
│ http://auto.ria.ua                                                                 │ 5         │
│ http://msk/platia-nashing/vannyie-product_id=1841&page2                            │ 5         │
│ http://nizhnieiewva88/photo/101246465376&cmd=show-to-buchaiev-pugache=51db32a68... │ 5         │
│ http://direct.yandex.ru/index                                                      │ 5         │
│ http://tks.ru/cat/publish-chemec.ru/search?filmId=CktclMBmUXI                      │ 5         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid%3D158197%26width                      │ 5         │
│ http://club.ru/cinema/movies/no-pos                                                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://kinopoisk.ru/spb.pulscen.ru/exp?sid=3159&op_category_id=&auth=0&checked=... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://holodilnik-rp-ploschaya-obuv/?ci=1280&with_video=0&choosOyg==&op_uid=111... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://wildberries.ru/real                                                         │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://slovariant_neu%3D1%26bid%3D1216/0001216629%26bt%3Dad                        │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://md.mirkovskaya-obl.irr.ru/jobinmoscow                                       │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://wildberrior/kia/                                                            │ 5         │
│ http://loveplanet.ru/\xD0\xB0\xD1\x80\xD0\xBE\xD0\xBC/curre-ap-i-showalbum/loui... │ 5         │
│ http://povari.yandex.php?showalbum/login.pl?cl=all&film/497794,90458               │ 5         │
│ http://jcmotorom-921205&bt=7                                                       │ 5         │
│ http://en.lyrsense.com/obshchin-idieiala                                           │ 5         │
│ http://smeshariki.ru/topic                                                         │ 5         │
│ http:%2F%2Fwww.bonprix.ru                                                          │ 5         │
│ http://gaylyU                                                                      │ 5         │
│ http://moscow/detail/Torgovuyu-organske.ru/real-estate                             │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://video.yandex.ru%26bt%3Dad.adriver.ru/recipe/view/10217/?from                │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&w... │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 5         │
│ http://loveplanet.ru                                                               │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alpari.ru/gallery/pic845274                                                 │ 5         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 5         │
│ http://alib.mist.html%26custom%3D%26c2%3D278888592138                              │ 5         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 4         │
│ http://loveplanet                                                                  │ 4         │
│ http://video.yandex.ua                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 4         │
│ http://video.yandex.ru/price                                                       │ 4         │
│ http://whoyougle.ru/images/images/00000i/specifiers.ru/image=1&furniture           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://sslovarenok.ru                                                              │ 4         │
│ http://samarskii_krai/tuapse/detail/result.aspx                                    │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/filmId                                    │ 4         │
│ http://auto.ria.ua/auto_id=0                                                       │ 4         │
│ http://loveche.html                                                                │ 4         │
│ http://bdsmpeople.ru/Web/Pages=1/feedsmag.ru/~\xD0\xBA\xD0\xBD\xD0\xB8\xD0\xB3\... │ 4         │
│ http://afisha.yandex.ru/zoom.php?f=5162613838.html_partments                       │ 4         │
│ http://irr.ru/index.php?showalbum/login-10618968476372773                          │ 4         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://wildberries.ru/catalog                                                      │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 4         │
│ http://radio&planet.ru/marka=62&model=1178128455&pvno=2&evlg=VC,5                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://direct.yandex.php?formsof(INFLECTION_ID=30861/14365-4b11&state/apartment... │ 4         │
│ http://afisha.yandex.ru%252f7769%252fe                                             │ 4         │
│ http://love.ru/?p=1#countpage/vacancies/events/738/0/3/women.aspx                  │ 4         │
│ http://echoradar-s-Levoshcha                                                       │ 4         │
│ http://e96.ru/news/39733/page2=&input_sponsor=&o=1015219.html_partments-sale&pa... │ 4         │
│ http://diary.ru/catalog=on&input_city[3                                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://rasp.pl?cmd                                                                 │ 4         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://travel.ru/state/apartments-sale/rashinitit%2F537                            │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.php?view_type=2&driveresult.ru/replies                         │ 4         │
│ https://smeshariki.ru/cinema/article10363136000001216629%26site_offilia_Sovets.... │ 4         │
│ http://auto.ria.ua/auto_id=63799.html_params                                       │ 4         │
│ http://kinopoisk.ru/saledParams%3Drhost%3Dad.adriver.ru/GameMain.aspx#location     │ 4         │
│ http://ssl.hurranovskaya-ul-31-foto.ria                                            │ 4         │
│ http://afisha.yandex.php?r=3&bs=&day                                               │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboy07/... │ 4         │
│ http://smeshariki.ru/search/keukeru-soft                                           │ 4         │
│ http://vkirovoe-tourisma                                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://smeshariki.ru/domchelkakh_location=search?text=\xD0\xBC\xD0\xB8vents        │ 4         │
│ http://card/windows)&bL=ru&cE                                                      │ 4         │
│ http://kniga.ru/view=\xD0\xA1\xD1\x82\xD0\xB0\xD0\xB2\xD1\x80\xD0\xBE\xD0\xB2&w... │ 4         │
│ http://guid=6&pw=2&pv=0&price_do=&currency=1                                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://video.yandex.ru/real                                                        │ 4         │
│ http://afisha.yandex.ru/search                                                     │ 4         │
│ http://v102.ru/?s=Adaments-sale                                                    │ 4         │
│ http://video.yandex.ru/GameMain.XYyZwYXRoPWEtbG9nb24vcG90Cw                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://matched_car=373838928155755775482794,9453.116 Safari%2F537.36&he=10&s_ye... │ 4         │
│ http://zarplata.ru/?p=12977-B26358/hasimages=1/page                                │ 4         │
│ http://tks.ru/cat/publish-chernyjbelyj-9375966238&op_categoriya                    │ 4         │
│ http://video.yandex.ru/GameMain.aspx#location-4.0.html                             │ 4         │
│ https:%2F%2Fwwww.yandex.ru                                                         │ 4         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 4         │
│ http://msk/platia-nashing/vanny.diary.ru/social                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://auto.ria.ua/canel_pe_mascona Hilfigeratov/153228                            │ 4         │
│ http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://nizhny novgorod                                                             │ 4         │
│ http://video.yandex.ru%26target=search/ab_area=categorija80119                     │ 4         │
│ http://kubikus.ru/search.php?r=4140211,1,7,7,7,7,0                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://e-kuzbass.ru/a-shop                                                         │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://guide.travel.ru/link                                                        │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://victorhead.php?full&dom=780067167694.0;                                     │ 4         │
│ http://afishi,Mudanted-belyj-974299099/guest-id=34089.html                         │ 4         │
│ http://fitness/building                                                            │ 4         │
│ http://afisha.mail.aspx#locationalOffers                                           │ 4         │
│ http:%2F%2Fwwww.bonprix.ru/real-estate/out-of-town/house                           │ 4         │
│ http:%2F%2Fbrjuki-lic-shop.ru/cart.php/cars/papago-d-plosch                        │ 4         │
│ http://svpress_up.aspx#location[propfilter_pf[PODVAL]=&arrFilter][3463351841195... │ 4         │
│ https://produkty%2Fpulove.ru/gost/?page3                                           │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://anketka.ru/bridget                                                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/GameMain/dukhovyy                                           │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadbor_sh... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http%3A//magnitogorod/page3/#over                                                  │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://afisha.yandex.php?action/2741920                                            │ 4         │
│ http://tks.ru/cat/public/gamemain.aspx#location                                    │ 4         │
│ http://love.ru/image=2&marka=84&model/mihailovo                                    │ 4         │
│ http://nepogoda.yandex.ru/search=1&target=search=0&can_be                          │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://kinopoisk.ru/searchAutoSearch=0&driver.ru/catalog/1/women.aspx#locationp... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://afisha.yandex.php?show=rlv&ru=1&expand_search                               │ 4         │
│ http://love.ru/?p=1705                                                             │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://ssl.hurra.com                                                               │ 4         │
│ http://internet Explorer&aV=5.0 (Windows)&bL=en                                    │ 4         │
│ http://auto_volkswagen_cated_cartovskaya-obl.irr.ru/album/login                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://pogoda.yandex.ru/cooking_sm5_1148786993ab-417/photo/69363/26#formi.ru/co... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/If yours.avtogsm.ru/animals/calculate                       │ 4         │
│ http://afisha.yandex.php?p=31&input                                                │ 4         │
│ http://auto_s_product_name=\xD0\x9A\xD1\x80\xD1\x83\xD0\xB3\xD0\xBB\xD0\xBE\xD0... │ 4         │
│ http://loveche.ru/job/1162323&PAGEN_1=30&state                                     │ 4         │
│ http://rsdn.ru/details_103514,154;IC                                               │ 4         │
│ http://video.yandex.ru/topnews.ru/lanas-advert2713][to]=&int                       │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://video.yandex.ru/filmId=Xtvman98/num-1/refresh/russia/chapter/broadboyzon... │ 4         │
│ http://auto_volkswagen_pass_1161967                                                │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http%3A//edp1.adriverys/forum/view_type=city&custom=0&damages/0001216629%26bid%... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://inspelishchin-platjie-doma.ru/irkutsk.irr.ru                                │ 4         │
│ http://video.yandex.ru/index.ru/\xD0\x9F\xD0\xBE\xD0\xB2\xD1\x82\xD0\xBE\xD1\x8... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://smeshariki.ru/saint-petersburg-gorod/transfer/?id=7576149959760994861&op... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 4         │
│ http://en.lyrsenses/zamba_zabudka/photo-1/#page=0&sale/search?text=\xD0\x9C\xD0... │ 4         │
│ http://afisha.yandex.ru/content2.adriver                                           │ 4         │
│ http://arma/frl-4/transportnoy-kv-m-malchik.ru/show                                │ 4         │
│ http://b.kavanga.ru/?a=inneVolumeFrom                                              │ 4         │
│ http://auto_id=0&with_photo                                                        │ 4         │
│ http://tp66.ru/money.yandex.ru/albums_screenterval                                 │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 4         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&w... │ 4         │
│ http://irr.htm?from]=&int[1151;IC,112                                              │ 4         │
│ http://yoshka.diary.ru/exp?sid=3149&op_category_id=592b9e01c48ce9403%26bn%3D0%2... │ 4         │
│ http://bdsmpeople.ru/film/64544.690078                                             │ 4         │
│ http://afisha.yandex.ru&pvid=13733424                                              │ 4         │
│ http://video.yandex.ru/GameMain                                                    │ 4         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 4         │
│ http://kinopoisk.ru/service.ru/iframe                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ https://orenburg/?arrFiltersburg                                                   │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://radiorecord.ru/login-m3w.html?1=1&cid                                       │ 3         │
│ http://video.yandex.ru%2Fplata.ru/ch                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://banantikov-nadushenie_orleona_server=sc.cheloveplant_11612/page             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://romar/events/audio.ru/widget[]=vacancies/99.php?gidcar                      │ 3         │
│ http://afisha.yandex.php/tova.ru/uliya2076789599305953                             │ 3         │
│ http://afisha.yandex.ru/shop.ru/malta                                              │ 3         │
│ http://afisha.yandex.ru/kategoriya%2F5.0 (company                                  │ 3         │
│ http://afisha.yandex.php/topic104780204&op_uid=1954                                │ 3         │
│ http://afisha.yandex.ua/donetsk/urals                                              │ 3         │
│ http://afisha.yandex.ru/a-folders/misc                                             │ 3         │
│ http://afisha.yandex.ru/project_price=&maxprice                                    │ 3         │
│ http://afisha.yandex.ru/linkvac.php/board.php?topicseeng                           │ 3         │
│ http://radioscannerica/filmId=Ba_id=13733568414&city=\xD0\x9C\xD0\xBE\xD1\x81\x... │ 3         │
│ http://irr.kz/realty/lease/3516093&pvno=2&evlg                                     │ 3         │
│ https://produkty%2Fplatjie-kuzbass.ru/newsru.com/iframe_right=0&auto_ria=0&meta... │ 3         │
│ http://fuckfind=rent/view/2021/3                                                   │ 3         │
│ http://samara.irr.ru%2Fproduct                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://auto_kia_30                                                                 │ 3         │
│ http://sp-mamrostokonkursovet                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://astrobank.ru/image                                                          │ 3         │
│ http://love.qip.ru                                                                 │ 3         │
│ http://direct&sortdirect.yandex.ru/imagesize%3D0%26ar                              │ 3         │
│ http://kaluga/?ext=\xD0\xB3\xD0\xB5\xD1\x80\xD0\xBE\xD1\x8F\xD1\x82\xD0\xBD\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ https://slovakia-600dd903c06c999c226647639.html%3Fhtml                             │ 3         │
│ https://slovakia-600dd903c07022,101595,9143531427800648_elit                       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category_id=0&wi=16000&... │ 3         │
│ http://love.ru/forum.cofe.ru/forum/view_type=city=790&Selectronics-technik         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://sp-money.yandex.ru                                                          │ 3         │
│ http://sp-money.yandex.ru/work rushki-sien-natalog/8570/page=0&expand              │ 3         │
│ http://video.yandex.ru&pvid=13735/?_h                                              │ 3         │
│ http://forum/topnews/2229605699574.html?1=1                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberrior/bedroom]=&int[17][to]=&int[858                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://afisha.yandex.ru/forum.materinburg                                          │ 3         │
│ http://afisha.yandex.php?addriver.ru                                               │ 3         │
│ http://video.yandex.by/search/?target%3D43%26bid%3D2                               │ 3         │
│ http://ssl.hurral=messages                                                         │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://bdsmpeople.ru/search                                                        │ 3         │
│ http://video.yandex.ua/auto_id                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://rmnt.ru/stars                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://rmnt.ru/film/88677/russia/rio.ru/search?filmId=NNr6aJrm4s3M                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video.yandex.ru/circle&state/out-of-town/houses                             │ 3         │
│ http://irr.ru/imagecache/wm/2013&where=all&film.ru                                 │ 3         │
│ http://b.kavanga.ru                                                                │ 3         │
│ http:%2F%2Fwww.bonprix_ru}%2Fnizhniynovgorod/request-id                            │ 3         │
│ http://edp2.adriver.ru/catalog/181                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda                                                                      │ 3         │
│ http://pogoda.yandex.kz/family                                                     │ 3         │
│ http://svpress_w1t1042796786/6/?category                                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://edp2.adriver.ru/jobinmoscow/detail                                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://radiorecord.ru/catalog/idShare                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com/iframe-owa.html?1=1&cid=577&o... │ 3         │
│ http://msk/planet.ru/mymail.aspx#comme_me_saydinne                                 │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://card/windows NT 6.1) AppleWebKit%2F5                                        │ 3         │
│ http://afisha.yandex.ru/forum.donfiscategory                                       │ 3         │
│ http://tks.ru/cat/publish-chin-play.php?categoriya%2Fzhiensmed                     │ 3         │
│ http://video.yandex.php?topbloveche                                                │ 3         │
│ http://kazan.irr.ru/location                                                       │ 3         │
│ https://produkty%2Fpulove.ru/voronezh-sien-zhienskaia-moda-zhienskaia-moda-zhie... │ 3         │
│ http://nigma.ru/product&op_category_name=\xD0\x91\xD0\xB8\xD0\xBA\xD0\xB8\xD0\x... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26url%3D//ad.adriver.ru/link/justic/h2.php/... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://loveche.ru/volzhskiy                                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=1&s... │ 3         │
│ http://smeshariki.ru/a-phony                                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://magnitka_1_series.ru/?favorite_id=636233644&op_category_id=937514           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ussuriysk.irr.ru/catalog/premiere/628962851d7fd0b6eb17b321d336f5bc7de189... │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountpage                                   │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_produkty%2Ftanki           │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/92054446660.ht... │ 3         │
│ http://ekategoriya%2F9B206 Safari                                                  │ 3         │
│ http://afisha.yandex.ru/tatatit_chto.php?industry                                  │ 3         │
│ http://smeshariki.ru/catalog/286/women.aspx                                        │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://svpress/showbiz/photo.htm                                                   │ 3         │
│ http://svpressa.ru/content/search                                                  │ 3         │
│ http://video_dvd/game/iframe-owa.html                                              │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://tp66.ru/search/?page=1&fuelRateTo                                           │ 3         │
│ http://e96.ru/real-estate                                                          │ 3         │
│ http://lk.wildberries                                                              │ 3         │
│ http://my.kp.ru/albumfoto-1/pol-2                                                  │ 3         │
│ http://holodilnik.ru/catalog                                                       │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://msk/platia%2Fzhienskaia                                                     │ 3         │
│ http://personal/atlants/7292&xdm_c                                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://povarenok.ru/files/eliteh.ru/perm.irr.ru/board,75.2013-07-09                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://brand=498&pvno                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://sp-mamrostovestory                                                          │ 3         │
│ http://love.ru/?p=1#country=&op_seo_entry=-1&target                                │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://smeshariki.ru/?win=82&stat=141882,373;IC,2552f48                            │ 3         │
│ http://amobil-nye-pliazhnaia                                                       │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://irr.ru/washek-s-printom                                                     │ 3         │
│ http://msuzie                                                                      │ 3         │
│ http://kinopoisk.ru/search                                                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/index.php?showalbum/login-kupaljinik-chere                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/real                                                          │ 3         │
│ http://wildberries.ru/item_no=2&evlg=VC,0;VL,205;IC,14;VL,757138/currency=RUR/h... │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostavia.travel.ru/s... │ 3         │
│ http://3dnews.ru/?p=12636464/5#f                                                   │ 3         │
│ http://smeshariki.ru/goodavec/photo/6936325.html?id=223978/page=102                │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic=79799398/?_h=search.htm... │ 3         │
│ http://product_brand=RAINBOW&op_cated_content/search/keup/en-ru                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://love.ru/recipes/indows                                                      │ 3         │
│ http://kaluzha-na-NovletedAutoSearch=0                                             │ 3         │
│ http://pogoda.yandex.ru%2Fkategory_id=577&search/ab_district/date_id=2271][from... │ 3         │
│ http://afisha.yandex.php?app=membered                                              │ 3         │
│ http://afisha.yandex.php?ELEMENT_ID                                                │ 3         │
│ http://afisha.yandex.ru/lesyach-hotels                                             │ 3         │
│ http://afisha.yandex.ru%26bt%3D90%26nid%3D1216629                                  │ 3         │
│ http://afisha.yandex.php?id=727285                                                 │ 3         │
│ http://love.ru/ru/irk/event=little&cated_country=-192.html?1=1&cid                 │ 3         │
│ http://love.ru/?p=17057                                                            │ 3         │
│ http://str_ob.html?1=1&choosO8gPJSs3M&where=all&filmId=mAyiC7y6M2mGV2GoA9hFoN3q... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://you_hashkaf.ua/search                                                       │ 3         │
│ http://auto_repairs=0&confiscategoriya                                             │ 3         │
│ http://wildberries.ru/GameMain                                                     │ 3         │
│ http://povaria/chak_naytimes.ru                                                    │ 3         │
│ http://pogoda.yandex.ru/real-estate                                                │ 3         │
│ http://afisha.yandex.ru/comment/search?text=\xD1\x81\xD0\xBC\xD0\xBE\xD1\x82\xD... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://kinopoisk.ru/sessulyanovka.ru/photosessid=3205&bt                           │ 3         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD0\xB2\... │ 3         │
│ http://li.ru/filmId=XpzlPj8P8gE&where=all&text=\xD1\x81\xD0\xBA\xD0\xB0\xD1\x87... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://wildberries.ru/basket&ch                                                    │ 3         │
│ http://soft.oszone.ru                                                              │ 3         │
│ http://afisha.yandex.ru%2Fobuv-sapozhkivka=23&price                                │ 3         │
│ http://afisha.yandex.ru/hotel-agen-Goluboj-9730                                    │ 3         │
│ http://notebooking pressa                                                          │ 3         │
│ http://auto_id=0&engineVolumeFrom                                                  │ 3         │
│ http://smeshariki.ru/GameMain.aspx#location                                        │ 3         │
│ http://state/room=94720-recept-Salat-iz-glasya1lesyat                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_repairs=0&po_yers=0&price.ru/\xD0\xB6\xD0\xB5\xD0\xBB\xD0\xB5\xD0\x... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://video_dvd/ratesTypeSearch?text=\xD1\x87\xD0\xB5\xD0\xBB\xD0\xBE\xD0\xB2\... │ 3         │
│ http://omsk/evential/housession%3D0%26rnd%3D2%26bt%3D2%26nid%3D158197%26ad%3D21... │ 3         │
│ http://slovari.yandex.ru                                                           │ 3         │
│ http://kommersantamina                                                             │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://audio_video.yandex.ru/mosday.html?item=4#photo446962                        │ 3         │
│ http://afishers/story                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://video.yandex.ru/personal/offeebe34c7e12944&op_product                       │ 3         │
│ http://v102.ru/investate/apartment/?id=137336IseNhcbx3J85GkHSnzgnsPdZUU&where=a... │ 3         │
│ http://alpari.yandex.ru/saint-petersburg.irr.ru/cars/page3                         │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ https://slovarenok                                                                 │ 3         │
│ http://afisha.yandex.ru/real-esta.info/newsru.com.ua/kiev/detail.ru/auth=1..640... │ 3         │
│ http://trashbox.ru/book                                                            │ 3         │
│ http://video.yandex.ru/extra                                                       │ 3         │
│ http://dom.net/provoe-pervouralnaya/ChildGluZ19oZXJlci1kYXRpb25zPU4mbj0zJmlkPTM... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 3         │
│ http://en.lyrsenses/zamba_zabudka/photo/narod.irr.ru/katering=1&pr=569&s_yers      │ 3         │
│ http://guid=6&pw=2&pv=0&with_video.yandex.ru                                       │ 3         │
│ http://love.ru/ru/irk/event=little&category_id=731-643736&mode=1                   │ 3         │
│ http://pogoda.yandex.ru/vlas-moskovskaya                                           │ 3         │
│ http://auto_ford Mix).mp3.ucoz.ru/v1430497.html%3Fhtml                             │ 3         │
│ http://omsk/evential/housession%3D240%26rleurl%3D//ad.adriver.ru/marshavskaya-r... │ 3         │
│ http://video                                                                       │ 3         │
│ http://radiorecord                                                                 │ 3         │
│ http://wildberring                                                                 │ 3         │
│ http://video.yandex.ru%2Fkategory_id=9759527418                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://smeshariki.ru/cgi-bin/click.cgi%3Fsid%3D0%26pz                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://bdsmpeople.ru/show/39932/Itemid,40.0.html_params%3DfsSaHR0cDovL2pzLnNtaT... │ 3         │
│ http://state_shariki                                                               │ 3         │
│ http://wildberries.ru/cgi-bin/click.cgi%3Fsize                                     │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://balcon_caddy Club relove                                                    │ 3         │
│ http://loveplanet.ru/Bezli-all                                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://afisha.yandex.php?partments                                                 │ 3         │
│ http://en.lyrsenses/zamba_zabor_polnitsa-s.narod.irr.ru/bank/otzyvy/12031%2F%23... │ 3         │
│ http://video.yandex.ru/real-estate/out-of-town/house.ru&pvid=1&distreet_legkovo... │ 3         │
│ http://auto_id=0&color=0&confiscategory_id=3205&bt=7&bn=1&bc=3&ct=1&prr=http:%2... │ 3         │
│ http://kinopoisk.ru/registernet Explorer&aV=5.0 (Windows NT 5.1; ru-ru&cE=true&... │ 3         │
│ http://kinopoisk.ru/spb.pulscen.ru/cgi-bin/click.cgi%3Fsid                         │ 3         │
│ http://saint-peter                                                                 │ 3         │
│ http://lazarevskoe                                                                 │ 3         │
│ http://whoyougle.com/iframe/iframe_right.ru/spb                                    │ 3         │
│ http:%2F%2Fwww.bonprix.ru/imagesize                                                │ 3         │
│ http://afisha.yandex.ru/manga.ru/?rtext=\xD0\xBF\xD1\x80\xD0\xB8\xD0\xB1\xD0\xB... │ 3         │
│ http://smeshariki.ru/furniture.html5                                               │ 3         │
│ http://cxem.net/324487194836848                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,947... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://video.yandex.ru/realty/search/main.aspx?sort=popular                        │ 3         │
│ http://myloveplanet.ru/passenger/kitched_country_id=4312&input                     │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_product_brand=4200&lo=h... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://sunmar.ru/cart&ch=utf-8&sF=11,7,700&aN=Opera&aV=9.80 (Windows               │ 3         │
│ http://ssl.hurra.com/iframe-owa                                                    │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://saint-petersburg-gorod/goodal                                               │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://un1.adriver.ru/page=30138117749516%252f110916%252fmedicinema/movie_ross ... │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&film/67... │ 3         │
│ http://klubnich/zrh/                                                               │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://wildberries.ru/comment/search                                               │ 3         │
│ http://wildberries.ru/comme%2F2.12.388 Version/1552/page                           │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://krasnodar.irr.ru/yaransferapid                                              │ 3         │
│ http://jobs-education                                                              │ 3         │
│ http://gotovim-doma.ru/personal/commersant.ru/image=19&pvno=2&engineVolum          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 3         │
│ http://irr.ru/index.php?showalbum/logizer8/num-1/refremost                         │ 3         │
│ http://bdsmpeople.ru/index.by/ru/page=0&confiscategory_id                          │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://pogoda.yandex.ru/real-estate/apartments/73151                               │ 3         │
│ http://pogoda.yandex.ua/telefon_shtukaturkey                                       │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://video=0&input_with_video.yandex.ru/page/10/women.aspx                       │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://afisha.yandex.ru/sell/resident                                              │ 3         │
│ http://afisha.yandex.php?p=176d43f96ef32d5bc1272                                   │ 3         │
│ http://radioscannerica/film/47018.html?1=1&cid=691390&pvno                         │ 3         │
│ http://auto_id=0&color=0&confiscategoriya%2Fzhienskaya-advert25593                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://forum/topics/ingradskazka-lookoformalities/poetry/events/?date&csrf-8200... │ 3         │
│ http://video_dvd/suppoll/dleead6718.php?SECTION                                    │ 3         │
│ http://kinopoisk.ru/cgi-bin/click.cgi%3Fsid%3D1216                                 │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=&is... │ 3         │
│ http://rukodel=0&sort=newly&trafkey=27065/2/child.aspx#location                    │ 3         │
│ http://zapchastny_fashing_mashes/index.ru                                          │ 3         │
│ http://msk/platia-nashing/vanny.diary.ru/otdam_daily                               │ 3         │
│ http://smeshariki.ru/news/2013/peshnye-udivlekanka.ru/l_03_00/bodreamfood.ua       │ 3         │
│ http://myloveplanet.ru/bad_by_sidential/nizhnieiewva88                             │ 3         │
│ http://kinopoisk.ru/real-estate=2013-07-2089241607/photo=0&with_exchangeType       │ 3         │
│ http://video.yandex.ru/page=0&category&op_seo_entry=&op_category/used/KIA-Cee-d... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://direct.yandex.ru%2F&sr                                                      │ 3         │
│ http://tyva-5/country=-1&washestvo/den_sidentialAmount                             │ 3         │
│ http://mylove.ru/zoom.php?GID=2&IsOrder                                            │ 3         │
│ http://ssl.hurra.com/iframe/iframe-owa.html%26custom%3D%26custom                   │ 3         │
│ http://en.lyrsenses/zamba_zabudka/procoolonelopitered/ministrict/3d-probeg-340-... │ 3         │
│ http://arma/frl-4/travel.ru/moscow/details                                         │ 3         │
│ http://maps#ru_5_ru_1_ru_ru_ru_202_ru_1_ru_ru_ru_ru_2_ru_1743.html?oscsid=36303... │ 3         │
│ http://rsdn.ru/info_all=yes&razdumy-i-trikshop/search&_h_page/1719920              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://irr.ru/index.php?showalbum/login-do-500-kv-m-Maya                           │ 3         │
│ http://chehod/zvenia8312&input_who2=1&input_age1=35&aN=Netscape                    │ 3         │
│ http://pogoda.yandex.ru%2Fkategory                                                 │ 3         │
│ http://kuharka=48&modeloveplanet                                                   │ 3         │
│ http://sendflower                                                                  │ 3         │
│ http://avtoto.ashx/1001087496197797217530729; Media Centernet_mastersburg          │ 3         │
│ http://kaluga/?ext=\xD0\xB1\xD0\xB0\xD0\xB4\xD0\xBC\xD0\xB8\xD0\xBD\xD0\xBA\xD0... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://smeshariki.ru/index.ru/main.pl?cmd=show/47555                               │ 3         │
│ http://zagranimals-planet.ru/user/31059&Module                                     │ 3         │
│ http://afisha.mail.ru/stars/page                                                   │ 3         │
│ http://myloveplants_list-obl.irr.ru%2Fobuv-zhienskaia-modiezhda                    │ 3         │
│ http://smeshariki.ru/chipinfo                                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://forum/topnews/222968695,910112_1164074834-908745                            │ 3         │
│ http://myfashihtzu.html?1=1&cid=65625f313230303&po_yers=2013/07                    │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://bdsmpeople.ru/Web/price                                                     │ 3         │
│ http://votpusk.ru/                                                                 │ 3         │
│ http://afisha.yandex.ua/index.ru/recipe                                            │ 3         │
│ http://whoyougle.ru/basket&ch=utf-8&sF=11,7,7,7,700                                │ 3         │
│ http://video.yandex.ru%2F%2Fwww.bonprix                                            │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://auto_operey-v-v-meha.ru/catalog/public                                      │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://irr.ru/6323%26bn%3D27888895,96772&op_page47                                 │ 3         │
│ http://video=0&is_hot=0&che_simeis                                                 │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D0%26ad%3D1216629/0/index.ru%26bn%3D0%26nid%3D... │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://wildberries.ru/page=0&vip                                                   │ 3         │
│ http://kurort/SP1399&op                                                            │ 3         │
│ http://irr.htm?from]=&int[852][to]=10&lastdiscussins/?keyworld                     │ 3         │
│ http://wildberries.ru/filmId=4920/roomamountry                                     │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 3         │
│ http://nizhnieie-bielie-bieriends&fb_source-temno                                  │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://forum/topnews/2229362067528195&op_categoriya                                │ 3         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 3         │
│ http://afisha.yandex.php?w=3160/transports                                         │ 3         │
│ http://afisha.yandex.php?link=114735200&brand=23368                                │ 3         │
│ http://stories.ru/art/MACKLEMORE                                                   │ 3         │
│ http://irr.ru/bank/otkrovnja-instvo.ru/search?text=\xD0\xBF\xD0\xB8\xD0\xBA\xD1... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 3         │
│ http://pogoda.turizm.ru/communit=0&vip=0&order_by=2                                │ 3         │
│ http://maps#ru_5_ru_227_ru_3630&state/apartments-sale/secondary/pic/89395&op_pr... │ 3         │
│ http://smeshariki.ru/Web/price                                                     │ 3         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 3         │
│ http://radiorecord.ru                                                              │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 3         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 3         │
│ http://ej.ru/muss/roll_to_audi/mode=replies                                        │ 3         │
│ http://zarplata.ru/?p=1290&op_product_price=990348531&schoosOSRquM8gE&where=all... │ 3         │
│ http:%2F%2Fmuzhchine/ru-g-Chelya_v_tsentyabrskii                                   │ 3         │
│ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&top                                 │ 3         │
│ http://ur.hh.ru/file/news/2013 \xD0\xB3\xD0\xBE\xD0\xB4\xD0\xB0                    │ 3         │
│ http://my.alpari.ru/filmId=yJg89hqV8gE&where=all&film/530/?fromCityCodeForcentr... │ 3         │
│ http://auto.ria.ua/auto_id=1&bc=3&ct=1&pr=9476648245557.html%26custom=1&damage=... │ 3         │
│ http://bdsmpeople.ru/cgi-bin/click.cgi%3Fsid                                       │ 3         │
│ http://love.ru/?p=1#country=-1&sq_total=\xD0\xBE\xD1\x82                           │ 3         │
│ http://guid=6&pw=2&pv=0&po_yers=0&with_video                                       │ 3         │
│ http://tks.ru/filmId=rQRZO_mhUXI&where=all&filmId=z7pOMYOJ8gE&where=all&text=\x... │ 3         │
│ http://gorbus.aspx#localiformalitic                                                │ 3         │
│ http://msk/events/7401438966/page_type=0&m_city.info/forum.rostov.irr.ru/msk/ev... │ 3         │
│ http://omsk/evential/housession%3D90%26rnd%3D839322%26ntype=0&expand_search/obm... │ 2         │
│ http://omsk/evential/housession%3D%26custom=0&damages/0000&with_photo/photo/708... │ 2         │
│ http://kinopoisk                                                                   │ 2         │
│ http://video=0&input_state                                                         │ 2         │
│ http://poisk.ru/news/articles                                                      │ 2         │
│ http://forum.php?t=420                                                             │ 2         │
│ http://mysw.info/node/21544                                                        │ 2         │
│ http://smeshariki.ru/tashkinsk                                                     │ 2         │
│ http://smeshariki.ru/product&op                                                    │ 2         │
│ http://yaroslavl.irr                                                               │ 2         │
│ http://board=11.ua.150.html%3Fhtml                                                 │ 2         │
│ http://pogoda.yandex.ru/jobinmoscow                                                │ 2         │
│ http://afisha.mail.ru/cheva.ru/reportby                                            │ 2         │
│ http://3dnews.ru/msk/events                                                        │ 2         │
│ http://slovarenok.ru/chapochki                                                     │ 2         │
│ http://pogoda.yandex.ru/real                                                       │ 2         │
│ https://diary/2013-07-05/101090/currency                                           │ 2         │
│ http://krasnyj-chastory                                                            │ 2         │
│ http://kinopoisk.ru/saint                                                          │ 2         │
│ http://pogoda.yandex.php?showalbum                                                 │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://rlsnet.ru/nogin.html5/v12                                                   │ 2         │
│ http://spb/event=big&marka=84&model=0&auto_id=0&s_yers=0&pv=10&category_name=\x... │ 2         │
│ http://moscow/detail/Torgovljatory/storii_efferanslyatting                         │ 2         │
│ http://sslow_13500000%26rnd%3D278888                                               │ 2         │
│ http://kaluga/?ext=\xD1\x80\xD0\xB5\xD0\xB9 \xD0\xBD\xD0\xB0 \xD0\xB1\xD1\x80\x... │ 2         │
│ http://auto.ria.ua/auto_auto.ria                                                   │ 2         │
│ http://mysw.inform%26q%3Dversion.cheltyj                                           │ 2         │
│ http://diary.ru/search?familliklink                                                │ 2         │
│ http://ftp.auto.ria.ua/search?text=\xD0\xB8\xD0\xB3\xD1\x80\xD0\xB0 5 \xD1\x81\... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,940... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://ssl.hurra.com.ua/auto_repairs=0&page=10&category_id=detail                  │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://pogoda.yandex.ru/chat/ivan                                                  │ 2         │
│ http://svpressages/00012166260001216629%26sliceid%3D0%26ad                         │ 2         │
│ http://video.yandex.ru/rent/info/messa.ru                                          │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?so... │ 2         │
│ http://yartb.html?city=55&TopicID=2&IsOrderedProduct                               │ 2         │
│ http://wildberries.ru/editem_no=100&currency=1#country=&op_proizvodskaya-obuv-z... │ 2         │
│ http://wildberries.ru/filmId=4920/room=1&lang=all&filmId=DnGbyVQVUXI&wheretomug... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D//a... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26... │ 2         │
│ http://news/398261_enl.jpg-1                                                       │ 2         │
│ http://afisha.yandex.ru/?trafkey=54073799                                          │ 2         │
│ http://afisha.yandex.php?id=1620_4_licanel                                         │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://ur.hh.ru/page=10&can_be_checked_auto_region=1&rm=1&lang=all&film/18212.1... │ 2         │
│ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 2         │
│ http://wildberries.aspx#location/group_cod_1s=53&butto_repairs=0&with_photo=0&i... │ 2         │
│ http://wildberries.ru/index.ua                                                     │ 2         │
└────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.045 user 0.440000 sys 0.004000
D 0-01-01' + EventDate) >= '2013-07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
┌────────────────┬────────────────┬─────────────┬────────────────────────────────────────────────────────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────┬───────────┐
│ TraficSourceID │ SearchEngineID │ AdvEngineID │                                        src                                         │                                        dst                                         │ pageviews │
├────────────────┼────────────────┼─────────────┼────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────┼───────────┤
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33069     │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 24703     │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 15817     │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 14233     │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116                                                       │ 6549      │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 5257      │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 5257      │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 3547      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login                                            │ 3538      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 3371      │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php                                                            │ 3333      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 3309      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 2923      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 2616      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 2441      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php                                                            │ 2418      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 2390      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari                                                │ 2367      │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 2349      │
│ 1              │ 0              │ 0           │ https://google.com.ua/url?sa=t&rct                                                 │ http://komme%2F27.0.1453.116                                                       │ 2228      │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 1920      │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://komme%2F27.0.1453.116                                                       │ 1679      │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 1340      │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://aliningrad                                                                  │ 1270      │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1254      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1213      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1193      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1186      │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 1142      │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 1007      │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 954       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://aliningrad                                                                  │ 859       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login                                            │ 821       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 791       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555419/page=show_photo/70946/detail/55212.15&he       │ 777       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 757       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 722       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://video.yandex.php                                                            │ 702       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 691       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/obucheyelants                                                 │ 684       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 632       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 593       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 577       │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://smeshariki.ru/obucheyelants                                                 │ 566       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.php                                                            │ 452       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 445       │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBA\xD0\xBE\xD0\xBD\xD1\x82\xD1\x80\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 422       │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 421       │
│ 0              │ 0              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 407       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 386       │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug.ru                                                           │ http://irr.ru/index.php                                                            │ 374       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru/index                                                      │ 360       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 348       │
│ 2              │ 0              │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 347       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-2011/43597                                 │ 293       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 293       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6HS                                              │ 282       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 268       │
│ 3              │ 72             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 267       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 259       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 257       │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari                                                │ 256       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 241       │
│ 1              │ 0              │ 0           │ http://google.ru/realty                                                            │ http://irr.ru/index.php?showalbum/login                                            │ 237       │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116                                                       │ 236       │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/28435&lr=157                                              │ http://komme%2F27.0.1453.116                                                       │ 233       │
│ 1              │ 0              │ 0           │ http://autodoc.ru/ru/photo/6936313555&text=\xD1\x85\xD0\xBA \xD0\xBB\xD0\xBE\xD... │ http://komme%2F27.0.1453.116                                                       │ 224       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php                                                            │ 223       │
│ 1              │ 0              │ 0           │ http://yandex.ru/cat/dushkirillovyj                                                │ http://komme%2F27.0.1453.116                                                       │ 222       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=359&op_page2/... │ 218       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kriminally-bezhevsk                        │ 217       │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 212       │
│ 3              │ 1              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 207       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 202       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 199       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 199       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 198       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 197       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 195       │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 191       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CDMQFjAJ                    │ http://irr.ru/index.php?showalbum/login-kiriskaya-obl.irr.ru/index.ru/GameMain.... │ 190       │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=0&with_photo.ashx/101/4/?cat=6257271               │ 188       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=partments-sale/search?text=\xD1\x81\xD0... │ 187       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://afisha.yandex.ru/index                                                      │ 183       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 178       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 171       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 168       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 164       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 163       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 160       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 160       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/life.ru/cars/misc/travel.ru/?trafkey=058143&p... │ 155       │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116                                                       │ 154       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=577&oki=1&oby=&op_s... │ 152       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://wildberrior/uphold                                                          │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6HS                                              │ 150       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 149       │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login                                            │ 146       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustic/meterburg                         │ 144       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 144       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 144       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 143       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php                                                            │ 143       │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E         │ 141       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 140       │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://kinopoisk.ru/news/2146555f3530316995264from]=&int[27][]=&selection/01a54... │ 136       │
│ 1              │ 0              │ 0           │ http://kombardighantnie                                                            │ http://komme%2F27.0.1453.116                                                       │ 136       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login                                            │ 135       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kysjacevtika                               │ 132       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://komme%2F27.0.1453.116 Safari                                                │ 124       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 121       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category/stroy/dachines... │ 114       │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/?state                                                        │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/GameMain                                                    │ http://komme%2F27.0.1453.116                                                       │ 113       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 111       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login                                            │ 110       │
│ 3              │ 85             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 110       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kardigan                                   │ 109       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 107       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosoftwarenok.ru/projects/zhbi.po... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 105       │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268143.html?1=1&cid=577&o... │ 104       │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 104       │
│ 0              │ 0              │ 0           │                                                                                    │ http://tvidi.ru/photo=0&confiscategory_id=0&engineVolumeFrom=&fuelRateFrom=type... │ 103       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 102       │
│ 3              │ 14             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 102       │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 100       │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 98        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://video.yandex.php                                                            │ 97        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId=GVlrcUaGUXI&wher... │ 96        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.21150895                                                  │ 96        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?sort=price                       │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 95        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login                                            │ 95        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 93        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 93        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 92        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberrior/uphold                                                          │ 92        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 91        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-tanks/search=1&ady=62&modeloveplanet.ru         │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 90        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.145332.15&he=10&category_id=2740387993                         │ 89        │
│ 1              │ 0              │ 0           │ http://in-the-weightEnd=2351&numphoto=&isExclusiver.ru/alertljus                   │ http://komme%2F27.0.1453.116                                                       │ 88        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fprodazha_Italja_unit=1&av=1&nm=1&lang=ru       │ http://irr.ru/index.ru/show/414526863.xlsx                                         │ 87        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 86        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb1.html?item_no=386703/?bundle=7172&msid=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 86        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116                                                       │ 85        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 84        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733582852/           │ 84        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 83        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 82        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 82        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?bodystyle                                                    │ http://komme%2F27.0.1453.116                                                       │ 81        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 81        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusk.ru/ru/lookaginitial/Prodayu-Dach... │ 80        │
│ 3              │ 4              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 80        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik         │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 79        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://aliningrad                                                                  │ 78        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 78        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login                                            │ 76        │
│ 1              │ 0              │ 0           │ https://go.1ps.ru/show&showforum                                                   │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandex.ru                        │ http://komme%2F27.0.1453.116                                                       │ 76        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26221/detail.ru/v1496366&... │ 75        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php                                                            │ 75        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 74        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%2F&sr=http://bonprix.ru... │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len80/page/product            │ 74        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filtr/all/perm.pulscen... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 74        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://irr.ru/introlux_page5/2/pageType=product_name=1&menu_7                      │ 73        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 73        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 72        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://diary.ru/forum/intries                                                      │ 72        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/show/414526863_112                                          │ 72        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2618561&pp=1059&op_produc... │ 72        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://video.yandex.php                                                            │ 72        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 71        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 71        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari                                                │ 71        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://aliningrad                                                                  │ 71        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=product_id=42&Selection.chelov.ru/searc... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/yandsearch?te... │ http://irr.ru/index.php                                                            │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/server=sc.chel.ru/main... │ http://irr.ru/index.php                                                            │ 70        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification/?year=\xD0\xB1\... │ 70        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2791954~43.87725656132&op... │ 69        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://komme%2F27.0.1453.116                                                       │ 69        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/produkty/bleacs/udilis... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 69        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&wi=1366&br... │ 68        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 67        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731&CgID=124jc&where=all... │ 66        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/Yozh/Goodda                                                      │ http://komme%2F27.0.1453.116                                                       │ 66        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2725215195&ti=\xD0\x9F\xD... │ 66        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 65        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru/index                                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 65        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 64        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://afisha.yandex.ru/index                                                      │ 64        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 63        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nmg.com%2F4.0 Safari%26clients-sale/search&e... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 63        │
│ 2              │ 13             │ 13          │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 62        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main                                       │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 62        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://irr.ru/index.php?showalbum/login                                            │ 62        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 61        │
│ 1              │ 0              │ 0           │ https://gotovka/hotels.turizm                                                      │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 61        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia          │ 61        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 61        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26092.html?s_text=\x5C\x5... │ 59        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/thenon-houses/public/g... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN                                                         │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27755f32316.30; .NET CLR ... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742/details/?cauth=0&dam... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fautoad/kniga.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26004/?_h=galle/\xD0\xBF\... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert27930555&sob=1&p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2692.html%3Fhtml?period=3... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/world/photo31469:Album... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=leting "HalUXI&where=\xD0\x9F\xD0\xB5\xD1\x8... │ http://irr.ru/index.php?showalbum/lofiver.ru/articles/86121%26uid%3D139750%26ad... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27000,224648804-recept-so... │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/koshka.com/ig/iframe-o... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 58        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory=cinema.perm.p... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/realty/suntime-5/extre... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742357/detskii_gosts.xml... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2742304][from]=&int[14670... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694336/photo/suzannason/... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Forum25/top... │ 57        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268320995,968650f45491882... │ 57        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupit/action                               │ 57        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1375605&ga... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 57        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://video.yandex.php                                                            │ 56        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga/choice/... │ http://nizhnieie/novo/a78920&lo=http://sravni.ru/reposition/vacancies/eduard_32... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 56        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_product_... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?showtopic,5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26017/quarius_Moscow/cavi... │ 55        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2726125413975d77cf&search... │ 55        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 54        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266848223/review_type=pro... │ 53        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://obninsk/detail                                                              │ 53        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26989%26bt%3Dad.adriver.r... │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/metro=144&ved=0CEUQFjAB&url=http://bonp... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 52        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/album/login-1800002&pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 52        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0                                                                │ 51        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2698172,93932353064614618... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605085268a9c4d61-9862.49... │ 51        │
│ -1             │ 0              │ 0           │ http://state=19&numphoto/login=A-CL-MS-36575c72937][to]=&int[12822304              │ http://irr.ru/index.ru/widgetchrome%2F&ti=no&dom_v_bordovye-printime.ru            │ 51        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/investate/comple/make/?page5/&docid=jlMNIrXw... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 50        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 50        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F11.7.1364                                 │ 50        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http:%2F%2Fwwwwww.bonprix.ru/GameMain.aspx                                         │ 50        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://kurort/SINA, ADRIAN - Foreversant.ru/busineshevsk                           │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26051.htBeg=6&NightRegist... │ 50        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xBE\xD1\x81\xD0\xB8\xD0\xB1... │ 49        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 49        │
│ 5              │ 0              │ 0           │ http://state=19&text=\xD0\xB4\xD0\xB0\xD1\x91\xD1\x88\xD1\x8C                      │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 49        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?group=days=3&text=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27410/photo-2.xhtml&serve... │ 48        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect.yandsearch                       │ http://komme%2F27.0.1453.116                                                       │ 48        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http:%2F%2Fwwwwww.bonprix.ru/voskres.php?gr=1665773aad1900%26ntype                 │ 48        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusty-i-vkont.at.ua/search=0&userId=0... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266128182&op_seo_entry/de... │ 47        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?sort=&br... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/intrumen                                                             │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://afisha.yandex.ru/index                                                      │ 46        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 46        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumanegenre=33155?analog/kitchen_mini... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 46        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://irr.ru/index.php?showalbum/login                                            │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login%2Flick.g.doubleclick.diary.ru/car/kw/3061/us... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734.html_params%3Dfh_loc... │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://afisha.yandex.ru/index                                                      │ 45        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/GameMain.p1Yo4A                                                │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ua/searchads/jo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 45        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605906/frl-2/sportal.ru/... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fshow/lpp/cre.ru/pers... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 1              │ 0              │ 0           │ http://sp-mamrostovskiy-kray.irr.ru                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/login                                            │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.asp?search&ev... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 44        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logize.ru/msk/events_liver.ru/russert-plies.r... │ 44        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26099486633033&countpage=... │ 44        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://sslow_135000008&position=search                                             │ 43        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 43        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischet-solik/odezhda-plos... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert277553/38021/66936575776/... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271050&with_photo.kurortm... │ 43        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 43        │
│ 1              │ 0              │ 0           │ http://forums/liii-kuler S22oHgBJTngegotavgorod55.ru/filtr[2]=42                   │ http://komme%2F27.0.1453.116                                                       │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450                 │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 42        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-folders/?end=9a08488... │ http://irr.ru/index.php?showalbum/litamak.irr.ru/catalog/8570/travel.ru/cgi-bin... │ 41        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 41        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116 Safari                                                │ 41        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/0001216629/#top_by    │ 41        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26040931&s_yers=0&with_vi... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.137508&s_yers=200... │ 40        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://aliningrad                                                                  │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logito8ergo_6470/page_type_id=20872/0/001:12:... │ 40        │
│ 0              │ 0              │ 0           │                                                                                    │ http://afisha.mail.ru/dmitrij                                                      │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/readar-nashi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 40        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27924563724&key=46960/med... │ 40        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://lib.ru/exp?sid=3205&bt=7&bn                                                 │ 40        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 39        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credit                                     │ http://komme%2F27.0.1453.116                                                       │ 38        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=8570/page=5&s_yers=2006              │ 38        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2679/detail/5482,935033/2... │ 38        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 38        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://irr.ru/index.php?showalbum/login                                            │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dnevnoy-kv-Samara.irr.ru/searchAutos&marka=4... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 37        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://komme%2F27.0.1453.116                                                       │ 37        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=1        │ 37        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=theating&page=... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?group                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2784389/room=39695,966681... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/forum/topicID=269&stat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/votkim-rukav-i-kova-ul-adve... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wolf-club478561/OPEL | \xD0\xB0\xD0\xB2\xD1\... │ http://irr.ru/index.php?showalbum/login-marka=13&city&custom=0&damages/0001216     │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/filmId=xFX1UbTNJjxe4yF... │ http://irr.ru/index.php?showalbum/login.asp?razdel7/test/matched=115909d9_dsc07... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27553&s_yers=0&po_yers/46... │ 37        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert275226607660?design=6efxq... │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http:%2F%2Fbrjuki-lic-shop.ru/ch/metersburg/contertype%3D158197%26ad%3D1216629/... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=show=&fgroup-tab-mara.irinables/yearT... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278171&size=52094&op_seo_... │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27330528/photo/6223799%26... │ 36        │
│ 5              │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 36        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36&he                                    │ 36        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://smeshariki.ru/obucheyelants                                                 │ 36        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=post_neu%3D22%26pz%3D0%26rleurl%3D%26xp... │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vip.ru/book.com/photo/7086/page=0&state=mont... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 35        │
│ 1              │ 0              │ 0           │ http://yandex.ru/catalog/8569                                                      │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/index.ru/katego... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 35        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-cukickdrops_bak_yant4tlGtZgy3BQ&bvm=bv.49478... │ http://irr.ru/index.php?showalbum/login-501-98552&op_uid=1060948/6#f               │ 35        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (Windows                                 │ 35        │
│ -1             │ 0              │ 0           │ http://state=19&m_staraya-obl                                                      │ http://irr.ru/index.ru/show/414526863_112                                          │ 34        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.12.388                                                            │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 34        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/promo=C-Tease/rent/dat... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 34        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_uid=1... │ 34        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/list                                                           │ http://lib.ru/exp?sid=3205&bt=7&bn=1&gearbox=0&type_id=0&last_auto_ria=0&type=0... │ 34        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/directadvert/kavanga_728x90.html                              │ http://komme%2F27.0.1453.116                                                       │ 34        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshops.xml?typ                                     │ http://komme%2F27.0.1453.116                                                       │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/exp?sid=3205                   │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?cPath=default.ru/yandex.ru                          │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 33        │
│ 1              │ 0              │ 0           │ http://auto.ria.ua/\xD0\x9A\xD0\xBB\xD0\xB8\xD0\xBC\xD0\xB0\xD1\x82\xD1\x8C\xD1... │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 33        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate/apartner                                 │ http://video.yandex.php                                                            │ 33        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 33        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 33        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 33        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga_728x90                               │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265748ba3f755671_1162684&... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertif?sle=85000 \xD0\xB4\xD0... │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 32        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/pub                                                         │ 32        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zxcvbnm1990&search/jobinmoscow.ru/yandex.by/... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 32        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements-obschaya            │ 32        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru%2Fproduct/foto-4/login... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&op_category_id=1174]... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniturers_id=575386110                     │ http://irr.ru/index.php?showalbum/login.exit/rem/php/board/10_kruizer_8267049&o... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiepochto_id=93231238][to... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://afisha.yandex.ru/index                                                      │ 31        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://ssl.hurra.com/iframe                                                        │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertischuk_Kerasivye-klavik/?... │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/jobs-education/m_acces... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26791e3a7c543c9bf9ef5c0-9... │ 31        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 31        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt                                  │ http://komme%2F27.0.1453.116                                                       │ 31        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_api.php?cid=41389/rooms/perm.pulscen.ru/sear... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertificia/?letteo_985428161/... │ 30        │
│ 1              │ 0              │ 0           │ http://domchelov.html&lr=55&text=\xD0\xB4\xD1\x80\xD1\x83\xD0\xB3\xD0\xB8\xD0\x... │ http://komme%2F27.0.1453.116                                                       │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoryID=12452929587/... │ 30        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 30        │
│ 1              │ 0              │ 0           │ http://video.yandsearch                                                            │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 30        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6DQgE4LmUXI&where=all&filmId                     │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert268630533&site_ot=&price_... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-k608i.trashbox.ru/cars/page5/&docid=577&lr=2... │ http://irr.ru/index.php?showalbum/logii_58247.php?forum.borovichy77/page5          │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2716/~3/150160947694,9745... │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/products/?category_id=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2696374/#page/tab=com_avt... │ 30        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru/topic                                                 │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26979553039353936694&ch=u... │ 30        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.14&he=768&wi=1920                      │ 30        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605446518%2F&sr=http://e... │ 30        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://smeshariki.ru/obucheyelants                                                 │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-carava/fotok-8-steklove.ru                      │ http://irr.ru/index.php?showalbum/login-yuoocor.ua/user                            │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26928142&op_products/view... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kupibatikov/?recrete/personal/klimat.ru/work... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 29        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x9A\xD0\xBE\xD1\x80\xD0\xBE\xD1\... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertifications[0][150]=60&inp... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/wedditeli_foto-2/__48/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_countpage/1          │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/click.net/paged=696&lo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274229696.0 (Windows)&bL=... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-14132&with_photo=1&srtime-zone.net/catalog/t... │ http://irr.ru/index.php?showalbum/login-sierra%2Fdlia-zhienskaia-moda-zhiensmed    │ 29        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2664952&xdm_p=1#country=-... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704.html%3Fhtml5/v12/?fr... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2734/fotographic_2017666&... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategoriya/zhienskaya-... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9649.html%3... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/small_mercial-shoppicc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27350350394&ch=UTF-8&sF=1... │ 29        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-baza/gadge... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_seo_entr... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27425.3120%26ntype_id=2&r... │ 28        │
│ 1              │ 0              │ 0           │ https://directions[0][1541769377921968                                             │ http://komme%2F1.7.1364.172                                                        │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13733097&op_categ... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert272291684/hasimage=0&view... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makuma.html?category_id=1017&lr=213&tex... │ http://irr.ru/index.php                                                            │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/mann japanel/?text=\xD1\x81\xD0\xBC\xD0... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269500469412216388/detail... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-my-sovies/bebybum.homestion bonprix.ru/... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikarbox=2&tz=9b81998&po_y... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://video.yandex                      │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F8536.26 (KHTML                               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-176-kakaya-obl.irr.ru/search?lr=191&ei=N6rrg... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order                │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?lang=all&fi... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\xA4\... │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/anime-2/#album/l... │ 28        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML, like Gecko                    │ 28        │
│ 3              │ 95             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-eve-nn.ru/cars/passenger/\xD0\x92\xD0\x90\xD... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274236&pv=15&prr=8&sid=35... │ 28        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 28        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/poned                                                          │ http://irr.ru/img/catalog/53485785/topic/8939858-59929477/detailshop               │ 28        │
│ -1             │ 0              │ 0           │ http://state=19&m_static.diary.ru%2Fpugache=51dba668ea2feb2Xw                      │ http://irr.ru/index.ru/show/41452626u1zIq0SGLXCI                                   │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=Mitsundai/malitics/katersburg.irr.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 28        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/gold                                                           │ http://ekburg.irr.ru/#lingvo                                                       │ 28        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F22.14&he=768486                                                     │ 28        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login.html?1=1&cid                               │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678/page=2&marka=84&mode... │ 27        │
│ 3              │ 2              │ 0           │                                                                                    │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/search?cl4url=http://yandex.ru/online... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27013.ya.ru/sportalznakom... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert24061.jpg.html%3Fhtml?1=1... │ 27        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031343-sh-898675/sort=pri... │ http://irr.ru/index.php?showalbum/login-5158&jenre/slyudya_metroman.ru/GameMain... │ 27        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 27        │
│ -1             │ 0              │ 0           │ http://state=19195/offset=101&district=&city&with_photo=&currency                  │ http://irr.ru/img/catalog/53485785/topic/8939850.php?page=3&marka=84&mm            │ 27        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://auto_map6%26pz%3D0%26geozone.net/201597547,8.0.146/imagecachel              │ 27        │
│ 1              │ 0              │ 0           │ http://forums/liiie/?target                                                        │ http://obninsk/detail                                                              │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fhit_list.html?s... │ http://irr.ru/index.php?showalbum/login-irake-myservierk-supierts%2F&ti=\xD0\x9... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-oleginnesujeli-i-centum=etarget=search?clid=... │ http://irr.ru/index.php?showalbum/login-kupe.html_params%3Drhost%3Dad.adriver.r... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27928092_price=\xD0\xBC\x... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/mazda-dievochnye_avari... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-kupalnik.10065%26bn%3D0%26ad%3D158197%2... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-19.xhtml?city_to_one=All&film]/on/orders/810... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/1.19.mobile_photo=6001... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27630/?item_id=0&bodystyl... │ 27        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId                                          │ 27        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/poned#pa\xD0\xBE\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 27        │
│ 1              │ 0              │ 0           │ http://bonprix_ru_11559&lr=12&usln                                                 │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lizova_ii_1112_1150&option[price_do=300... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search=0&choosO7a_rEk3E&wher... │ 26        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detall/seconomicsmovinki                                │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ 1              │ 0              │ 0           │ http://yandex.ua/?target=search/tab=user                                           │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 26        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 26        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://obninsk/detail                                                              │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/loginsk.irr.ru%2Fkategory_id=9204471-650/?_h=... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login-jjjekrju-s-pring=1&price[price=\xD0\xBC... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364                                                           │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification.ru/messa.ru/rea... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lejandsearch?text=\xD1\x82\xD0\xB8\xD1\x85\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert21124631/?Search.php         │ 26        │
│ -1             │ 0              │ 0           │ http:%2F%2FwebcamMax                                                               │ http://afisha.yandex.ua/auto_id=1430][to]=&int[260][20][to]                        │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_category... │ 26        │
│ 3              │ 197            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?messa.ru/worlds/page2/7277932582&text=\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 26        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/openson XA2oYUXI                                              │ http://irr.ru/index.php?showalbum/login-kupe-20010120652838799.html?n=7148.html... │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemey-volvom80Cw&where=a... │ 26        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://afisha.yandex.ru                                                            │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandsearch?text=\xD0\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 26        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_category       │ 26        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=607&state=4... │ 26        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.22 (KHTML, like Gecko)                   │ 25        │
│ 1              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http:%2F%2Fwwwwww.bonprix.ru%2Fkategoriya                                          │ 25        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978184         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=1&state        │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/people.ru/cars/passets... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2731/?city=0&pvno=2&evlg=... │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-vivarki/redki_sdelaet-law.ru/produkty/kartgo... │ http://irr.ru/index.php?showalbum/login=driff/en-ru/?p=2#messages/00001216629      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/offection                      │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.html&ei=GcXrUYe8F2DAU-RbuRlLMczoJ--5uDCx8       │ http://irr.ru/index.php?showalbum/login-132/#images/0000.h95/\xD1\x82\xD1\x8E\x... │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert264314953); ru) AppleWebK... │ 25        │
│ 1              │ 0              │ 0           │ http://auto/auto.ria.ua/search/tab                                                 │ http://obninsk/detail                                                              │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login                                            │ 25        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search?text=myaccountry         │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 25        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguard-payments-sale/se... │ http://irr.ru/index.php?showalbum/login-88i8LaDyEkCVv6-DhRfEDcw==&action           │ 25        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/yandex.ru/?f... │ http://video.yandex.ru/page=0&category&op_seo_entry=&op_categoriya                 │ 25        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F537.36 (KHTML                                │ 25        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://video.yandex.ru/film/46351/frl-2/bage                                       │ 25        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=7329           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2605838.html5/v12/?from=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694589/detail/555-javata... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741559&t=5204/make=Chrys... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-link=1147373-1&p=1&p=2&text=\xD0\xBC\xD0\xBE... │ http://irr.ru/index.php?showalbum/logisterlingvo/#!                                │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?cmd=shops.html?id=1&body_type=\xD0\xBF\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://irr.ru/index.php?showalbum/login-kupaljiteraturka                           │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781472265&op_seo_entry=&... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626rleurl%3D//ad.adriver... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685/price_ot=&price=\xD0... │ 24        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://diary.ru/forum/intries                                                      │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27399992.php/board,13.0) ... │ 24        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/login-117031&op_category&op_seo_entry=&op_uid    │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671291&fridgets/2012&pri... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26685857947301_Zoryatiya/... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-annative-expressageId=0oVXx21hUXI&where=all&... │ http://irr.ru/index.php?showalbum/login-rybnovlevojj_mamountry=-1&type%3D0         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo/7... │ http://irr.ru/index.php?showalbum/login-kupit-plitka-s-korsiety/art/151/n4p/160... │ 24        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://video.yandex.php                                                            │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumyi-dachat/jaguar.ru/page4/?emain.a... │ http://irr.ru/index.php?showalbum/login=ogabass.ru/filmId=9WOqzzitive&view         │ 24        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/intrumen                                                             │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kupalnaya_elit=&id=3&clid=9403&lr=1913849       │ http://irr.ru/index.php?showalbum/login-gallebia_zhurnalCall D.R.E.mp3ex.net/ph... │ 24        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-lolacake/tatyaka.html?1=1&cid=577&oki=1    │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinglish.rus-l7-p70505-1... │ 24        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/yandsearch?lr=1... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-yvaken/topic=7702.jpg.html?1=1&cid=577&... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=1&bc=3&ct=1&pr         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-547552/1/?sma=RAINBOW&op_uid=fdd1b9d2721728&... │ http://irr.ru/index.php?showalbum/login-kapusta-advertika/search/room=1&damage=... │ 23        │
│ 1              │ 0              │ 0           │ http://auto_volkswagency=1&text                                                    │ http://komme%2F27.0.1453.116                                                       │ 23        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru                                                                │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgarials/commend/searchvage-2.html&dt=13734... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-tuniki_510... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263090024189-528619c2077/... │ 23        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://smeshariki.ru/ru/index.ru%26bid                                             │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333572620201709/page/10... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news/radio&clid=198555... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26939.html?page/3/#count=... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2740974%26pz%3D0%26ar_sli... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/index.ru/kategory_id=5... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 23        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo          │ 23        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://liver.ru/a/far_applunzsxi.cmle.ru/search?text                               │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/resultatya9176da22f1a521a5853.html&... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 23        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapustom%3D%26xpid%3DBBn-investate=toda... │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26600721376439322%26pz%3D... │ 23        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page         │ 23        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php                                                            │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,945... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/advert/kavanga_728x90.... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://afisha.yandex.ru                                                            │ 22        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=2512592        │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisemennoke0070553995f27d6... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2697574697.html_param=0&u... │ 22        │
│ 5              │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-105vr/                                     │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=search.tutung/s... │ 22        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/wheel.ceratornaya_solnechka                                   │ http://komme%2F27.0.1453.116                                                       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2091&local=1&TypeSearch?mail.ru/yandsearch&c... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26058&nnum=s4746835895&op... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-10760b31b65633eZateq eb806e887d9f15ccf593280... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-the-ili-tempera-minsk.irr.ru/produkty/bluzki... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739693071/pomer... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodny            │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2649.html?pg=menu_29.jpg&... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnik.ru/v1465][from]=&int[157281       │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267830840994,95688781470%... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-business/sale/ru/search?mail.ru/film%2Fbarna... │ http://irr.ru/index.php?showalbum/login-zakon_type=1&fuelRatesTypeSearch           │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 22        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27200,55.7654.html_parat-... │ 22        │
│ 1              │ 0              │ 0           │ http://radioscannetcat=threadreplies                                               │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&l... │ http://irr.ru/introlux_page5/2/page/Renaul.irr.ru/start=1500-rublic/gamemain/Tu... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26601629][from=&fuelRateT... │ 22        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-natashkarola.irr.ru%2Fviewforum/MsgList.html... │ http://irr.ru/index.php?showalbum/login-kapusta-advert26900/technics-technics-t... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liliate_id=24145602&with_phoney.yandex.ru;ya... │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 22        │
│ -1             │ 0              │ 0           │ http://state=19&num=5&s_yers                                                       │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&city[7]=23239330794,25826044_Black_lis... │ 21        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?price_till beli.php?cx=015216684_36                          │ http://komme%2F27.0.1453.116                                                       │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691_ru_17832523.html_par... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694,978825315f373400/det... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1) AppleWebKit%2F537                                           │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/world/photo/41/62b1dfa450/3/women-clother%26tms%3D%26ev_ltx%3D... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachka/saledParam              │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomaha.diary.ru/forum%2Fukhov/l... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27025&Select[4][]=32598.h... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/basketshop.ru/yandsear... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert265228.html?1=1&cid=577&o... │ 21        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://wildberrior/uphold                                                          │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo44953.116.php?t=4... │ http://irr.ru/index.php?showalbum/login=ko&page=0&view.aspx?group_cod_1s=85&key... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/?from             │ http://en.lyrsense.com.ua/?tag=type=category_id=1555768&wi=136225..87245-937559... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/houses/passenge... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-dance/index.ru/?favorite_off=1&encoding&hl=\... │ http://maps#ru_5_ru_22106.37766/men.aspx#location/topic.php?razdnuyu-komnatalog... │ 21        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F5.0 (Windo... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logino-s-grigerator/page1=&input_age1            │ 21        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 21        │
│ 1              │ 0              │ 0           │ http://yandex.ru/cars/commeddesk.ru/google_s&12.5.746.59954.30 (KHTML, like/\xD... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ramblery/pic/893985650697... │ http://smeshariki.ru/obucheyelants                                                 │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26737865/?page/12186/#/ec... │ 21        │
│ -1             │ 0              │ 0           │ http://state=199450984062                                                          │ http://irr.ru/index.php?showalbum/logii-bin/click.cgi%3Fsid%3D158195,97987231-9... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/histofelny.i... │ http://irr.ru/index.php?showalbum/login.html?1=1&input_who1=2&input_who2=1&inpu... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/img/catalog/53485785/topic,806;IC,33;VL,1430/photo                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-brie... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-dietsik.ru/razdel_id=111,7,700&w=728x90.html... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929&from%3D%26custom=0&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/club.ru/anime-zone.ru/... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2186/detail.aspx#location... │ 21        │
│ 1              │ 0              │ 0           │ https://google.com/fee=\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x8C\xD1\x88\xD0\xB5            │ http://irr.ru/index.php?showalbum/login-kapusta-advert2686305895&op_seo_entry=&... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098-1.13739353/details.... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kupalnik                                   │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification%2F4.0; XBLWP7; ... │ 21        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/9-0--navam-zhien... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2741465][from]=&input_wit... │ 21        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto          │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapustom=0&Itemid=577&oki=1&op_uid=1147... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login=uzpp2XnEw&bvm=bv.49784469][from                 │ http://auto_s_product_id=25292.1406.798352/women.aspx?group_cod                    │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&sr=http://afisha                            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-Larki-i-korobeg-1124-95367/guestblowinp... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26219&wi=1280&lo=http://w... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/yandex.ru/real... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estatic.diary.ru/... │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=58&Selectronics-technics/k... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page           │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?er=2&text=\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB8\... │ http://irr.ru/index.php?showalbum/login=razer2.moikrug.ru/recipes/shop.spb         │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b706234651&op_uid=1&b... │ 20        │
│ 1              │ 0              │ 0           │ https://mysw.info=sw-131726275                                                     │ http://komme%2F27.0.1453.116 Safari                                                │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estate=yestered                                 │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&price                                  │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=NeIdeaCenternet Explorer&aV=5.0            │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertificirovka.ru/noteating-i... │ 20        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 20        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313163307/?from]=&int[15... │ http://che.ru/produkty_zarubezhei-niepochekhly                                     │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate=0&ReturnUr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271161076&st=261&t=170977... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604370757034dea482207549... │ 20        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_api.php?id=7262882,9454472&op_product_n... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert27419&z=9&l=map&id=2211-9... │ 20        │
│ 1              │ 0              │ 0           │ http://video.yandex.ru/cars                                                        │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26637&model=1705.html?1=1... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-karbox=0&top=0&category/1961/#images/00... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumilora481                              │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-iulyanovskaya-obl/lyubvi?page=166733&eid=485... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27502/detail/?folders/#pa... │ 20        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credircnt=13733129/room                    │ http://komme%2F27.0.1453.116                                                       │ 20        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://video.yandex.php                                                            │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626u1zIq0SGLXCI&where=al... │ 20        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=240&u_cd=242035165&input_who2=1... │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien%26ar_slice-russic.ru... │ 19        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state/apartments/parts.ru/GameMain.aspx?sort=popup/casualg... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/news_id_72387877055/nu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikulina.ru/real-estate/ou... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=HOtbySdOiUw    │ 19        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/filmId=eRaB4pYAXCI                                            │ http://komme%2F27.0.1453.116                                                       │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login=perfect.yandex.ru%2Fkategoriya%2F537       │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.ru/daily                                                        │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text=\xD0\xBB\xD0\xB8\xD0\xBA\xD0\xBE\xD0\xBB\xD0\... │ http://irr.ru/index.php                                                            │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260540718534/?dateOn=1&bo... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261921&pr=2441185112.html... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26672655462.html?city.ru/... │ 19        │
│ 1              │ 0              │ 0           │ http://sp-mamrostok.ru/cars                                                        │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27252/women.aspx?group_co... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2671&Destige-all.html_par... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/check=1&redir=1&lang=a... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27404895,95923.html%26cus... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006&po_yers=20078816                           │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2638/?from=&raceTo=&power... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313437&pvno=2&evlg=VC,2;... │ http://irr.ru/index.php?showalbum/login-rizova.ru/look/timashirtsevm.cofe          │ 19        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-estation/vacancing                              │ http://sslow_13507.html?aspx?naId=6HS                                              │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=487930         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27355f3132366336601&uuid=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.php?f=11340.1j1j2.12...5998-103358071/8/page... │ http://irr.ru/index.php?showalbum/login/?ReturnUrl=%23images/00007/10/1320006&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166333/price[price_till]=&pri... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2F_liveresum... │ 19        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=&auto_repai... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://smeshariki.ru/obucheyelants                                                 │ 19        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.15751 Safari%2F5.0 (Windows                               │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2675406828ac956028692581/... │ 19        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://obninsk/detail                                                              │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26968794618/irr.ru/real-e... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2629&lr=65&rstr=-213&text=back=False&withmos... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27423026517034&pvno=2&evl... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2702483,631;IC,444041%2F&... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (W... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26669E116-1-1550046560013... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=http://video.yandex.ru/real-estate         │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?search?text=\xD1\x80\xD1\x83\xD1\x81\xD0\xB... │ http://irr.ru/index.php?showalbum/login-inadlinny-sched_car=0&city=0&price=18&p... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274026181891&rn=52&brand=... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/referery_besplay/4972&bL=ru-ru&xdm_... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/dlia-zhiensk... │ 19        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx             │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login.html?1=1&cid=577&oki=1&op_product          │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list=0&checked=0&state/room=10002-g-v-program... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-165&jenre]/49047&lr=163&text=samsung ga-moda... │ http://irr.ru/index.php?showalbum/login-2-komn-v-na-92f5-6ccf-fef3-013f9f926a21... │ 18        │
│ 5              │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://afisha.yandex.ru/index                                                      │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5           │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login/?elmt=popular&where=all&film/723/num       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/man/restate/out-of-town-resh=1&cnt=1373... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2012-recept-Ragu-iz-2-x         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupaljinik-slidi/places/?PAGEN_1=2         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main/erle.com.ua/yandex.php?app=my&name    │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 18        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://wildberries.aspx#location/group_cod_1s=53&butto_638_1360/3/women.aspx?na... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=deltec&type=citymo=&version%2F4.0 (Linu... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27534.30 (KHTML, like Gec... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-kochtinsk.pulscendinskiy-krasnodar.irr.ru       │ http://irr.ru/index.php?showalbum/login-kuplyuskij/zapchastorii_state/out          │ 18        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login.moikrug.ru/catalog/otchenko-ul-advert27... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-zzzi.ru/a-shop and blademas/?id=1&marka=0&ma... │ http://irr.ru/index.php?showalbum/login-2003prev=/search/index.ru/meteor.html%3... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F&ti=\xD0\x91\xD1\x80\xD1\x8E\xD0\xBA\xD0\... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=367132&pv=2... │ 18        │
│ 1              │ 0              │ 0           │ http://radiorecord.ru/real-estatic.diary                                           │ http://irr.ru/index.php                                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert278453&with_exchange=0&ex... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27132069304;IC,1511e8d158... │ 18        │
│ -1             │ 0              │ 0           │ http://go.mail.ru/yandsearch?lr                                                    │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27071038_114736895,923401... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estat_type-5/exte... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x9A\... │ 18        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=978152&ch=U... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-natura.ru/jobs-education=post_137336ID0... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/8018&l=malkogo... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=kanza_tab_2499472&lr=1074&sort=popular          │ http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=5.0 (Wi... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/search/?target=search?... │ http://irr.ru/index.php?showalbum/login-bigutensiysk.irr.ru/regular&bid=3205&bt... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27420780790931.html5/v12/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya/obuv%2F         │ 18        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login                                            │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-21102&text=\xD0\xB1\xD0\xB0\xD0\xB1\xD0\xBA\... │ http://irr.ru/index.php?showalbum/login.mospsy.ru/super-na-kostronics/tv-audio.... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2685&numphoto=0              │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626p/                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertimeshariki.ru/cgi-bin/cli... │ 18        │
│ 1              │ 0              │ 0           │ https://diary.ru/magnitogorsk                                                      │ http://komme%2F27.0.1453.116                                                       │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sien-zhienskaya-i-kvartir.html?id=1955451-01... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260908861%26point-peter=&... │ 18        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1453.116 Safari%2F8536                                         │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=yators/?jumping.ru/series.ru/priceup&page=3&... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 18        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C \... │ http://irr.ru/introlux_page5/2/pageTypeSearch?text=\xD0\xB2\xD0\xBA\xD1\x83\xD1... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisinger/\xD0\x93\xD0\x90\... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olga1788778.137329TVmbFNmbVNaR0YwW$UyNDg4fxS... │ http://irr.ru/index.php?showalbum/login-sienskaia-moda-zhienskikh_rabotjaga.ru/... │ 18        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_car=36427929&stat... │ 18        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26929750%26ar_sliceid%3D2... │ 18        │
│ 4              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691c352005&pvno=2&evlg=V... │ 17        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search                                          │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru%2Ffilm/4858?pa... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert271527091/frl-2/bage-2.ht... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27422544/3/womens.ru/ufa.... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/cars/communalux.ru/dos... │ http://irr.ru/index.php?showalbum/loshaya-obl.irr.ru/film/35562C?analytics/kto-... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#7878... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser%2F12.103402.html%3Fhtml                     │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=artira-Lyubyat    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x92\xD0\x90\xD0\x97              │ http://irr.ru/index.php?showalbum/login.aspx#location                              │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://myloveplanet.ru/index.ru/registrict=3219&st=10#                             │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=yes&y1=2013-07-07.ya.ru/5_search?text=\... │ 17        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://aliningrad                                                                  │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1453.116 Safari%2F5.15.html?1=1                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266149_51928/detail.ru/ka... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-adverts%26rleurl%3D%26CompPath%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2670308&po_yers=0&price_o... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2613168312.71 Safari%2F__... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?Returniture=8&ch=UTF-8&ifr=1&av=1&nm=1&ved=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login_Bolers-device.aspx#commersanta_premiery... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 17        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http://sslow_13507.html?aspx?naId=6HS                                              │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginyazevskaya%2F5.0 (Windows NT 5.1) Prestorygoo... │ http://irr.ru/index.php?showalbum/login-kupilomatic.aspx#location=rr&days&city&... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-dlia-zhiensmed.ru/el... │ 17        │
│ 1              │ 0              │ 0           │ http://bdsmpeople.ru/register2123                                                  │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/logistereda.ru/photo/70861/6#f                   │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert263161366&bid=2823&numpho... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=ForeightEnd                           │ http://irr.ru/index.php                                                            │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowthreadreplies=24&ids=74&cu... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27595,9305f3931339322%26n... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26041.htm%3Fsid%3D0%26pz%... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313&ussp=mstp&usln=1&inp... │ http://irr.ru/index.php?showalbum/login-3767436/roomootofile/obzor.com/iframe      │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273363331251798796&op_seo... │ 17        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/stan/index.kz/yandex                                  │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertistia.html?partment/searc... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-search%3Futm_source=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2046097563356531663031323532363&win=70&mode=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 3              │ 22             │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 17        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://diary.ru/forum/intries                                                      │ 17        │
│ 1              │ 0              │ 0           │ http://bibieters_sig=5ea8QizwGSPy0yGcm14ATH74D4Bw&usg=AFQjCNHxMZlonova.ru/p1847... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_len40/page3/#57366/?date_i... │ 17        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=&op_style... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-lenfiki-zhienskaia-moda-muzhchin-sitafa ishq... │ http://irr.ru/index.php?showalbum/logical.ru/link=11485-9065383235348%2F&sr=htt... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienskaia-moda-futbolki-k... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert261636/detail/odnoklassim... │ 17        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/messar.ru/professig                                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 17        │
│ 1              │ 0              │ 0           │ http://acase.php?input_who1=2&input_who2=1                                         │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 17        │
│ 3              │ 3              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2694&option%2F12.14&he=76... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26618531&t=111246.html?p=... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_uid=13733145625/details... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-irina19910735%2F27.0.1453.116 Safari       │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert268814453957595,94406/det... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=Like Gecko) Chrome%2Fpotnik=1&price_do=&curr... │ http://irr.ru/index.php?showalbum/login-the-poxudet_sponsor=&o=6000708498/?caut... │ 17        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/login-53584715,1327288/belgium/arch=1&themec.... │ 17        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login=bestwo.diary/details&id=9160/0/posti.ri... │ 17        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2626b76faact/less=1&ru=1&... │ 17        │
│ 1              │ 0              │ 0           │ http://yandex.ru/category=cinem rasmusic                                           │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-herokee_tatus=1&rm=18606bAxFEcQT6smBB4W... │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-zhien... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-olgas.rQRAX2Ua3IF1iHJcaz4ATv34DABw              │ http://irr.ru/index.php?showalbum/login/?page=1024&wi=144438-88-3906740/currenc... │ 16        │
│ 1              │ 0              │ 0           │ http://autodoc.ru/a-search/?target=search?clid=19554786.0.8.0.2.2003558_3497926... │ http://irr.ru/index.php?showalbum/logie-niz-doktops/electronics/4185570c72         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26098707209463401090/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert267044005320AA76)&vendor_... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27034195,9520160173/5/wom... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19&text=\xD1\x81\xD0\xBB\xD1\x83\xD1\x88\xD0\xB0\xD1\x82\xD1\x8C&s... │ http://irr.ru/introlux_page5/2/pageTypeId=0&expand_search/cuZXdzJTJGJmxyPTI4fQ,... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsien-zhienskaia-moda-plan... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26396284046.xhtml%3Fhtml%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2660&pt=b&pd=7&pw=2&page5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/real-estate/out-of-tow... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert260612d7cf.4082813,74,756... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=&esrc... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ 1              │ 0              │ 0           │ http://kipirog-s-krug                                                              │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/movinki... │ 16        │
│ 5              │ 0              │ 0           │ http://state=199450984062                                                          │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-kupalnaja-prost-petersburg/detail/?fold... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.rambler.ru/page=91552&q=\... │ http://irr.ru/index.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.pl?&clients-sale&siteurl%3D//ads/search?text... │ http://irr.ru/index.php?showalbum/login-kapusta-advert273786/foto-5/#photo=2817... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-krasok.html_params%3Drhost%3Dad.adriver    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9C\xD0\x90\xD0\x97/page4/?_r... │ http://irr.ru/index.php?showalbum/login.aspx?sle=13&s_yers=0&page_type=0&door=0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertsiensmed.ru/dl/\xD0\xB7\x... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti/redmonds %2F offset=403134333.2201560&c... │ http://irr.ru/index.php?showalbum/login-v40-velopiter.feriod=0&scroll_to_auto.r... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661232&streamfood.com/if... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login-kupalnyj-bandom.ua/a-foldersSubCliensme... │ 16        │
│ 1              │ 0              │ 0           │ http://google.ru/forum                                                             │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo/70948/35.htm?id=... │ http://irr.ru/index.php?showalbum/logiy-luchaiev%2F&sr=http:%2F%2Fwww.bonprix c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-57548811426&text=\xD0\xBB\xD1\x83\xD1\x87\xD... │ http://irr.ru/index.php?showalbum/login-coolonellana-Molodilnik.ru/index.php?vi... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-204609756335653166303133334%2F&ei=horia+iudi... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert26765.html_params%3Drhost... │ 16        │
│ 1              │ 0              │ 0           │ http://histore/profile;u=                                                          │ http://irr.ru/index.php?showalbum/login-kupe-20013&uuid=1373356164564_1sort/sta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2755597.html%3Fhtml?1=1&c... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login=findjob.ru/planet.ru/index.ru/carinov.h... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/showtopic,803813.html&... │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_catalog/1250/?itemsg/cd... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/manga                                      │ http://irr.ru/index.php?showalbum/login                                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert260477/cities/visas/exp?s... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirosomahachkakh-2/?type=0&choos&lr... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0           │ 16        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/real-esta.ru/election                                │ http://video.yandex.php                                                            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27429&input_bdsm_position... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2728024/detail/508/?instv... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26887301/Zona/simferopol.... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-153-4b9c4.4331626.htm?size%3D0%26rleurl    │ 16        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credirect                                  │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http://komme%2F27.0.1364.172 YaBrowser%2F10B350 Safari%2F537                       │ 16        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://msuzie-shop/premiery-c-38208_2.html                                         │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/posts&q=\xD0\xB2\xD0\xB5\xD0\xB4\xD1\x83\xD1... │ http://irr.ru/index.php?showalbum/login-mistore/#CATALOG_LIST-s-ovosibirsk/deta... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-marka=23&model&desting?field_town/search/pri... │ http://irr.ru/index.php?showalbum/login-492ea9&show/417582,9626512874":10157628... │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_country=-1           │ 16        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_name=\xD0\x91\... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain                  │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/sch/price][min]=41&lr=... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27364229586121%26url%3D%2... │ 16        │
│ 1              │ 0              │ 0           │ http://volgografiyah_27_iyunya_50_let%2FgetId                                      │ http://komme%2F27.0.1453.116                                                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-sovies/tv-audi/a7-spec=9894797179698712/p1/8... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27333%26bid%3D1%26rleurl%... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new=127201148][fr... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-maritkiN                                        │ http://irr.ru/index.php?showalbum/login-ladimir.irr.ru/remiery-telefon.ru          │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2661251-6efa-d61f-fef3-01... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert269899458/price/3815&pvno... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/7427510/detail/5... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login-7205011,1,7,700&aN=Netscape&aV=5.0 (Win... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-wkti%2F%3Ff%3D100%&http://afisha.yandsearch&... │ http://irr.ru/index.php?showalbum/login-6030d.html_params%3Drhost%3D90%26height    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertification=view/5/item3963... │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logiste's a di galaxy-s4-story1.aspx#location... │ 16        │
│ 1              │ 0              │ 0           │ http://yandsearch?lr=2&color                                                       │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2753][from]=&pricedownloa... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-gorod/search?p=7&oprnd=9902.jpg&img_url=http... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27222.vk.me/u3166            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2735030373434-152495.php?... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_cated_new10152954vac       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2691.html?1=1&input_age2/... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-irinakai/page_num_read2306e4574&ei=Ot_rUfjPG... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/page5/#over/190008/0... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makeevka.ru/perm.irr.ru/slingvo/#1\xD0\... │ http://irr.ru/index.php?showalbum/login-kapustic/product_name                      │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26708662307][]=&selection... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-20460975633565316630313033393633310,932803][... │ http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params            │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2010000087378687/pic/8939375f303839303935373... │ http://irr.ru/index.php?showalbum/login-souse=2/path=39_1.html?1=1&cid=577&oki=... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumy.ua/search?text=\xD1\x81\xD0\xB5\... │ http://irr.ru/index.php?showalbum/login-kapustya88/?sob                            │ 16        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.ru/widgetchrome%2F201001556&op_seo_entry                       │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/?strict=5710... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category=cinema/artira     │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertists/736850/?item_no=737&... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertikal.ru/search/room=1&dam... │ 16        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2695/19545602cf94d77/repl... │ 16        │
│ 1              │ 0              │ 0           │ http://forums/liiiervierk-suppohudeemvmesting/294465&op_categoriya                 │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_product_id=0&model=1173... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login=new&cad=rjt&fu=0&input_country_id=228&lr=961... │ http://irr.ru/index.php?showalbum/login-cam.shtml#objdesc=true&uA=Mozilla          │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-verb=1&prepairs=0&city[1                        │ http://irr.ru/index.php?showalbum/lounona-muzhchin-kupaljinik-chernyj-odnoe/san... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makum                                      │ http://irr.ru/index.php?showalbum/login/?do=ready-mansion%3D0%26url%3D%26bn%3D0... │ 15        │
│ 1              │ 0              │ 0           │ http://launcher-searchads/search                                                   │ http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0;                   │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_produkty/kiev.org/forum... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/second... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2781308;IC,238208836746/0... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-4433140796851/detail/536180&all=False&i... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginsk.eu/ru/Pagesize=13&m1=07                       │ http://irr.ru/index.php?showalbum/login-3muda/truction/vacancies/750207190765.h... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26981583/page=1089592445/... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945HPS?analog/r10418/sort=price_do=200&site_off=1                   │ http://irr.ru/index.ru/\xD0\x9D\xD0\xBE\xD0\xB2\xD0\xB3\xD0\xBE\xD1\x80\xD0\xBE... │ 15        │
│ 1              │ 0              │ 0           │ http://wildberrifiers?year_detailshop/id_art_type=7&s_yers                         │ http://irr.ru/index.php?showalbum/login                                            │ 15        │
│ 3              │ 2              │ 0           │                                                                                    │ http://komme%2F1.7.1364.172                                                        │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-goluboj-podserial&dfs=13                        │ http://irr.ru/index.php?showalbum/login-haus.html#news/228670,257&pci=3012/frl     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273389; U; Android 4.0.14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert273631253711/foto-6320166... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2724/?_h=search?text=\xD0... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category&op_page4/#67      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-ona.ru/name=yandex.ru/busineshematov/offers=... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price_... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26605566254/room=1.6&wher... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert266356163f39ea6f8/7a8745&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/washes/built-in_two_ch... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http:%2F%2Fwebbootate/aparts/state=1909644                                         │ http://afisha.yandex.ua/auto_id=0&with_photo.kurortmag.ru/razdnitsya-vishnury      │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginskikh-viana.irr.ru/GameMain.aspx?sle=1/house.... │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/?act=full&Form.aspx?g... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/main.aspx?Topic                            │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/rative                                                         │ http://irr.ru/index.ru/show/414526863_112                                          │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/list.html?typ=SMA&anbieter=aleks_evilkos.com     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertisements/produkty%2Fplatj... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-land_search?text=\xD0\xB0\xD0\xBC\xD0\xB1\xD... │ http://irr.ru/6323%26bn%3D27888895,963095425                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/index.ru/ange=0&s_yers=(3000&static.diary.ru... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/GameMain.aspx?transk.i... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.php?page37/?sta... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2678&op_page=60000/curren... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F27.0.1364.172 YaBrowser                                             │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login.1Uv1UfqCA8SonYC4BQ&usg=AFQjCNGB3pBUuKY1jJPP3... │ http://irr.ru/index.php?showalbum/login-tank-sale/search%3Fmode=&page_type         │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/yandex.php?Id=9582                                             │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-liloveplanet.ru/futurer533/women.aspx?group-... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2631920&lo=http://person_... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&... │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/url?sa=t&rct=j&q=alini... │ http://radio&planet.ru/moscow.ru/\xD0\xB8\xD0\xBB\xD0\xBB\xD1\x8E\xD0\xB7\xD0\x... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-tumbov.irr.ru/page1=&input_who1=2&id=29... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert26761,55.654289600/detail... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.php?city[1]=700003                                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2699364224073532663835386... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27515/418695&st=327-B110Q    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login/?dok=001&rightbox/week&From=0&user              │ http://irr.ru/index.php?showalbum/login-kapusta-advert2604/frl-4/trailer/view/3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=450&with_photo=7... │ http://irr.ru/index.php?showalbum/login-lential/secondary/details9.html_params%... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x95\x... │ http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_ty... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=0&page9/#14... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fe... │ 15        │
│ -1             │ 0              │ 0           │ http://kinopoisk.ru/?state                                                         │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=25127691%2F... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27265484158197%26width%3D... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login_appliazh-pliance/mista-bez-uchaiev/000202&cl... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0&price     │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/ch/floore troubleclick... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/yandex.ru/gamemain.asp... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/kategory_id=1955451&lr... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-kapusta-advertsienshchin-planet.ru/myma... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert27877437494,943082&stat_t... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiruiushching                          │ http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/              │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Ford-antent... │ 15        │
│ 3              │ 123            │ 0           │                                                                                    │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_categoriya%2Fdlia-doma.... │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/url?sa                                                         │ http://sslow_13507.html?aspx?naId=6r7RoWvxU9qQ=                                    │ 15        │
│ 4              │ 0              │ 0           │                                                                                    │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-nashinger/users/search?textilead&353%26ev_pl... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-102-821922237&arrFilter2013/08-iH4AT5zIGQDA     │ http://irr.ru/index.php?showalbum/login-kupe-2/#page_type=&freetao.diary.ru/sea... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/loginy_name/3196906481/currency=6465373200&price=\... │ http://irr.ru/index.php?showalbum/login-kapusta-advert2776/?date=0&doorov.irr.r... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2693_763613.html_params%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php                                                            │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert262997385f32313335781094&... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert274298799461981/?date=129... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert276278-ploschaya_checked_... │ 15        │
│ 1              │ 0              │ 0           │ http://mysw.info/node/215455&text                                                  │ http://irr.ru/index.php?showalbum/logabass.ru/cation&op_category_id=9584%26pz%3... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/catalog/877/ru/buildin... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ 5              │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/make=\xD0\x9A\xD0\x90\xD0\x9C\xD0\x90\x... │ http://ekburg.irr.ru%2Fpuloveplanet                                                │ 15        │
│ 1              │ 0              │ 0           │ http://smeshariki.ru/diary.ru/yandex.ru/credir=1                                   │ http://komme%2F27.0.1453.116                                                       │ 15        │
│ 5              │ 0              │ 0           │ http://kinopoisk.ru/yandex.ru/auto/69363                                           │ http:%2F%2Fwwwwww.bonprix.ru/myAccountry                                           │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/photo=on&input_onliner... │ http://irr.ru/index.php?showalbum/login.html%26custom%3D%26CompPath.2; WOW64; r... │ 15        │
│ 0              │ 0              │ 0           │                                                                                    │ http://komme%2F2.10                                                                │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advertist/gosthelp.ru/auto.ria.... │ 15        │
│ 1              │ 0              │ 0           │ http://yandex.ru/search?q=\xD0\xBB\xD0\xB0\xD0\xB2\xD0\xBF\xD0\xBB\xD0\xB0\xD0\... │ http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&in... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumirostova.ru/doc.ru/belgorod.irr.ru... │ http://irr.ru/index.php?showalbum/login-leniya7777294,938303130                    │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert269257798044.html_partmen... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7... │ http://irr.ru/index.php?showalbum/litlip/saint-peter557932E-8C62-4917%26ad%3D64... │ 15        │
│ -1             │ 0              │ 0           │ http://state=19945206/foto-4/login-2491724/?bundlers/search?text                   │ http://irr.ru/index.php?showalbum/login-kapusta-advert2651734&pt=b&pd=7&pw=1&pr... │ 15        │
└────────────────┴────────────────┴─────────────┴────────────────────────────────────────────────────────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────┴───────────┘
Run Time: real 0.137 user 1.400000 sys 0.004000
D 07-01' AND (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 686716256552154761 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
Run Time: real 0.016 user 0.220000 sys 0.000000
D D (DATE '1970-01-01' + EventDate) <= '2013-07-31' AND "refresh" = 0 AND DontCountHits = 0 AND URLHash = 686716256552154761 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
Run Time: real 0.022 user 0.312000 sys 0.000000
D " = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime))) ORDER BY DATE_TRUNC('minute', (TIMESTAMP '1970-01-01 00:00:00' + to_seconds(EventTime)));
Run Time: real 0.015 user 0.196000 sys 0.000000
