PostgreSQL La base de donnees la plus sophistiquee au monde.

Forums PostgreSQL.fr

Le forum officiel de la communauté francophone de PostgreSQL

Vous n'êtes pas identifié(e).

#1 18/04/2009 05:03:17

solicel
Membre

Des requêtes lentes, plus de 10 minutes par requête!

Bonjour,
S'il vous plaît aidez moi, car cela fait des mois que nous travaillons sur cette application, et maintenant elle risque d'être inutile.
Voici d'abord une description de l'application:
Nous voulons interroger des bases de données contenant un très grand volume de données, mais très peu de tables (une table par base, 4 bases en total) avec des requêtes simples (select * from..... where ... order by..) avec la clause where pouvant contenir au maximum 5 individus (le nombre maximum des colonnes), mais en général une ou deux. Donc il n'y a pas de jointure.
La structure de table aussi est simple, ne contient pas de clé primaire.
La difficulté donc provient de la taille des données (environ 300 GO sans les indexes, un peu plus qu'un milliard de lignes par table) ce qui consomme énormément de temps.
Nous avons construit une indexe pour chaque colonne, mais un truc bizarre se passe: lorsque nous faisons une requête la ou on mentionne un élément de la première colonne, il répond très vite. Par contre si on essaye de travailler avec les autres indexes, il prend énormément de temps (10 minutes en moyenne). J'ai essayé de forcer l'usage des indexes avec SET ENABLE_SEQSCAN=OFF; mais en vain. Après avoir fouillé un peu, j'ai essayé EXPLAIN ANALYZE, qui donne les résultats suivant:

EXPLAIN analyze SELECT * FROM MYTABLE WHERE lower(part1)='cheese' ORDER BY freq;
"Sort  (cost=2282819.01..2284644.59 rows=730232 width=28) (actual time=223.852..254.722 rows=30220 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 1272kB"
"  ->  Index Scan using part1_idx on fourgrams  (cost=0.00..2179249.73 rows=730232 width=28) (actual time=0.146..104.445 rows=30220 loops=1)"
"        Index Cond: (lower((part1)::text) = 'cheese'::text)"
"Total runtime: 267.728 ms"

____________________________________________________
EXPLAIN analyze SELECT * FROM MYTABLE WHERE lower(part3)='cheese' ORDER BY freq;
"Sort  (cost=1385290.57..1386281.11 rows=396215 width=28) (actual time=148020.223..148066.516 rows=39521 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 1672kB"
"  ->  Bitmap Heap Scan on fourgrams  (cost=7319.24..1330838.65 rows=396215 width=28) (actual time=63.751..147810.306 rows=39521 loops=1)"
"        Recheck Cond: (lower((part3)::text) = 'cheese'::text)"
"        ->  Bitmap Index Scan on part3_idx  (cost=0.00..7220.19 rows=396215 width=0) (actual time=26.770..26.770 rows=39521 loops=1)"
"              Index Cond: (lower((part3)::text) = 'cheese'::text)"
"Total runtime: 148091.664 ms"

Ici vous voyez la différence entre les deux colonnes, et après avoir désactive le bitmapscan, voici le résultat:

EXPLAIN analyze SELECT * FROM MYTABLE WHERE lower(part4)='ham' ORDER BY freq DESC;
"Sort  (cost=99331.26..99391.83 rows=24225 width=28) (actual time=102213.560..102230.764 rows=11391 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 448kB"
"  ->  Index Scan using part4_idx on fourgrams  (cost=0.00..97028.17 rows=24225 width=28) (actual time=191.458..102162.929 rows=11391 loops=1)"
"        Index Cond: (lower((part4)::text) = 'ham'::text)"
"Total runtime: 102237.412 ms"

Donc le planificateur utilise les indexes, mais d'une manière inefficace.
Que faut-il faire pour accélérer l'exécution des requêtes? Surtout que la première colonne répond immédiatement.
Les indexes sont de type Btree.
Merci pour votre aide.

Hors ligne

#2 18/04/2009 08:43:01

Marc Cousin
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Bonjour,

Premier point, les statistiques ne sont pas assez fines. Ca ne résoudra pas le problème, mais au moins cela permettra à postgresql de prendre des décisions correctes. On le voit dans le 2e exemple, ou il se trompe d'un facteur 10.
Vu que les tables ont l'air gigantesques, et que la plupart des requêtes font des recherches sur des mots, j'aurais tendance à mettre la finesse maximale pour les stats, au moins pour commencer => passer default_statistics_targets à 1000.

Malgré tout cela n'est pas la cause du problème. PostgreSQL met 100 secondes ç aller chercher 10 000 enregistrements dans le dernier cas, c'est vraiment énorme. Je pense que :
- Soit le(s) disque(s) est vraiment très lent (il s'agit de quel OS ? peut on passer un benchmark disque pour vérifier que tout va bien ?)
- Soit il y a un gros problème de tuning de postgresql (que vaut shared_buffers ?) Pour des indexes sur une table de 300Go il vaut mieux avoir un cache conséquent, histoire de ne pas passer son temps à relire les pages 'branches' du btree.
- Soit il y a d'autres applications ou énormément d'autres requêtes sur le serveur, qui s'exécutent en concurrence avec celle ci.

Pour ce qui est de la différence de performance entre la première colonne et les autres, est ce que les données ne seraient pas (au moins approximativement) triées sur la première colonne, alors qu'elles sont réparties de façon plus aléatoires sur les autres ? Ca expliquerait les différences de performance sur celle ci.

Pour avancer, ce qui serait donc intéressant :
- la valeur de shared_buffers. work_mem aussi serait intéressant, je suis surpris des merge disk de 448kb
- la description de la table et des index
- la table est elle approximativement ordonnée sur la première colonne
- si le système est un unix, un bonnie++ ou un iozone sur les disques du sgbd
- ou a défaut un relevé de ce qui se passe sur les disques pendant la requête (via iostat -x par exemple sous Linux). Au passage donc quel est l'OS et quelle version de PostgreSQL ?


Marc.

Hors ligne

#3 18/04/2009 09:41:34

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Attention à default_statistics_targets. En la plaçant à une valeur si haute, la durée de l'ANALYZE peut être franchement désagréable (style une demi heure d'exécution).

Je suis aussi très intéressé par les réponses aux excellentes questions de Marc.


Guillaume.

Hors ligne

#4 20/04/2009 12:44:11

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

D'abord merci beaucoup pour votre réponse rapide, je suis vraiment très content de ce niveau de connaissances.
Commençons:

Marc Cousin a écrit :

Bonjour,
Premier point, les statistiques ne sont pas assez fines. Ca ne résoudra pas le problème, mais au moins cela permettra à postgresql de prendre des décisions correctes. On le voit dans le 2e exemple, ou il se trompe d'un facteur 10.
Vu que les tables ont l'air gigantesques, et que la plupart des requêtes font des recherches sur des mots, j'aurais tendance à mettre la finesse maximale pour les stats, au moins pour commencer => passer default_statistics_targets à 1000.

J'ai essayé cela auparavant, en faisant

ALTER TABLE la_table ALTER COLUMN col SET STATISTICS 100;

mais en vain.

Marc Cousin a écrit :

Malgré tout cela n'est pas la cause du problème. PostgreSQL met 100 secondes ç aller chercher 10 000 enregistrements dans le dernier cas, c'est vraiment énorme. Je pense que :
- Soit le(s) disque(s) est vraiment très lent (il s'agit de quel OS ? peut on passer un benchmark disque pour vérifier que tout va bien ?)
- Soit il y a un gros problème de tuning de postgresql (que vaut shared_buffers ?) Pour des indexes sur une table de 300Go il vaut mieux avoir un cache conséquent, histoire de ne pas passer son temps à relire les pages 'branches' du btree.
- Soit il y a d'autres applications ou énormément d'autres requêtes sur le serveur, qui s'exécutent en concurrence avec celle ci.

- le disque dur est nouveau, 1TO SATA Seagate, 32 MO de mémoire cache, 7200 Tr/Min, le serveur par contre est un peu vieux, Pentium 4 a 3Ghz, 1Go de ram.
- le OS est Ubuntu 8.04, le système de fichier est ex3.
- Concernant le tuning, j'ai essayé de forcer l'usage des indexes en jouant sur les enable_bitmapscan, enable_seqscan, random_page_cost.
- Quant au shared je n'ai pas touché, par défaut il est a 24MO
- Il n'y a pas d'applications concurrentes, le serveur est dédié a ça, avec très peu de connections simultanées.

Marc Cousin a écrit :

Pour ce qui est de la différence de performance entre la première colonne et les autres, est ce que les données ne seraient pas (au moins approximativement) triées sur la première colonne, alors qu'elles sont réparties de façon plus aléatoires sur les autres ? Ca expliquerait les différences de performance sur celle ci.

Exactement, les fichiers textes dont on s'est servi pour remplir les table étaient organisés par ordre alphabétique par rapport a la première colonne.

Marc Cousin a écrit :

Pour avancer, ce qui serait donc intéressant :
- la valeur de shared_buffers. work_mem aussi serait intéressant, je suis surpris des merge disk de 448kb
- la description de la table et des index
- la table est elle approximativement ordonnée sur la première colonne
- si le système est un unix, un bonnie++ ou un iozone sur les disques du sgbd
- ou a défaut un relevé de ce qui se passe sur les disques pendant la requête (via iostat -x par exemple sous Linux). Au passage donc quel est l'OS et quelle version de PostgreSQL ?

- les valeurs de shared_buffers et work_mem sont par défaut, donc 24Mbpour la première, et 1 MB pour la seconde (elle est désactivée dans le fichier de configuration)
- Nous avons 4 tables contenant chacune environ 1 milliard de lignes, les lignes sont des tokens d'un corpus extraits pour une application de fouille de données textuelles, donc elle sont presque aléatoires et contenant beaucoup de bruit, pas (ou peu) formalisables.
Pour chaque colonne on crée un index pour chaque colonne, car l'application nécessite l'interrogation de n'importe quelle colonne par des requetes, et pas seulement une. les indexes sont créés par la commande:

 CREATE INDEX part1_idx  ON tableau1  USING btree  (lower(part1));

- Voici le resultat de iostat:

avg-cpu:  %user   %nice %system %iowait  %steal   %idle
                 6.82    0.01    0.16    0.70    0.00   92.31

Device:         rrqm/s   wrqm/s     r/s      w/s      rsec/s   wsec/s    avgrq-sz  avgqu-sz   await   svctm  %util
fd0                  0.00     0.00        0.00    0.00     0.00      0.00       8.00        0.00          44.00   44.00   0.00
sda                 0.62    23.99        2.03    1.57     298.72   204.44   139.80     0.18         49.02   5.12     1.84

- Os: UBUNTU 8.04, Postgres 8.3.

Voila, j'espère que vous avez les informations nécessaires, je suis a haute disponibilité, donc si vous avez d'autres questions n'hésitez pas.
Merci encore une fois pour votre intérêt.
Très cordialement.

Hors ligne

#5 20/04/2009 13:41:15

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Il n'y a pas d'index sur part3 et part4 ?


Guillaume.

Hors ligne

#6 20/04/2009 14:11:18

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

gleu a écrit :

Il n'y a pas d'index sur part3 et part4 ?

Bien sur que oui, chaque colonne est indexée, j'ai mis juste la commande de la colonne 1 parce que les autres sont exactement pareilles.
Désolé pour ce manque de clarté.

Hors ligne

#7 20/04/2009 15:58:35

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

La taille des index est peut-être différente ? (pg_relation_size du nom de l'index)

Est-ce qu'il y a eu des mises à jour sur cette table ?


Guillaume.

Hors ligne

#8 20/04/2009 16:04:03

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

gleu a écrit :

La taille des index est peut-être différente ? (pg_relation_size du nom de l'index)

Voici les détails:

SELECT
pg_size_pretty(pg_relation_size('part1_idx')),
pg_size_pretty(pg_relation_size('part2_idx')),
pg_size_pretty(pg_relation_size('part3_idx')),
pg_size_pretty(pg_relation_size('part4_idx'));


"26 GB";"26 GB";"26 GB";"26 GB"
gleu a écrit :

Est-ce qu'il y a eu des mises à jour sur cette table ?

Pas du tout.
Autes informations pouvant être utiles (bien que je ne sais pas leurs significations):

SELECT indexrelname,idx_scan,idx_tup_read,idx_tup_fetch FROM pg_stat_user_indexes;
relname    idx_scan   idx_tup_ READ  idx_tup_fetch
part1_idx  96             50892498        6568055
part2_idx  92             6332078         1904234
part3_idx  60             39407053       11838481
part4_idx  35             1754708         474258

Hors ligne

#9 20/04/2009 16:09:14

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Le contenu de chaque colonne est identique ? J'aimerais avoir le résultat de la requête suivante :

select * from pg_stats where tablename='tableau1';

avant et après ANALYZE sur la table.


Guillaume.

Hors ligne

#10 20/04/2009 16:41:34

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

gleu a écrit :

Le contenu de chaque colonne est identique ? J'aimerais avoir le résultat de la requête suivante :

select * from pg_stats where tablename='tableau1';

avant et après ANALYZE sur la table.

avant le analyze:

"schemaname";"tablename";"attname";"null_frac";"avg_width";"n_distinct";"correlation"
"public";           "fourgrams";"part3";     0;               5;              58230;        0.143987
"public";           "fourgrams";"part1";     0;               5;             41785;         0.547902
"public";            "fourgrams";"part2";     0;              5;              54479;         0.100474
"public";            "fourgrams";"part4";     0;              5;              52760;         0.0777063
"public";            "fourgrams";"freq";      0;               8;              6003;         -0.0128146

Bien sur ici j'ai enlevé les colonnes ("most_common_vals";"most_common_freqs";"histogram_bounds") parce qu'elle sont très larges.
Le analyze est en cours d'exécution, je ne pense pas qu'il y aura de différences dans les résultats, parce que je l'ai exécuté plusieurs fois, sans rien changer dans la table, en tout cas je vous poste le résultat des qu'il soit affiché.

Dernière modification par solicel (20/04/2009 16:44:35)

Hors ligne

#11 20/04/2009 16:48:46

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

C'est dommage de ne pas avoir inclus ces colonnes, ce sont les plus intéressantes dans le cas de colonnes texte.


Guillaume.

Hors ligne

#12 20/04/2009 17:04:00

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Comme on ne peut pas attacher des fichiers, je suis obligé dans ce cas de deviser chaque résultat sur deux parties, car la limite des messages du forum est de 64ko, tandis que le résultat est de taille 102Ko.
Commençons:
Avant analyze:

"schemaname";"tablename";"attname";"null_frac";"avg_width";"n_distinct";"most_common_vals";"most_common_freqs";"histogram_bounds";"correlation"
"public";"fourgrams";"part3";0;5;58230;"{"","",the,and,-,of,to,:,a,<UNK>,in,(,),for,""\"""",is,on,that,/,with,'s,by,or,|,are,at,as,be,from,not,this,&,you,it,I,an,;,',...,],>,your,was,$,The,will,[,?,1,all,!,have,2,has,can,which,more,*,their,one,his,we,but,they,A,my,=,about,any,its,up,our,3,other,0,+,so,who,when,he,--,%,out,new,been,if,4,were,#,no,.,also,some,them,these,had,would,may,time,two,2005,free,into,only,5,her,over,than,@,just,me,""\\"",people,6,use,through,do,should,New,such,what,10,first,there,PM,12,now,information,many,2004,each,data,like,very,work,7,US,get,said,she,·,does,here,2003,most,under,In,de,see,services,C,after,being,make,»,those,business,system,2006,8,service,then,home,before,help,us,AM,high,how,must,him,because,including,shall,between,sex,Home,day,made,site,where,Services,..,~,good,i,online,20,even,based,during,For,much,used,using,well,own,""{"",15,9,could,file,three,Web,x,All,back,different,take,To,year,2002,Center,last,program,B,software,years,off,page,school,News,American,available,set,support,THE,web,women,pm,within,You,£,big,down,Information,long,<,Hotel,little,100,public,research,This,both,Business,while,Your,full,great,per,life,products,2000,am,did,line,number,since,still,University,part,small,11,24,Inc.,provide,©,another,County,Free,January,right,second,AND,Service,City,every,management,old,same,without,14,25,best,OF,against,days,X,young,13,go,May,Â,area,E,Management,way,hot,power,related,And,DVD,House,M,major,students,18,2001,children,development,found,John,s,something,®,following,local,men,place,teen,UK,book,change,D,design,find,health,R,30,game,process,really,too,video,water,""}"",50,company,Park,S,state,times,type,World,control,model,N,need,16,form,four,name,Of,several,Black,Group,love,training,value,around,issues,It,list,More,On,Program,size,Street,world,`,e,Internet,open,quality,real,results,special,System,0.00,activities,always,God,Jan,music,Page,programs,rate,show,systems,case,CD,either,general,Health,include,less,please,Software,State,TO,21,access,again,family,million,Music,No,order,play,T,17,car,Club,contact,man,complete,email,General,look,National,School,section,^,black,community,December,got,group,items,job,June,key,One,top,call,check,English,international,J.,making,North,Online,others,plan,product,Real,required,Research,search,Series,Site,things,class,come,current,end,might,next,return,security,stories,Systems,test,Time,further,L,network,PC,problems,property,put,San,single,standard,total,USA,West,26,28,bad,cost,given,II,language,level,March,news,nude,project,provides,until,users,Windows,Day,few,gay,Hotels,low,My,P,porn,report,says,South,study,upon,version,19,1998,23,analysis,code,Company,girl,government,IN,interest,large,market,October,once,problem,room,Search,United,White,areas,hours,never,Phone,private,'re,Report,Road,tools,become,better,Board,Date,give,going,History,human,London,material,November,post,rather,read,resources,specific,together,27,buy,called,changes,child,Contact,course,experience,main,mature,minutes,party,policy,Products,values,week,06,address,America,Art,Blue,content,Development,function,hand,income,know,links,near,night,offer,office,pay,percent,performance,t,team,today,With,....,above,body,Book,CA,Canada,F,food,girls,hear,High,hotel,individual,link,members,Red,space,St.,TV,Video,working,already,below,Education,having,includes,least,money,needs,price,Project,reading,Technology,website,white,yet,across,action,away,came,College,common,Community,computer,Digital,East,et,features,files,industry,July,learning,M.,means,n,O,Other,position,Security,September,staff,'ve,want,went,22,31,40,About,Air,applications,care,credit,Data,energy,February,hard,history,law,left,movie,national,pages,poker,Power,requirements,Review,rights,say,start,tax,teens,various,Association,companies,conditions,costs,Council,create,date,groups,growth,K,light,Network,NEW,question,technology,View,w,01,add,application,Best,download,equipment,feel,future,higher,International,materials,meeting,No.,Our,personal,Pro,provided,Public,social,though,turn,words,writing,al,allow,Beach,building,client,Conference,country,education,far,format,games,heart,included,jobs,Lake,let,Library,live,m,Mr.,Open,point,possible,Posts,received,review,run,series,server,short,Special,style,Virginia,along,Central,Department,doing,economic,FOR,Forum,Game,Guide,H,Human,lost,plans,professional,recent,Robert,Society,standards,story,subject,travel,user,We,1997,activity,benefits,bit,Committee,etc.,everything,fast,From,gallery,head,insurance,keep,known,Member,month,offers,rates,Read,save,side,St,treatment,V,view,whole,why,added,amount,art,asked,By,c,C.,close,command,cut,existing,final,G,Games,getting,image,images,important,Insurance,IT,James,living,medical,meet,phone,plus,political,risk,S.,sales,shows,studies,tell,Travel,What,0.000,05,1996,1999,60,°,August,Box,color,Computer,David,due,easy,especially,events,field,Gold,held,house,Is,la,lines,Media,move,non,picture,points,Rating,request,response,Set,sound,states,strong,text,think,true,v.,almost,among,anything,Blog,Design,drug,Email,entry,Family,First,How,Life,mail,mean,message,needed,Office,organization,paper,parts,perfect,Plan,Price,range,Resources,Section,six,source,taking,Training,W,Women,write,04,Act,blue,click,Co.,Collection,currently,details,event,female,film,fire,functions,Great,latest,Magazine,Main,MD,Medical,Monday,oil,Part,period,Photo,physical,providing,record,running,share,simple,sites,Smith,someone,understand,Up,uses,works,02,29,32,§,account,additional,age,April,California,card,Centre,cover,documents,double,enough,EST,failure,favorite,guide,huge,Island,item,Law,lead,looking,'m,Microsoft,months,options,p,Paul,payment,person,President,prices,proposed,PST,thought,throughout,unique,whose,word,---,200,Accessories,active,Big,board,books,bring,British}";"{0.0482267,0.0331767,0.02171,0.0213133,0.01578,0.01501,0.01372,0.0128567,0.0124367,0.01202,0.0120133,0.0098,0.00808,0.00686333,0.0064,0.0052,0.00496333,0.00492,0.00456667,0.00429,0.00411667,0.00383667,0.00357333,0.00342,0.00334333,0.00308667,0.00307667,0.00297,0.00257333,0.0025,0.00245,0.00242667,0.00240333,0.00239,0.00235667,0.00225667,0.00223333,0.00223,0.00212667,0.00209,0.00202333,0.00199,0.00198,0.00189667,0.00187667,0.00182667,0.00179,0.00178667,0.00166667,0.00165,0.00162,0.00153,0.00144333,0.00128,0.00126667,0.00126333,0.00126,0.00124333,0.00124,0.00122667,0.00120333,0.00116667,0.00109,0.00108333,0.00108333,0.00108,0.00107,0.00105,0.00100333,0.000963333,0.00096,0.000956667,0.000956667,0.000946667,0.000933333,0.000926667,0.000923333,0.000903333,0.0009,0.000873333,0.00086,0.00086,0.000856667,0.000826667,0.000823333,0.000813333,0.000796667,0.000786667,0.00076,0.00075,0.000733333,0.000726667,0.000713333,0.00071,0.000706667,0.000706667,0.000703333,0.000696667,0.000696667,0.00069,0.00068,0.00068,0.000676667,0.000673333,0.000663333,0.000653333,0.000646667,0.00063,0.000613333,0.00061,0.0006,0.000596667,0.000586667,0.000586667,0.000576667,0.00056,0.00056,0.000556667,0.000553333,0.000553333,0.000546667,0.000533333,0.000533333,0.000526667,0.000523333,0.000516667,0.000506667,0.000506667,0.000483333,0.00048,0.000473333,0.000473333,0.00046,0.00046,0.000443333,0.000443333,0.00044,0.00044,0.00044,0.000436667,0.000436667,0.000436667,0.000433333,0.00043,0.000426667,0.000423333,0.000413333,0.000413333,0.000413333,0.00041,0.000406667,0.000406667,0.000406667,0.000403333,0.000403333,0.0004,0.0004,0.000393333,0.000393333,0.000386667,0.000386667,0.000383333,0.00038,0.000376667,0.000376667,0.000373333,0.000373333,0.000373333,0.000373333,0.00037,0.000363333,0.000363333,0.000363333,0.00036,0.00036,0.000356667,0.000353333,0.000353333,0.000353333,0.000353333,0.00035,0.000346667,0.000343333,0.000343333,0.00034,0.00034,0.000336667,0.000336667,0.00033,0.00033,0.00033,0.00033,0.000326667,0.000326667,0.000326667,0.000323333,0.00032,0.00032,0.00032,0.00032,0.00032,0.00032,0.00032,0.00032,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000313333,0.000313333,0.000313333,0.000313333,0.00031,0.00031,0.00031,0.000306667,0.000306667,0.000306667,0.000303333,0.0003,0.0003,0.0003,0.0003,0.0003,0.000296667,0.000296667,0.000293333,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000276667,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,***,00000,00:35,01-22-06,02:18,03:30,0.5,0.673828,0.828,.0987548828125,""100,000"",1026,1058272800,1.0a,1/11/2004,11:43,+1.200,12:33,+1295,135,14:22,1.5,155795,16:26,17246,18.00,1865-67,"",191,2"",194RS,1977,1989,1995,1st,2002-04-02,2006November,2075DWRWC,2-15-1,2/26/03,2397,250,26.3,2.8GB,2ND,30.70,32452,3-4,3.53,37,390D6559,4.0,4:11,4.3.3,45373,48,4th,51,5/30/2005,56,5BD,60GB,6:30,66,6C,71,741,""77,777"",80.04,844.00,897,9-12,959303,994.00,¨,“,±,è,×,ù,ab,absolute,Academy,accessible,accordingly,Ace,acquire,actions,actually,Add,adequately,administrative,adopts,advances,advice,affairs,African,agency,Agnes,aguilera,air,AJ,Albert,Alexander,ALL,allowing,Also,Amalgamated,amendments,Amtrak,analyst,ANG,animals,announced,Answer,Antonio,ap,apparent,appliance,apporval,approves,arbitre,Ardkill,arise,Arnold,article,artists,ASCII,ask,assault,Assic,associated,Aswan,ATM,attempts,attribute,Audio,Australia,authority,Automate,Avatar,Aviation,Away,b,baby,Backstreet,Baker,Baltimore,Bank,Bar,bars,Basic,Batman,BBB,Beads,beautiful,Bed,begin,behind,Belmark,Benefits,bestiality,biased,Bikini,binary,biotechnology,bizarre,Blast,blog,blow,boards,Bogota,Bone,Boom,Borrower,boundaries,boy,Bradford,brass,breasts,Bridges,broadcast,Brothers,Brut,Buds,BUILDING,Bundles,bus,Butler,buying,Ca,Caddo,Calendar,Cam,campaign,Canadian,Canoe,Cape,Car,Cards,Carlos,cars,CASE,CASPIAN,catching,cause,CCM,Celebrity,cent,Century,Certified,Chair,Championship,channel,characteristics,Charles,Chaudhari,Cheese,chestnut,childhood,chips,chorale,christmas,Churchill,circumstances,citys,Clamshell,Classic,cleaning,clicking,CLIP,clothes,CM24,Coast,Code,coins,collectible,Collinsville,COLOURS,combines,coming,Commerce,committee,communications,Compare,Competitive,complex,compounds,conception,concrete,conference,conflict,Connecting,conservative,consists,construct,Consumer,contains,continental,contractor,controlling,Convertible,cooper,copying,Corn,corporations,cosmetic,counselling,county,court,covering,Crafter,creates,Credits,Crisps,Cross,Crystal,Cubs,cumming,Current,Customer,Cybershot,'d,daily,Damrau,dark,Dataquest,DAY,De,deans,debut,Decision,dedicated,defeated,definitely,delayed,delivery,Democrats,Denver,Depot,describe,designed,Desktopcalender,detect,dev.c,device,Diabetes,diazepam,diets,digital,dinner,directly,Directory,Disclaimer,discrimination,dishes,displayed,distributed,disturbing,DJ,doctor,dog,domain,done,dot,Downloader,dragon,dreamcast,drive,drop,dry,dudes,duties,dZ,early,easier,EBONY,ed,Edition,Edward,efficacy,EGYPTIAN,Elderly,Electronics,Elizabeth,Embedded,Empire,emporium,Encoding,ends,engine,enhancement,ensure,entière,environment,Epinions.com,equipped,error,essay,Estate,ethical,European,Event,everytime,exactly,excellent,excluded,Exercise,expanding,Experience,exploit,Express,extensor,Eydie,F.3d,facilities,facts,fairlady54,FALSE,fantasy,FARNSWORTH,father,FBI,featuring,feed,Felix,Festival,Field,figures,Film,Finance,finding,FinishingTouch,fiscal,fitting,FL,Flat,flips,flow,Fly,folder,Food,Force,forests,formed,Fortress,Foundation,FragranceAve.com,Frank,Freeman,friction,Fritz,fuck,Full,Fund,Fur,G.,galleries,Gamma,garments,Gateway,GDA94,Genealogy,Genesis,George,Get,Giants,Gina,Gizeh,global,GMS,GOD,Golf,Goose,governmental,gra'feldr,grants,GREAT,greenlight,Grito,growing,GUARDIAN,GUINEA,guys,Habib,Half,Hand,handset,Här,Harley,hast,Haynes,header,hearing,heavy,helmet,Hendrick,herein,Hidden,hill,hire,Hit,Hoffman,holiday,Homepage,honored,horn,Hospitals,hotels,housing,HRSICINST,huh,Hunters,hydrogen,IBM,idea,Identify,ifdef,illegal,imagination,impact,implied,improvement,INCADAT,inclusive,Increasing,Index,indication,industries,infinite,INFORMATION,initially,Inn,inscription,install,institutes,instruments,Intel,intercession,interior,interpreted,intolerance,investigate,involve,iPod,irq,Islands,ISSUED,itself,Jack,jane,Java,jenn,Jewelry,Job,JOIN,Joseph,Jr.,Julie,JUST,Kamloops,KAYLA,Kelly,Key,kid,Kilts,kit,km,KNOWS,Kraig,KY,Lab,lacy,lam,lands,Laptops,LASERPOD,Latest,Laureate,lawyers,le,League,leather,led,LEGION,Lennox,lessons,Level,lib,license,Lift,likely,limiting,lingere,Linux,LISTED,Literature,lives,Loaches,Locale,Lockhart,logo,Lonnie,lorries,lots,loves,Ltd,lumaciel,lyrics,MacGregor,Madhousegifts,mah,maintain,makes,Malo,managers,manner,Many,Marathon,mark,Markets,Martin,Massachusetts,match,Matrix,maximum,McCoach,meaning,mechanism,Medicine,MEGA,Membership,mental,Meridia,metal,Methods,mi,Microphone,migrated,milfhunter,Miller,Minh,Minnesota,MISC,misstatements,ml,Mobile,models,modnorm,momento,monitoring,monthly,Morhaim,moshing,Motorola,mouth,Movies,MPL,MTU,Multiple,Museum,MY,nói,named,Nasty,nature,NCI,necessity,neighbourhood,Netgear,Nevada,Newton,Nickel,nipple,nobody,none,normative,NOT,nothing,NOVE,nuclear,numbers,NY,object,observer,occupied,odds,Offers,offset,Ojoo,olympic,ones,openings,operations,Opportunity,Options,orchestral,organic,Orhtopaedic,Orthodox,Otto,outlet,Outstrips,overnight,owners,P25,package,PADI,painted,pamela,Paper,parallels,Parish,participate,partners,passes,patent,Patriots,paying,PCT,Peak,Penang,peptide,Performing,permits,perspective,PFA421,phenomenon,Phones,photos,Piano,pictures,Pigment,Pinnacle,Pixels,placing,Plans,plates,players,PLEASE,PMH,Point,Policies,Polyclinics,Pop,Pornstar,Portuguese,postage,Potassium,Powerbelt,Practical,pre,Prefer,preparation,present,president,Pretty,Prices,Principal,Printing,privileged,procedures,processors,production,profile,Programming,Projects,proof,proposals,Protection,providers,PSR,publish,pump,purification,pussy,Q4,Quality,queries,QuickSearch,Qwest,Racing,raft,Ralph,rankles,rated,Ray,Re,readUTF,reasonable,receive,Recipient,Reconstruction,recovery,Redhead,reference,reflective,regards,REGISTER,Regulation,relations,Release,relocate,reminiscent,rending,repair,Reply,representation,requested,Rescue,Residence,resonate,respondent,rested,retail,returned,reversed,rewatch,rich,rifles,Ringtones,River,Robe,rodeo,romantic,ROOT,round,Roy,rubber,rules,Russian,S8034,safety,salary,Salmon,Samsung,Sao,saturated,savings,Scale,Scene,Schmitt,science,scooped,Scottish,Script,seamless,seats,secrets,seduce,seems,selected,sell,send,senses,separate,serious,serves,sets,severe,SG,shape,SHAW,shemale,Shipper,shoip,Short,Shower,Sicherheitspolizei,signal,silver,simply,SINGLE,sitting,Sketchbooks,skullcar,Sleeve,slow,smell,Snap,SO23,soft,sole,solutions,somewhat,Sony,soul,southern,Spalding,speaking,specifically,speed,spies,spoken,spot,Springs,squirmed,stable,stamp,star,starting,States,statue,steak,Stephenson,sticky,stolen,storage,Stourport,strategies,strengthen,stroke,Stuart,studio,Styles,submission,substantial,successfully,Sugar,Sulligent,Sunday,SuperKaramba,supply,sur,surrendered,suspension,SWEDEN,SWOTS,synthesizer,Tabbs,tag,tale,Tanis,Tarinci,taxes,teacher,Tech,Technologies,telephone,temperature,tendering,termination,Test,Texas,thank,Theme,therefore,Thing,Thomas,Threaded,Thu,tickets,tilt,Tips,tits,todos,Tommy,tool,Topical,tossed,tourism,tower,TR,TRADE,Trailer,transfer,transmitted,Traveland,tree,triangles,Trip,truck,TRX300EX,tube,Tunnel,Tutorials,TX,TZ,uk,unable,underlying,UNIFORM,units,unless,untitled,upgrade,Urban,USD,Using,utopia,Vacancies,Valley,vaporize,VBA,Velociraptors,Vernon,Veterinary,vic,Vietnam,villes,virtual,Visited,vivid,vol,volunteers,voyeurweb,W9,Wales,Walton,ware,Warwick,Watch,WAV,weapons,webpage,Wedel,weighing,Wembley,WHAT,Whey,Whore,Wife,WILLIAM,window,winter,wistfully,Wolff,Wood,worked,Workstation,Worth,Writing,WW,XA,XP,Y,Yasser,yesterday,YOU,Yu,Zhongguo,ZZYY}";0.143987
"public";"fourgrams";"part1";0;5;41785;"{<S>,"","",the,-,and,of,to,<UNK>,:,a,(,in,for,),""\"""",The,is,with,/,that,'s,by,on,or,not,|,are,as,from,I,be,you,was,this,at,it,&,an,>,have,',[,your,],1,A,$,can,all,will,has,2,...,*,their,but,more,which,we,=,they,one,his,up,0,about,other,were,who,my,3,+,In,This,our,been,he,new,would,its,%,only,--,time,2005,out,any,into,had,so,also,when,do,no,use,4,some,#,5,if,these,than,free,her,""\\"",like,most,through,We,such,For,It,year,New,first,may,All,Re,10,there,information,just,should,used,To,over,then,two,»,US,2006,If,work,many,well,me,what,each,them,©,get,she,people,set,very,see,2003,From,made,make,8,good,Home,those,after,2004,now,site,You,9,de,6,between,how,where,12,20,way,sex,·,before,No,And,based,much,need,number,7,being,must,using,@,back,<,i,He,public,him,said,did,system,years,us,C,data,day,high,same,Your,find,know,~,2002,including,Of,11,£,business,s,x,But,OF,both,even,go,services,American,because,under,long,online,different,school,water,""{"",great,Free,help,off,state,best,could,here,available,group,15,D,down,Information,really,support,THE,What,With,An,does,found,home,My,S,City,power,service,They,Other,provide,quality,right,think,25,large,More,own,three,University,30,Jan,'m,One,take,c,Online,program,These,..,24,case,Hotel,message,shall,following,General,IN,list,non,'re,end,last,show,X,®,Web,book,Our,provides,development,file,teen,'ve,B,better,control,am,line,within,World,16,John,North,nude,When,during,How,members,still,while,Â,By,form,Internet,See,video,""}"",AND,another,around,Business,family,given,'ll,name,place,world,children,full,News,result,That,UK,without,company,girls,Music,test,0.00,every,four,include,per,Services,States,against,big,gay,God,government,phone,R,Site,State,study,There,As,little,things,18,Black,Center,Contact,High,process,View,100,game,Health,National,next,order,page,read,second,software,South,sure,young,2001,Best,give,level,might,web,2000,always,community,Date,Education,got,important,love,part,private,small,special,students,TO,About,building,E,International,less,M,put,School,Search,26,access,address,English,example,life,person,several,type,17,28,come,days,East,Good,local,pay,plan,York,California,care,code,contact,major,real,report,too,w,50,Community,design,European,link,money,N,present,search,since,13,After,application,country,date,Design,done,general,Group,law,May,pm,Service,Time,21,computer,fact,features,job,million,never,On,question,run,She,story,West,---,America,b,Is,look,open,Page,Posts,Red,results,sites,student,version,^,away,city,common,Estate,Get,health,light,live,problem,Program,project,Research,So,staff,view,14,already,become,black,complete,Data,due,early,History,issue,Mr.,old,performance,recent,section,source,technology,top,week,working,`,22,60,amount,buy,Computer,course,current,ever,low,Management,network,offer,play,Price,product,says,security,taken,treatment,cost,Council,effective,First,going,PM,Posted,Products,research,room,training,came,County,DVD,eBay,F,industry,James,L,Last,looking,needs,property,say,Science,start,systems,team,total,Two,value,W,women,written,19,23,able,areas,At,Board,car,Day,Development,email,ensure,H,House,least,mature,model,offers,P,point,post,return,something,types,words,above,Click,College,either,FOR,Guide,hand,K,London,mail,market,means,O,Park,Part,please,Power,price,problems,rate,related,risk,Series,standard,USA,user,V,29,action,ass,Bush,check,content,Copyright,Do,far,few,Florida,heart,human,image,man,Medical,n,national,Nov,possible,t,term,why,06,animal,called,construction,document,e,education,events,financial,hours,Just,main,makes,meeting,men,Not,Please,products,received,S.,Show,Software,subject,want,white,¤,Big,Buy,change,companies,Court,developed,feel,having,hot,items,making,music,night,often,personal,record,request,TV,....,adult,among,Canada,Car,Conference,Find,further,future,head,higher,key,leading,news,receive,San,T,today,Total,users,whether,window,1999,agency,allow,Any,average,body,details,evidence,face,greater,half,July,knowledge,known,language,left,lesbian,Links,Local,Member,November,others,outside,porn,Post,providing,rates,resources,save,select,simple,Special,times,Video,White,27,Art,Care,cases,child,Club,Code,Committee,David,Digital,enough,function,Great,Hotels,interest,legal,Library,move,movie,mp3,NEW,policy,programs,schools,specific,Systems,until,war,wide,Year,analysis,anyone,art,Books,class,deal,device,E.,effects,etc.,former,hard,info,kind,Members,necessary,position,professional,required,Section,size,social,space,Travel,try,unit,01,Are,Australia,Central,credit,drug,focus,Government,However,issues,management,mean,meet,Note,Number,office,Office,posted,President,Press,role,spent,Support,System,text,Us,Use,values,visit,While,0.000,02,°,Act,add,added,additional,Blue,CA,call,court,D.,death,experience,G,goes,held,history,Inc.,international,Law,Man,Mar,mind,natural,nice,pages,paper,percent,potential,provided,reports,response,review,shows,Table,terms,Top,United,Women,200,A.,Â¥,across,actually,bit,box,cell,collection,countries,customers,field,Forum,Go,individual,IT,library,Media,methods,months,once,photos,practice,Read,Report,requirements,seen,selection,self,simply,Sony,studies,Texas,upon,Where,whole,Windows,y,05,Accessories,activities,Add,area,Area,assistance,Beach,books,built,certain,click,close,create,involved,J.,January,keep,land,member,party,protect,range,RE,red,share,similar,someone,Sports,Staff,strong,Team,thing,Tour,turn,various,Washington,Water,website,benefit,Brown,client,created,d,'d,December,Director,established,film,games,led,levels,List,Name,names,Network,Open,period,president,prices,Professional,pussy,rather,reference,Set,Shop,single,Smith,title,Title,together,Why,addition,anything,approach,card,CD,Chapter,Chris}";"{0.07888,0.03823,0.0267867,0.0198867,0.0186967,0.0176567,0.01383,0.0123333,0.0118467,0.0113433,0.00954667,0.00862667,0.00695667,0.00679333,0.00657333,0.00557,0.00522,0.00489,0.00466,0.00430667,0.00415333,0.00413333,0.00406,0.00356667,0.00314667,0.00290333,0.00282333,0.00268333,0.00266333,0.00265667,0.00263333,0.00237667,0.00226333,0.00225667,0.00223333,0.00220333,0.00215667,0.00208333,0.00200667,0.002,0.00197,0.00187667,0.00179333,0.00179,0.00177333,0.00158333,0.00158,0.00153,0.00151,0.00143667,0.00141667,0.00140333,0.00129,0.00126333,0.00121333,0.0012,0.00119333,0.00118667,0.00117,0.00110667,0.0011,0.00108333,0.00107333,0.00103667,0.00102,0.00101667,0.00101667,0.00101333,0.001,0.00099,0.000986667,0.00095,0.000946667,0.000943333,0.00091,0.000896667,0.000886667,0.000886667,0.000876667,0.000846667,0.000843333,0.00084,0.000836667,0.000796667,0.000793333,0.00078,0.000773333,0.000773333,0.00077,0.00076,0.000753333,0.000743333,0.00073,0.00073,0.000726667,0.00072,0.000713333,0.00069,0.000666667,0.000666667,0.000633333,0.000596667,0.000593333,0.000593333,0.00059,0.00059,0.000583333,0.000583333,0.000583333,0.000576667,0.000573333,0.000573333,0.00057,0.000563333,0.000556667,0.000553333,0.00055,0.000546667,0.00054,0.00054,0.00053,0.00053,0.000526667,0.000526667,0.00051,0.000503333,0.000503333,0.0005,0.00049,0.00049,0.000483333,0.000476667,0.000476667,0.00047,0.00047,0.000466667,0.000466667,0.000463333,0.000463333,0.00046,0.000453333,0.000453333,0.00045,0.00045,0.000446667,0.00044,0.000436667,0.000436667,0.000436667,0.000436667,0.000433333,0.000433333,0.00043,0.000426667,0.000423333,0.00042,0.00042,0.000416667,0.000416667,0.000413333,0.000413333,0.00041,0.000406667,0.000406667,0.000406667,0.000396667,0.000396667,0.000396667,0.00039,0.000386667,0.000386667,0.000386667,0.000383333,0.00038,0.00038,0.00038,0.00038,0.000376667,0.000376667,0.000373333,0.000373333,0.000366667,0.000366667,0.000363333,0.000363333,0.00036,0.00036,0.000353333,0.000353333,0.00035,0.00035,0.00035,0.000346667,0.000336667,0.000336667,0.000336667,0.000336667,0.000336667,0.000336667,0.00033,0.00033,0.000326667,0.000326667,0.000326667,0.000323333,0.00032,0.00032,0.00032,0.00032,0.00032,0.000316667,0.000316667,0.000313333,0.000313333,0.000313333,0.000313333,0.00031,0.000306667,0.000306667,0.000303333,0.000303333,0.0003,0.000296667,0.000296667,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00028,0.00028,0.00028,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000276667,0.000276667,0.000276667,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,***,00013,0.05,01/19/2006,0.20,04,0.533333,07/27/05,09,-1.0,101,104,108,1100540741,1126550400,1.1D,12:28:16,1.3.0,13865-13875,1481,15:24,161,170,180181,1892,19266-19276,1969,1987-1992,1996,1.diff.gz,20.01,2006-01-23,20pin,220.00,232.5,24k,26.00,2.82227,2k,306,32,33.99,35.00,373,3D,400,42,4:35,457,486,5.00,5.2,56,59940,611,64,671,700w,7:35,7.75,81,87,9:00,9:49,997,¬,”,˜,á,Æ,¹,abandoned,absence,AC52,accepting,Accommodations,Accounting,achieved,acquires,active,ad,Address,adjusted,adopted,Advanced,Advertising,AERONET,affordable,AG,agencies,ago,Agriculture,aims,Airplane,AL,Album,ALIA,allergies,alma,alpine,Although,amateur,amendment,amounts,Analyst,Anekdota,animals,Annointed.net,Another,anti,anybody,apart,appear,applicable,apply,appropriation,Aproximately,architecture,argues,Army,ART,ARTICLES,AS,Asian,Aspect,Assessment,Associate,assumptions,Atlanta,Attached,attends,auction,Aug,Authentic,authors,Autumn,avoiding,AY,B19,Baby,backpage.com,Bags,balloon,bangbus,Baptist,barren,baseman,Basquiat,Battery,Bbw,Bean,BEAUTIFUL,bed,begging,Beijing,Belmont,benefits,beta,Bhd.,bike,binding,biotin,BizTalk,BLC,Blog,Blow,BMP,Bobby,bondage,booked,Borders,bother,Bowdon,boys,brand,BREAK,bribery,Bring,Broad,brother,brunette,Buena,Building,Bunnies,bush,buttonbox,C.,CABLE,calcium,calling,Camera,CampusMinistry,candidate,capabilities,Capsules,cared,carotid,cartoon,Cash,catalog,cater,Causeway,CEF,Celsius,central,certainly,Chain,Champion,changes,chapter,charged,Charts,Check,Cheney,Chief,China,Choose,Christina,church,Circle,CITY,claims,classes,clean,CLEVELEYS,clips,clothesline,co,Cobourg,Coffee,Colinas,collector,colorspace,combined,comics,Comment,commercials,Common,CompactorsPortable,compensation,complementary,Compliance,compression,concentration,concert,conditions,confidentiality,confronted,connectivity,consider,console,constructive,contain,contest,contract,Control,convert,Cooling,Copy,corner,correct,costs,count,Coupler,cover,cpuinfo,Crazy,Creative,crews,critique,crucial,CTR,Cum,Current,custom,cutting,d12,Daintree,Dance,darkness,dating,DC,dealing,debt,Decimal,decorated,Deer,definitely,delay,Delivery,demonstrate,department,deposited,described,designed,desperate,detecting,Dev,Deviant,Diaconescu,dicks,difference,digits,direct,directory,disaster,discounts,discussion,disodium,disputed,Distribution,diversified,DKNY,doctrinal,Dog,domain,dont,double,Download,Dr.,Drawer,drink,Driving,Dryway,Duma,Dutch,E1,Early,EAST,eCAMPUS,economy,edited,educational,Effects,egg,el,Electric,elements,else,EMBL,emphasis,empty,enclosed,endorsements,engaged,english,enrolments,entire,Enumclaw,EPA,equipment,Eric,escort,esta,et,EUGENE,Evangelion,eventually,evil,examples,excess,executive,exile,expansion,EXPERIENCED,explaining,expressing,Exterior,exxxhaust,Fa,facility,Faculty,faith,families,Fantasy,fashion,Fats,FCC,FEATURES,Fee,Feet,fertilizers,Fiction,fighting,files,filter,Financial,Fine,Fire,fishing,Five,Flag,Fleece,flood,Flowers,focused,Following,foo.o,forced,Forest,format,forum,Foundation,fraction,Francisco,freedom,frequently,friendly,Front,Fucked,fully,functor,funny,g,galahad,Game,Gap,gas,Gay,gem,generations,genuinely,German,getting,gift,girl,giving,GLENN,GLU,god,golf,Gore,Gown,Graduate,granted,Gravesites,Greenhouse,grooving,grow,GT.ZMAX,guide,gust,H.,hair,Hamilton,handler,hantla.org,hardly,harveyi,HAVE,header,heard,heavy,Hello,Henceforth,hereditary,Hi,highly,Himself,Historical,Hoad,Holds,Holt,Honda,Hopefully,Horses,HOSTING,hour,Houston,HR862,huge,hunks,hyperresponsiveness,ic,idea,identity,ignored,Illinois,Images,impact,implies,improved,incessantly,inclusion,increased,Index,indicate,Indoor,Infant,informants,Initial,Inn,insertions,installed,institutions,insurance,integrated,intense,interesting,Interment,intersection,introduced,invest,invited,IPod,irritation,isnt,Issues,itkPoint.h,J,JAMAICA,javascript,jenna,Jewish,jobs,Join,Joseph,jU,jump,Justice,können,kawasaki,kem,Kevin,kicked,Killers,Kingston,klicken,Knowledge,Korean,KV,La,LABTEC,Lake,landmarks,Large,late,LaTeX3,Lauren,lays,Leader,learn,Leather,leg,lemon,lesbians,Letter,Lh,libwv2,Life,lightweight,Limiting,lines,LINKS,listed,literally,lives,Lluniau,lobbying,Location,logical,Longpagewarning,loosen,loss,Lottery,Lovett,Ltd,Lunch,Lysophosphatidylcholines,MAC,Madison,magnificent,MainStay,MAKE,males,managers,Manor,map,marca,marine,Marketing,Martin,Massachusetts,matches,mathematical,Matthews,maybe,McKinley,measure,Medal,Mediterranean,mel,Memory,menus,Message,meter,mexico,Michael,mid,Mike,military,Mine,ministers,minutes,MISSED,Mitsubishi,MMM,mode,modern,moins,Money,Montana,Mora,mortgages,motion,Mountain,moviejack,mp3s,msec,Multi,murder,mustek,Mysteries,naked,NASCAR,Natural,nà y,nec,neighbor,nest,neuroanatomy,newsgroup,NHS,Nights,NL,Noir,Nonprofits,Northamptonshire,note,noticed,NRG,numbercruncher,NW,oath,O'Brien,occasion,Oct,Off,officer,Offshore,OK,Olly,Onkol,opened,operating,opinion,OPTEX,Or,Order,Organisers,original,Orthopedics,Ottawa,outlet,Over,owl,p,Pacino,padding,Painters,Pan,Paperback,parent,park,partial,particularly,parts,passing,Patent,Patrol,payload,pcoput04,Pecans,penis,Peoplesoft,Performance,permanent,Personnalisables,Peter,PHASE,Philosophy,photograph,Physical,pick,pictures,Piller,piss,placed,planned,Plants,played,plays,plump,podium,poke,Policy,polyethylene,popcorn,Porsche,posing,posters,pounds,Powers,practitioner,precisely,preliminary,prerequisite,presents,pressures,previous,primary,principles,prior,pro,procedures,produce,Production,profit,prohibition,promote,Property,prosecution,PROTEIN,Provides,PSC,Public,Publishing,pupils,purposes,Pythagoras,QT,quarter,questions,quite,Rabbi,radically,raised,Range,rated,Raytheon,readable,Real,reason,receiver,reckoning,Record,RedCross,refer,Reflective,regeneration,Registered,rehabilitation,relations,RELEASE,religious,remember,removed,Rental,reply,represented,requires,residential,resource,responses,Restaurants,Retail,returns,Review,reward,ribosomal,ride,rim,risks,road,Robin,ROI,Ronan,rose,ROUND,RoyMcAvoy,Rugs,running,rustic,Sabika,Safety,sales,SAMe,Sands,sash,Save,SB-800/600,scattering,Schmidhuber,Scientific,scratches,SD,season,Secondary,secure,seek,Select,Sell,send,sent,september,series,Servers,Seton,Seven,sexy,Shanghai,Shaved,Shepherd,shipping,shooting,SHORT,showed,shuttle,sigemptyset,SIGNED,Silver,SimplySmoke.com,Single,Sites,Size,skills,Slavuti4,SLIP,Small,smooth,SOAP,sodium,sold,solutions,somewhat,SONY,sound,souri,SPA,speak,species,speech,spilled,sponsored,Spouse,squamous,st,stages,Standards,started,Statement,Statistics,steal,Step,STI,stocks,Storage,stories,strategic,strength,String,structure,Students,style,subjects,subscribe,suburban,sued,Suite,summoned,super,Supplies,suppository,surprise,suspend,Sweden,switch,symptom,T1,tackling,Takes,Talking,Tap,task,Taxi,teacher,Tear,technologies,teens,Television,temples,Terk,terrorists,Tests,Thailand,Theatre,Theo,THERMOPLASTIC,third,Those,threaten,throws,Tia,tijdens,tiny,Tits,Today,Tom,Tony,topic,TOTAL,Towel,toys,Trader,Training,Transfer,Transport,Traveler,TREE,tribal,Trips,TRUCKDRIVERS,truth,Tucson,Turn,twiki,typical,Uganda,UN,undergoing,underway,Union,university,unregulated,update,Upper,URL,Useful,usually,v,Vacaville,valor,Variable,Vault,vehicles,Verilog,Very,via,victory,village,Virginia,Vision,Vital,Volcanoes,Voters,vua,Wainwright,wall,Wanted,warranting,Watch,Way,weather,wedding,weeks,weld,Western,wheels,Who,widespread,Wildlife,Wilson,Wines,Wireless,witherspoon,woman,WOODS,workers,worldwide,Wrinkle,wrong,www.Homes,Xbox,xx,yarn,yesterday,youdontwannaknow,z,Zinnser,Zz}";0.547902

Hors ligne

#13 20/04/2009 17:05:58

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Avant analyze (suite):

"public";"fourgrams";"part2";0;5;54479;"{"","",the,-,of,and,to,<UNK>,:,in,(,a,for,),is,""\"""",that,on,with,/,by,The,'s,from,or,|,are,at,as,>,',I,&,$,not,it,be,you,was,],this,an,will,have,your,[,has,A,1,all,2,...,=,can,*,about,my,more,their,which,+,other,new,up,we,were,his,one,they,our,2005,--,0,but,#,been,any,when,3,who,if,only,%,had,4,its,he,so,time,5,into,some,may,out,them,In,also,her,would,no,This,than,such,New,use,should,these,free,over,do,two,like,me,10,·,people,2006,@,just,through,»,what,2004,""\\"",6,information,before,after,she,US,must,those,most,see,very,8,used,work,And,first,£,For,using,between,how,many,us,11,get,online,All,could,then,there,under,data,each,12,where,7,good,now,made,de,Home,We,business,make,C,sex,To,~,system,within,because,year,You,Your,said,years,even,shall,support,down,site,..,being,It,x,20,2003,both,including,THE,15,©,day,does,life,back,during,great,International,Free,John,OF,public,services,Web,based,every,Information,off,pm,Services,way,American,service,am,file,Of,right,State,three,By,group,i,No,without,set,""{"",From,here,South,B,What,Business,government,home,.,say,well,100,help,own,him,Internet,really,City,find,On,teen,Hotel,last,News,order,Our,Re,since,9,D,family,know,Online,program,school,state,take,video,<,About,case,General,With,13,need,""}"",30,DVD,high,include,line,My,per,while,X,Â,second,Software,24,AND,community,different,M,May,still,University,black,Health,PM,S,TO,against,If,s,area,He,research,best,did,power,provide,Service,17,David,game,Center,little,number,2000,another,local,security,0.00,21,development,go,health,important,National,quality,software,until,14,Jan,major,never,why,access,come,High,man,name,Street,40,around,children,full,general,girls,law,level,old,products,project,teens,16,25,®,become,County,Education,human,much,`,18,2002,As,Location,N,North,They,web,always,available,contact,Date,e,end,following,music,results,several,size,T,Technology,too,type,world,AM,control,course,design,making,One,same,days,page,possible,programs,School,value,water,care,computer,Design,management,Management,market,problem,Special,specific,TV,women,50,city,company,date,English,million,point,post,training,above,Add,already,change,love,single,again,hot,L,left,list,Other,Park,period,property,run,search,Search,Site,study,want,West,22,big,class,Development,email,gay,Group,having,Life,low,Research,So,activities,But,E,four,includes,might,No.,non,R,better,book,call,Company,Dr.,God,got,large,message,Mr.,o,process,says,working,^,27,body,given,huge,international,issue,M.,mail,Music,news,open,others,Page,person,Posts,Price,Program,questions,'re,required,small,something,special,top,additional,An,At,Best,Blue,cost,features,Links,long,money,national,part,problems,put,related,students,systems,test,When,young,06,along,below,Contact,current,Day,experience,going,List,mean,porn,real,review,Road,room,team,think,w,World,address,G,His,individual,less,London,model,offers,points,Water,23,Black,CD,common,Digital,ever,girl,house,key,means,meet,More,party,production,result,show,These,Time,UK,user,05,°,America,Book,C.,Car,Community,Guide,hard,II,Inc.,look,often,plan,present,Project,See,Travel,education,FOR,found,House,Is,IT,light,pages,picture,Posted,provides,total,'ve,View,whether,1998,A.,asked,car,either,First,future,necessary,NEW,official,P,performance,posted,Report,Rock,space,System,users,2001,action,add,Board,Card,countries,give,items,main,n,next,original,Paul,professional,range,S.,t,technology,times,upon,19,application,April,c,card,changes,country,files,getting,hours,Media,members,PC,Red,resources,start,started,Texas,today,website,white,White,Windows,300,Act,analysis,California,China,consider,designed,excellent,food,Government,Green,image,Library,looking,media,needs,nude,Office,price,Public,server,St.,things,tools,USA,York,Air,apply,bit,called,child,College,East,economic,energy,face,IN,land,Law,let,link,lot,men,Microsoft,network,Number,Open,personal,pictures,read,Robert,Safety,section,Series,treatment,writing,yet,1999,actually,Big,cases,communication,companies,content,create,credit,drive,equipment,evidence,F,few,Great,Hotels,J.,known,lead,provided,side,tax,text,though,values,While,01,26,added,areas,Beach,Class,Club,early,Email,feel,financial,Food,History,January,kind,learning,lesbian,Medical,Michael,Model,Network,Not,October,paper,Phone,place,rate,re,share,social,Some,St,Support,Systems,Top,version,amount,ass,away,Bill,came,Canada,Code,comes,Description,directly,fat,Get,held,industry,J,O,Peter,please,private,Review,short,student,table,That,together,travel,W,week,William,Association,average,Bush,Buy,Data,Do,doing,due,efforts,European,fun,George,hand,interest,job,models,natural,Photo,policy,Power,reading,received,rules,separate,term,There,various,went,age,almost,Books,box,database,Drive,E.,eg,event,everyone,five,form,insurance,James,la,links,Man,materials,mp3,oil,once,Only,organization,outside,percent,product,Products,projects,Section,Sports,Valley,via,Video,Women,§,across,Art,Council,Department,documents,Europe,example,favorite,film,Find,history,How,increase,leading,live,makes,medical,member,offer,office,paid,probably,Security,self,sources,staff,standard,stay,step,Store,subject,taken,terms,trade,yourself,28,29,31,Administration,air,beautiful,Click,clients,copy,DC,double,final,Go,groups,hold,India,l,language,meeting,mind,near,Plan,Product,Small,store,style,thing,unique,Up,view,whose,**,Any,associated,Care,Centre,code,conditions,Country,developed,digital,distribution,download,drug,effective,enjoy,fact,French,further,heart,Hill,Institute,Island,jobs,July,pay,phone,Press,Pro,question,role,San,seems,She,shows,similar,Since,sites,source,weight,woman,works,y,Young,1996,Accessories,among,base,believe,buy,capacity,center,Central,church,color,d,effects}";"{0.04879,0.0251133,0.0219133,0.02109,0.02008,0.0167667,0.0129467,0.0127133,0.0125567,0.0116567,0.01154,0.00853,0.00773333,0.00679667,0.00619667,0.00534333,0.00525667,0.00511,0.00502,0.00461333,0.00460667,0.00395333,0.00359333,0.00348333,0.00341,0.00324333,0.00316,0.00314333,0.00236667,0.00235333,0.00233333,0.00226,0.00220667,0.00218333,0.00218,0.00213667,0.00212667,0.00212333,0.00211333,0.00209667,0.00208667,0.00197333,0.00196667,0.00183667,0.00170667,0.0017,0.00168333,0.00158667,0.00154667,0.0015,0.00149667,0.00148,0.00140667,0.0013,0.00129667,0.00120333,0.00119333,0.00119,0.00118667,0.00112,0.00111,0.00110333,0.0011,0.00106667,0.00106,0.00104,0.00104,0.00103667,0.00098,0.000956667,0.000923333,0.000916667,0.000896667,0.000876667,0.000876667,0.000873333,0.000873333,0.000863333,0.000853333,0.000843333,0.00083,0.000826667,0.00081,0.000803333,0.000796667,0.000793333,0.000773333,0.000773333,0.000753333,0.000736667,0.000733333,0.00072,0.000716667,0.00071,0.000706667,0.0007,0.000693333,0.000693333,0.000686667,0.00068,0.000676667,0.00067,0.00066,0.000643333,0.000626667,0.000626667,0.000623333,0.000623333,0.000603333,0.000596667,0.000586667,0.000586667,0.000573333,0.00057,0.000563333,0.00056,0.000556667,0.000553333,0.000546667,0.000526667,0.000526667,0.000516667,0.00049,0.00049,0.00049,0.000486667,0.000476667,0.000476667,0.000476667,0.000473333,0.000473333,0.00047,0.000466667,0.000466667,0.00046,0.000456667,0.000456667,0.000453333,0.000453333,0.00044,0.00044,0.000436667,0.00043,0.00043,0.00043,0.00043,0.000423333,0.000423333,0.00042,0.000416667,0.000416667,0.000416667,0.000416667,0.000416667,0.000413333,0.000413333,0.00041,0.00041,0.000406667,0.000406667,0.000406667,0.0004,0.000386667,0.00038,0.00038,0.000376667,0.000376667,0.000373333,0.000373333,0.000373333,0.00037,0.00037,0.00037,0.000366667,0.000366667,0.000366667,0.000366667,0.00036,0.00036,0.00035,0.00035,0.00035,0.000346667,0.000346667,0.000343333,0.000343333,0.000343333,0.000343333,0.00034,0.00034,0.000336667,0.000336667,0.000336667,0.000333333,0.000333333,0.000333333,0.000333333,0.000333333,0.00033,0.00033,0.00033,0.00033,0.000326667,0.000323333,0.000323333,0.000323333,0.000323333,0.00032,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000313333,0.000313333,0.00031,0.00031,0.00031,0.00031,0.00031,0.000306667,0.000303333,0.000303333,0.000303333,0.000303333,0.000303333,0.0003,0.000296667,0.000296667,0.000293333,0.000293333,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001}";"{``,....,.000,00:29,01.08.2006,02,03,04-23-2005,0.61,08,0h2p0,""100,000"",102,106.20,+11,11.18,11-50,12/07/2005,12.46,1301,1.390232,14k,155B,1648,174,183.485,1902,195196,1983,1993,1px,2001-2006,:202,21300,223.6,23937,""25,000"",267.5,2.88574,2P00,30C,321,34,3570,3776,3DN,406,428,44K,4700,4.9,500.00,522,55,58,60,6.2655,6.65,6th,71.95,75.00,80,8:21:55,873,9100,94.3,99-102,¦,Â’,ƒ,è,×,¾,aaliyah,abnormally,Abt,Acc,accessible,account,achieved,Acquisitions,activated,acts,ADD,addresses,Admin,adopted,Advance,Advertising,Aesop,Afghanistan,agaggaggag,Agent,agreement,aides,airports,Alabama,Alchemy,alicia,alligatorandme,Along,Althorp,amazing,Americas,Amsterdam,analyzed,Angeles,Animals,anniversay,Another,anti,anymore,Apache,appeals,applicable,appointment,approve,Arafat,archives,argues,army,arrogant,artificial,Ú,Asics,Assembler,assigning,assume,Ateneo,attached,attorney,audience,Augustine,author,AUTHORS,autopsy,Average,Award,Özel,Babe,Background,bag,Baldwin,Bandhani,Banners,bargains,Baseball,Basketball,battle,Be,beastility,becomes,beer,behavior,Bell,Beneficiary,Bernard,beverages,Bid,billing,biography,birthday,Blackjack,blew,Blogging,blowjob,Boards,Boeing,Bonds,Boos,Boss,bounce,Boxer,braceletitalian,BRAND,Breakfast,bride,bring,broadcast,BROTHERS,brushes,Budget,building,bundalong,Burton,butt,bytes,Cabinet,Cairo,Call,Camelstyle.net,Campmobile,cancer,Canterbury,capitol,cards,caring,Carrot,Case,Castelao,catching,Caught,CCA,CELEBRITY,cent,certain,CH,challenge,Change,CHAPMAN,charge,Charter,cheating,chemical,Chevrolet,Child,Chiswick,choosing,christina,Church,Circular,CIVIL,Classes,Clean,Cleveland,clinical,close,Clowns,co,coats,COG,colleagues,college,colouring,combined,command,Commerce,committed,COMMUNICATIONS,compared,compiler,complex,comprehensive,con,conclude,conduct,configuration,Congo,connections,considerable,Consortium,constructionism,consumption,contended,continuous,Contributions,Conversion,Cool,Copper,Cornelis,correct,Cosmology,councils,COUNTY,Court,covered,cra,Create,Credit,criminal,cross,Cruisin,ctrl,Culture,Current,Custom,cute,Cygnus,D.,Daleco,Danes,DATA,Dave,DDR2,deals,Debt,decided,Decor,default,defining,DEL,delivery,democratic,dental,deport,des,Designer,Destiny,determine,Developer,DEVOS,Dial,dictation,Dieterich,DigiPub,dioxins,DirectlyHome.com,disabilities,disclosed,discuss,Diseases,display,distinguished,Diver,DJ,Docking,DOE,Dolls,donation,doors,downfall,draft,dreadful,drivers,drumstick,Duchess,duration,DVDs,Ea,earth,easy,eBook,economy,edit,educational,Effects,Eight,election,Electrophorese,eliminating,emanating,emits,Employer,Enabling,ENDING,Engelbreit,ENGLAND,enquires,enterprise,entrance,environments,Equation,Ericsson,Escaping,EST,estimate,ethical,evaluate,Events,evokes,examples,excess,execution,exist,expected,expert,Explorer,Extend,extracted,f,facial,factors,failure,fall,famous,Far,fast,favorable,fear,February,feedback,Fellini,festival,field,Fiji,Film,finance,Fine,fire,firsthand,fit,FL,flavors,flood,flower,focused,Font,forced,Forest,FormBuilder,FORT,FOUND,fractions,Francois,freely,Friday,frog,FTC,fufkin,Function,funds,Future,Gaelic,Gallerys,Gamma,Garfield,gave,GEAR,generally,genetics,GEORGE,gevonden,gifts,Girls,glass,glove,goals,Golden,Goodbye,gotta,Grade,Grandpa,Gras,green,grocery,Grown,guards,Guillermo,Guys,H5N1,half,Hampshire,handling,happens,hardware,Harvard,Haven,head,Healthcare,heat,Heidi,helped,hentai,HERNIA,hidden,Hi.I,hire,hits,holder,Holliston,homosexuality,hope,horses,Hot,Hour,Howard,HST,Human,hunter,Hydraulic,Ianni,ID,identifiers,Ignis,Illinois,images,immunization,implementing,improved,incentive,income,incredible,indi,indirect,ineffective,Info,Inhaled,INJEX,innovative,insincere,instance,instructions,integrated,intent,interesting,Internally,intervals,Introduction,investing,involvement,IPS,iron,islands,issued,itchy,iug,Jaclyn,Japan,JBad,Jersey,Jill,Jock,joined,Jordan,Jovencitas,Judy,June,Justinian,Kandahar,Kaywa,Kelley,ketoglutarate,Khoury,killer,Kingdom,Kluane,Kobayashi,KRISPY,KZN,labeling,ladies,Lamen,Language,Larry,later,launched,layer,Le,Lean,leather,LED,Legal,lends,Lesieur,Letterkenny,Lex,library,lies,ligne,limited,lines,Linux,Listen,Little,living,loading,localized,Lockport,Logitech,longer,Lord,lost,LOUIS,lower,Luc,Luxist,m,Mac,maddeningly,Magic,Main,Maize,Malcolm,manager,Manitoba,MANUFACTURER,marble,Marist,markets,martin,Massage,material,matter,Maxtor,McDowell,ME,meat,Medicine,meilleur,memorabilia,Mental,Merigomish,messenger,Meteorological,Mets,michelle,Middlesbrough,miles,MILK,Minerals,Minister,minute,missile,Miyazaki,Mobile,Modern,Mold,Money,MONSTER,Moon,mortgage,Mother,MOTUL,move,movies,Mr,MSW,Multigoal,murdered,mustard,mysteriously,naked,Nanotechnology,Nations,Navigation,neat,neglected,nested,neurons,NewsRoom,NICE,nike,NK,Nokia,nops,Northern,Notebook,Notifiable,Now,Nuclear,nurses,NZ,objectives,OC,Oct,offense,OfficeTeam,Ohta,olds,onequarter,Opel,operation,Opportunities,option,Oral,ordinary,orgasm,Orleans,Others,Outdoor,Oval,overtaken,oxygen,P6SM,Packages,Paine,pamela,Paper,parameter,park,participant,partly,PARTY,past,Path,paul,PBPK,PE,PEGASYS,Pentello,perform,periodo,Personal,pest,pharmacies,PHILIP,PHOTO,Phu,Picasso,pid,PILOT,piss,placed,planned,planting,play,playing,PLEXIS,PMID,PointsHow,Police,politics,poor,porch,portfolio,positions,poster,Potger,powers,practices,PRECIOUS,premeire,prescription,President,Pretty,PREY,Prime,printed,Prisoner,procedure,Processing,Prof,profitableness,prohibited,promptness,proposal,protected,protocolDirTable,provinces,PSPSony,Publications,pull,purchase,pursue,Pwyl,qua,Quartet,queue,quite,R27,Radiant,Rail,Rand,rapes,rates,Ravens,reach,readiness,realized,REBOUND,recent,recognize,recording,rectangular,reducing,Reference,Reformatting,Regina,registers,rehabilitation,relationships,relevance,remain,Reminders,renowned,repeated,reported,represented,Request,requires,resident,Resorts,responded,Responsive,resulting,retrieve,reveal,revision,Rhode,Ricky,Rights,rise,RM452B,Robinson,roles,Romeo,rose,ROUND,Royal,Rugby,runway,Rx,sacred,saint,Salim,samples,Santos,SATISFIABLE,Savings,scalar,scene,scholgirls,Science,scorned,Screen,se,Searching,secondary,secure,seeks,selected,Seller,send,sensitive,Sept.,series,serving,setting,Sex,shadow,sharing,Shelburne,ship,shit,Shopping,ShoulderPlate,shut,SIERRASIL,Significance,Silver,Simpson,singled,Sites,Size,skills,slap,Slippers,SmartFTP,SMP,SO,Socket,solder,solved,son,soon,sound,Southeast,Spacious,spatial,Specials,spectrum,spending,spiritual,Sport,Spring,SQUASH,stacked,Stand,Star,statement,Station,steady,steps,Still,Stone,stored,story,strategies,stress,Stroke,Structures,Studios,subchapter,submitted,substitute,successfully,sugar,sulfate,Sun,superb,Supplies,sure,surrounding,Sussex,sweep,sworn,synthetic,Table,tailed,tales,Tanita,Tarnished,taxes,teacher,Tears,technologies,Tel,telling,Temporary,terapia,terror,Tests,thank,Their,Therapists,thin,Thomas,thousand,Throne,Thursday,tiebacks,Times,TIPS,Title,Tobacco,Tom,Too,topical,TOT,toured,town,Trabzon,Traditional,Training,Transfers,transportation,treated,trial,Trinité,TROUGH,try,Tuesday,turned,TWINF,Type,UAE,Ultra,UNCH,understand,Unicef,UNITED,unless,unto,UPDATED,Urban,USB,usernames,usually,v,VAC,Value,Variable,Vdata,velocity,Verne,Vet,victims,Viewing,violations,virus,visitors,vocal,voltages,votes,vs.,wagman,Walker,wanted,warming,Washington,waterfront,ways,weather,wedding,weeks,Well,WESTVACO,Whenever,Who,Wichita,Wiki,Willow,windows,Winter,wished,Wolcott,Woodland,Work,WORLD,wound,writes,WTOK,X1,xl,Xylella,Year,Yesterday,youngest,Z,ZIP,ZZ}";0.100474
"public";"fourgrams";"part4";0;5;52760;"{</S>,"","",.,the,and,-,to,of,<UNK>,),in,(,a,:,for,""\"""",is,on,that,with,/,or,by,'s,at,as,|,from,are,;,be,it,not,you,...,I,?,&,',1,!,an,this,>,],was,2,The,your,have,all,will,can,[,$,which,but,their,one,has,more,3,his,they,*,%,A,0,=,we,--,up,about,my,other,who,its,if,our,4,were,new,out,+,than,when,would,he,so,such,into,may,been,5,any,#,time,do,had,over,only,free,her,New,me,some,like,two,these,people,10,6,also,them,information,PM,there,no,just,use,should,work,2005,""\\"",used,what,through,after,under,US,because,well,now,could,each,make,7,first,year,between,@,sex,good,high,very,8,many,get,available,where,back,then,said,day,including,most,site,us,data,does,she,how,those,before,both,12,»,..,system,being,services,15,even,him,support,20,made,years,AM,home,set,11,see,i,off,14,de,In,here,using,much,must,within,state,~,9,·,different,Home,without,web,x,30,service,need,did,2004,go,long,State,down,per,""}"",last,18,2003,file,OF,order,right,shall,All,during,found,Information,number,online,University,16,Inc.,name,public,C,every,help,life,You,am,list,Page,s,To,based,business,place,program,while,17,2000,great,part,Services,take,<,another,local,next,students,health,Center,real,three,21,City,group,level,research,game,gay,More,School,water,""{"",development,e,E,THE,against,area,line,page,software,way,100,North,pm,Your,Â,B,full,Of,school,13,2002,big,News,own,required,still,world,19,22,25,control,John,South,T,Web,women,X,AND,end,include,project,around,best,County,non,things,United,want,24,And,better,For,Free,January,large,little,products,specific,2006,access,D,design,teen,value,National,nude,top,£,American,Business,CD,Jan,know,provide,type,2001,change,DVD,Internet,management,music,On,Online,S,training,UK,case,come,days,family,May,second,Service,TO,Hotel,M,members,October,too,23,always,current,form,Group,point,power,same,today,video,With,code,law,left,Management,person,R,related,areas,city,Department,English,find,girls,low,young,care,company,given,interest,performance,property,report,show,sites,`,body,It,men,P,quality,St.,test,above,April,check,experience,files,groups,love,money,old,Park,programs,USA,working,50,®,along,book,contact,High,IN,London,market,pages,since,special,systems,times,World,again,class,December,General,having,hours,International,issues,plan,porn,provided,read,single,This,26,below,black,By,Education,got,keep,less,man,might,national,price,problem,small,Systems,Windows,0.00,address,become,car,community,Company,either,give,live,major,My,news,pictures,put,security,Site,start,....,©,credit,Day,Design,education,F,following,human,light,means,Office,policy,process,really,section,September,W,whether,27,31,Board,children,Date,features,food,G,image,look,No,product,professional,Program,growth,Health,II,July,million,movie,open,personal,private,results,Street,website,application,buy,called,changes,collection,far,general,higher,issue,least,links,model,November,PC,Price,Road,Set,something,standard,user,call,complete,Council,few,four,government,head,hot,House,June,making,March,Music,n,necessary,night,points,problems,'re,say,says,search,similar,Software,version,Video,We,words,action,August,Book,Books,College,Europe,financial,Hotels,includes,'ll,Mr.,network,Other,period,please,Project,room,Search,story,table,travel,until,various,week,Black,child,content,costs,course,created,going,How,individual,Life,media,often,provides,rights,though,view,1999,60,America,away,certain,Click,computer,country,due,email,film,Forum,Guide,important,items,knowledge,message,N,needs,Open,rate,space,Support,System,'ve,works,29,°,activities,cost,death,done,easy,feet,Links,looking,models,office,once,phone,Phone,post,Products,Research,resources,review,several,source,together,A.,Best,Canada,Contact,designed,early,enough,hand,J.,known,others,past,range,requirements,size,social,staff,subject,team,teens,text,TV,upon,users,V,West,White,28,al,art,Art,building,equipment,etc.,God,house,international,link,meeting,mp3,never,play,record,risk,short,taken,Technology,terms,Travel,try,View,40,allow,ass,card,create,FOR,however,increase,L,language,Member,months,party,President,Real,Report,return,server,strong,t,Time,Top,total,Women,written,Area,Car,Club,Community,environment,function,lot,member,needed,Network,NEW,offers,press,result,run,Series,think,white,across,applications,close,date,Dec,drive,eg,ever,huge,key,let,levels,lower,'m,Microsoft,move,natural,original,Our,possible,present,production,questions,store,technology,term,thought,war,01,1995,among,analysis,David,digital,East,economic,Find,front,future,gallery,ie,included,K,List,mature,pay,photo,position,question,River,role,S.,Security,study,tax,thing,Us,writing,'',almost,already,directory,Dr.,energy,five,getting,H,hotel,internet,Los,loss,main,month,Part,pre,rather,self,stories,tool,treatment,03,32,additional,Association,benefits,box,Committee,device,download,Estate,European,final,further,Green,History,industry,insurance,m,mail,Manager,material,near,Oct,picture,potential,quite,re,region,Sales,Section,shows,side,taking,visit,whole,wide,^,Accessories,article,articles,books,Chinese,companies,currently,display,Edition,especially,feel,Florida,fully,greater,hard,history,M.,machine,meet,No.,offer,paper,photos,pics,plans,previous,prices,R.,received,response,sale,skills,Star,Texas,themselves,tools,What,y,yet,able,air,anal,Avenue,c,character,condition,countries,Country,Development,document,employment,events,field,fun,Government,Great,hotels,ID,info,Info,itself,job,land,later,legal,Library,makes,method,Michael,military,Monday,option,player,projects,Re,Review,San,science,season,six,sound,student,throughout,w,Washington,Water,York,05,adult,b,blood,Care,Case,Central,color,d,delivery,discussion,ensure,fine,format,Gallery,half,images,Iraq,Island,IT,item,James,la,late,Law,lead,limited,Linux,milf,normal}";"{0.05489,0.04164,0.0292733,0.02208,0.0189033,0.0188767,0.0135633,0.0134367,0.01257,0.01134,0.0109533,0.01043,0.00974333,0.00956,0.00741,0.00665333,0.00555667,0.00512,0.00475,0.00458333,0.00429,0.00391,0.00365667,0.00335333,0.00328667,0.00323,0.00300667,0.00296333,0.00293667,0.00281667,0.00270667,0.00266667,0.00249667,0.00242333,0.00239333,0.00237,0.00223667,0.00217,0.00211,0.00206667,0.00201667,0.00195,0.00183333,0.00183,0.00182667,0.00179333,0.00159333,0.00158667,0.00157,0.00156333,0.00155667,0.00155,0.00147667,0.00142333,0.00139333,0.00132333,0.00131,0.00128667,0.00127333,0.00125333,0.00119667,0.00112333,0.00112333,0.0011,0.00107667,0.00105333,0.00104,0.001,0.00098,0.000963333,0.000953333,0.00095,0.000933333,0.000923333,0.00092,0.000906667,0.000876667,0.000873333,0.00087,0.000863333,0.000863333,0.000846667,0.000843333,0.000816667,0.000773333,0.00077,0.000753333,0.000746667,0.000746667,0.000746667,0.000743333,0.00073,0.000726667,0.000723333,0.00072,0.000716667,0.000716667,0.000706667,0.000693333,0.00069,0.000686667,0.00066,0.000636667,0.000636667,0.000633333,0.00063,0.000623333,0.000616667,0.00061,0.000603333,0.0006,0.00059,0.000576667,0.000573333,0.00057,0.00057,0.000566667,0.000556667,0.00055,0.000533333,0.000523333,0.00052,0.000516667,0.000513333,0.000506667,0.000503333,0.0005,0.000496667,0.00049,0.00048,0.000476667,0.000473333,0.00047,0.000466667,0.000463333,0.000456667,0.000446667,0.000443333,0.000443333,0.00044,0.000436667,0.000433333,0.00043,0.00043,0.000426667,0.000423333,0.00042,0.000416667,0.000413333,0.00041,0.000406667,0.000406667,0.000403333,0.0004,0.0004,0.0004,0.0004,0.0004,0.000396667,0.000396667,0.000396667,0.000393333,0.00039,0.000386667,0.000383333,0.00038,0.00038,0.000376667,0.000376667,0.000373333,0.000373333,0.00037,0.00037,0.00037,0.00037,0.000366667,0.000366667,0.000366667,0.00036,0.00036,0.00036,0.000356667,0.000356667,0.000353333,0.000353333,0.00035,0.00035,0.00035,0.000343333,0.000343333,0.00034,0.00034,0.00034,0.000336667,0.000333333,0.00033,0.00033,0.00033,0.00033,0.00033,0.000326667,0.000323333,0.00032,0.000316667,0.000313333,0.00031,0.000306667,0.000306667,0.000306667,0.000303333,0.0003,0.0003,0.000296667,0.000296667,0.000293333,0.000293333,0.000293333,0.000293333,0.000293333,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.000283333,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,,00:00,0.03,01:07,016A,0.2500,'04,05:42,07,08/03/94,0.9.2a,1000,10.1,10:43,108,11.0,1124978400,1185,122,1.26.2006,132K,140140,+15,15.50,164,-1.730,18:08,188,1/9/2006,1962,1982,1991,1997,1x,2003-03-04,20/10,210,2.2,2.31,245,256MB,27419,2C,3000,315.97,333,35,360,382,3.fc5.i386.rpm,405,42313,45,47,495,500.00,51K,54.8,58,6:00,""62,134"",65.00,6b,""71,018"",74,77H,800,8.30,88,905S,948,99,´,¸,¢,‰,À,¾,Aachen,abortion,abuse,accept,accidental,Account,achieve,ACRES,activation,acts,adapter,adding,Aditya,admissions,Advance,advice,affect,African,agency,ago,Ah,AIR,Akt,album,aliases,Alliance,alone,Although,AmbTmp,amount,anaconda,andLeisure,Angus,Annette,anos,anticipated,anyone,apart,appear,Application,appreciate,approved,AR,Archive,arguments,army,arrived,artistic,ascopharm,ask,assembly,Assignee,association,At,Atmospheric,attempt,Attorney,audiences,Aural,Author,autocrine,Avatar,avoid,Awesome,B21,Back,bad,balanced,Band,Banker,barbecue,base,basis,Batteries,BBC,Beach,beatles,bed,begin,beheld,Bell,Benefits,bestiality,Bhagwan,Bigelow,bin,biosolids,bit,Blade,bloating,blonde,Blue,boards,Boise,bonus,bootstrap,bosses,boutiques,boys,brand,break,bred,Briefs,British,Brokerage,Brown,btradianz.com,bug,built,Burger,BUSHINGS,button,byte,CA,caffeine,California,Cambridge,Camp,Canadian,Cannock,capital,carbonation,CareerBuilder.com,carried,Cartography,cashier,Catalogs,Cats,CBR,celebrant,Celts,centre,CERTAIN,CH,Challenger,changed,Characterization,charity,Chat,checks,chest,childhood,Chloe,chose,Christy,Ciara,circumstantial,CK,classes,clean,clenching,climate,clocks,clover,co,Coast,Code,coincide,Collection,Color,Columns,comes,command,comments,commitments,Communication,compare,competition,completely,composer,computers,concerned,conditions,conference,conflict,connection,conserving,Consoles,constructor,consumption,Contender,continued,contrasting,controls,Cook,coordinator,cord,corporate,corresponding,COTTON,county,court,coverage,CR,CREATE,credits,Crisis,cross,Crutching,Cuento,cumshot,curve,customers,cyberwedding,d',Daily,Dance,Darko,DataPort,daybed,dead,Deang,Dec.,decisions,deducting,defended,definitive,delete,delta,demonstrate,deodorant,depression,descr,designated,despite,detect,devel,Developments,Diabetes,Dick,dieting,Digital,dinner,Directions,Directory,discharged,discovers,Diseases,Display,distracted,ditto,DIY,doctor,Does,dollar,Domingo,doping,Douglas,DP,drawings,drink,drop,dry,Dudes,Dust,dynamics,Earn,easily,EC,Eddystone,Editors,effect,effort,einer,electoral,elegant,elite,Email,eminem,employers,Enclose,Ending,engine,enhance,ensures,entire,enviroment,EPoX,equivalent,errors,Essential,Esteem,etherchannel,Eva,Events,Everything,EX,exceeded,Exchange,executor,existing,expected,experimental,exploitation,expressed,extermination,eye,F5,facilitating,factory,fainter,False,fans,fashion,father,FBI,Featured,Federal,feels,femme,fi,fight,Filed,Filtering,finding,Fire,fiscal,Fits,Flagpoles,flawed,floor,FLOWER,focal,folly,footjobs,foreign,formal,formula,forward,founding,Framework,Fray,French,friend,From,FTD,Full,Fund,Furby,G.,Gallegos,games,Garden,gateway,gcc,Gender,generosity,George,Get,Giammona,Gippsland,Gizmos,global,gmt,Goddess,golf,Google,GPS,Grammy,graphical,Greece,Grill,Grovit,guaranteed,GUIDE,gun,h,Hair,Hamilton,Handling,happens,hardware,Harvard,Hawk,HEADED,heap,heat,Heights,HELP,her.,herself,highest,HIM,historian,hn,holding,HOME,Honduras,HOPE,HORSESHOE,hosts,housing,HTJ,HUMAN,hunting,Hydrogen,IBOOK,ideal,idiot,III,illustration,immensely,implement,imprinted,inaugural,incidents,Increase,independent,Indiana,individuals,inevitably,INFORMATION,Initiative,Inner,Insert,installation,Institute,Instruments,Integration,INTERACT,interface,interpersonal,intimidated,invented,investors,IP,Ireland,IS,Israel,Italy,J,Jalapeno,Japanese,JDMBA,Jessica,Jim,Jobs,joins,journal,Judaism,Jun,k,Karnad,Keane,Keon,Kfamr,kill,King,KIT,knew,kontakt,Kurtzberg,La,labour,Lake,Landlord,LAPD,laser,latinas,lawful,Layout,leaders,Learn,leave,Leeward,leicageo.it,les,lets,Lewis,Libra,licit,lighting,limit,Line,linked,LISTED,literacy,lives,load,Local,locations,logical,Long,Looping,lots,lovely,LT3,lunar,lyrics,MAC,Madison,magnetic,mainly,makecol,Man,mangle,manufacturers,Maps,marina,MARKETING,martial,mass,match,Mathematics,Mature,MBA,mdf,measurement,Media,Medicine,mehr,Memorial,mention,Meriones,metabolife,Metric,Mic,Middle,miles,milling,MINE,Ministry,Miracles,Missionary,mixture,Mobile,MODELS,module,Mon,Monitors,Moon,mortgage,Motherboard,MOUNT,movements,MP3,msgstr,Multimedia,murzynki,MUST,Mystery,naked,Naomi,nations,navigate,Near,negligence,nepotism,networks,NEWS,Ngaruawahia,niezaspokojone,nips,nodeId,noon,Northern,note,Notice,Novori,Nuclear,Numbers,NYC,OASIS,obligations,occasions,OD,offering,officials,oil,Olivier,ones,ooooh,operating,opinion,optimal,OR,orders,Organization,originally,osteopetrosis,Out,output,Over,OverviewDoc,oxygen,PA,Packages,paginas,Pair,Pandiya,papers,parent,Parliament,particular,Partnership,passed,PATCH,patio,paying,PCI,peaceful,pen,People,perfection,Perl,Personal,perv.lovelykittens.net,pH,Philadelphia,photographers,physical,picking,Pierre,Pinkwater,pixel,placing,Planning,PLASTIMO,players,pleased,plus,poet,police,political,poo,Popularity,Port,Position,postdoctoral,PostScript,PowerBook,PR,Pre,preferred,prep,presentation,pressure,Prevention,primary,Print,Priorities,Pro,proceed,produced,Professional,progestin,progressive,promotion,prophecies,protect,Protestant,providing,PST,publication,pull,purchased,Push,pyrazole,qualifies,Queen,quid,r,rack,Rahman,rampart,Rape,rating,RC4,Read,reality,reasons,receiving,Reckless,recorded,recreational,redirect,reference,reformers,Regina,registration,regulatory,relations,release,Reliance,remains,removal,rent,replace,Reporting,reproduction,require,Researchers,residents,resource,responding,Restaurant,retail,returning,reviews,RFID,Richer,Rights,rise,rm,robot,Roland,Ron,Rose,route,RSA,rule,running,rwxr,sacks,Safety,sales,Samples,sarah,Saturday,SAVINGS,scale,Schafer,schools,scientific,Scott,Script,SEALED,Second,SECTIONS,seed,seen,selecting,semester,senior,Sent,Serano,served,setAorABC,Seventh,sexy,shaped,shaved,shelves,Shipper,Shocker,Shopping.com,Show,shroudish,Sigma,significant,Silverio,Simulators,sister,Size,skin,sleep,Slough,Smith,sniped,Social,sodium,Soldering,solutions,sometimes,Songs,sort,Source,Soyl,spank,Special,specifically,speed,SPIEGEL,sponsor,Sportscar,sprinkling,Squirtle,Staff,stand,Stanley,starting,states,Statistics,steals,steps,stills,Stone,Store,strain,stream,Stretch,Strong,Students,stuff,sub,submit,subsidies,successful,sufficient,Suite,Summer,sup,Suppliers,suppose,surgery,Surviving,Swansea,switch,synaptic,t1,Tabs,Taking,tallest,targeted,Tax,teacher,Teapots,Techniques,Tel,Tell,TEN,Terms,testimony,th,theaters,theory,THERMODYNAMICS,third,Thoughts,throw,Tiara,Tile,tip,Title,Today,Tom,took,topped,touch,Tours,toxic,tracks,Traditional,trample,transgressed,transportation,Treasuries,Trendy,trigger,tropical,Trunami.com,TtaGetParent,tuned,turns,twisted,types,UC,um,und,undertaken,Union,units,unleaded,unstable,Update,Uprising,Urostomy,useful,usr,utilizing,VA,valid,Valves,variety,Vegas,vent,versions,via,vid,Views,Violent,visibility,visualrave,void,volumes,Vowel,W.,waiting,wallets,Ward,Warwick,Watching,ways,weather,websites,Weekend,Welcome,Western,Wheel,Whitfield,Why,WiFi,Willie,window,Winning,wise,WLRRYLENGK,Wood,Work,Workshop,worth,write,WSBTV.com,x00,XLarge,xylophones,Yared,Yelton,Young,z,zinc,ZY}";0.0777063
"public";"fourgrams";"freq";0;8;6003;"{40,41,42,43,44,45,46,48,47,50,49,51,52,53,54,56,55,57,58,59,60,62,61,63,64,65,66,67,68,69,70,71,72,75,73,74,76,77,79,78,80,82,83,81,85,84,86,89,87,90,88,91,92,95,93,94,96,97,98,100,99,104,101,102,103,106,105,111,108,107,112,109,110,114,116,115,118,117,119,121,113,120,125,124,127,126,122,129,123,128,130,132,133,134,135,131,137,138,144,136,142,146,140,143,145,148,139,141,149,147,155,154,152,150,151,160,158,157,159,168,156,153,161,166,162,167,165,163,164,171,169,172,174,170,176,175,173,178,186,182,177,180,179,185,181,184,192,191,190,189,195,183,188,210,194,200,187,193,202,204,201,207,198,199,215,197,205,208,214,203,196,212,217,206,213,211,209,216,222,234,224,229,225,221,223,218,220,219,230,231,228,227,232,235,226,240,233,236,253,237,246,239,242,251,247,248,244,249,243,261,238,252,258,256,263,257,250,265,245,280,260,270,259,273,241,255,262,272,271,292,276,277,281,254,274,288,289,267,278,264,268,284,291,275,282,283,297,279,295,301,296,298,311,287,294,266,299,300,286,290,285,315,322,304,269,310,327,302,320,333,303,293,319,316,343,306,307,313,312,308,314,318,325,339,305,329,323,328,335,340,341,342,317,324,351,321,336,350,365,331,360,326,330,337,346,334,344,309,332,352,345,353,378,411,370,372,338,361,397,359,364,386,354,384,357,373,385,387,400,355,375,377,380,382,347,349,371,374,406,356,362,414,348,358,367,381,363,369,419,388,398,376,403,409,366,399,424,396,402,405,407,368,413,391,410,432,457,404,408,426,379,395,418,475,427,383,415,455,412,446,458,389,390,401,428,444,392,393,394,445,423,447,459,416,422,429,461,462,476,483,421,435}";"{0.0242267,0.0226567,0.0222667,0.0207133,0.0199933,0.0186433,0.0182633,0.0173667,0.0172767,0.0157733,0.0156933,0.0146767,0.01437,0.01392,0.0131433,0.0125833,0.0124267,0.01211,0.0115733,0.0110333,0.01101,0.0105933,0.01051,0.00995333,0.00933333,0.00923333,0.00908,0.00877667,0.00814333,0.00807,0.00791,0.00785,0.00776,0.00721667,0.00710333,0.0071,0.00704,0.00664667,0.00655667,0.00648333,0.00632667,0.00584,0.00581,0.00568667,0.00553333,0.00549,0.0052,0.00510333,0.00505667,0.00504667,0.00503,0.00483333,0.00466667,0.00455,0.00453,0.00446,0.00431333,0.00424333,0.00421667,0.00415333,0.00401667,0.00387,0.00378667,0.00378,0.00373333,0.00362,0.00361333,0.00345667,0.00340333,0.00337,0.00333667,0.00331,0.00310333,0.00298333,0.00297,0.00293,0.00291,0.0029,0.00280667,0.00279333,0.00279,0.00275,0.00265,0.00262667,0.00257,0.00254667,0.00253667,0.00244,0.00242333,0.00233333,0.00229,0.00227667,0.00216333,0.00215667,0.00213,0.00210333,0.00209667,0.00207333,0.00207,0.00204667,0.00203667,0.00201333,0.00200667,0.00198667,0.00194,0.00192,0.00191667,0.00189333,0.00186,0.00183333,0.0018,0.00176667,0.00173,0.00171,0.00164333,0.00163667,0.00163,0.00160667,0.00160333,0.00159,0.00158667,0.00156333,0.00152333,0.00151,0.00145333,0.00145333,0.00144,0.00142333,0.00141333,0.00140333,0.0014,0.00139333,0.00136667,0.00135,0.00134333,0.00133333,0.00132667,0.00131,0.00124667,0.00124333,0.00124,0.00123333,0.00122667,0.00118333,0.00116,0.00116,0.00114667,0.00113333,0.00111667,0.0011,0.0011,0.00109333,0.00109,0.00107333,0.00105667,0.00105667,0.00104,0.00104,0.00103,0.00102667,0.001,0.000996667,0.000993333,0.000983333,0.000976667,0.000973333,0.00097,0.000966667,0.000956667,0.000943333,0.000936667,0.000926667,0.000923333,0.000913333,0.000873333,0.00087,0.000846667,0.000846667,0.000833333,0.00083,0.000823333,0.00082,0.000816667,0.000813333,0.000813333,0.000806667,0.000806667,0.0008,0.00079,0.00078,0.000776667,0.00077,0.000763333,0.000763333,0.000743333,0.000743333,0.00073,0.00072,0.00072,0.000713333,0.000713333,0.000703333,0.000703333,0.00069,0.00067,0.000666667,0.000663333,0.000663333,0.000646667,0.000646667,0.000633333,0.000623333,0.000623333,0.000616667,0.000616667,0.000613333,0.00061,0.00061,0.000603333,0.000603333,0.000596667,0.000593333,0.00059,0.000583333,0.00058,0.000573333,0.000573333,0.000573333,0.000556667,0.00055,0.000546667,0.000543333,0.000543333,0.00054,0.00054,0.000536667,0.000536667,0.00053,0.00053,0.000526667,0.000526667,0.000526667,0.00052,0.000516667,0.000513333,0.000506667,0.0005,0.000496667,0.000496667,0.00049,0.000483333,0.000483333,0.00048,0.000476667,0.000476667,0.000473333,0.000473333,0.00047,0.000463333,0.000463333,0.000456667,0.000456667,0.000456667,0.000453333,0.00045,0.000446667,0.00044,0.000436667,0.000436667,0.000433333,0.00043,0.000426667,0.000426667,0.000416667,0.000416667,0.000413333,0.000413333,0.000413333,0.00041,0.000403333,0.000403333,0.0004,0.000396667,0.000396667,0.000393333,0.00039,0.000386667,0.00038,0.00038,0.00038,0.000373333,0.000373333,0.000366667,0.000366667,0.000366667,0.000363333,0.000363333,0.000363333,0.000363333,0.00036,0.00036,0.000356667,0.000356667,0.000356667,0.000353333,0.000343333,0.000343333,0.00034,0.00034,0.00034,0.000336667,0.000333333,0.00033,0.00033,0.000326667,0.000326667,0.000323333,0.000323333,0.000323333,0.000316667,0.000316667,0.000316667,0.000313333,0.000313333,0.00031,0.000306667,0.000306667,0.000306667,0.000306667,0.000303333,0.0003,0.0003,0.0003,0.0003,0.000296667,0.000296667,0.000293333,0.000293333,0.000293333,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00027,0.00027,0.000266667,0.000266667,0.000263333,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021}";"{417,417,417,420,420,425,425,430,430,431,431,433,433,434,434,434,436,436,437,437,438,438,439,439,440,440,441,441,442,442,443,443,448,448,449,449,450,450,451,451,452,452,453,453,454,454,456,456,460,460,463,464,464,465,465,466,466,467,467,468,468,469,469,470,470,471,471,472,472,473,473,474,474,477,477,478,478,479,479,479,480,480,481,481,482,482,484,484,485,485,486,486,487,488,488,488,489,490,490,491,491,492,492,493,494,494,495,495,496,496,497,498,498,498,499,500,500,501,502,502,503,503,504,504,505,506,506,507,507,508,508,509,509,510,511,511,512,512,513,513,514,514,515,516,516,517,518,518,519,520,520,521,521,522,523,523,524,525,525,526,526,527,528,528,529,529,530,531,532,533,533,534,535,535,536,537,537,538,539,540,540,541,541,542,543,543,544,545,545,546,547,547,548,548,549,550,551,551,552,553,553,554,555,555,556,557,558,558,559,559,560,561,562,562,563,564,565,566,567,567,568,569,570,571,571,572,572,573,574,575,575,576,577,577,578,579,580,580,581,582,583,584,585,585,586,587,587,588,589,589,590,591,592,592,593,594,594,595,596,597,597,598,599,600,601,601,602,603,604,605,606,607,607,608,609,610,611,612,612,613,615,616,616,617,618,619,620,621,621,622,623,624,625,626,627,628,628,629,630,631,632,632,633,634,635,636,637,638,639,640,641,642,643,644,644,646,646,647,648,649,650,651,652,653,653,655,656,657,657,658,660,661,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,677,677,678,680,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,701,702,703,705,706,707,708,709,710,711,712,714,715,716,717,718,720,721,723,724,725,727,728,729,731,732,733,734,735,736,738,739,740,741,743,744,745,746,747,748,749,751,752,754,755,756,757,759,760,760,761,763,764,765,767,769,770,771,772,774,775,776,778,779,780,781,783,784,785,786,788,789,790,792,793,795,796,797,799,800,801,803,804,806,807,808,809,810,812,814,815,816,817,819,820,822,823,824,826,827,829,830,832,834,835,836,838,840,842,843,845,847,848,850,851,852,854,855,857,859,861,863,864,866,867,868,870,872,873,875,876,877,879,880,882,883,884,885,887,888,890,892,894,895,896,899,900,903,905,906,908,910,912,914,916,918,920,922,924,927,929,931,934,936,938,940,943,944,946,948,951,954,956,957,960,962,964,966,968,971,973,975,977,981,983,985,987,989,991,993,995,997,1000,1002,1005,1008,1011,1012,1015,1016,1019,1021,1024,1026,1028,1030,1033,1036,1039,1043,1045,1047,1050,1052,1055,1058,1060,1062,1065,1068,1070,1073,1075,1078,1081,1084,1087,1090,1092,1095,1098,1100,1103,1106,1108,1110,1113,1115,1119,1122,1124,1127,1130,1132,1135,1139,1141,1143,1146,1150,1152,1155,1159,1162,1165,1169,1171,1174,1176,1180,1184,1187,1189,1193,1197,1200,1204,1207,1210,1213,1217,1220,1222,1226,1229,1232,1235,1238,1241,1244,1247,1251,1255,1259,1262,1265,1268,1271,1275,1277,1281,1285,1289,1293,1297,1300,1303,1307,1311,1315,1319,1324,1327,1331,1334,1339,1344,1348,1350,1354,1359,1364,1368,1374,1378,1381,1386,1390,1394,1398,1402,1407,1411,1417,1420,1425,1429,1434,1439,1443,1447,1451,1456,1460,1464,1468,1474,1479,1485,1489,1494,1499,1503,1509,1515,1520,1524,1529,1533,1537,1543,1548,1555,1561,1566,1571,1578,1583,1588,1594,1599,1607,1612,1619,1626,1633,1639,1644,1648,1652,1657,1664,1667,1673,1678,1688,1694,1699,1707,1715,1721,1727,1733,1739,1747,1754,1760,1766,1772,1779,1786,1793,1801,1808,1816,1824,1833,1840,1847,1852,1859,1865,1874,1881,1889,1896,1903,1911,1922,1931,1940,1948,1957,1965,1976,1985,1997,2007,2020,2030,2037,2048,2054,2063,2074,2082,2092,2104,2111,2122,2135,2143,2157,2167,2182,2195,2204,2215,2225,2233,2245,2256,2265,2277,2287,2295,2302,2313,2320,2334,2348,2363,2377,2389,2401,2409,2424,2436,2455,2469,2487,2501,2513,2526,2538,2552,2563,2575,2590,2609,2624,2637,2655,2671,2686,2699,2713,2731,2752,2777,2797,2815,2831,2848,2870,2885,2900,2920,2945,2960,2976,3000,3018,3041,3056,3075,3102,3126,3150,3175,3205,3218,3242,3276,3298,3330,3353,3378,3406,3431,3457,3486,3511,3549,3584,3615,3637,3662,3691,3722,3761,3803,3847,3873,3904,3935,3968,4006,4047,4080,4119,4163,4188,4231,4270,4320,4354,4393,4442,4502,4537,4599,4640,4693,4740,4787,4827,4869,4929,4996,5044,5096,5137,5207,5262,5333,5390,5472,5541,5624,5707,5778,5875,5963,6035,6100,6217,6325,6405,6523,6628,6715,6824,6951,7107,7200,7330,7425,7571,7748,7869,7977,8139,8291,8463,8567,8789,8983,9135,9384,9627,9791,10021,10191,10408,10645,10967,11289,11656,12029,12346,12757,13162,13520,13891,14478,15199,15593,16312,16948,17636,18642,19584,20451,21696,22849,23891,25684,28320,30188,32699,35736,40135,44702,50497,57905,73180,96224,145612,1822478}";-0.0128146

Hors ligne

#14 20/04/2009 17:08:22

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Apres Analyze:

"schemaname";"tablename";"attname";"null_frac";"avg_width";"n_distinct";"most_common_vals";"most_common_freqs";"histogram_bounds";"correlation"
"public";"fourgrams";"part3";0;5;57603;"{"","",the,-,and,of,to,:,a,<UNK>,(,in,),for,""\"""",is,that,on,/,with,by,or,'s,|,be,at,are,from,as,not,I,this,an,it,you,...,>,;,&,],',was,your,$,The,will,?,[,1,have,all,!,their,can,has,2,but,which,more,one,=,A,other,they,we,my,our,3,*,his,any,about,who,--,up,new,+,0,he,%,4,were,when,its,#,out,so,some,if,5,been,no,also,into,may,her,these,would,.,New,had,over,only,free,time,10,each,them,what,information,2005,people,me,@,than,there,do,work,such,just,through,two,7,like,should,make,use,data,""\\"",after,6,must,get,said,now,2004,where,de,very,first,under,·,»,because,being,8,Home,then,before,good,made,US,2003,could,those,most,how,PM,many,£,In,shall,system,business,i,AM,different,available,between,him,she,here,online,see,based,~,15,service,sex,used,off,2006,site,12,16,30,""{"",home,public,support,including,us,back,All,B,using,year,..,11,OF,services,Services,during,high,right,web,C,page,well,within,does,three,100,go,great,still,x,News,20,Free,years,even,set,2000,THE,around,E,group,9,s,take,<,County,life,own,power,teen,14,2001,health,John,2002,25,M,S,Center,down,Web,without,both,help,products,students,am,International,Of,program,too,while,best,last,name,To,water,did,little,another,big,include,local,Street,file,For,against,D,design,much,On,Your,""}"",And,AND,day,May,More,University,American,control,Group,Hotel,line,part,every,family,Inc.,P,real,This,©,experience,less,per,School,You,CD,long,small,until,change,City,state,17,always,current,full,Information,school,women,call,Hotels,provide,software,things,About,children,gay,Business,never,area,either,person,special,State,T,13,1999,old,show,something,test,again,development,found,game,place,view,21,Â,access,F,given,II,network,Page,Software,TO,DVD,give,January,know,level,Management,pictures,R,video,way,0.00,50,live,love,man,members,men,need,open,working,`,e,few,form,Health,House,Internet,N,please,pm,research,UK,date,government,large,management,market,Online,quality,rate,young,23,black,files,hours,n,several,systems,W,06,18,better,Education,following,girls,room,Service,since,type,19,car,days,food,IN,Jan,list,March,million,night,order,problem,put,read,South,world,above,music,point,required,Research,results,times,upon,X,22,complete,FOR,items,law,Music,National,problems,project,Series,server,With,Black,code,come,Community,company,It,left,low,major,next,really,report,specific,St.,value,World,A.,®,Board,called,Club,Company,From,High,light,near,number,Search,size,book,case,changes,country,English,field,find,four,L,making,needs,No,Park,performance,post,process,Program,same,says,search,text,week,26,action,application,April,Contact,G,model,Office,Other,programs,run,Systems,training,TV,create,ever,function,general,General,Guide,June,look,My,One,received,second,standard,West,24,among,ass,By,Date,enough,hot,issues,London,might,news,offers,professional,social,System,USA,via,What,white,^,appropriate,Art,Day,due,end,human,includes,mature,member,others,play,Price,related,start,story,today,View,want,01,°,contact,Design,email,features,m,North,personal,position,provided,PST,say,security,simple,version,We,written,away,December,financial,J.,Network,porn,product,Products,provides,rates,September,'ve,add,additional,air,America,Book,building,College,games,growth,hard,house,job,learning,November,offer,wrote,actually,areas,body,class,Department,digital,early,education,July,Lake,Phone,student,values,29,along,basic,buy,child,computer,getting,God,lesbian,needed,percent,review,source,Time,treatment,user,White,....,27,40,already,analysis,books,card,check,community,East,energy,et,final,five,Forum,girl,Government,increase,individual,makes,once,PC,section,Sports,St,staff,together,various,05,28,below,Blue,Car,Data,download,going,got,hand,latest,money,national,October,paper,private,property,rather,sites,team,yet,03,31,activities,An,August,Best,CA,care,cell,Council,evidence,film,Gallery,head,Law,link,means,models,Our,pages,phone,Power,price,return,Road,share,Site,Technology,teens,top,visit,across,associated,common,cost,Development,etc.,First,huge,issue,later,main,media,Mr.,non,particular,period,Plan,request,requirements,running,S.,save,self,side,think,Top,Video,website,Canada,David,far,gallery,How,If,image,James,keep,language,Life,office,Open,pay,picture,policy,possible,previous,production,reading,'S,taken,tax,total,Training,Windows,China,course,Court,easy,included,India,levels,Name,natural,NEW,nude,original,outside,points,present,questions,Report,San,solutions,sound,space,study,technology,though,tools,United,w,0.000,1998,allow,art,Association,Books,British,Care,cases,color,companies,countries,credit,Digital,drive,E.,event,Great,guide,H,hotel,important,King,List,mail,meet,movies,popular,prices,range,Show,someone,trade,Washington,works,anything,become,Buy,came,certain,Click,Director,economic,effect,effects,environment,history,insurance,interest,international,IT,M.,material,medical,Michael,Microsoft,movie,nothing,package,players,political,practice,Red,sales,Society,speed,taking,teaching,true,try,1995,address,Air,applications,bit,camera,Church,comes,cover,details,England,EST,feel,held,J,K,Linux,map,Media,meeting,memory,O,party,Photo,question,R.,'re,Resources,Security,strong,travel,Up,war,added,Big,Box,c,Card,city,click,Co.,command,conditions,cut,Dec,events,Germany,groups,half,having,higher,himself,images,investment,known,land,led,Library,Lyrics,Member,message,nice,Now,patients,plan,pussy,reports,resources,rights,rules,shows,Star,structure,subject,t,Travel,whole,why,Women,200,36,Accessories,adult,baby,began,cash,Centre,choice,clients,Committee,d,device,else,especially,everything,future,GMT,green,immediately,Index,'ll,looking,Mary,necessary,Nov,often,oil,photos,Real,reference,send,Send,Set,single,species,started,stories,Support,thing,whether,**,80,Back,bring,choose}";"{0.0468133,0.0338033,0.0209533,0.0207933,0.0162,0.0156033,0.0136467,0.01288,0.0125933,0.0122967,0.0117233,0.00949,0.0083,0.00679333,0.00658,0.00522333,0.00499,0.00491667,0.00459333,0.00423667,0.00399667,0.00392333,0.00352,0.00326667,0.00320667,0.00311333,0.00301333,0.00292333,0.00267333,0.00253,0.00252333,0.00251333,0.0025,0.00238667,0.00230667,0.00229,0.00227,0.00224333,0.00221333,0.00210667,0.00203667,0.00201667,0.00200667,0.00192,0.00185,0.00183333,0.00177667,0.00177667,0.00177,0.00159333,0.00158,0.0015,0.00147333,0.00141667,0.00138333,0.00134333,0.00131333,0.00129,0.00120667,0.00119667,0.00118333,0.00116,0.00113333,0.00113,0.00112667,0.00112,0.00109,0.00106,0.00103333,0.00101667,0.00101,0.000963333,0.000953333,0.000953333,0.000943333,0.00094,0.00092,0.000906667,0.000876667,0.000866667,0.000853333,0.00083,0.000823333,0.000813333,0.0008,0.0008,0.000793333,0.000786667,0.000776667,0.000776667,0.000763333,0.000726667,0.000723333,0.000716667,0.000706667,0.000703333,0.0007,0.000696667,0.000686667,0.000683333,0.00068,0.000676667,0.000663333,0.000663333,0.000626667,0.000626667,0.000626667,0.000626667,0.000623333,0.00062,0.000616667,0.00061,0.000603333,0.000576667,0.000576667,0.000556667,0.000556667,0.000553333,0.000546667,0.000546667,0.000546667,0.000543333,0.000543333,0.000543333,0.000533333,0.000533333,0.00051,0.000506667,0.000506667,0.000483333,0.00048,0.000476667,0.000473333,0.00047,0.000466667,0.00046,0.000453333,0.000453333,0.00045,0.00045,0.000446667,0.000443333,0.000433333,0.000433333,0.000426667,0.000423333,0.00042,0.000416667,0.000416667,0.000416667,0.000416667,0.000413333,0.000413333,0.000413333,0.00041,0.000406667,0.000406667,0.000403333,0.000393333,0.000393333,0.000393333,0.000393333,0.000386667,0.000383333,0.00038,0.000376667,0.000373333,0.000373333,0.000373333,0.000373333,0.00037,0.00037,0.00037,0.000366667,0.000363333,0.000363333,0.000363333,0.000363333,0.000363333,0.00036,0.000356667,0.000356667,0.000353333,0.000353333,0.000353333,0.00035,0.00035,0.00035,0.000346667,0.000343333,0.000343333,0.00034,0.000336667,0.000336667,0.000336667,0.000336667,0.000333333,0.000333333,0.000333333,0.000333333,0.000333333,0.00033,0.00033,0.00033,0.000326667,0.000323333,0.000323333,0.000323333,0.000323333,0.00032,0.00032,0.000316667,0.000316667,0.000316667,0.000316667,0.000316667,0.000313333,0.00031,0.00031,0.00031,0.000306667,0.000306667,0.000303333,0.000303333,0.0003,0.0003,0.000296667,0.000293333,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000276667,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,,0000603,0.05,0.1263,02:24:34,04,05:18,07.05.2003,08:47,-1,""100,000"",10-17,10:50,10.89,11:09,1131916800,1194,1213.0,12:54,13/10/2004,13.94,146984kbps,151N,16.00,16P,1788-1879,185.00,19-04-1999,1941,197/1,1987,1996,1k,2000/XP,20:06,20755,215.91,227,2-4,25/08,+27,2940U2,300,3:15,33,3453,360G,3823,3Dyes,:4049,420,44,46,487,500,51.10,539,56,5C,+61,64,68,70,7.21,75th,7th,8.2M,88,907,941,99,¨,‘,¢,Â…,â,Ã,ó,Abdel,Absolut,Academic,accesses,account,accuser,acquire,Action,Activity,adapter,addressing,administration,adopted,advanced,advice,Aesthetics,Afghanistan,age,Agents,agricultural,ainments,AKJV,Albans,Alexei,allegations,allows,alternate,AMA,Amend,amounts,analyst,Angel,Animals,announced,answer,antioxidant,anytime,Aphorisms,appearing,applied,Approach,aproached,Architecture,arena,Armor,arrive,Articles,Ê,aside,Assemble,assignment,Assorted,AT,atscscan,Attiyah,AUD,aurora,authority,automatically,AVE,award,ß,B.,backdoor,badges,Bélanger,Bancshares,Bank,Bar,barriers,basically,baths,Bayrakdarian,Beaches,Beat,becomes,BEFORE,behind,Belin,benefit,beruf,beyond,BIDDING,BILLIARD,Biography,births,Blade,block,blondynka,blue,boat,boilers,bontril,boots,boss,boundaries,Boxes,Bradley,Braun,Breast,bridge,Britannica,Bronchitis,BrowserDetect,BUDAPEST,Buick,Bukkwyd,buried,Businesses,butts,bytes,Cabinets,cake,California,Cambridge,Campinas,Canalejas,Cannondale,Cape,carat,career,Carolina,Cars,casino,CATALOG,Cats,ccResumes,celebration,center,century,CertiPrep,Chalifour,chancellor,Channels,characters,Charles,cheap,Checks,Chest,chil,chips,chr9,Christopher,cigarette,Cisco.com,claf,classes,Clay,clearly,climbed,close,Cloud,Cn,coastal,codec,cold,Collection,colonists,Com,comic,comments,commit,communications,compare,competition,completely,components,computationally,concentration,concluded,conducted,configuration,Congressmen,conscioius,considering,constituent,consumer,contaminants,Continental,Contracting,controller,Converter,cooperation,copyright,Corkill,correct,Costa,count,COUNTY,Courts,coyotes,Cramps,created,creek,crisper,Cross,CS,cults,cup,Curriculum,customers,cycle,D.,Daily,dance,dark,DataSet,Daycount,DE,dear,DEC,decisions,deductible,defendants,degeneration,Delft,Delta,Demonstration,departments,depth,described,designer,destination,Detective,develop,Devil,DIAL,dictionary,Difference,dildos,dir,directories,disappear,discount,discussion,dismissal,Dispute,Distribution,divided,DNA,document,dog,DOLLS,done,dot,Download,Dr.,drawings,drinking,Drop,DS,dull,duty,dynamic,Early,easily,eBay,economics,edit,EDT,Effects,Eggleston,elder,Electrode,Eleonora,Emacs,EMI,employees,en,encrusted,Energy,Engineering,enjoyment,entered,entity,Environmental,epsv4,er,errors,essential,esteem,Ethnic,euros,Events,evs,examples,Exchange,execution,exist,expectations,expert,export,extensión,extreme,F.,faces,factors,Fairfax,FALLS,Fansite,fascinated,Fat,favourite,feature,federal,feeling,FEM,fetishism,fields,Figurines,Film,Financial,Finest,Firebird,fishing,fixed,Flashpix,Flint,Florissant,flux,Foldable,Foods,forced,Forensic,Format,Forster,fostering,Fr,france,Fred,French,friend,Front,fuck,Full,functionality,funds,further,g6,Gallegos,Games,Garland,Gatwick,Gear,generally,genital,Georgia,Gets,GiftBaskets.com,Give,Glendale,GM,gods,golf,Google,governments,gradual,grandis,gras,Greece,Griffin,grow,Guantanamo,guidance,Gulf,gymnastics,hail,Halloween,handicrafts,Hanover,Hardcore,Harry,Have,HDMI,heads,heart,hecho,helped,heparin,Hertfordshire,highest,Hill,histogram,HMOs,Holder,Holmes,homework,hope,horses,hostnames,household,HP,hubbub,hundreds,HV,I.,icon,ideas,IDS,III,IM,immigrant,implements,improved,INC,inclusive,increasing,indexes,Individual,industry,infiltration,INFORMATION,initiated,Inn,insect,instability,Instinct,instrument,integrate,intensity,interface,interneta,interviews,Inventors,invoices,iPod,Iron,ish,Israel,item,j,jams,Java,Jeff,Jewelry,Jo,Johnson,Jordens,JP,juicers,jurisdiction,K23,Katherine,keeping,Kernel,keys,Kids,Kind,kitchen,Knight,Koh,KS1,L.,Label,ladies,LAN,Lao,laser,Latex,lawblog,Lays,LEADER,lean,Leather,Lefkovitz,legitimate,Leo,Let,Lewis,libraries,lid,Light,limestone,Line,Link,LIP,Listings,Live,lizard,Loan,located,lodging,Logs,LOOK,LosAngelesBeachRental.com,lots,loves,LSAs,LuKreme,Lynde,Mac,MACROMEDIA,Magg,mailing,maintaining,Malaria,Man,Manchester,Manual,mapping,Marie,marketed,married,mass,match,Mathematics,Maverick,MB,MD,measure,mediator,Meeting,memberlist,Men,Merchant,messaging,meters,Metsudah,Micchelli,middle,mile,military,mind,MINING,minutes,missing,Mix,Moana,Model,modifying,momentum,monitoring,monthly,Moreno,mostly,motors,move,moving,MPV,mucosa,multiple,Museum,mutual,Mysticweb,Nam,Narann,NATO,Nazis,Necklace,neither,Netscape,newbox,Nextel,Niger,nirvana,NO,Non,normal,nostalgic,Notes,Novell,Nude,nurse,Nylon,object,observed,occasional,Oct.,offered,Official,Oil,Olsen,ongoing,opened,operation,opnÃ¥,optimization,oral,orders,Organization,origins,OTHER,Outdoor,OutVlans,overtime,oxfordshire,P25638,PACK,Pages,pair,Panasonic,Paperback,Paramount,PARK,Partial,Partisan,Party,Password,Path,Patton,PAYMENT,pdf,Pebble,penalty,pepper,performances,permission,Personnel,Petitioner,Phase,Phoenix,Photos,Physiognomics,pics,Pig,PINK,pitched,places,Planning,Plastic,player,PLEASE,plus,Pod,Polanski,politely,pone,Pops,Port,positions,posted,Pot,Powell,Practice,Pre,pregnancy,Preparing,preserve,pressure,PreviewHardcoreMatures,primary,Print,PRISMACOLOR,Pro,Proceedings,produced,Professional,programme,prohibition,promising,properly,proposed,Protection,Providence,Prussian,Publ.Date,publishing,PUNK,purse,Pyrography,Quail,Quebec,QUIDDITCH,QW,rack,Raffles,RAM,Rank,rated,RAZOR,reached,ReadmeFirst,reason,receive,recipes,reconsider,RECORDS,redesign,reese,reflux,Regatta,registered,regulation,Related,release,Relief,remedy,Remover,Renz,reported,represented,require,reset,Resolutions,respectively,restaurant,resulting,Retrieve,revenues,revision,rhodamine,riddle,Riken,risk,road,robotics,Roger,Romantic,Rope,round,rows,rubber,Run,Rutgers,SABR,Safer,sale,Sam,sand,sat,Savant,SB,Scary,schemes,Schumacher,sconf,scratch,Scudery,Searches,sec,Section,See,Sefriel,selectively,Seminary,Sensitisation,separating,serious,SERVICE,setting,Sewing,shackled,shares,sheet,Sherry,Shipping,shooting,short,shout,Shy,signals,silicone,SIMPLE,Singing,Sites,Size,Skills,sleep,slots,Smells,snapshots,Social,soil,Solid,Some,songs,sorted,sourceURI,spacing,speak,Specials,Speech,spider,SPM,spot,sprint,Sr.,Staff,Stan,Stanley,Starting,States,statistics,STE,Step,Sticker,stocks,Storage,storm,strategies,strength,strip,Stuart,Studio,style,Subjects,subsequent,SUCCESS,sufficient,Sullivan,Sundance,Superior,supply,surf,Surrender,suspicion,sweet,switching,syncope,T23,tabs,takes,tan,targeting,taxes,teachers,tech,technologies,Telcom,Tell,temporary,Teratoma,terrible,Testing,th,theaters,Theo,thereof,third,thought,Thriller,Thursday,tiffany,timestamps,tissues,tk,told,Tony,topics,totally,tourist,Town,track,traditional,Tran,transformation,transportation,treat,trends,Trim,Trout,truth,Tue,turn,TVs,Tyndale,u,Ukraine,unavailable,understanding,unigue,units,unless,UNTIL,updates,upskirt,Usability,User,usual,UV3,V5T,Valerie,van,varieties,Vega,Venezuela,Version,Viacom,videos,village,Virgin,vision,Vitamin,VoIP,Volvo,VPL,Wa,walk,Walnut,ward,Wars,Watches,wax,wear,websites,Weekly,welcomed,Westerly,Wheeler,WHITE,Wi,WikiProject,Williamson,windows,Winter,wishing,Wolf,WOOD,workday,workshops,w.personals,writing,www.brain.com.tw,XDGames,XX,Yankee,Yellow,York,Youth,ZADI,ZIRCON,zzz}";0.146654
"public";"fourgrams";"part1";0;5;41606;"{<S>,"","",the,-,and,of,to,<UNK>,:,a,in,(,for,),""\"""",The,is,that,/,with,on,'s,by,or,not,|,be,I,as,are,from,you,&,at,was,>,',an,it,this,[,],have,your,1,A,all,$,will,2,can,...,their,which,*,=,has,my,about,but,one,up,more,he,other,--,his,we,been,3,+,were,0,also,new,our,they,This,its,%,2005,who,any,In,out,4,#,no,some,when,would,had,use,only,into,New,time,what,these,do,information,if,than,like,so,free,such,It,first,Re,5,should,her,To,may,just,12,there,two,We,them,""\\"",Home,people,then,And,me,through,after,most,used,over,get,For,US,10,between,@,6,make,where,You,2004,very,All,7,could,see,8,good,system,work,how,©,data,2006,If,many,number,even,He,now,·,made,she,must,year,i,us,under,home,They,»,each,online,business,From,high,including,sex,help,those,well,years,20,day,My,de,know,said,'ve,£,because,him,No,2003,9,being,both,off,way,available,More,What,service,American,here,Information,program,using,When,Free,per,support,18,South,within,11,15,C,find,back,Business,form,Jan,case,DVD,How,much,site,State,three,group,life,little,s,x,16,'re,set,University,World,before,By,great,include,name,go,services,Your,About,based,does,General,'m,On,down,found,think,need,own,same,am,Our,world,best,big,take,""{"",level,~,100,area,But,during,Online,John,type,value,13,25,Â,News,state,teen,message,public,students,<,around,file,less,Of,S,web,""}"",2002,different,E,right,without,another,B,did,following,put,still,while,IN,order,She,THE,19,D,experience,open,place,PM,process,With,c,family,few,Services,since,30,given,look,power,private,provide,really,0.00,An,least,'ll,N,One,part,real,upon,As,called,company,design,health,International,person,Search,school,systems,create,done,list,OF,property,show,user,Black,come,long,Management,May,never,rate,These,50,city,City,County,four,Inc.,line,Music,old,second,X,14,21,24,America,Center,change,Copyright,game,Hotel,man,quality,R,Service,small,total,until,always,class,date,got,January,L,law,love,software,top,want,women,`,26,At,certain,House,Member,O,Other,things,video,Web,..,17,better,book,control,country,far,Group,low,music,No.,Posted,range,read,research,TO,working,children,general,God,network,Not,provides,School,start,study,training,every,Get,global,management,page,Please,Price,There,against,child,effects,food,government,nude,Public,West,06,due,F,fact,First,give,items,key,last,personal,point,provided,something,Big,girls,II,means,problem,request,St.,T,version,York,®,AND,Education,full,interest,Life,lot,market,National,price,related,Research,So,source,too,View,After,community,end,having,Internet,left,M,product,return,Science,section,Top,add,again,areas,call,contact,cost,Day,development,enough,Last,making,men,offer,particular,San,22,Act,cause,check,Date,Development,international,mail,million,North,P,Program,style,^,access,CD,Do,English,G,going,individual,Is,issues,loss,members,money,movie,Mr.,Name,news,Now,question,received,together,true,water,course,email,feel,Health,Hotels,human,image,important,might,Page,party,post,programs,Review,stories,technology,Travel,Two,users,week,window,Women,28,amount,care,China,Contact,Data,e,gay,half,large,models,night,Old,percent,points,rather,results,review,space,specific,TV,whether,05,allow,effective,getting,hard,keep,live,model,often,PC,products,report,See,Series,shall,States,term,text,w,2000,2001,born,Community,current,details,East,eBay,effect,industry,knowledge,main,major,Media,national,NY,office,others,possible,rates,reason,room,St,United,USA,23,above,activities,addition,analysis,b,Board,building,Canada,David,either,equipment,Just,legal,link,Michael,Network,phone,Power,providing,say,Section,Show,someone,Sun,team,writing,young,added,Box,came,ever,huge,links,local,member,Park,performance,rights,self,size,System,taken,teens,Time,Version,1998,1999,actually,Book,Car,Conference,education,feature,hot,However,includes,increase,levels,makes,Photo,required,Road,Software,thing,went,0.000,across,anything,application,basis,code,Company,Council,example,Great,hand,mp3,please,policy,position,Posts,respect,series,significant,Size,Street,whose,why,words,become,below,Best,bit,black,Click,computer,countries,features,let,light,Links,Location,once,posted,problems,Report,search,seems,seen,shows,single,six,student,sure,t,told,UK,yet,....,applications,d,'d,economic,established,H,His,language,letter,miles,pm,protection,pussy,structure,table,test,today,Type,Apr,article,Blue,body,British,card,color,Commission,death,doing,download,film,Guide,history,M.,mind,Natural,needed,Office,run,running,several,side,Special,tax,Update,visit,White,Work,write,40,60,address,associated,California,Canadian,cell,College,complete,document,else,High,la,lines,London,Low,names,needs,pay,President,prices,Products,role,security,staff,strong,taking,Teen,V,Video,whole,y,29,A.,°,among,ass,bring,buy,cases,changes,consider,currently,description,Dr.,drug,ensure,files,groups,growth,insurance,known,later,Light,movies,next,People,photos,Post,project,Red,social,story,Technology,types,1997,able,Add,along,already,AM,anal,approach,cover,Design,Director,error,existing,Feb,future,issue,leading,leave,List,Local,Love,Man,Model,necessary,ON,Paul,period,pics,porn,potential,pressure,reduce,require,resources,Set,Site,Some,Super,Systems,Thomas,though,title,works,account,apply,art,Art,Author,benefits,Books,Bush,Call,capital,costs,Download,events,Find,FOR,French,History,ID,Library,map,NEW,Only,past,picture,present,professional,Project,response,Sex,share,times,tools,Visit,War,Water,website,white,27,§,additional,Air,Bill,blue,calls,car,Chapter,classes,companies,Court,customer,foreign,forms,front,guy,hotel,Inn,James,nice,non,pages,placed,player,production,Real,solution,son,stock,That,Through,usually,Windows,Year,1996,activity,appropriate}";"{0.0786067,0.03762,0.027,0.0200533,0.0179467,0.01767,0.0138867,0.0123733,0.0116133,0.0110667,0.00908667,0.00906,0.00665667,0.00644,0.00642333,0.00536667,0.00513333,0.00463667,0.00451333,0.00451,0.00428333,0.00416667,0.00408667,0.00372667,0.00315667,0.00299,0.00290333,0.00279333,0.00278,0.00255333,0.00247,0.00245667,0.00223667,0.00220667,0.00218,0.00216,0.00212,0.00211667,0.00208,0.00198,0.00197333,0.0019,0.0019,0.00185,0.00179333,0.0017,0.00169667,0.00166333,0.00151,0.00140333,0.00139,0.00127333,0.00122667,0.00120333,0.00119,0.00115333,0.00114333,0.00112667,0.00110667,0.00109,0.00107667,0.00104,0.00103667,0.00103,0.00102333,0.00102,0.00100333,0.000993333,0.00097,0.000953333,0.000936667,0.000936667,0.00093,0.000903333,0.000883333,0.00088,0.000873333,0.000866667,0.000863333,0.00086,0.00086,0.00086,0.000856667,0.00085,0.00084,0.00083,0.000793333,0.000776667,0.00076,0.000756667,0.000756667,0.000753333,0.000746667,0.00074,0.000703333,0.000673333,0.000666667,0.00066,0.000653333,0.00064,0.000636667,0.000633333,0.000633333,0.00062,0.00062,0.000616667,0.000606667,0.000596667,0.000586667,0.000586667,0.000583333,0.000583333,0.000573333,0.00057,0.000566667,0.000556667,0.000546667,0.000546667,0.000546667,0.000543333,0.00053,0.000526667,0.000526667,0.000513333,0.000513333,0.00051,0.00051,0.00051,0.000506667,0.000506667,0.000506667,0.000503333,0.0005,0.000496667,0.000496667,0.00049,0.00049,0.000483333,0.00048,0.00048,0.00048,0.000476667,0.00047,0.00047,0.000463333,0.00046,0.000456667,0.00045,0.000443333,0.000443333,0.00044,0.000436667,0.000433333,0.000423333,0.000423333,0.00042,0.00042,0.00042,0.00042,0.000406667,0.000406667,0.0004,0.000396667,0.000396667,0.000393333,0.00039,0.00039,0.000383333,0.000383333,0.00038,0.000373333,0.000373333,0.00037,0.00037,0.000363333,0.00036,0.00036,0.000356667,0.000356667,0.000353333,0.00035,0.00035,0.000346667,0.000346667,0.000343333,0.000343333,0.000343333,0.00034,0.00034,0.00033,0.00033,0.000326667,0.000326667,0.000326667,0.000326667,0.000323333,0.000323333,0.000323333,0.000323333,0.000323333,0.000323333,0.00032,0.000316667,0.000313333,0.00031,0.000306667,0.000306667,0.000306667,0.000306667,0.000306667,0.000306667,0.000303333,0.000303333,0.000303333,0.0003,0.0003,0.0003,0.000296667,0.000296667,0.000296667,0.000296667,0.000293333,0.000293333,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,**,000000,0.03,01:00.0,0.180,03,04/03/02,06:23,08:00,0x1c,1.0000,10208,1060,10x10,11:19,""11,6"",120GB,1.256,-13.1664,1411,150,1561,1652,178.galgel,18:57,1920,1970,1990,19.99,20.00,2004-11-06,2060,21:48,22950,241Q,254.00,272,291,3.0,30mm,3.2,33s,35mm,38.00,3PH,41,-4337,4606,49,500pt,5-20,5.4.8,58,600,620,65,69,7:05,74,789,807,85,8MB,91st,98,9A14F6AC,¡,¤,„,â,¼,A8V,ability,abundances,acceptable,ACCIDENT,Account,achievable,acquisition,Action,actors,ADA,Address,adjustable,Administrators,Ads,Adventure,Advocacy,affiliated,age,agent,agreement,Aids,airport,Alafia,Albumin,Alicia,Allowance,alphabetical,Although,amatuer,Americans,AN,ancient,angels,Animation,announcements,answered,antiques,anyPolicy,APML,appears,Application,approaches,April,Archibald,ARE,aries,arrangements,Article,ARTM,Asia,asks,assessment,Assistant,assumption,Athlon,attached,attendees,attribute,Audiovox,Australia,authority,automatic,average,Award,ÂŽ,Babson,backslash,Bai,Balls,Bank,Barcelona,Bars,Basically,Batman,bdsm,Beans,beautiful,becomes,Been,begins,Belgrade,belt,bent,Bette,Bickel,billion,biology,Birthday,BLACK,Bleu,Bloglines,blowjobs,boards,Bol,boobs,boots,bottle,box,BRACHYTHERAPY,BRASS,breast,bridge,Bristol,Bronze,browser,Buccleuch,bug,built,buoyed,BUSINESS,buttons,Byline,cabinet,calculate,calling,cameras,Can,candle,capabilities,C.ar,Care,Caro,Cars,cash,cat,category,caused,CDROM,Cemetery,centralized,certainly,CGI,challenges,changed,CHAPTER,Chargers,Chase,Checking,cherry,Chief,chipset,Choose,Christians,Church,CINTAS,citta,Clan,classical,clear,Client,Clip,closed,club,cna,Coated,Coenzyme,collapsed,Collector,Colorado,Comaneci,comfort,commands.exp,Commercial,Committee,communications,compared,compiled,Compliance,comprehensive,con,concerned,condition,conferred,Congestion,CONNECTION,considered,Consortium,construction,Contacts,content,Continued,contrasting,converged,cool,Copper,Corningware,correspond,council,couple,court,CP,crashrep.diff,creating,credited,crisis,Crosse,crystalline,cultivated,cumshot,curricula,Customer,cvsignore,D.,Dakota,DangerDen,DASLU,daughter,DC,Dealer,Debridement,decent,Decorating,deeply,deficient,degree,deliberately,DELUXE,denial,Department,deposit,des,Desert,desired,detail,detest,developer,Devon,dialogues,Die,difficult,Dijkstra,direct,directors,disabilities,discount,discussed,dishwasher,displays,distribution,Diversity,DMS,Documentation,Doherty,Don,dorada,Doug,draft,Dream,Drive,DROP,DS2,Duck,Duramax,DVDs,E1,Early,Easily,EB,Economy,edition,Edward,efforts,El,electronic,Eleven,Email,Emma,Employing,enabled,END,Eng,England,Enrol,entertaining,entry,EP,equip,Erie,Esko,establish,estimated,Ethics,European,Evans,Every,evidence,examined,exchange,executive,existed,expected,experts,Export,Extender,extra,ezxmltags,Fabulous,facility,fading,fake,Families,FAQs,fast,father,Fax,Featured,federally,Feet,Feminist,ffi,FIFA,filed,Filmstudies,Finance,finest,FIRE,fish,five,Flame,flexible,florence,FLUIDS,Fogproof,Food,Forbes,Forecast,format,forth,forward,Fourier,framing,Fred,frequency,Fries,FSSB,FUEL,Fun,Fund,Furniture,G28,Galla,Game,gangbang,Garnet,gauges,gegen,Generation,George,Gets,Gift,girl,glare,glow,goal,Gold,Good,gossip,governors,gradually,grandparents,gratis,Greek,grill,grow,guarantees,guide,Gunsmokin,ha,haldi,handheld,handy,hardcore,harrison,haul,Hdd,headRef,hearing,heatsink,held,helping,Here,heterotetramer,higher,Hilfe,hire,HLTH,Holden,Holly,Homes,Hoop,horror,host,hotels,Household,HP,Hudson,huningue,hydrocodone,Iatrogenic,idea,Identify,ignore,illustrates,immediately,implants,impose,improvements,Incest,income,increasing,index,indicated,induced,Infiniti,informing,initiatives,input,Insider,install.com,Institutes,Insurance,intellectual,interactive,interim,Interpol,intimate,inverse,Invoicing,iPhoto,Irrelevant,islands,IST,iterator,J,Jagel,Japanese,je,Jersey,Jewish,job,Johnny,Jones,Joux,judgment,jumping,Justice,Kamingqi,KB,Kelly,keyboard,KIDNEY,kind,KISS,Knitting,Kootenay,KYLER,LA,lack,Lake,landing,Large,late,launch,Lawyer,LCD,leaders,learn,Leave,Leg,Lenders,lesbian,Lets,liaison,license,lighting,Limb,Line,linux,Listed,Literature,lives,load,located,log,london,Looking,lose,Lottery,Lowers,Luck,lymphocyte,Mac,macro,Magefire,mailing,maintaining,Makes,Manage,manifestation,manufacturers,maps,marginal,Mark,Marleen,Mary,master,mate,maths,mature,maybe,MCI,meaning,mechanism,Medicated,meeting,Members,memset,merchandise,Messages,method,mexican,Michelangelo,middle,Milan,Military,mine,minister,Minutes,Mississippi,mixing,Mobility,modest,Mold,MONDAY,monster,mood,Morrison,mother,Mount,Move,Mozilla,MS,multi,Murad,Mussel,mystery,nailheads,NASA,nature,NCAA,necessarily,negotiated,Net,neuronal,newspaper,Nick,nipple,Nobody,None,normally,NOT,Notes,Nov.,NT/2000,numbers,nuts,O3,objects,obtaining,och,Oeil,Officer,OH,OLD,Oncogene,Opal,operating,OPM,option,Oracle,Ordination,organizations,Originally,OT,outcome,outside,Overlay,owners,P.,Package,pøeklad,pairs,Panasonic,Paper,pardoned,parking,participating,partners,passed,PATENTS,Patrick,payment,PDA,pee,Pennington,percussion,performs,Pero,Persuasion,PF40,Philip,photo,physical,pick,pie,pine,pitting,Plains,Planning,plastic,Playacar,plays,plotted,Poberaj,Pokemon,Policy,Poly,pop,Porn,Portal,positive,postings,Pour,Practical,prà ctic,prefix,prepared,presentations,Press,prevent,pride,principles,Prior,PRO,procedures,Procevo,Production,profile,programmes,projector,Promotion,Property,Pros,PROTEIN,provincial,PSU,publicly,pull,Purchase,pusher,Q.,Quality,Question,Quiet,R.,Radar,raiment,ran,Rapid,ratings,re,Read,ready,reasonable,receives,Reciprocating,RECOMMENT,Records,Reddish,refer,Refinery,Regard,Regional,regulars,rejoice,Relationships,releasing,RELOCATION,remind,rename,Repair,reported,representatives,REQUESTED,reservations,resistance,Resources,responsible,restoring,resume,Return,reversal,revisits,Rice,Ride,Ringtones,rival,roads,Rock,Roll,roof,Ross,Route,RS,rules,Rusayl,S.,sad,Sahara,sales,samples,Santa,Satisfaction,saved,sc,Scattered,Scheme,Schwinn,Score,Screensaver,SDM,Searching,Sec,sector,seeker,select,Self,seminal,senior,sentence,sequence,served,session,settled,sexual,Shama,Sharon,shemale,shipping,Shoot,shorter,showing,Side,signed,Silver,simply,Singers,sites,skateboarding,Skin,Sleek,slippery,smbmount,SN,SO,sodium,soldiers,soluzioni,Song,soprano,sound,south,spaces,speak,Specialist,specified,spend,Spirit,sport,spread,sqlite3,SSW,Stage,standard,star,starter,statenotify.so,statues,Steel,stepping,stick,stomach,store,Straight,stream,strict,Strong,Students,Study,stylish,submission,Subsidiary,Successful,sufficiently,Suite,SUMO,SUPERANNUATION,Supplies,supports,Surgical,suspended,Swedish,sy,syringe,Table,Tail,Talk,Tape,Tatil,te,Teams,Techno,Telescope,template,Tennessee,Terrace,testing,Textures,theater,themselves,therefore,thinking,thongs,threads,Throughout,tiava,tight,Tint,Titles,Today,Tom,Tool,Topps,totally,tours,TOWN,track,trading,trails,transcription,translates,trashing,treated,trends,Trier,trouble,Trust,TSI,tunes,turning,Twin,u,ultimate,Unbeatable,understand,Unexplained,unique,universal,unlock,unwilling,updates,upskirtjapan,Us,useful,Utah.com,V3,val,VALUE,Vargas,vary,Velcro,verify,VGA,Victims,VIEW,villas,virginia,visiting,VLANs,Volcano,voter,vs,w123,Waldhaus,walls,war,Wars,watch,waves,weapons,Websites,Weeks,Welding,Western,wheel,Whiskies,Wiba,Wiki,William,Wind,winning,wise,Within,woman,wooden,worker,worldwide,Wright,wrong,Wyck,Ximenes,xxx,ye,Yesterday,youngsters,z,Zic,zzzz}";0.545523

Hors ligne

#15 20/04/2009 17:10:26

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Après Analyze (suite):

"public";"fourgrams";"part2";0;5;53972;"{"","",the,-,of,and,to,:,in,<UNK>,(,a,for,),is,""\"""",on,that,with,/,by,The,'s,or,|,from,are,at,as,I,',this,&,$,was,it,>,an,have,you,not,will,],be,[,your,has,1,all,...,A,can,*,2,=,their,about,2005,my,which,they,his,new,we,3,more,0,one,up,%,+,--,other,our,#,but,were,had,who,any,into,he,its,if,so,also,may,4,her,these,In,5,when,some,no,time,would,This,use,like,free,should,just,out,than,two,@,over,New,what,10,them,information,only,through,US,2004,most,do,""\\"",been,people,»,such,me,All,Home,6,after,£,then,2006,·,between,For,using,where,said,under,And,how,very,7,8,many,before,could,data,there,make,off,because,de,system,To,12,first,i,must,American,even,C,John,2003,get,us,including,used,made,now,s,work,being,By,It,20,those,No,good,see,E,him,number,<,You,based,does,each,THE,within,9,business,own,she,support,years,~,©,day,right,shall,From,online,""{"",back,public,here,On,service,state,both,while,100,around,sex,OF,set,way,18,available,high,last,little,three,Your,home,PM,0.00,did,file,Free,30,B,Web,14,D,message,Service,We,..,power,x,same,services,11,Business,found,much,News,Of,Â,down,Health,pm,Services,since,State,University,16,Online,case,during,help,Hotel,products,What,13,different,full,got,million,My,Our,site,students,water,AM,DVD,include,list,small,X,against,AND,making,per,software,year,always,find,provide,Re,World,""}"",City,control,Date,music,name,research,M,program,South,take,A.,Black,form,If,Other,See,With,2000,am,book,But,Music,old,performance,real,Education,every,give,go,Internet,know,life,National,private,well,15,another,teen,without,world,2001,25,As,local,One,24,children,family,Information,line,Mr.,quality,still,View,About,big,Center,Contact,current,given,He,market,need,version,change,International,level,network,S,School,think,web,50,health,less,More,Search,T,left,members,school,history,page,programs,'re,size,company,getting,government,May,men,R,really,related,resources,second,security,Support,.,17,2002,22,®,best,better,contact,House,large,card,community,long,never,personal,specific,systems,TO,type,value,An,development,Group,might,n,needs,pages,person,Posts,search,Software,user,access,David,economic,Management,N,project,special,Community,gay,Law,love,next,PC,policy,student,until,West,White,women,again,care,files,great,important,IN,problem,required,video,want,working,23,car,design,going,High,Jan,No.,open,part,place,say,Time,together,`,19,26,class,come,Department,East,How,North,That,21,address,CD,light,major,P,Page,problems,Research,w,analysis,black,China,cost,country,early,game,hand,Hotels,January,makes,plan,too,°,Best,companies,December,four,keep,live,run,story,Systems,W,young,above,America,area,books,computer,content,County,date,days,management,Network,Phone,rather,tax,Total,UK,Women,06,across,away,Buy,credit,girls,Michael,often,possible,process,provides,results,room,says,single,System,total,College,e,end,field,First,group,law,Office,order,Part,percent,post,range,received,review,staff,start,term,They,today,various,Windows,create,Design,download,Dr.,features,further,future,hours,II,Life,others,point,price,Products,Site,Street,Top,When,already,Canada,feel,following,general,having,issues,King,Location,m,non,offers,rates,River,S.,Set,So,Table,times,top,true,art,Board,called,costs,due,either,existing,face,few,General,God,His,info,international,key,Member,phone,porn,posted,r,rate,section,something,Special,test,These,things,York,After,areas,Art,body,call,check,course,Development,email,FOR,G,higher,human,IT,J,'ll,machine,Main,man,meeting,months,offer,read,record,send,show,Source,teens,white,William,activities,additional,Association,Big,code,English,ever,F,Guide,June,least,look,mature,news,night,o,office,Park,put,significant,Star,team,technology,0.000,Add,Club,Company,complete,Day,enough,food,fully,industry,links,low,model,pictures,request,Robert,standard,States,website,application,certain,child,designed,Great,H,hotel,insurance,la,looking,move,p,Paul,planning,poker,Project,property,return,St.,upon,written,1999,31,August,Book,Books,buy,c,changes,clear,five,image,Inc.,interest,items,J.,job,L,mail,Most,national,Now,party,photos,play,provided,Public,pussy,risk,series,social,taking,text,Use,Western,whether,28,§,Access,action,along,become,digital,Drive,Family,learning,levels,Local,medical,once,paper,product,reason,Review,Size,Technology,USA,War,40,amount,cell,Computer,Copyright,Country,Director,doing,house,images,issue,known,method,net,NEW,outside,Road,self,Series,server,similar,sound,Texas,usually,200,air,At,b,California,came,Car,Church,Committee,created,Do,et,final,Forum,Friday,friends,Game,growth,head,hot,James,lead,Links,London,Media,Model,movie,Only,picture,prior,questions,quite,Red,'S,She,training,visit,actually,Blue,Chinese,Code,Commission,drug,European,events,February,income,Lake,Last,List,M.,main,necessary,nice,present,professional,September,side,sites,t,third,took,United,User,account,Air,apply,appropriate,Australia,building,Can,cum,direct,education,force,individual,Insurance,Journal,latest,Library,loss,minutes,money,normal,Not,Peter,production,providing,question,require,San,Science,Server,Show,simply,Training,TV,Us,V,Video,29,Accessories,add,Africa,almost,among,Any,applications,Area,bit,center,Conference,Court,'d,energy,equipment,federal,gets,Government,hard,K,kind,Lee,material,memory,Name,October,Old,position,Power,President,probably,share,six,stock,store,stories,study,Title,treatment,wife,yet,^,....,01,Address,Back,Be,became,C.,color,Council,customers,d,Daily,developed,Digital,directory,E.,f,Find,Gallery,Get,Global,Human,III,Is,leading,let,lot,'m,models,numbers,ON,Order,pay,Personal,points,release,several,Small,space,style,Tom,trying,whole,wrote,27,Action,adult,advice,although}";"{0.04848,0.0260533,0.0221,0.0206833,0.0198467,0.01692,0.01382,0.0128633,0.0125633,0.01179,0.0114333,0.00868667,0.00806333,0.00699333,0.00606667,0.00565667,0.00540333,0.00529667,0.00492667,0.00463667,0.00458667,0.00419667,0.00362667,0.00343667,0.00331667,0.00319,0.00316333,0.00304,0.0024,0.00231667,0.00230667,0.00223333,0.00215,0.00214333,0.00213667,0.00208333,0.00207333,0.00204,0.00202333,0.00199667,0.00198667,0.00191667,0.00191333,0.00188,0.00180333,0.00171333,0.00167,0.00160333,0.00155667,0.00151,0.00147667,0.00142667,0.00137333,0.00135,0.00127,0.00120333,0.00114333,0.00111,0.00110667,0.00110333,0.0011,0.00107333,0.00106,0.00102667,0.00102667,0.000993333,0.000986667,0.00098,0.00096,0.000956667,0.000943333,0.000936667,0.000913333,0.000906667,0.000906667,0.000903333,0.000893333,0.000886667,0.000853333,0.000836667,0.00083,0.00083,0.000793333,0.000786667,0.00078,0.000773333,0.000763333,0.00076,0.000756667,0.000743333,0.00071,0.0007,0.000683333,0.00068,0.000676667,0.000676667,0.000666667,0.000666667,0.000656667,0.000653333,0.000646667,0.000643333,0.000643333,0.000636667,0.000626667,0.00062,0.000606667,0.0006,0.0006,0.000586667,0.000586667,0.00056,0.000553333,0.000553333,0.000553333,0.00055,0.00055,0.000546667,0.000543333,0.00054,0.000536667,0.000523333,0.000523333,0.000516667,0.000513333,0.000513333,0.000496667,0.000496667,0.000483333,0.000483333,0.000476667,0.000473333,0.00047,0.000466667,0.000466667,0.000466667,0.00046,0.00046,0.000456667,0.000443333,0.000443333,0.00044,0.000436667,0.000436667,0.000433333,0.000433333,0.000423333,0.000423333,0.000416667,0.000416667,0.00041,0.000406667,0.000403333,0.000403333,0.000396667,0.000396667,0.000396667,0.000396667,0.000393333,0.000393333,0.00039,0.00039,0.000386667,0.000386667,0.000386667,0.00038,0.00038,0.000376667,0.000376667,0.00037,0.000366667,0.000363333,0.000363333,0.000363333,0.00036,0.00036,0.000356667,0.000353333,0.000353333,0.000346667,0.000346667,0.000343333,0.00034,0.000336667,0.000333333,0.000333333,0.000333333,0.000333333,0.000333333,0.00033,0.00033,0.00033,0.00033,0.00033,0.000326667,0.000323333,0.000323333,0.000323333,0.000323333,0.000323333,0.00032,0.00032,0.000316667,0.000316667,0.000316667,0.000313333,0.000313333,0.000313333,0.000313333,0.00031,0.00031,0.000306667,0.000306667,0.000306667,0.000303333,0.000303333,0.000303333,0.0003,0.0003,0.0003,0.000296667,0.000296667,0.000296667,0.000296667,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.000276667,0.000276667,0.000273333,0.000273333,0.000273333,0.000273333,0.000273333,0.000273333,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.00027,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001}";"{``,.*,0.0,00:24,01.181929,020,0337,05,+0.61,07:54,09-08-2004,1000,1012,-10.5,1094653909,1117730784,116,12/01/05,1255,13-14,14/02/2005,14th,155.steroid,168,177Kb,1856,1921,1968,1990s,1998,2.0,2005-03-28,20:55,21:58:26,230,2.49,2.589300,2767,29.95,300.00,312314,33,3499.99,363294,3901,400,42,43998,460,4.9,500-599,519,551,5.8.5,6:00,63,659.95,6ES7450K2BRK,718,76,7p.m.,8.22,87007,900MHz,""94,995"",992,¬,“,±,÷,Æ,A13,Aaronson,able,Abuses,acceptable,accomodation,accurate,acknowledge,acted,Activity,Adams,addition,Adjustable,admitted,Adult,Adventure,aerobic,aforesaid,aged,aggregate,agrees,AIDS,Airport,Alanine,aldi,alignment,allow,Aloud,Alternatives,Amaya,american,Amr,analyze,Andy,Animation,Announcements,answering,Antivirus,anywhere,APC22264,appears,Application,appreciated,APPX,Arbor,Arctic,arial,Army,ARTHUR,artists,ashlee,asked,Assault,assignments,association,ate,attached,attitudes,Auctions,Augé,Authoring,Auto,availability,Average,Aware,B0000AKVJC,Bachelor,bag,Ball,bangbus,Banners,barium,baseball,basis,Batman,bazar,Beach,beat,becomes,beer,behalf,believes,Bending,Bernard,Bev,BIDS,BILL,biofoam,birth,BLACKBERRY,Blight,Blond,Blowjobs,board,Bogut,bonds,boost,born,boul,box0,bracketing,branding,breaking,Brian,brilliant,broadband,Brothers,brunbob,Buddha,bugs,bukakke,Buried,Bush,button,bytes,cabinet,Cake,Call,Cambridge,camper,candidates,capabilities,Captain,cards,Caribe,carry,cases,Cassy,categories,Caught'ya,CCC,celebrity,centers,Ceramic,Cezanne,chalkboard,Change,Chapter,charges,charter,Chechen,chemistry,Chicago,Chill,Choose,Christine,churches,Cisco,civil,Clan,classification,cleaning,Click,Clinical,close,club,Co.,cock,Colby,collecting,Collins,Colour,com.c2i2,Comley,Comments,committed,communication,comparative,competition,completeness,compositeur,con,concessions,condo,config.h,Congress,conniving,Considerations,CONSTANTS,consultants,contain,Contents,Continuing,Control,conversion,cool,Copper,Cornell,correct,Costa,Counted,Course,cover,cozinha,Crane,Creating,Crest,Croatia,crush,cube,cumshot,currently,Customer,CyberSpeedz2000,D.,Dale,Dance,Darwin,dating,dbz,deal,Deb,decent,decorated,default,defined,del,delivers,demands,denotes,deploy,derivation,deserve,Desperate,details,Deutermann,device,di,dick,dies,diffs,Ding,directly,disapproval,discovered,disdained,display,distinct,disturbing,Django,document,dog,Dolphin,done,Doris,doubt,Downs,drawing,drive,drop,DS,Duffels,Dutch,dying,earlier,easily,eater,ECMWF,edge,Editorial,effect,efforts,Eiendomme,elected,Electronic,eleven,Eltron,Emerging,employee,Emulation,encouraged,endwise,Engine,enhanced,Enrollment,entertainment,Entry,EPA,Equipment,Erin,ESEA,EST,estimated,EU,evaluation,Event,Everyone,EX,Examples,exchange,executive,exit,Expenditures,expert,explores,extend,extra,Eyes,facesitting,factories,failsafe,falling,Fantasia,Farming,Fat,fax,feature,fee,Fees,FEMINIST,Ffm,Fifth,filing,filters,Financial,Finished,firm,fitness,FL,flavoured,floating,flower,Foam,follando,footage,forderjunk,Form,forms,Forums,fourth,Françaises,FRCS,French,friendly,Frye,fuel,function,fundies,Furniture,G5,galleries,Games,Gardens,Gates,GC,Gene,genesis,George,GETAWAYS,gift,Girl,Glaser,Gloster,Go,gold,Gone,gorgeous,GPs,Graf,granulocyte,greater,Greenskeeper.org,gross,Growth,guess,guitar,guys,habitat,Halcyon,hamper,hands,Happy,harmful,hate,hayes,header,heard,Heath,held,Hematologists,herd,hey,Highest,Hilton,historic,HJ,holders,Holmenkollen,Homespun,hoop,horse,hostess,hou,however,html,Hull,hunting,Hyperlinks,IBM,IDCHLEN,identify,ifps,illustrate,immediate,impairment,Important,improving,inch,incoming,increasingly,Indexed,indictment,INDUSTRIAL,influenced,Ingle,Initiative,Inner,insecurity,inspired,instead,Instructions,integer,intensive,interests,internet,Intimate,inventory,invisible,Iowa,Ireland,isbn,Israel,Italy,itself,Jacks,Japan,Jayson,Jeremy,Jewish,Jobs,Join,Joomla,Js,Julians,jury,k4,Kastrup,keeping,Kentucky.com,keywords,kill,Kings,kkustron,knowledge,Korea,Kunene,L4,Laboratory,Laffey,Land,languages,Largest,later,launched,layouts,leaders,learned,leaves,legal,Leipzig,Les,letter,Leyden,library,Liechtenstein,lights,limitations,linear,LINK,listed,literary,lives,llvmc,lobbyist,locks,logo,longitudinal,Lord,LOTMA,Low,Ltd.,Lung,Lyrics,MacMillan,Magenta,Mail,Maintains,male,managed,Manhattan,manufacturing,Mar,Marigold,Market,MARRON,MARYLAND,Master,materials,matter,maximum,Mc,Me,measure,MEDALION,medium,MegaRAID,membrane,ment,merely,Messenger,methods,Mfr.,Michigan,Middleton,mile,milk,mineral,minister,Minutes,mission,mixed,można,moderated,Mohammadi,Monday,monolayer,monuments,morphological,Mother,Mount,movement,mozilla,Mrs.,muck,multiplication,Mushroom,MX,N.,NAME,NAPOLITANO,native,Nav,near,Nederlands,Neighbourhood,NET,NeverEnding,Newtonmore,NICE,NiLASOFT,NNPT,nomination,normally,NOT,Nothing,novelists,NSWindow,Number,Nutsedge,O.,Objective,obtaining,OCTOBER,offered,official,Ohio,older,Onet.pl,OPEN,operation,Opportunities,Option,Orange,organisation,orientated,orthodoxy,Oulu,Outlet,Over,Overview,Oxford,p4,packages,paid,palace,panel,Papers,parent,Parks,particular,Party,past,Pathological,Patton,payments,PE,pellets,People,Perfect,period,Perry,Pest,Ph.,Philip,Photo,PHPRunner,Pick,piece,pin,pissing,placed,Planning,plastic,player,please,Plug,PO,pokemon,political,pond,popularized,Port,POSITION,Post,posts,pounds,pp.,Prague,predict,premises,preseason,Presidents,pretty,previous,PrimalX,print,Priority,Pro,Process,produces,Professionals,programme,projector,Promotional,Proposal,protecting,prototype,prudential,PT,Publisher,pump,PurePower,puts,Qatar,quantification,Query,Quijote,ra,Radical,RAILWAY,Ranch,Rape,rational,RDF,Read,Reagan,Rear,recallable,recently,recommendations,records,red,reduction,references,refurbished,Regional,regular,REIT,relative,Relevant,remain,remotely,rent,replaced,reported,representing,requirements,reserved,resolved,respiratory,rest,Results,Retreats,Rev.,revised,rhaid,Richmond,Rights,RISK,roadwarrior,Rockin,roll,Room,rot,routine,RSS,rule,running,rx,sadles,Saimiri,sales,sample,Sandra,Sass,savage,saying,scanners,scheduler,Schramski,score,screen,scrubbed,SEARCH,SEC,Section,sedatives,seem,Select,selling,Senior,sentient,serial,servicio,settings,Sex,Shabby,shared,sheep,Shiite,Shirt,shop,Shorts,shown,Sibu,signal,Silk,Simple,Single,sittin,Ski,Slackware,slings,SM,Smokey,SnowShoe,soda,soldier,solutions,sometimes,sont,Sort,source,SP,Sparc,SPECIAL,specified,Spelman,Spinning,spookiest,spree,SQUARE,ST,Stags,standards,Stars,Statement,STATUE,steel,steps,Still,stop,stores,strange,stream,strides,strongest,Student,stuff,Subbuteo,submitted,Substances,Such,Sugandhalaya,Suites,Sun,Superfine,supported,Sure,surrounding,Suzi,Sweetest,Sworn,synthetic,table,Taisen,talk,tape,Task,taxation,teach,TEAM,Technische,TEKS,tell,tend,Terms,Tested,textual,that'sa,Then,There,thing,Thomas,thousand,Thromboembolism,thus,Tigger,timing,Titanic,TN,Tolkien,tool,topographic,toughness,tower,TR,Trading,trained,transform,TRANSPORT,travelled,tree,trial,trio,Truck,try,Tuesday,turned,twice,Type,u,Uk,Unabhängige,Underground,unenforceable,unique,Universities,unmodified,Uow,updates,upward,usability,users,uteri,v.,vacuum,Valley,Van,Various,Vegas,venturing,versus,via,victory,Viewer,Vincent,Virtual,Visit,Vitro,Vol,vote,vs,WA3NAN,walked,wanda,wardrobe,WAS,watches,wax,wears,wedding,weeks,Wellington,wetness,Whether,whom,wide,Wild,Wilson,WINDSOR,Winter,Wise,Wizard,wonderful,Word,Working,worm,wrapped,Written,www.pensxpress.com,xemacs,XT,Yakomo,Yeh,Yoho,youth,Zürich,Zip,ZZAP}";0.105289
"public";"fourgrams";"part4";0;5;52712;"{</S>,"","",.,the,-,and,to,of,<UNK>,in,),(,a,:,for,""\"""",is,on,/,with,that,or,by,'s,|,at,from,are,as,be,;,you,it,not,&,...,I,this,?,',!,1,an,was,have,],will,>,your,2,$,all,[,The,has,which,can,more,their,but,one,*,they,3,we,0,%,his,A,who,=,out,up,other,my,so,+,--,its,our,about,new,5,he,when,4,any,than,were,if,do,been,would,may,into,time,only,such,no,there,them,information,#,free,two,some,like,over,had,her,New,also,8,use,people,should,10,me,just,what,these,6,PM,through,each,work,well,now,""\\"",7,system,@,us,many,set,made,2005,see,after,first,including,said,then,being,very,data,how,most,before,good,here,home,could,under,where,years,make,those,used,because,get,US,..,12,between,him,does,support,based,business,online,year,service,she,20,·,»,available,both,i,sex,number,back,even,site,15,high,must,AM,Home,program,while,2004,three,de,did,without,x,down,24,C,To,using,11,area,page,right,day,during,life,shall,16,18,30,help,public,s,services,13,e,go,Services,state,within,""}"",£,2003,Inc.,off,too,different,full,last,long,need,<,9,News,order,provide,web,against,big,file,great,name,THE,In,game,way,group,health,17,American,list,little,process,same,software,""{"",All,E,School,take,University,best,every,line,school,Web,25,City,John,real,Service,still,children,development,women,21,management,Page,part,100,B,black,include,much,per,14,around,For,products,since,systems,working,book,family,Information,value,Your,again,And,local,show,50,Center,days,State,video,world,~,June,More,OF,old,Online,S,23,Â,County,find,members,Of,You,2002,DVD,Health,place,research,2001,am,another,large,less,May,access,January,non,own,person,students,teen,19,art,North,policy,power,type,0.00,2000,2006,car,girls,small,technology,Business,come,control,December,related,required,AND,left,never,programs,user,change,Date,government,issues,love,music,next,nude,World,Board,design,given,human,least,really,Research,specific,version,current,experience,Free,gay,Guide,low,think,UK,company,following,Group,M,making,model,project,read,South,United,X,areas,class,computer,form,Management,Street,study,training,22,action,case,English,F,food,Internet,level,man,men,NEW,play,today,water,website,27,code,L,point,quality,things,application,away,better,CD,country,end,General,God,might,report,second,security,With,care,International,know,London,property,several,T,26,called,Company,function,games,market,Music,offer,post,rate,results,Search,special,System,want,address,April,body,complete,few,general,It,n,October,Systems,text,together,upon,'ve,community,course,found,IN,Jan,light,money,N,National,needs,network,On,Price,product,Program,search,sites,Windows,29,companies,Contact,cost,date,either,etc.,hard,High,Hotels,news,open,performance,pm,put,Road,section,something,times,top,treatment,W,among,become,call,four,history,job,million,November,personal,porn,size,subject,This,view,West,White,40,ass,Club,contact,financial,give,individual,others,PC,problems,say,Set,St.,'',28,activities,air,Black,College,early,education,From,Hotel,House,important,let,look,office,present,private,provided,Public,questions,R,Software,stories,TO,We,young,above,always,Art,child,D,event,further,future,G,going,July,necessary,provides,pussy,self,series,test,Time,USA,View,came,changes,ever,getting,got,II,image,My,No,once,Site,source,story,student,team,teens,until,©,c,email,enough,insurance,J.,keep,key,land,List,main,makes,Mr.,often,Park,patients,space,start,though,week,words,York,`,31,America,Box,building,buy,By,comments,common,costs,Day,effective,field,hours,issue,known,link,offers,percent,phone,possible,question,run,September,travel,true,whether,^,®,added,along,applications,Association,Canada,check,Data,due,economic,files,hotel,interest,'ll,major,mature,Member,Other,pages,party,please,potential,problem,Products,risk,server,al,already,card,Central,Community,Education,hand,industry,live,looking,media,medical,message,mode,models,price,production,receive,record,room,Series,social,stock,types,via,....,city,countries,Department,Development,equipment,hot,international,item,later,No.,Office,original,P,Read,short,single,someone,staff,States,store,table,title,Washington,What,yet,bit,box,California,clear,click,Council,create,David,especially,existing,five,included,James,member,output,period,return,rights,Security,tax,total,usually,various,Video,0.000,1999,60,Books,Centre,cover,d,designed,details,example,FOR,front,gallery,having,head,language,law,m,means,natural,Network,particular,position,Project,request,review,San,standards,style,Top,Women,°,animal,b,below,China,credit,film,friends,GMT,income,kids,kind,lesbian,machine,March,minutes,normal,oil,plan,Power,prices,release,Report,response,Travel,w,06,base,board,Book,Committee,courses,download,events,federal,g,Green,includes,items,knowledge,'m,M.,Manager,o,Open,pictures,points,Real,strong,thought,unit,unless,visit,01,add,appropriate,August,character,close,developed,directory,done,easy,effects,ensure,eyes,features,final,foreign,gas,H,held,History,house,increase,Media,meet,mp3,needed,Our,past,Phone,picture,Product,'re,solutions,sound,St,users,word,About,according,approach,Blue,Care,cell,Click,decision,Design,drive,else,et,European,far,images,info,Institute,la,Law,links,Links,mail,material,night,One,pay,range,Red,requirements,result,says,similar,Sports,teachers,terms,thing,TV,Type,v,war,written,y,Year,05,1998,32,activity,additional,adult,allow,almost,analysis,bad,books,British,Car,cause,certain,content,described,Do,documents,doing,error,Europe,Forum,fully,fun,Great,growth,however,internet,K,Lake,legal,location,memory,Microsoft,option,outside,rather,received,resources,respect,road,S.,sale,Science,Support,taken,Technology,Texas,turn,V,wrote,35,A.,able,Act,believe,built,CA,Christmas,comes,command,conditions,Conference,Digital,Director,District,Email,en,fast,Fax}";"{0.0548533,0.0420067,0.0293367,0.0225567,0.0192033,0.0191133,0.0135367,0.0132167,0.01266,0.0111133,0.0109633,0.0105933,0.00941667,0.00924667,0.00715333,0.00643667,0.00571333,0.00493,0.00460667,0.00458,0.00454333,0.00379667,0.00356,0.00318333,0.00310667,0.00304667,0.00302667,0.00297333,0.00289,0.0028,0.00269333,0.00254667,0.00253,0.00247,0.00235333,0.00227,0.00220333,0.00216,0.00211,0.00208333,0.00208,0.00198667,0.00197667,0.00189667,0.00183,0.00182667,0.00182667,0.00162333,0.00161333,0.00154,0.00148667,0.00145667,0.00140333,0.00140333,0.00138667,0.00135333,0.00134,0.00127667,0.00123,0.00119667,0.00119333,0.00112667,0.00109333,0.00104667,0.00104,0.00103333,0.001,0.00099,0.000983333,0.000983333,0.000973333,0.000963333,0.000963333,0.0009,0.000886667,0.00088,0.000876667,0.000866667,0.000863333,0.000856667,0.000843333,0.000843333,0.00082,0.000816667,0.000816667,0.00081,0.000806667,0.00078,0.00077,0.000766667,0.000763333,0.00076,0.000753333,0.00074,0.000726667,0.000693333,0.00068,0.000663333,0.00066,0.00066,0.000656667,0.000653333,0.000643333,0.000643333,0.000643333,0.000633333,0.00063,0.000623333,0.00062,0.00062,0.000616667,0.0006,0.00059,0.000586667,0.000563333,0.000556667,0.000553333,0.000546667,0.00054,0.00054,0.000533333,0.000526667,0.000516667,0.000506667,0.000503333,0.000496667,0.000483333,0.000473333,0.000466667,0.000456667,0.000456667,0.00045,0.000446667,0.00044,0.00043,0.000426667,0.00042,0.00042,0.000416667,0.000416667,0.000413333,0.000413333,0.000413333,0.00041,0.00041,0.000406667,0.000406667,0.000406667,0.000403333,0.000403333,0.000403333,0.000403333,0.0004,0.0004,0.0004,0.0004,0.000396667,0.000396667,0.000396667,0.000393333,0.000393333,0.00039,0.000386667,0.000386667,0.000386667,0.000383333,0.00038,0.00038,0.000373333,0.000373333,0.00037,0.00037,0.000366667,0.000366667,0.000363333,0.000363333,0.000363333,0.000363333,0.000363333,0.000363333,0.000363333,0.00036,0.000356667,0.000356667,0.000356667,0.000346667,0.000343333,0.000343333,0.000336667,0.000333333,0.000333333,0.000333333,0.00033,0.00033,0.000326667,0.00032,0.00032,0.00032,0.000316667,0.00031,0.00031,0.00031,0.00031,0.000306667,0.000306667,0.000306667,0.000306667,0.000303333,0.000303333,0.000303333,0.000303333,0.0003,0.0003,0.0003,0.0003,0.0003,0.0003,0.0003,0.000296667,0.000296667,0.000296667,0.000296667,0.000296667,0.000296667,0.000293333,0.000293333,0.00029,0.00029,0.00029,0.00029,0.000286667,0.000286667,0.000286667,0.000286667,0.000286667,0.000283333,0.000283333,0.000283333,0.000283333,0.000283333,0.000283333,0.00028,0.00028,0.00028,0.00028,0.00028,0.00028,0.000276667,0.000273333,0.000273333,0.00027,0.00027,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.000263333,0.000263333,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.000243333,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.000233333,0.000233333,0.000233333,0.00023,0.00023,0.00023,0.00023,0.00023,0.00023,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000226667,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021,0.00021,0.00021,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000206667,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.000203333,0.0002,0.0002,0.0002,0.0002,0.0002,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000196667,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.000193333,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.00019,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000186667,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.000183333,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000176667,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.000173333,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.00017,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000166667,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.000163333,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.00016,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000156667,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.000153333,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.00015,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000146667,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.000143333,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.00014,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000136667,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.000133333,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.00013,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000126667,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.000123333,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.00012,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000116667,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.000113333,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000106667,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.000103333,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05,9.66667e-05}";"{``,***,0.0000000,0.051044,01:20,02:00,0314991,04:41,06:06,07/30/04,08:50,0.99.2,1.000,10-1/2,10:43,1078742543,11/01/2006,1129952702,1173,121,125.00,131,13m,14.66,15:15,16-26,1710,1806,1899,1931,1969,1987,1994,1a,-2:00,2004-08,2.0.27,21:14:40,223,2368.5,249.89,25840,-27838,2BR/2.5BA,""3,000,000"",317318,333,354,37,3.95,4:00,416,437,46,-485.0,500,5.15pm,54,57,5S,619-628,6488,68.00,701-761,7340,770,8.00,838,889,90ml,95,98hs,¨,‘,±,÷,Ë,A1010,abandon,absence,academic,Access,Accommodation,accounts,acid,Across,active,actually,ADD,adequate,administrative,ads,Advantages,advocacy,affiliated,afternoon,agency,Aging,Agricultural,Air,Airways,Albert,Algebras,Allevard,alone,alternator,amazing,Americans,&,anal,Anderson,animals,Annotation,Ansonia,Antique,anywhere,apocalyptic,Apple,apply,approval,Aqua,Architects,Area,arm,array,Article,Arts,Asia,Asked,assertion,assistance,assumes,atctgctttt,attached,attended,ATX,AUDUBON,AUT,Authorware,Availability,Avg,aware,à ,baby,backpacks,Bahrain,balms,bangs,bar,barriers,basically,baths,Bay,Beach,BEATRICE,bed,begging,Behind,BEN,beppin,Beta,Biblical,bikini,binary,Birdbath,Bl,Blessed,Blog,blowjob,boards,BODY,bone,boot,Bosnia,bounded,boys,branch,break,Breeds,BRIGANCE,broad,brother,Bruno,Budget,buildings,burden,Bush,butterfly,bygone,cabin,cages,Callan,camera,camps,cancer,Cap,Capriccio,cardiff,Carfax,CARRIER,Cartwright,Casino,catalyst,Catovsky,cclient,celebrity,center,CERTAIN,CG1,challenges,Change,Chapman,charged,Chase,Check,Chemistry,chicken,Ching,choose,christmas,chute,Cisco,claim,classes,clean,Clerk,Clinic,closed,club,Co,coat,CODE,Cola,collection,colon,colpo,combined,Command,Commercial,committees,Communities,compatible,Complaint,compliance,comprehensive,conc,conclusion,conducting,configuring,connect,consensus,consist,constructed,consumer,contains,continue,Contractor,Controlled,convey,cooperation,Copyright,CORP,correctly,Cottages4You,Country,coursework,covered,Crab,Cream,credibility,criminal,crop,Cruise,Cuba,cum,currently,customer,cutoff,cynical,DAB,damage,Daniel,database,DAVID,DE,dean,debugger,decisively,dedication,defence,definition,delays,Delivery,Democrats,Dentistry,deployment,des,Designer,Destin,detecting,Deutscher,develpper,di,dibasic,diet,Dig,dine,directed,Directory,DISC,discover,disease,dispatch,distance,district,DIVISION,doctor,dog,domain,DoNotAge,doses,DOWNLOAD,drachma,dream,Drive,drop,Dryers,dumped,dvd,E.,earrings,eastern,Eco,edge,editorial,effect,efforts,EITHER,electric,elegant,elites,Embroidered,Empire,employs,encourage,ENE,engine,enhance,Ensim,entire,envelope,EPG,Equipment,Ernst,esp,estado,Etc,Euro,Event,EVHA,examination,except,Exclusive,exhibitionism,expectations,experimental,explored,expression,extra,f,fabulous,facility,fail,fake,families,fantasy,fashion,fatty,FE,Feb,feed,feet,fence,FFE8E8,Fifth,Filename,filter,Financing,fingering,Firefox,fish,Fittings,Flame,fleet,Flood,flower,FM93C56A,folks,Foods,Force,Forest,Format,Fort,Forza,Fox,France,FREE,Frequencies,FriendEmail,fruit,fucking,Fun,fundamentally,Furniture,Gactimus,Gallery,gamma,garnish,Gaviiformes,GEN,generators,Geological,Germany,ghestes,Gilbert,gives,glide,glutaminyl,Goals,golf,Goodwin,governmental,Graduate,Grant,gratuit,green,grill,groups,GT,Guests,GUITAR,GYN,haha,Halloween,handle,happen,hardware,Harwood,Hawai'i,Head,heard,heated,HELEN,HemCon,Hereford,Hickman,highmem,hindrance,hit,Hockey,holes,homeownership,Honolulu,Horny,host,Hotmail,HOUSING,HTML,Hulme,Hunt,hydromorphone,IC,Ide,Identify,IFAS.,illinois,imitrex,impeding,imported,in.,incestuous,incorruptible,independent,Indiana,Indonesia,Infant,Info,initial,inner,insert,install,Institut,Instruments,Integrated,intention,Interesting,internal,interviews,invent,Investors,Iowa,Iraq,Is,Islands,issued,Items,j,Jacques,Japanese,JE,Jerzees,Jim,jocks,joint,journey,judgments,junior,k,Kate,keeps,kernel,KG,killers,Kirkwood,Kiwanis,knots,Krakout,l',labels,ladies,Land,Lao,Laser,Latin,lavitra,LCD2180WG,Leadership,learning,leaving,legislation,Lens,Let,levels,liberal,Library,Life,lights,limitation,LINE,linked,listed,literature,Liverpool,LLP,Local,Lockets,LOGIN,longer,Lord,lost,Louisiana,lower,Ltd.,Luther,Lyrics,machinery,MAG,mahogany,maintaining,Making,Man,manga,manufacture,Mapping,Marine,marketing,married,Maryland,master,materials,Mattei,maximum,McFly,Meal,measures,Medical,meeting,melted,menopause,mercy,Messenger,method,mg,Michigan,Midnight,MILES,Miller,minds,Minister,Miracles,Mississippi,mixture,Mobile,moderation,Module,Moms,monitoring,month,MORE,Most,Motorama,Mouse,movie,MP3,Msg,Multi,Muri,mutually,N.,Name,NASA,nationwide,navy,nearest,negative,nerves,networks,Newsarama,NH600D,nights,Nissan,noisy,NOPRINT,Northumberland,NOTEBOOK,notifications,Now,NUDES,Nursery,NZ,OBJECT,obtain,occurred,OECD,officers,OGSA,Oklahoma,Olympus,Only,opens,operations,opportunity,Options,Order,organisations,Oriental,Os,ounces,Outlook,overlap,owners,P.,Pack,padded,Painting,pan781203,paper,parallel,Paris,Part,partir,Party,paste,patient,Pavement,Pb,PE,peer,PENNSYLVANIA,perfect,periodic,perpetuities,perspectives,Pewter,Ph.D.,Phono,Photo.net,physical,picked,piece,Pink,Pitsea,Plaid,planning,plants,Play,playmates,plugin,pockets,Poker,Polish,Polyester,poorly,Pork,PORTION,possibility,posting,Poverty,PQRS,pragma,predecessors,premise,presence,President,pretty,priced,Princess,Printers,Privacy,probably,processes,PRODUCERS,Professor,programming,projects,prompts,Prophet,protect,Protocol,Province,PSP,publication,Puebla,puppies,purposes,Pyotr,quake,quartile,quickcam,Quote,rabid,radio,rain,ran,Rape,Rating,RCCL,reaches,ready,reason,receiver,Recipients,reconciled,Recount,redheads,reference,reflection,regarding,Regional,regular,rejection,relatives,reliable,remaining,removed,renting,replies,represent,Republicans,requires,resident,resort,respondants,Restaurant,Results,Return,revidw,revoked,ribs,Riders,Ring,rit1,roaming,rock,roll,roofs,Ross,router,RSM,ruleid,RURAL,'S,safari,Sailing,salesperson,samson,santeria,satified,Save,Sbjct,scene,Schlyter,Sci,score,screen,SD,Searching,secondary,sections,seeds,seen,selection,semester,Senegal,sent,sequence,Server,SET,SeV,sexual,Shaggy,shared,She,Sheriff,SHIPPING,shooting,shortening,Shower,Shutdown,sighed,significant,SimCity,sin,sistas,six,Skier,Sky,Slicers,slution,Smoke,So,society,SOIL,solution,sometimes,sonneries,sorts,Sources,spaces,SPD,Specials,specify,spend,Spiritual,sport,Spring,Square,stable,stamp,Standing,started,STATEMENT,Stations,stayed,step,stick,stolen,Storage,Stover,Strategy,Stress,stronger,Stud,Study,sub,submitted,substitution,suck,suicides,Summer,Sunningdale,supervisors,SUPPORT,surface,Survey,Suzanne,Sweet,Sydney,Syrian,tab,tag,takes,Talks,target,Tatyana,TE,tear,technologies,telephone,TEMP,TENDER,Terms,testimony,TF,THAT,Then,therefore,thinkers,thon,threat,Thu,tickets,Tim,tipped,tits,toilets,ton,tools,topsoil,Touchstone,towards,Toys,trade,trail,tranquil,transition,trash,Trebilcock,Trial,trip,trout,Trustees,tub,Tungsten,turns,Twins,u,ul,uncertain,understanding,unintended,Units,unmoving,Up,Upgrades,urge,USC,Users,utilities,V750,Valdris,values,Variable,vav,vehicles,Vergil,veterinary,Victoria,viewing,vinyl,virus,Vista,voice,volunteer,voyeur,Vulnerabilities,waiver,Wall,WAPsite,warranty,Watch,Wave,weapons,Website,Week,Weird,Were,WHAT,whispered,WHOLESALE,wide,Wildlife,Win32,Winlogon,Wisconsin,wks,wonderful,Wordwide,works,worsening,wrist,wrong,X1,Xmas,xy,Yawn,YES,youngest,z,Zimbabwe,Zz}";0.0777566
"public";"fourgrams";"freq";0;8;5972;"{40,41,42,43,44,46,45,47,48,49,50,51,52,53,54,56,55,58,57,60,59,61,62,63,64,66,65,67,68,69,70,72,71,73,74,75,76,78,77,79,80,83,81,82,86,84,85,88,87,89,90,91,93,92,95,96,98,97,99,94,104,100,102,101,103,105,107,106,110,108,109,113,114,116,111,115,122,118,112,120,117,119,121,124,127,123,128,126,130,125,129,131,136,132,137,134,138,133,140,135,141,142,145,139,148,146,144,150,151,152,149,153,154,143,147,157,156,155,161,164,159,158,170,162,166,169,160,174,172,163,167,165,168,178,171,179,176,173,188,182,177,186,187,194,175,181,180,184,192,185,202,198,189,183,191,190,193,197,201,200,214,196,195,203,204,208,213,216,209,199,210,206,212,219,232,211,231,217,222,207,215,224,228,218,205,220,223,225,227,221,237,226,241,235,234,240,230,229,233,239,244,245,246,236,238,248,242,275,243,271,247,249,252,264,258,255,254,257,251,256,260,261,279,250,262,276,268,263,259,253,265,272,293,269,270,281,285,286,287,267,277,294,266,289,288,273,282,290,274,295,307,280,278,284,300,306,291,301,302,308,292,296,318,299,305,309,297,333,320,321,311,303,304,312,283,338,310,332,319,342,298,315,328,313,325,317,314,349,361,324,323,330,348,329,340,343,380,331,337,334,316,322,339,327,369,352,326,359,345,360,362,364,376,335,351,355,382,371,347,336,350,395,344,353,365,413,346,370,378,354,363,373,375,384,387,368,367,341,356,366,383,389,392,357,358,426,400,412,456,374,388,391,397,422,381,416,429,431,393,398,405,406,372,417,401,403,408,418,432,379,396,428,390,394,385,377,402,414,443,411,386,409,450,459,407,421,438,399,410,430,425,433,439,451,458,460,404,419,423,427,440,463,476,415,442,448,449}";"{0.02455,0.0224967,0.02151,0.0207267,0.01975,0.0185033,0.0183667,0.01724,0.0168433,0.0159167,0.01554,0.0149333,0.01406,0.0135667,0.0134533,0.0128067,0.0125233,0.0122067,0.01185,0.0112867,0.0111033,0.0100133,0.00997667,0.00991667,0.00969333,0.00895333,0.00889333,0.00853,0.00833,0.00806,0.00803,0.00771,0.00750667,0.00733,0.00728,0.00695667,0.00684667,0.0066,0.00648333,0.00612333,0.00594667,0.00583667,0.00579667,0.00573333,0.00552333,0.00547333,0.00545333,0.00518333,0.00515667,0.00514,0.00496333,0.00488333,0.00451333,0.00448333,0.00445,0.00434,0.00433667,0.0043,0.00429667,0.00420333,0.00395,0.00389333,0.00376333,0.00375667,0.00369333,0.00364667,0.00353667,0.00347333,0.00343333,0.00337333,0.00329667,0.00325667,0.00321,0.00313,0.00312667,0.00305,0.00296,0.00288333,0.00288,0.00288,0.00287,0.00273333,0.00273333,0.0027,0.00265,0.00257667,0.00254,0.00249333,0.00244333,0.00243667,0.00227667,0.00224333,0.00224,0.00223667,0.00223,0.00221667,0.00214,0.00213667,0.00205333,0.00203,0.00201,0.00198333,0.00197333,0.00194667,0.00193667,0.00191333,0.00189,0.00183333,0.00181333,0.00181333,0.00179,0.00174333,0.00174,0.00173667,0.00170333,0.00169,0.00165667,0.00165333,0.00164,0.00155667,0.00155333,0.00154333,0.00153667,0.00153333,0.00151667,0.00147,0.00145667,0.00141667,0.00140333,0.0014,0.0014,0.00139,0.00139,0.00137667,0.00135667,0.00128667,0.00127333,0.00126,0.00124667,0.00122333,0.00122,0.00122,0.00122,0.00121667,0.00120333,0.00119,0.00116667,0.00116333,0.00114333,0.00114,0.0011,0.00109333,0.00109,0.00108667,0.00108667,0.00107667,0.00105667,0.00105333,0.00104667,0.00104333,0.00103333,0.00102,0.00101667,0.00101667,0.00101,0.000983333,0.000983333,0.00097,0.00096,0.000946667,0.000943333,0.000936667,0.00093,0.000896667,0.000896667,0.000883333,0.000883333,0.000876667,0.000866667,0.000863333,0.000863333,0.000846667,0.000836667,0.00083,0.000823333,0.000816667,0.000816667,0.00081,0.000806667,0.0008,0.000793333,0.00079,0.00079,0.000776667,0.000756667,0.000743333,0.00072,0.000716667,0.000713333,0.000713333,0.000713333,0.000713333,0.000706667,0.000703333,0.000693333,0.000693333,0.000686667,0.000683333,0.000656667,0.000646667,0.00064,0.00064,0.00064,0.000636667,0.00063,0.00062,0.000616667,0.000613333,0.000606667,0.000606667,0.000606667,0.000603333,0.000603333,0.0006,0.0006,0.0006,0.000596667,0.000593333,0.000586667,0.000576667,0.000573333,0.000566667,0.000566667,0.00056,0.00056,0.000556667,0.00055,0.000546667,0.000546667,0.000526667,0.000523333,0.000523333,0.00052,0.00052,0.000516667,0.00051,0.000503333,0.000503333,0.0005,0.000496667,0.000496667,0.00049,0.000486667,0.000483333,0.000473333,0.000473333,0.00047,0.00047,0.000466667,0.000463333,0.000453333,0.000453333,0.00045,0.000446667,0.000446667,0.000446667,0.000443333,0.000443333,0.000436667,0.000433333,0.000426667,0.000423333,0.000423333,0.000423333,0.00042,0.000416667,0.000413333,0.000413333,0.00041,0.000406667,0.000403333,0.000403333,0.0004,0.00039,0.00039,0.000386667,0.00038,0.00038,0.000373333,0.00037,0.000366667,0.000366667,0.000366667,0.00036,0.00036,0.00036,0.000356667,0.000353333,0.000353333,0.00035,0.000346667,0.000346667,0.000346667,0.000343333,0.000343333,0.00034,0.000333333,0.000333333,0.00033,0.00033,0.00033,0.000326667,0.000326667,0.000323333,0.000323333,0.000323333,0.000323333,0.00032,0.000316667,0.000313333,0.000313333,0.000313333,0.00031,0.00031,0.00031,0.00031,0.000306667,0.000306667,0.000306667,0.000303333,0.000303333,0.000303333,0.000303333,0.000303333,0.000303333,0.0003,0.000296667,0.000293333,0.000293333,0.000293333,0.000286667,0.000283333,0.000283333,0.00028,0.00028,0.000276667,0.000273333,0.000273333,0.00027,0.000266667,0.000266667,0.000263333,0.000263333,0.000263333,0.00026,0.00026,0.00026,0.00026,0.000256667,0.000256667,0.000256667,0.000256667,0.000253333,0.000253333,0.00025,0.00025,0.00025,0.00025,0.00025,0.000246667,0.000246667,0.000246667,0.000243333,0.000243333,0.00024,0.000236667,0.000236667,0.000236667,0.000236667,0.000233333,0.00023,0.00023,0.00023,0.000226667,0.000223333,0.000223333,0.000223333,0.00022,0.00022,0.00022,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000216667,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.000213333,0.00021,0.00021,0.00021,0.00021}";"{420,420,420,424,424,434,434,435,435,436,436,437,437,441,441,444,444,445,445,446,446,447,447,452,452,453,453,454,454,455,455,457,457,461,462,462,462,464,464,465,465,466,466,467,467,468,468,469,469,470,471,471,472,472,473,473,474,474,475,475,477,477,478,478,479,479,480,480,481,481,482,482,483,483,484,484,485,485,486,486,487,488,488,489,489,490,490,491,491,492,492,493,494,494,495,495,496,496,497,498,498,499,499,500,500,501,502,502,503,503,504,504,505,506,506,507,507,508,509,509,510,510,511,511,512,512,513,514,514,515,516,516,517,517,518,518,519,519,520,521,521,522,523,523,524,524,525,526,526,526,527,528,528,529,530,530,531,532,532,532,533,534,534,535,535,536,537,538,538,539,539,540,540,541,542,542,543,544,544,545,546,546,547,547,548,549,549,550,551,552,552,553,554,554,555,555,556,557,558,558,559,560,560,561,562,562,563,564,564,565,566,567,568,568,569,570,571,572,572,573,573,574,575,576,577,578,579,579,580,580,581,582,583,584,584,585,586,587,588,588,589,590,591,592,592,593,594,594,595,596,597,597,598,599,599,600,601,602,603,604,604,605,606,607,607,608,609,610,611,612,613,614,615,615,616,617,618,619,620,620,621,622,623,624,625,625,627,627,628,629,630,631,632,633,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,661,662,663,664,665,666,667,668,668,669,670,671,672,673,674,675,676,678,678,679,680,681,682,683,684,685,686,687,688,689,690,692,693,695,696,697,698,699,700,701,702,703,704,706,707,708,709,710,711,712,713,715,716,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,734,734,736,737,738,739,741,742,744,745,746,747,749,750,751,751,753,754,755,757,758,759,760,761,763,764,765,766,767,769,770,771,772,774,775,777,778,780,781,783,784,786,788,789,790,792,793,794,796,797,798,799,800,802,803,805,806,808,809,810,812,814,815,816,818,819,821,822,823,825,826,829,830,832,834,836,837,838,840,842,844,846,847,849,850,852,854,856,857,859,860,862,863,866,867,869,870,872,873,875,876,878,880,881,883,885,887,889,891,892,894,896,897,899,901,903,905,908,910,912,913,915,917,920,921,923,925,927,929,931,933,936,937,939,940,942,943,946,948,950,952,955,956,959,961,963,965,968,970,972,974,976,977,980,981,983,985,987,989,991,994,995,998,1001,1003,1005,1007,1010,1013,1015,1018,1020,1022,1024,1026,1028,1030,1032,1035,1037,1040,1042,1045,1048,1050,1053,1055,1056,1059,1062,1064,1067,1069,1071,1074,1075,1078,1081,1083,1087,1089,1092,1093,1096,1098,1101,1103,1106,1108,1110,1114,1117,1120,1123,1125,1128,1132,1134,1138,1140,1143,1147,1150,1153,1157,1160,1164,1167,1170,1173,1176,1179,1183,1187,1190,1192,1196,1200,1203,1206,1210,1213,1217,1220,1223,1226,1230,1232,1235,1238,1242,1245,1248,1251,1254,1257,1260,1264,1266,1270,1273,1276,1280,1282,1285,1289,1292,1295,1298,1302,1306,1311,1315,1318,1321,1324,1328,1332,1335,1338,1343,1346,1351,1354,1359,1363,1367,1371,1376,1382,1387,1391,1396,1400,1404,1408,1413,1419,1422,1426,1430,1435,1439,1443,1447,1451,1454,1458,1463,1468,1473,1478,1485,1490,1497,1501,1506,1511,1517,1521,1527,1532,1536,1540,1544,1549,1555,1561,1567,1572,1578,1583,1588,1593,1597,1602,1608,1615,1621,1626,1632,1639,1645,1650,1656,1663,1671,1675,1682,1686,1693,1699,1707,1712,1720,1728,1734,1742,1749,1755,1763,1770,1778,1786,1794,1802,1806,1813,1821,1830,1836,1845,1852,1859,1866,1873,1881,1888,1894,1903,1910,1916,1925,1936,1943,1954,1962,1968,1977,1987,1994,2003,2014,2021,2032,2043,2052,2059,2070,2079,2089,2098,2107,2115,2125,2135,2145,2154,2163,2172,2183,2191,2202,2212,2219,2227,2238,2252,2263,2278,2287,2298,2307,2316,2327,2336,2343,2357,2369,2387,2398,2411,2426,2437,2450,2465,2478,2491,2509,2521,2531,2549,2566,2584,2594,2614,2633,2644,2662,2677,2691,2705,2718,2735,2752,2766,2782,2805,2827,2846,2861,2879,2893,2903,2919,2941,2956,2968,2983,2999,3017,3034,3045,3067,3087,3117,3130,3152,3174,3190,3211,3230,3259,3280,3297,3315,3344,3374,3393,3419,3445,3481,3508,3540,3570,3609,3628,3657,3692,3729,3765,3796,3835,3872,3910,3945,3983,4012,4042,4091,4131,4154,4194,4220,4254,4313,4353,4393,4443,4482,4550,4582,4621,4655,4742,4794,4844,4902,4952,5004,5058,5131,5200,5266,5315,5377,5436,5498,5567,5635,5718,5788,5878,5950,6046,6124,6254,6343,6416,6515,6619,6677,6776,6872,6965,7050,7163,7304,7423,7547,7680,7845,7952,8121,8303,8457,8662,8870,9100,9257,9495,9743,10020,10265,10470,10691,10931,11248,11673,12050,12457,12675,13201,13765,14264,14734,15349,16102,16613,17233,18239,18839,20306,21471,22569,23881,25016,27137,29264,31613,34295,38463,44701,50931,60782,72271,99770,166351,2693966}";-0.0122433

Hors ligne

#16 21/04/2009 11:49:36

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Alors, ces résultats ne vous disent rien?

Hors ligne

#17 21/04/2009 20:24:54

Marc Cousin
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Désolé pour le manque de réponses ...

- Si la première colonne est triée et pas les autres, la différence de performances s'explique.

Il ne nous reste 'plus' qu'à rendre les requêtes sur les trois autres colonnes rapides ...
- De mon côté, je serais intéressé par revoir les explain après le passage des stats (est ce qu'au moins maintenant les estimations sont bonnes ?)
- Le shared_buffers est vraiment très petit pour ce genre de volumétrie. Si le serveur est dédié postgresql, vous pouvez commencer par mettre 1/3 de la ram en shared_buffers. Attention, postgresql va certainement raler au redémarrage sur le shmmax trop petit, qu'il faudra étendre, via le sysctl approprié
Si cela se produit :
>sysctl kernel/shmmax
vous donne la valeur courante
sysctl -w kernel/shmmax=xxxxxxx pour mettre la nouvelle valeur (postgresql vous la donne, normalement, sinon essayez d'augmenter la valeur jusqu'à ce que ca passe smile )
et recopiez le "kernel/shmmax=xxxxxxx "dans /etc/sysctl.conf pour que ça reste après le prochain reboot
- Si on est en ubuntu, je présume que le scheduler disque est cfq. Des discussions qui peuvent ressortir régulièrement sur les mailing list tuning de postgresql, il est souvent intéressant de repasser en scheduler deadline. Pour faire ca temporairement (sans avoir besoin de rebooter, traffiquer des paramètres kernel et tout), il suffit de repérer le(s) device disque et écrire deadline comme scheduler :
echo 'deadline' > /sys/block/sda/queue/scheduler
(à répéter autant  de fois qu'il y a de disques)

Ce qui serait intéressant c'est de faire chacune de ces opérations une par une, au cas ou l'une d'entre elles débloquerait le problème, qu'on sache laquelle.

Après, si les performances restent mauvaises, ce serait intéressant de mesurer la quantité d'IO que génère cette requête (avec un log_executor_stats)


Marc.

Hors ligne

#18 21/04/2009 22:12:58

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Je n'ai rien trouvé de probant dans les résultats de pg_stats. Reste donc à voir avec les réponses aux questions de Marc.


Guillaume.

Hors ligne

#19 22/04/2009 13:12:07

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Bonjour,
Merci encore une fois pour vous deux.
Pour les questions de Marc, je commence une par une comme vous avez dit, je vous copie les résultats des que les ai, je viens de commencer avec les set statistics et explain.
A tout a l'heure.

Hors ligne

#20 22/04/2009 14:46:13

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

Voici les explains pour une même requête:

explain analyze select * from fourgrams where lower(part1)='milk' order by freq desc

"Sort  (cost=85715.66..85788.58 rows=29166 width=28) (actual time=989.862..1041.283 rows=43797 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 1776kB"
"  ->  Index Scan using part1_idx on fourgrams  (cost=0.00..82901.71 rows=29166 width=28) (actual time=334.769..876.553 rows=43797 loops=1)"
"        Index Cond: (lower((part1)::text) = 'milk'::text)"
"Total runtime: 1060.206 ms"

------------------------------------------------------------------------------------------------------------------------------------------------------------------------
explain analyze select * from fourgrams where lower(part2)='milk' order by freq desc

"Sort  (cost=95474.27..95534.26 rows=23996 width=28) (actual time=54981.544..55042.934 rows=51203 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 2064kB"
"  ->  Bitmap Heap Scan on fourgrams  (cost=574.70..93193.00 rows=23996 width=28) (actual time=95.337..54804.747 rows=51203 loops=1)"
"        Recheck Cond: (lower((part2)::text) = 'milk'::text)"
"        ->  Bitmap Index Scan on part2_idx  (cost=0.00..568.71 rows=23996 width=0) (actual time=60.391..60.391 rows=51203 loops=1)"
"              Index Cond: (lower((part2)::text) = 'milk'::text)"
"Total runtime: 55064.261 ms"

------------------------------------------------------------------------------------------------------------------------------------------------------------------------
explain analyze select * from fourgrams where lower(part3)='milk' order by freq desc

"Sort  (cost=91976.84..92034.59 rows=23100 width=28) (actual time=206224.938..206288.703 rows=52850 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 2144kB"
"  ->  Bitmap Heap Scan on fourgrams  (cost=555.60..89788.09 rows=23100 width=28) (actual time=2725.524..205967.449 rows=52850 loops=1)"
"        Recheck Cond: (lower((part3)::text) = 'milk'::text)"
"        ->  Bitmap Index Scan on part3_idx  (cost=0.00..549.83 rows=23100 width=0) (actual time=2688.857..2688.857 rows=52850 loops=1)"
"              Index Cond: (lower((part3)::text) = 'milk'::text)"
"Total runtime: 206310.657 ms"

------------------------------------------------------------------------------------------------------------------------------------------------------------------------
explain analyze select * from fourgrams where lower(part4)='milk' order by freq desc

"Sort  (cost=96299.54..96360.06 rows=24208 width=28) (actual time=304220.039..304296.193 rows=46700 loops=1)"
"  Sort Key: freq"
"  Sort Method:  external merge  Disk: 1912kB"
"  ->  Bitmap Heap Scan on fourgrams  (cost=576.29..93997.82 rows=24208 width=28) (actual time=14647.348..303898.506 rows=46700 loops=1)"
"        Recheck Cond: (lower((part4)::text) = 'milk'::text)"
"        ->  Bitmap Index Scan on part4_idx  (cost=0.00..570.24 rows=24208 width=0) (actual time=14600.721..14600.721 rows=46700 loops=1)"
"              Index Cond: (lower((part4)::text) = 'milk'::text)"
"Total runtime: 304316.153 ms"

Alors ça a l'aire d'être mieux non?

Hors ligne

#21 22/04/2009 15:29:44

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Question peut-être complètement stupide, mais quelle locale utilises-tu ? si tu n'utilises pas C, peux-tu re-créer les index avec la classe text_pattern_ops ? cela donne la requête suivante :

CREATE INDEX part1_idx  ON tableau1  USING btree  (lower(part1) text_pattern_ops);

Ensuite les ANALYZE, et les EXPLAIN ANALYZE.


Guillaume.

Hors ligne

#22 22/04/2009 15:39:55

gleu
Administrateur

Re : Des requêtes lentes, plus de 10 minutes par requête!

Question complémentaire, il y a combien de lignes dans la table indexée ?


Guillaume.

Hors ligne

#23 22/04/2009 15:43:19

solicel
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

gleu a écrit :

Question peut-être complètement stupide, mais quelle locale utilises-tu ? si tu n'utilises pas C, peux-tu re-créer les index avec la classe text_pattern_ops ? cela donne la requête suivante :

CREATE INDEX part1_idx  ON tableau1  USING btree  (lower(part1) text_pattern_ops);

Ensuite les ANALYZE, et les EXPLAIN ANALYZE.

Je ne suis pas sur d'avoir votre question.
C'est quoi la locale? Comment la connaitre?
J'ai essayé de trouver la solution tout seul, mais j'ai rien trouvé.
Sinon je vais essayer de refaire un index dans une autre copie de la base avec cette commande pour la 2éme colonne.

Hors ligne

#24 22/04/2009 15:45:52

Marc Cousin
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

En ce qui me concerne, cela me semble très 'raisonnable' comme temps de réponse : 55 secondes pour retourner 50 000 enregistrements, cela fait 1ms par enregistrement. Si ils sont réellement éparpillés sur le disque, on ne pourra pas faire beaucoup mieux. Enfin si, avec la 8.4, plein de disques le effective_io_concurrency mais on change un peu de budget là.

A part ça on voit aussi qu'il n'est plus dans les choux au niveau statistiques (un rapport 2 ça n'est pas si mal). Ca lui permet au moins de faire du bitmap_index_scan, ce qui me semble le plan raisonnable pour ce genre de requête.

On peut passer à l'étape d'après: voir ce que ça donne avec un plus gros cache (après le test demandé par gleu, qui peut permettre de gagner un peu aussi).


Marc.

Hors ligne

#25 22/04/2009 15:48:13

Marc Cousin
Membre

Re : Des requêtes lentes, plus de 10 minutes par requête!

la locale, c'est ce qui détermine l'ordre de tri physique des index sur le cluster entre autres.

On peut l'obtenir par exemple avec pg_controldata /chemin/vers/rep/cluster.


Marc.

Hors ligne

Pied de page des forums