default_rules.go 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566
  1. package goreferrer
  2. import (
  3. "strings"
  4. )
  5. var DefaultRules RuleSet
  6. func init() {
  7. domainRules, err := LoadJsonDomainRules(strings.NewReader(defaultRules))
  8. if err != nil {
  9. panic(err)
  10. }
  11. DefaultRules = RuleSet{
  12. DomainRules: domainRules,
  13. UaRules: map[string]UaRule{
  14. "Twitter": {
  15. Url: "twitter://twitter.com",
  16. Domain: "twitter",
  17. Tld: "com",
  18. },
  19. "Pinterest": {
  20. Url: "pinterest://pinterest.com",
  21. Domain: "pinterest",
  22. Tld: "com",
  23. },
  24. "Facebook": {
  25. Url: "facebook://facebook.com",
  26. Domain: "facebook",
  27. Tld: "com",
  28. },
  29. "FBAV": {
  30. Url: "facebook://facebook.com",
  31. Domain: "facebook",
  32. Tld: "com",
  33. },
  34. },
  35. }
  36. }
  37. const defaultRules = `
  38. {
  39. "email": {
  40. "126 Mail": {
  41. "domains": [
  42. "mail.126.com"
  43. ]
  44. },
  45. "163 Mail": {
  46. "domains": [
  47. "mail.163.com"
  48. ]
  49. },
  50. "2degrees": {
  51. "domains": [
  52. "webmail.2degreesbroadband.co.nz"
  53. ]
  54. },
  55. "Adam Internet": {
  56. "domains": [
  57. "webmail.adam.com.au"
  58. ]
  59. },
  60. "AOL Mail": {
  61. "domains": [
  62. "mail.aol.com",
  63. "cpw.mail.aol.com"
  64. ]
  65. },
  66. "Xfinity":{
  67. "domains": [
  68. "web.mail.comcast.net"
  69. ]
  70. },
  71. "Bigpond": {
  72. "domains": [
  73. "webmail.bigpond.com",
  74. "webmail2.bigpond.com",
  75. "email.telstra.com",
  76. "basic.messaging.bigpond.com"
  77. ]
  78. },
  79. "Commander": {
  80. "domains": [
  81. "webmail.commander.net.au"
  82. ]
  83. },
  84. "Daum Mail": {
  85. "domains": [
  86. "mail2.daum.net",
  87. "mail.daum.net"
  88. ]
  89. },
  90. "Dodo": {
  91. "domains": [
  92. "webmail.dodo.com.au"
  93. ]
  94. },
  95. "Freenet": {
  96. "domains": [
  97. "webmail.freenet.de"
  98. ]
  99. },
  100. "Gmail": {
  101. "domains": [
  102. "mail.google.com",
  103. "inbox.google.com"
  104. ]
  105. },
  106. "iiNet": {
  107. "domains": [
  108. "webmail.iinet.net.au",
  109. "mail.iinet.net.au"
  110. ]
  111. },
  112. "Inbox.com": {
  113. "domains": [
  114. "inbox.com"
  115. ]
  116. },
  117. "iPrimus": {
  118. "domains": [
  119. "webmail.iprimus.com.au"
  120. ]
  121. },
  122. "Naver Mail": {
  123. "domains": [
  124. "mail.naver.com"
  125. ]
  126. },
  127. "Netspace": {
  128. "domains": [
  129. "webmail.netspace.net.au"
  130. ]
  131. },
  132. "Optus Zoo": {
  133. "domains": [
  134. "webmail.optuszoo.com.au",
  135. "webmail.optusnet.com.au"
  136. ]
  137. },
  138. "Orange Webmail": {
  139. "domains": [
  140. "orange.fr/webmail"
  141. ]
  142. },
  143. "Outlook.com": {
  144. "domains": [
  145. "mail.live.com",
  146. "outlook.live.com",
  147. "blu180.mail.live.com",
  148. "col130.mail.live.com",
  149. "blu184.mail.live.com",
  150. "bay179.mail.live.com",
  151. "col131.mail.live.com",
  152. "blu179.mail.live.com",
  153. "bay180.mail.live.com",
  154. "blu182.mail.live.com",
  155. "blu181.mail.live.com",
  156. "bay182.mail.live.com",
  157. "snt149.mail.live.com",
  158. "bay181.mail.live.com",
  159. "col129.mail.live.com",
  160. "snt148.mail.live.com",
  161. "snt147.mail.live.com",
  162. "snt146.mail.live.com",
  163. "snt153.mail.live.com",
  164. "snt152.mail.live.com",
  165. "snt150.mail.live.com",
  166. "snt151.mail.live.com",
  167. "col128.mail.live.com",
  168. "blu185.mail.live.com",
  169. "dub125.mail.live.com",
  170. "dub128.mail.live.com",
  171. "dub127.mail.live.com",
  172. "dub131.mail.live.com",
  173. "col125.mail.live.com",
  174. "dub130.mail.live.com",
  175. "blu172.mail.live.com",
  176. "bay169.mail.live.com",
  177. "blu175.mail.live.com",
  178. "blu173.mail.live.com",
  179. "bay176.mail.live.com",
  180. "blu176.mail.live.com",
  181. "col126.mail.live.com",
  182. "col127.mail.live.com",
  183. "blu177.mail.live.com",
  184. "blu174.mail.live.com",
  185. "bay174.mail.live.com",
  186. "bay172.mail.live.com",
  187. "blu169.mail.live.com",
  188. "bay177.mail.live.com",
  189. "blu178.mail.live.com",
  190. "blu171.mail.live.com",
  191. "dub126.mail.live.com",
  192. "blu168.mail.live.com",
  193. "bay173.mail.live.com",
  194. "bay175.mail.live.com",
  195. "bay178.mail.live.com",
  196. "bay168.mail.live.com",
  197. "bay167.mail.live.com",
  198. "blu170.mail.live.com",
  199. "dub124.mail.live.com",
  200. "dub122.mail.live.com",
  201. "dub121.mail.live.com",
  202. "dub129.mail.live.com",
  203. "dub114.mail.live.com",
  204. "dub110.mail.live.com",
  205. "dub111.mail.live.com",
  206. "dub113.mail.live.com",
  207. "dub109.mail.live.com",
  208. "dub120.mail.live.com",
  209. "dub115.mail.live.com",
  210. "dub123.mail.live.com",
  211. "dub119.mail.live.com",
  212. "dub118.mail.live.com",
  213. "dub112.mail.live.com",
  214. "dub117.mail.live.com",
  215. "dub116.mail.live.com",
  216. "blu183.mail.live.com"
  217. ]
  218. },
  219. "QQ Mail": {
  220. "domains": [
  221. "mail.qq.com"
  222. ]
  223. },
  224. "Seznam Mail": {
  225. "domains": [
  226. "email.seznam.cz"
  227. ]
  228. },
  229. "Virgin": {
  230. "domains": [
  231. "webmail.virginbroadband.com.au"
  232. ]
  233. },
  234. "Vodafone": {
  235. "domains": [
  236. "webmail.vodafone.co.nz"
  237. ]
  238. },
  239. "Westnet": {
  240. "domains": [
  241. "webmail.westnet.com.au"
  242. ]
  243. },
  244. "Yahoo! Mail": {
  245. "domains": [
  246. "mail.yahoo.net",
  247. "mail.yahoo.com",
  248. "mail.yahoo.co.uk",
  249. "mail.yahoo.co.jp"
  250. ]
  251. },
  252. "Mynet Mail": {
  253. "domains": [
  254. "mail.mynet.com"
  255. ]
  256. },
  257. "Zoho": {
  258. "domains": [
  259. "mail.zoho.com"
  260. ]
  261. },
  262. "MailChimp": {
  263. "domains": [
  264. "list-manage.com",
  265. "list-manage1.com",
  266. "list-manage2.com",
  267. "list-manage3.com",
  268. "list-manage4.com",
  269. "list-manage5.com",
  270. "list-manage6.com",
  271. "list-manage7.com",
  272. "list-manage8.com",
  273. "list-manage9.com"
  274. ]
  275. }
  276. },
  277. "search": {
  278. "1.cz": {
  279. "domains": [
  280. "1.cz"
  281. ],
  282. "parameters": [
  283. "q"
  284. ]
  285. },
  286. "1&1": {
  287. "domains": [
  288. "search.1and1.com"
  289. ],
  290. "parameters": [
  291. "q"
  292. ]
  293. },
  294. "1und1": {
  295. "domains": [
  296. "search.1und1.de"
  297. ],
  298. "parameters": [
  299. "su"
  300. ]
  301. },
  302. "360.cn": {
  303. "domains": [
  304. "so.360.cn",
  305. "www.so.com"
  306. ],
  307. "parameters": [
  308. "q"
  309. ]
  310. },
  311. "ABCs\u00f8k": {
  312. "domains": [
  313. "abcsolk.no",
  314. "verden.abcsok.no"
  315. ],
  316. "parameters": [
  317. "q"
  318. ]
  319. },
  320. "AOL": {
  321. "domains": [
  322. "m.search.aol.com",
  323. "search.aol.ca",
  324. "www.aol.com",
  325. "search.aol.com",
  326. "search.aol.it",
  327. "aolsearch.aol.com",
  328. "aolsearch.com",
  329. "www.aolrecherche.aol.fr",
  330. "www.aolrecherches.aol.fr",
  331. "www.aolimages.aol.fr",
  332. "aim.search.aol.com",
  333. "www.recherche.aol.fr",
  334. "recherche.aol.fr",
  335. "find.web.aol.com",
  336. "recherche.aol.ca",
  337. "aolsearch.aol.co.uk",
  338. "search.aol.co.uk",
  339. "aolrecherche.aol.fr",
  340. "sucheaol.aol.de",
  341. "suche.aol.de",
  342. "suche.aolsvc.de",
  343. "aolbusqueda.aol.com.mx",
  344. "alicesuche.aol.de",
  345. "alicesuchet.aol.de",
  346. "suchet2.aol.de",
  347. "search.hp.my.aol.com.au",
  348. "search.hp.my.aol.de",
  349. "search.hp.my.aol.it",
  350. "search-intl.netscape.com"
  351. ],
  352. "parameters": [
  353. "q",
  354. "query"
  355. ]
  356. },
  357. "APOLL07": {
  358. "domains": [
  359. "apollo7.de"
  360. ],
  361. "parameters": [
  362. "query"
  363. ]
  364. },
  365. "Abacho": {
  366. "domains": [
  367. "www.abacho.de",
  368. "www.abacho.com",
  369. "www.abacho.co.uk",
  370. "www.se.abacho.com",
  371. "www.tr.abacho.com",
  372. "www.abacho.at",
  373. "www.abacho.fr",
  374. "www.abacho.es",
  375. "www.abacho.ch",
  376. "www.abacho.it"
  377. ],
  378. "parameters": [
  379. "q"
  380. ]
  381. },
  382. "Acoon": {
  383. "domains": [
  384. "www.acoon.de"
  385. ],
  386. "parameters": [
  387. "begriff"
  388. ]
  389. },
  390. "Alexa": {
  391. "domains": [
  392. "alexa.com",
  393. "search.toolbars.alexa.com"
  394. ],
  395. "parameters": [
  396. "q"
  397. ]
  398. },
  399. "Alice Adsl": {
  400. "domains": [
  401. "rechercher.aliceadsl.fr"
  402. ],
  403. "parameters": [
  404. "q"
  405. ]
  406. },
  407. "AllTheWeb": {
  408. "domains": [
  409. "www.alltheweb.com"
  410. ],
  411. "parameters": [
  412. "q"
  413. ]
  414. },
  415. "Altavista": {
  416. "domains": [
  417. "www.altavista.com",
  418. "search.altavista.com",
  419. "listings.altavista.com",
  420. "altavista.de",
  421. "altavista.fr",
  422. "be-nl.altavista.com",
  423. "be-fr.altavista.com"
  424. ],
  425. "parameters": [
  426. "q"
  427. ]
  428. },
  429. "Apollo Latvia": {
  430. "domains": [
  431. "apollo.lv/portal/search/"
  432. ],
  433. "parameters": [
  434. "q"
  435. ]
  436. },
  437. "Amazon": {
  438. "domains": [
  439. "amazon.com",
  440. "amazon.co.uk",
  441. "amazon.ca",
  442. "amazon.de",
  443. "amazon.fr",
  444. "amazonaws.com",
  445. "amazon.co.jp",
  446. "amazon.es",
  447. "amazon.it",
  448. "amazon.in",
  449. "www.amazon.com"
  450. ],
  451. "parameters": [
  452. "keywords",
  453. "field-keywords"
  454. ]
  455. },
  456. "Apontador": {
  457. "domains": [
  458. "apontador.com.br",
  459. "www.apontador.com.br"
  460. ],
  461. "parameters": [
  462. "q"
  463. ]
  464. },
  465. "Aport": {
  466. "domains": [
  467. "sm.aport.ru"
  468. ],
  469. "parameters": [
  470. "r"
  471. ]
  472. },
  473. "Arcor": {
  474. "domains": [
  475. "www.arcor.de"
  476. ],
  477. "parameters": [
  478. "Keywords"
  479. ]
  480. },
  481. "Arianna": {
  482. "domains": [
  483. "arianna.libero.it",
  484. "www.arianna.com"
  485. ],
  486. "parameters": [
  487. "query"
  488. ]
  489. },
  490. "Ask": {
  491. "domains": [
  492. "ask.com",
  493. "www.ask.com",
  494. "web.ask.com",
  495. "int.ask.com",
  496. "mws.ask.com",
  497. "uk.ask.com",
  498. "images.ask.com",
  499. "ask.reference.com",
  500. "www.askkids.com",
  501. "iwon.ask.com",
  502. "www.ask.co.uk",
  503. "www.qbyrd.com",
  504. "search-results.com",
  505. "uk.search-results.com",
  506. "www.search-results.com",
  507. "int.search-results.com"
  508. ],
  509. "parameters": [
  510. "q"
  511. ]
  512. },
  513. "Ask Toolbar": {
  514. "domains": [
  515. "search.tb.ask.com"
  516. ],
  517. "parameters": [
  518. "searchfor"
  519. ]
  520. },
  521. "Atlas": {
  522. "domains": [
  523. "searchatlas.centrum.cz"
  524. ],
  525. "parameters": [
  526. "q"
  527. ]
  528. },
  529. "Austronaut": {
  530. "domains": [
  531. "www2.austronaut.at",
  532. "www1.astronaut.at"
  533. ],
  534. "parameters": [
  535. "q"
  536. ]
  537. },
  538. "Babylon": {
  539. "domains": [
  540. "search.babylon.com",
  541. "searchassist.babylon.com"
  542. ],
  543. "parameters": [
  544. "q"
  545. ]
  546. },
  547. "Baidu": {
  548. "domains": [
  549. "www.baidu.com",
  550. "www1.baidu.com",
  551. "zhidao.baidu.com",
  552. "tieba.baidu.com",
  553. "news.baidu.com",
  554. "web.gougou.com",
  555. "m.baidu.com",
  556. "image.baidu.com",
  557. "tieba.baidu.com",
  558. "fanyi.baidu.com",
  559. "zhidao.baidu.com",
  560. "www.baidu.co.th",
  561. "m5.baidu.com",
  562. "m.siteapp.baidu.com"
  563. ],
  564. "parameters": [
  565. "wd",
  566. "word",
  567. "kw",
  568. "k"
  569. ]
  570. },
  571. "Biglobe": {
  572. "domains": [
  573. "cgi.search.biglobe.ne.jp"
  574. ],
  575. "parameters": [
  576. "q"
  577. ]
  578. },
  579. "Bing": {
  580. "domains": [
  581. "bing.com",
  582. "www.bing.com",
  583. "msnbc.msn.com",
  584. "dizionario.it.msn.com",
  585. "cc.bingj.com",
  586. "m.bing.com"
  587. ],
  588. "parameters": [
  589. "q",
  590. "Q"
  591. ]
  592. },
  593. "Bing Images": {
  594. "domains": [
  595. "bing.com/images/search",
  596. "www.bing.com/images/search"
  597. ],
  598. "parameters": [
  599. "q",
  600. "Q"
  601. ]
  602. },
  603. "Blogdigger": {
  604. "domains": [
  605. "www.blogdigger.com"
  606. ],
  607. "parameters": [
  608. "q"
  609. ]
  610. },
  611. "Blogpulse": {
  612. "domains": [
  613. "www.blogpulse.com"
  614. ],
  615. "parameters": [
  616. "query"
  617. ]
  618. },
  619. "Bluewin": {
  620. "domains": [
  621. "search.bluewin.ch"
  622. ],
  623. "parameters": [
  624. "searchTerm"
  625. ]
  626. },
  627. "British Telecommunications": {
  628. "domains": [
  629. "search.bt.com"
  630. ],
  631. "parameters": [
  632. "q"
  633. ]
  634. },
  635. "Centrum": {
  636. "domains": [
  637. "serach.centrum.cz",
  638. "morfeo.centrum.cz"
  639. ],
  640. "parameters": [
  641. "q"
  642. ]
  643. },
  644. "Certified-Toolbar": {
  645. "domains": [
  646. "search.certified-toolbar.com"
  647. ],
  648. "parameters": [
  649. "q"
  650. ]
  651. },
  652. "Charter": {
  653. "domains": [
  654. "www.charter.net"
  655. ],
  656. "parameters": [
  657. "q"
  658. ]
  659. },
  660. "Clix": {
  661. "domains": [
  662. "pesquisa.clix.pt"
  663. ],
  664. "parameters": [
  665. "question"
  666. ]
  667. },
  668. "Comcast": {
  669. "domains": [
  670. "search.comcast.net",
  671. "comcast.net",
  672. "xfinity.com"
  673. ],
  674. "parameters": [
  675. "q"
  676. ]
  677. },
  678. "Compuserve": {
  679. "domains": [
  680. "websearch.cs.com"
  681. ],
  682. "parameters": [
  683. "query"
  684. ]
  685. },
  686. "Conduit": {
  687. "domains": [
  688. "search.conduit.com"
  689. ],
  690. "parameters": [
  691. "q"
  692. ]
  693. },
  694. "Crawler": {
  695. "domains": [
  696. "www.crawler.com"
  697. ],
  698. "parameters": [
  699. "q"
  700. ]
  701. },
  702. "Cuil": {
  703. "domains": [
  704. "www.cuil.com"
  705. ],
  706. "parameters": [
  707. "q"
  708. ]
  709. },
  710. "Daemon search": {
  711. "domains": [
  712. "daemon-search.com",
  713. "my.daemon-search.com"
  714. ],
  715. "parameters": [
  716. "q"
  717. ]
  718. },
  719. "Dalesearch": {
  720. "domains": [
  721. "www.dalesearch.com"
  722. ],
  723. "parameters": [
  724. "q"
  725. ]
  726. },
  727. "DasOertliche": {
  728. "domains": [
  729. "www.dasoertliche.de"
  730. ],
  731. "parameters": [
  732. "kw"
  733. ]
  734. },
  735. "DasTelefonbuch": {
  736. "domains": [
  737. "www1.dastelefonbuch.de"
  738. ],
  739. "parameters": [
  740. "kw"
  741. ]
  742. },
  743. "Daum": {
  744. "domains": [
  745. "search.daum.net"
  746. ],
  747. "parameters": [
  748. "q"
  749. ]
  750. },
  751. "Delfi": {
  752. "domains": [
  753. "otsing.delfi.ee"
  754. ],
  755. "parameters": [
  756. "q"
  757. ]
  758. },
  759. "Delfi latvia": {
  760. "domains": [
  761. "smart.delfi.lv"
  762. ],
  763. "parameters": [
  764. "q"
  765. ]
  766. },
  767. "Digg": {
  768. "domains": [
  769. "digg.com"
  770. ],
  771. "parameters": [
  772. "s"
  773. ]
  774. },
  775. "Dodo": {
  776. "domains": [
  777. "google.dodo.com.au"
  778. ],
  779. "parameters": [
  780. "q"
  781. ]
  782. },
  783. "DuckDuckGo": {
  784. "domains": [
  785. "duckduckgo.com"
  786. ],
  787. "parameters": [
  788. "q"
  789. ]
  790. },
  791. "Ecosia": {
  792. "domains": [
  793. "ecosia.org"
  794. ],
  795. "parameters": [
  796. "q"
  797. ]
  798. },
  799. "El Mundo": {
  800. "domains": [
  801. "ariadna.elmundo.es"
  802. ],
  803. "parameters": [
  804. "q"
  805. ]
  806. },
  807. "Eniro": {
  808. "domains": [
  809. "www.eniro.se"
  810. ],
  811. "parameters": [
  812. "q",
  813. "search_word"
  814. ]
  815. },
  816. "Eurip": {
  817. "domains": [
  818. "www.eurip.com"
  819. ],
  820. "parameters": [
  821. "q"
  822. ]
  823. },
  824. "Euroseek": {
  825. "domains": [
  826. "www.euroseek.com"
  827. ],
  828. "parameters": [
  829. "string"
  830. ]
  831. },
  832. "Everyclick": {
  833. "domains": [
  834. "www.everyclick.com"
  835. ],
  836. "parameters": [
  837. "keyword"
  838. ]
  839. },
  840. "Exalead": {
  841. "domains": [
  842. "www.exalead.fr",
  843. "www.exalead.com"
  844. ],
  845. "parameters": [
  846. "q"
  847. ]
  848. },
  849. "Excite": {
  850. "domains": [
  851. "search.excite.it",
  852. "search.excite.fr",
  853. "search.excite.de",
  854. "search.excite.co.uk",
  855. "serach.excite.es",
  856. "search.excite.nl",
  857. "msxml.excite.com",
  858. "www.excite.co.jp"
  859. ],
  860. "parameters": [
  861. "q",
  862. "search"
  863. ]
  864. },
  865. "Fast Browser Search": {
  866. "domains": [
  867. "www.fastbrowsersearch.com"
  868. ],
  869. "parameters": [
  870. "q"
  871. ]
  872. },
  873. "Finderoo": {
  874. "domains": [
  875. "www.finderoo.com"
  876. ],
  877. "parameters": [
  878. "q"
  879. ]
  880. },
  881. "Findwide": {
  882. "domains": [
  883. "search.findwide.com"
  884. ],
  885. "parameters": [
  886. "k"
  887. ]
  888. },
  889. "Fireball": {
  890. "domains": [
  891. "www.fireball.de"
  892. ],
  893. "parameters": [
  894. "q"
  895. ]
  896. },
  897. "Firstfind": {
  898. "domains": [
  899. "www.firstsfind.com"
  900. ],
  901. "parameters": [
  902. "qry"
  903. ]
  904. },
  905. "Fixsuche": {
  906. "domains": [
  907. "www.fixsuche.de"
  908. ],
  909. "parameters": [
  910. "q"
  911. ]
  912. },
  913. "Flix": {
  914. "domains": [
  915. "www.flix.de"
  916. ],
  917. "parameters": [
  918. "keyword"
  919. ]
  920. },
  921. "Flyingbird": {
  922. "domains": [
  923. "inspsearch.com"
  924. ],
  925. "parameters": [
  926. "q"
  927. ]
  928. },
  929. "Forestle": {
  930. "domains": [
  931. "forestle.org",
  932. "www.forestle.org",
  933. "forestle.mobi"
  934. ],
  935. "parameters": [
  936. "q"
  937. ]
  938. },
  939. "Francite": {
  940. "domains": [
  941. "recherche.francite.com"
  942. ],
  943. "parameters": [
  944. "name"
  945. ]
  946. },
  947. "Free": {
  948. "domains": [
  949. "search.free.fr",
  950. "search1-2.free.fr",
  951. "search1-1.free.fr"
  952. ],
  953. "parameters": [
  954. "q"
  955. ]
  956. },
  957. "Freecause": {
  958. "domains": [
  959. "search.freecause.com"
  960. ],
  961. "parameters": [
  962. "p"
  963. ]
  964. },
  965. "Freenet": {
  966. "domains": [
  967. "suche.freenet.de"
  968. ],
  969. "parameters": [
  970. "query",
  971. "Keywords"
  972. ]
  973. },
  974. "Freshweather": {
  975. "domains": [
  976. "www.fresh-weather.com"
  977. ],
  978. "parameters": [
  979. "q"
  980. ]
  981. },
  982. "FriendFeed": {
  983. "domains": [
  984. "friendfeed.com"
  985. ],
  986. "parameters": [
  987. "q"
  988. ]
  989. },
  990. "GAIS": {
  991. "domains": [
  992. "gais.cs.ccu.edu.tw"
  993. ],
  994. "parameters": [
  995. "q"
  996. ]
  997. },
  998. "GMX": {
  999. "domains": [
  1000. "suche.gmx.net"
  1001. ],
  1002. "parameters": [
  1003. "su"
  1004. ]
  1005. },
  1006. "Geona": {
  1007. "domains": [
  1008. "geona.net"
  1009. ],
  1010. "parameters": [
  1011. "q"
  1012. ]
  1013. },
  1014. "Genieo": {
  1015. "domains": [
  1016. "search.genieo.com"
  1017. ],
  1018. "parameters": [
  1019. "q"
  1020. ]
  1021. },
  1022. "Gigablast": {
  1023. "domains": [
  1024. "www.gigablast.com",
  1025. "dir.gigablast.com"
  1026. ],
  1027. "parameters": [
  1028. "q"
  1029. ]
  1030. },
  1031. "Globososo": {
  1032. "domains": [
  1033. "searches.globososo.com",
  1034. "search.globososo.com"
  1035. ],
  1036. "parameters": [
  1037. "q"
  1038. ]
  1039. },
  1040. "Gnadenmeer": {
  1041. "domains": [
  1042. "www.gnadenmeer.de"
  1043. ],
  1044. "parameters": [
  1045. "keyword"
  1046. ]
  1047. },
  1048. "Gomeo": {
  1049. "domains": [
  1050. "www.gomeo.com"
  1051. ],
  1052. "parameters": [
  1053. "Keywords"
  1054. ]
  1055. },
  1056. "Google": {
  1057. "domains": [
  1058. "www.google.com",
  1059. "www.google.ac",
  1060. "www.google.ad",
  1061. "www.google.al",
  1062. "www.google.com.af",
  1063. "www.google.com.ag",
  1064. "www.google.com.ai",
  1065. "www.google.am",
  1066. "www.google.it.ao",
  1067. "www.google.com.ar",
  1068. "www.google.as",
  1069. "www.google.at",
  1070. "www.google.com.au",
  1071. "www.google.az",
  1072. "www.google.ba",
  1073. "www.google.com.bd",
  1074. "www.google.be",
  1075. "www.google.bf",
  1076. "www.google.bg",
  1077. "www.google.com.bh",
  1078. "www.google.bi",
  1079. "www.google.bj",
  1080. "www.google.com.bn",
  1081. "www.google.com.bo",
  1082. "www.google.com.br",
  1083. "www.google.bs",
  1084. "www.google.co.bw",
  1085. "www.google.com.by",
  1086. "www.google.by",
  1087. "www.google.com.bz",
  1088. "www.google.ca",
  1089. "www.google.com.kh",
  1090. "www.google.cc",
  1091. "www.google.cd",
  1092. "www.google.cf",
  1093. "www.google.cat",
  1094. "www.google.cg",
  1095. "www.google.ch",
  1096. "www.google.ci",
  1097. "www.google.co.ck",
  1098. "www.google.cl",
  1099. "www.google.cm",
  1100. "www.google.cn",
  1101. "www.google.com.co",
  1102. "www.google.co.cr",
  1103. "www.google.com.cu",
  1104. "www.google.cv",
  1105. "www.google.com.cy",
  1106. "www.google.cz",
  1107. "www.google.de",
  1108. "www.google.dj",
  1109. "www.google.dk",
  1110. "www.google.dm",
  1111. "www.google.com.do",
  1112. "www.google.dz",
  1113. "www.google.com.ec",
  1114. "www.google.ee",
  1115. "www.google.com.eg",
  1116. "www.google.es",
  1117. "www.google.com.et",
  1118. "www.google.fi",
  1119. "www.google.com.fj",
  1120. "www.google.fm",
  1121. "www.google.fr",
  1122. "www.google.ga",
  1123. "www.google.gd",
  1124. "www.google.ge",
  1125. "www.google.gf",
  1126. "www.google.gg",
  1127. "www.google.com.gh",
  1128. "www.google.com.gi",
  1129. "www.google.gl",
  1130. "www.google.gm",
  1131. "www.google.gp",
  1132. "www.google.gr",
  1133. "www.google.com.gt",
  1134. "www.google.gy",
  1135. "www.google.com.hk",
  1136. "www.google.hn",
  1137. "www.google.hr",
  1138. "www.google.ht",
  1139. "www.google.hu",
  1140. "www.google.co.id",
  1141. "www.google.iq",
  1142. "www.google.ie",
  1143. "www.google.co.il",
  1144. "www.google.im",
  1145. "www.google.co.in",
  1146. "www.google.io",
  1147. "www.google.is",
  1148. "www.google.it",
  1149. "www.google.je",
  1150. "www.google.com.jm",
  1151. "www.google.jo",
  1152. "www.google.co.jp",
  1153. "www.google.co.ke",
  1154. "www.google.com.kh",
  1155. "www.google.ki",
  1156. "www.google.kg",
  1157. "www.google.co.kr",
  1158. "www.google.com.kw",
  1159. "www.google.kz",
  1160. "www.google.la",
  1161. "www.google.com.lb",
  1162. "www.google.com.lc",
  1163. "www.google.li",
  1164. "www.google.lk",
  1165. "www.google.co.ls",
  1166. "www.google.lt",
  1167. "www.google.lu",
  1168. "www.google.lv",
  1169. "www.google.com.ly",
  1170. "www.google.co.ma",
  1171. "www.google.md",
  1172. "www.google.me",
  1173. "www.google.mg",
  1174. "www.google.mk",
  1175. "www.google.ml",
  1176. "www.google.mn",
  1177. "www.google.ms",
  1178. "www.google.com.mt",
  1179. "www.google.mu",
  1180. "www.google.mv",
  1181. "www.google.mw",
  1182. "www.google.com.mx",
  1183. "www.google.com.my",
  1184. "www.google.co.mz",
  1185. "www.google.com.na",
  1186. "www.google.ne",
  1187. "www.google.com.nf",
  1188. "www.google.com.ng",
  1189. "www.google.com.ni",
  1190. "www.google.nl",
  1191. "www.google.no",
  1192. "www.google.com.np",
  1193. "www.google.nr",
  1194. "www.google.nu",
  1195. "www.google.co.nz",
  1196. "www.google.com.om",
  1197. "www.google.com.pa",
  1198. "www.google.com.pe",
  1199. "www.google.com.ph",
  1200. "www.google.com.pk",
  1201. "www.google.pl",
  1202. "www.google.pn",
  1203. "www.google.com.pr",
  1204. "www.google.ps",
  1205. "www.google.pt",
  1206. "www.google.com.py",
  1207. "www.google.com.qa",
  1208. "www.google.ro",
  1209. "www.google.rs",
  1210. "www.google.ru",
  1211. "www.google.rw",
  1212. "www.google.com.sa",
  1213. "www.google.com.sb",
  1214. "www.google.sc",
  1215. "www.google.se",
  1216. "www.google.com.sg",
  1217. "www.google.sh",
  1218. "www.google.si",
  1219. "www.google.sk",
  1220. "www.google.com.sl",
  1221. "www.google.sn",
  1222. "www.google.sm",
  1223. "www.google.so",
  1224. "www.google.st",
  1225. "www.google.com.sv",
  1226. "www.google.td",
  1227. "www.google.tg",
  1228. "www.google.co.th",
  1229. "www.google.com.tj",
  1230. "www.google.tk",
  1231. "www.google.tl",
  1232. "www.google.tm",
  1233. "www.google.to",
  1234. "www.google.com.tn",
  1235. "www.google.com.tr",
  1236. "www.google.tt",
  1237. "www.google.tn",
  1238. "www.google.com.tw",
  1239. "www.google.co.tz",
  1240. "www.google.com.ua",
  1241. "www.google.co.ug",
  1242. "www.google.ae",
  1243. "www.google.co.uk",
  1244. "www.google.us",
  1245. "www.google.com.uy",
  1246. "www.google.co.uz",
  1247. "www.google.com.vc",
  1248. "www.google.co.ve",
  1249. "www.google.vg",
  1250. "www.google.co.vi",
  1251. "www.google.com.vn",
  1252. "www.google.vu",
  1253. "www.google.ws",
  1254. "www.google.co.za",
  1255. "www.google.co.zm",
  1256. "www.google.co.zw",
  1257. "www.google.com.mm",
  1258. "www.google.sr",
  1259. "www.google.com.pg",
  1260. "www.google.bt",
  1261. "www.google.ng",
  1262. "www.google.com.iq",
  1263. "www.google.co.ao",
  1264. "google.com",
  1265. "google.ac",
  1266. "google.ad",
  1267. "google.al",
  1268. "google.com.af",
  1269. "google.com.ag",
  1270. "google.com.ai",
  1271. "google.am",
  1272. "google.it.ao",
  1273. "google.com.ar",
  1274. "google.as",
  1275. "google.at",
  1276. "google.com.au",
  1277. "google.az",
  1278. "google.ba",
  1279. "google.com.bd",
  1280. "google.be",
  1281. "google.bf",
  1282. "google.bg",
  1283. "google.com.bh",
  1284. "google.bi",
  1285. "google.bj",
  1286. "google.com.bn",
  1287. "google.com.bo",
  1288. "google.com.br",
  1289. "google.bs",
  1290. "google.co.bw",
  1291. "google.com.by",
  1292. "google.by",
  1293. "google.com.bz",
  1294. "google.ca",
  1295. "google.com.kh",
  1296. "google.cc",
  1297. "google.cd",
  1298. "google.cf",
  1299. "google.cat",
  1300. "google.cg",
  1301. "google.ch",
  1302. "google.ci",
  1303. "google.co.ck",
  1304. "google.cl",
  1305. "google.cm",
  1306. "google.cn",
  1307. "google.com.co",
  1308. "google.co.cr",
  1309. "google.com.cu",
  1310. "google.cv",
  1311. "google.com.cy",
  1312. "google.cz",
  1313. "google.de",
  1314. "google.dj",
  1315. "google.dk",
  1316. "google.dm",
  1317. "google.com.do",
  1318. "google.dz",
  1319. "google.com.ec",
  1320. "google.ee",
  1321. "google.com.eg",
  1322. "google.es",
  1323. "google.com.et",
  1324. "google.fi",
  1325. "google.com.fj",
  1326. "google.fm",
  1327. "google.fr",
  1328. "google.ga",
  1329. "google.gd",
  1330. "google.ge",
  1331. "google.gf",
  1332. "google.gg",
  1333. "google.com.gh",
  1334. "google.com.gi",
  1335. "google.gl",
  1336. "google.gm",
  1337. "google.gp",
  1338. "google.gr",
  1339. "google.com.gt",
  1340. "google.gy",
  1341. "google.com.hk",
  1342. "google.hn",
  1343. "google.hr",
  1344. "google.ht",
  1345. "google.hu",
  1346. "google.co.id",
  1347. "google.iq",
  1348. "google.ie",
  1349. "google.co.il",
  1350. "google.im",
  1351. "google.co.in",
  1352. "google.io",
  1353. "google.is",
  1354. "google.it",
  1355. "google.je",
  1356. "google.com.jm",
  1357. "google.jo",
  1358. "google.co.jp",
  1359. "google.co.ke",
  1360. "google.com.kh",
  1361. "google.ki",
  1362. "google.kg",
  1363. "google.co.kr",
  1364. "google.com.kw",
  1365. "google.kz",
  1366. "google.la",
  1367. "google.com.lb",
  1368. "google.com.lc",
  1369. "google.li",
  1370. "google.lk",
  1371. "google.co.ls",
  1372. "google.lt",
  1373. "google.lu",
  1374. "google.lv",
  1375. "google.com.ly",
  1376. "google.co.ma",
  1377. "google.md",
  1378. "google.me",
  1379. "google.mg",
  1380. "google.mk",
  1381. "google.ml",
  1382. "google.mn",
  1383. "google.ms",
  1384. "google.com.mt",
  1385. "google.mu",
  1386. "google.mv",
  1387. "google.mw",
  1388. "google.com.mx",
  1389. "google.com.my",
  1390. "google.co.mz",
  1391. "google.com.na",
  1392. "google.ne",
  1393. "google.com.nf",
  1394. "google.com.ng",
  1395. "google.com.ni",
  1396. "google.nl",
  1397. "google.no",
  1398. "google.com.np",
  1399. "google.nr",
  1400. "google.nu",
  1401. "google.co.nz",
  1402. "google.com.om",
  1403. "google.com.pa",
  1404. "google.com.pe",
  1405. "google.com.ph",
  1406. "google.com.pk",
  1407. "google.pl",
  1408. "google.pn",
  1409. "google.com.pr",
  1410. "google.ps",
  1411. "google.pt",
  1412. "google.com.py",
  1413. "google.com.qa",
  1414. "google.ro",
  1415. "google.rs",
  1416. "google.ru",
  1417. "google.rw",
  1418. "google.com.sa",
  1419. "google.com.sb",
  1420. "google.sc",
  1421. "google.se",
  1422. "google.com.sg",
  1423. "google.sh",
  1424. "google.si",
  1425. "google.sk",
  1426. "google.com.sl",
  1427. "google.sn",
  1428. "google.sm",
  1429. "google.so",
  1430. "google.st",
  1431. "google.com.sv",
  1432. "google.td",
  1433. "google.tg",
  1434. "google.tn",
  1435. "google.co.th",
  1436. "google.com.tj",
  1437. "google.tk",
  1438. "google.tl",
  1439. "google.tm",
  1440. "google.to",
  1441. "google.com.tn",
  1442. "google.com.tr",
  1443. "google.tt",
  1444. "google.com.tw",
  1445. "google.co.tz",
  1446. "google.com.ua",
  1447. "google.co.ug",
  1448. "google.ae",
  1449. "google.co.uk",
  1450. "google.us",
  1451. "google.com.uy",
  1452. "google.co.uz",
  1453. "google.com.vc",
  1454. "google.co.ve",
  1455. "google.vg",
  1456. "google.co.vi",
  1457. "google.com.vn",
  1458. "google.vu",
  1459. "google.ws",
  1460. "google.co.za",
  1461. "google.co.zm",
  1462. "google.co.zw",
  1463. "search.avg.com",
  1464. "isearch.avg.com",
  1465. "www.cnn.com",
  1466. "darkoogle.com",
  1467. "search.darkoogle.com",
  1468. "search.foxtab.com",
  1469. "www.gooofullsearch.com",
  1470. "search.hiyo.com",
  1471. "search.incredimail.com",
  1472. "search1.incredimail.com",
  1473. "search2.incredimail.com",
  1474. "search3.incredimail.com",
  1475. "search4.incredimail.com",
  1476. "search.incredibar.com",
  1477. "search.sweetim.com",
  1478. "www.fastweb.it",
  1479. "search.juno.com",
  1480. "find.tdc.dk",
  1481. "searchresults.verizon.com",
  1482. "search.walla.co.il",
  1483. "search.alot.com",
  1484. "www.googleearth.de",
  1485. "www.googleearth.fr",
  1486. "webcache.googleusercontent.com",
  1487. "encrypted.google.com",
  1488. "googlesyndicatedsearch.com",
  1489. "www.googleadservices.com"
  1490. ],
  1491. "parameters": [
  1492. "q",
  1493. "query",
  1494. "Keywords",
  1495. "*"
  1496. ]
  1497. },
  1498. "Google Blogsearch": {
  1499. "domains": [
  1500. "blogsearch.google.ac",
  1501. "blogsearch.google.ad",
  1502. "blogsearch.google.ae",
  1503. "blogsearch.google.am",
  1504. "blogsearch.google.as",
  1505. "blogsearch.google.at",
  1506. "blogsearch.google.az",
  1507. "blogsearch.google.ba",
  1508. "blogsearch.google.be",
  1509. "blogsearch.google.bf",
  1510. "blogsearch.google.bg",
  1511. "blogsearch.google.bi",
  1512. "blogsearch.google.bj",
  1513. "blogsearch.google.bs",
  1514. "blogsearch.google.by",
  1515. "blogsearch.google.ca",
  1516. "blogsearch.google.cat",
  1517. "blogsearch.google.cc",
  1518. "blogsearch.google.cd",
  1519. "blogsearch.google.cf",
  1520. "blogsearch.google.cg",
  1521. "blogsearch.google.ch",
  1522. "blogsearch.google.ci",
  1523. "blogsearch.google.cl",
  1524. "blogsearch.google.cm",
  1525. "blogsearch.google.cn",
  1526. "blogsearch.google.co.bw",
  1527. "blogsearch.google.co.ck",
  1528. "blogsearch.google.co.cr",
  1529. "blogsearch.google.co.id",
  1530. "blogsearch.google.co.il",
  1531. "blogsearch.google.co.in",
  1532. "blogsearch.google.co.jp",
  1533. "blogsearch.google.co.ke",
  1534. "blogsearch.google.co.kr",
  1535. "blogsearch.google.co.ls",
  1536. "blogsearch.google.co.ma",
  1537. "blogsearch.google.co.mz",
  1538. "blogsearch.google.co.nz",
  1539. "blogsearch.google.co.th",
  1540. "blogsearch.google.co.tz",
  1541. "blogsearch.google.co.ug",
  1542. "blogsearch.google.co.uk",
  1543. "blogsearch.google.co.uz",
  1544. "blogsearch.google.co.ve",
  1545. "blogsearch.google.co.vi",
  1546. "blogsearch.google.co.za",
  1547. "blogsearch.google.co.zm",
  1548. "blogsearch.google.co.zw",
  1549. "blogsearch.google.com",
  1550. "blogsearch.google.com.af",
  1551. "blogsearch.google.com.ag",
  1552. "blogsearch.google.com.ai",
  1553. "blogsearch.google.com.ar",
  1554. "blogsearch.google.com.au",
  1555. "blogsearch.google.com.bd",
  1556. "blogsearch.google.com.bh",
  1557. "blogsearch.google.com.bn",
  1558. "blogsearch.google.com.bo",
  1559. "blogsearch.google.com.br",
  1560. "blogsearch.google.com.by",
  1561. "blogsearch.google.com.bz",
  1562. "blogsearch.google.com.co",
  1563. "blogsearch.google.com.cu",
  1564. "blogsearch.google.com.cy",
  1565. "blogsearch.google.com.do",
  1566. "blogsearch.google.com.ec",
  1567. "blogsearch.google.com.eg",
  1568. "blogsearch.google.com.et",
  1569. "blogsearch.google.com.fj",
  1570. "blogsearch.google.com.gh",
  1571. "blogsearch.google.com.gi",
  1572. "blogsearch.google.com.gt",
  1573. "blogsearch.google.com.hk",
  1574. "blogsearch.google.com.jm",
  1575. "blogsearch.google.com.kh",
  1576. "blogsearch.google.com.kh",
  1577. "blogsearch.google.com.kw",
  1578. "blogsearch.google.com.lb",
  1579. "blogsearch.google.com.lc",
  1580. "blogsearch.google.com.ly",
  1581. "blogsearch.google.com.mt",
  1582. "blogsearch.google.com.mx",
  1583. "blogsearch.google.com.my",
  1584. "blogsearch.google.com.na",
  1585. "blogsearch.google.com.nf",
  1586. "blogsearch.google.com.ng",
  1587. "blogsearch.google.com.ni",
  1588. "blogsearch.google.com.np",
  1589. "blogsearch.google.com.om",
  1590. "blogsearch.google.com.pa",
  1591. "blogsearch.google.com.pe",
  1592. "blogsearch.google.com.ph",
  1593. "blogsearch.google.com.pk",
  1594. "blogsearch.google.com.pr",
  1595. "blogsearch.google.com.py",
  1596. "blogsearch.google.com.qa",
  1597. "blogsearch.google.com.sa",
  1598. "blogsearch.google.com.sb",
  1599. "blogsearch.google.com.sg",
  1600. "blogsearch.google.com.sl",
  1601. "blogsearch.google.com.sv",
  1602. "blogsearch.google.com.tj",
  1603. "blogsearch.google.com.tn",
  1604. "blogsearch.google.com.tr",
  1605. "blogsearch.google.com.tw",
  1606. "blogsearch.google.com.ua",
  1607. "blogsearch.google.com.uy",
  1608. "blogsearch.google.com.vc",
  1609. "blogsearch.google.com.vn",
  1610. "blogsearch.google.cv",
  1611. "blogsearch.google.cz",
  1612. "blogsearch.google.de",
  1613. "blogsearch.google.dj",
  1614. "blogsearch.google.dk",
  1615. "blogsearch.google.dm",
  1616. "blogsearch.google.dz",
  1617. "blogsearch.google.ee",
  1618. "blogsearch.google.es",
  1619. "blogsearch.google.fi",
  1620. "blogsearch.google.fm",
  1621. "blogsearch.google.fr",
  1622. "blogsearch.google.ga",
  1623. "blogsearch.google.gd",
  1624. "blogsearch.google.ge",
  1625. "blogsearch.google.gf",
  1626. "blogsearch.google.gg",
  1627. "blogsearch.google.gl",
  1628. "blogsearch.google.gm",
  1629. "blogsearch.google.gp",
  1630. "blogsearch.google.gr",
  1631. "blogsearch.google.gy",
  1632. "blogsearch.google.hn",
  1633. "blogsearch.google.hr",
  1634. "blogsearch.google.ht",
  1635. "blogsearch.google.hu",
  1636. "blogsearch.google.ie",
  1637. "blogsearch.google.im",
  1638. "blogsearch.google.io",
  1639. "blogsearch.google.iq",
  1640. "blogsearch.google.is",
  1641. "blogsearch.google.it",
  1642. "blogsearch.google.it.ao",
  1643. "blogsearch.google.je",
  1644. "blogsearch.google.jo",
  1645. "blogsearch.google.kg",
  1646. "blogsearch.google.ki",
  1647. "blogsearch.google.kz",
  1648. "blogsearch.google.la",
  1649. "blogsearch.google.li",
  1650. "blogsearch.google.lk",
  1651. "blogsearch.google.lt",
  1652. "blogsearch.google.lu",
  1653. "blogsearch.google.lv",
  1654. "blogsearch.google.md",
  1655. "blogsearch.google.me",
  1656. "blogsearch.google.mg",
  1657. "blogsearch.google.mk",
  1658. "blogsearch.google.ml",
  1659. "blogsearch.google.mn",
  1660. "blogsearch.google.ms",
  1661. "blogsearch.google.mu",
  1662. "blogsearch.google.mv",
  1663. "blogsearch.google.mw",
  1664. "blogsearch.google.ne",
  1665. "blogsearch.google.nl",
  1666. "blogsearch.google.no",
  1667. "blogsearch.google.nr",
  1668. "blogsearch.google.nu",
  1669. "blogsearch.google.pl",
  1670. "blogsearch.google.pn",
  1671. "blogsearch.google.ps",
  1672. "blogsearch.google.pt",
  1673. "blogsearch.google.ro",
  1674. "blogsearch.google.rs",
  1675. "blogsearch.google.ru",
  1676. "blogsearch.google.rw",
  1677. "blogsearch.google.sc",
  1678. "blogsearch.google.se",
  1679. "blogsearch.google.sh",
  1680. "blogsearch.google.si",
  1681. "blogsearch.google.sk",
  1682. "blogsearch.google.sm",
  1683. "blogsearch.google.sn",
  1684. "blogsearch.google.so",
  1685. "blogsearch.google.st",
  1686. "blogsearch.google.td",
  1687. "blogsearch.google.tg",
  1688. "blogsearch.google.tk",
  1689. "blogsearch.google.tl",
  1690. "blogsearch.google.tm",
  1691. "blogsearch.google.to",
  1692. "blogsearch.google.tt",
  1693. "blogsearch.google.us",
  1694. "blogsearch.google.vg",
  1695. "blogsearch.google.vu",
  1696. "blogsearch.google.ws"
  1697. ],
  1698. "parameters": [
  1699. "q"
  1700. ]
  1701. },
  1702. "Google Images": {
  1703. "domains": [
  1704. "google.ac/imgres",
  1705. "google.ad/imgres",
  1706. "google.ae/imgres",
  1707. "google.am/imgres",
  1708. "google.as/imgres",
  1709. "google.at/imgres",
  1710. "google.az/imgres",
  1711. "google.ba/imgres",
  1712. "google.be/imgres",
  1713. "google.bf/imgres",
  1714. "google.bg/imgres",
  1715. "google.bi/imgres",
  1716. "google.bj/imgres",
  1717. "google.bs/imgres",
  1718. "google.by/imgres",
  1719. "google.ca/imgres",
  1720. "google.cat/imgres",
  1721. "google.cc/imgres",
  1722. "google.cd/imgres",
  1723. "google.cf/imgres",
  1724. "google.cg/imgres",
  1725. "google.ch/imgres",
  1726. "google.ci/imgres",
  1727. "google.cl/imgres",
  1728. "google.cm/imgres",
  1729. "google.cn/imgres",
  1730. "google.co.bw/imgres",
  1731. "google.co.ck/imgres",
  1732. "google.co.cr/imgres",
  1733. "google.co.id/imgres",
  1734. "google.co.il/imgres",
  1735. "google.co.in/imgres",
  1736. "google.co.jp/imgres",
  1737. "google.co.ke/imgres",
  1738. "google.co.kr/imgres",
  1739. "google.co.ls/imgres",
  1740. "google.co.ma/imgres",
  1741. "google.co.mz/imgres",
  1742. "google.co.nz/imgres",
  1743. "google.co.th/imgres",
  1744. "google.co.tz/imgres",
  1745. "google.co.ug/imgres",
  1746. "google.co.uk/imgres",
  1747. "google.co.uz/imgres",
  1748. "google.co.ve/imgres",
  1749. "google.co.vi/imgres",
  1750. "google.co.za/imgres",
  1751. "google.co.zm/imgres",
  1752. "google.co.zw/imgres",
  1753. "google.com/imgres",
  1754. "google.com.af/imgres",
  1755. "google.com.ag/imgres",
  1756. "google.com.ai/imgres",
  1757. "google.com.ar/imgres",
  1758. "google.com.au/imgres",
  1759. "google.com.bd/imgres",
  1760. "google.com.bh/imgres",
  1761. "google.com.bn/imgres",
  1762. "google.com.bo/imgres",
  1763. "google.com.br/imgres",
  1764. "google.com.by/imgres",
  1765. "google.com.bz/imgres",
  1766. "google.com.co/imgres",
  1767. "google.com.cu/imgres",
  1768. "google.com.cy/imgres",
  1769. "google.com.do/imgres",
  1770. "google.com.ec/imgres",
  1771. "google.com.eg/imgres",
  1772. "google.com.et/imgres",
  1773. "google.com.fj/imgres",
  1774. "google.com.gh/imgres",
  1775. "google.com.gi/imgres",
  1776. "google.com.gt/imgres",
  1777. "google.com.hk/imgres",
  1778. "google.com.jm/imgres",
  1779. "google.com.kh/imgres",
  1780. "google.com.kh/imgres",
  1781. "google.com.kw/imgres",
  1782. "google.com.lb/imgres",
  1783. "google.com.lc/imgres",
  1784. "google.com.ly/imgres",
  1785. "google.com.mt/imgres",
  1786. "google.com.mx/imgres",
  1787. "google.com.my/imgres",
  1788. "google.com.na/imgres",
  1789. "google.com.nf/imgres",
  1790. "google.com.ng/imgres",
  1791. "google.com.ni/imgres",
  1792. "google.com.np/imgres",
  1793. "google.com.om/imgres",
  1794. "google.com.pa/imgres",
  1795. "google.com.pe/imgres",
  1796. "google.com.ph/imgres",
  1797. "google.com.pk/imgres",
  1798. "google.com.pr/imgres",
  1799. "google.com.py/imgres",
  1800. "google.com.qa/imgres",
  1801. "google.com.sa/imgres",
  1802. "google.com.sb/imgres",
  1803. "google.com.sg/imgres",
  1804. "google.com.sl/imgres",
  1805. "google.com.sv/imgres",
  1806. "google.com.tj/imgres",
  1807. "google.com.tn/imgres",
  1808. "google.com.tr/imgres",
  1809. "google.com.tw/imgres",
  1810. "google.com.ua/imgres",
  1811. "google.com.uy/imgres",
  1812. "google.com.vc/imgres",
  1813. "google.com.vn/imgres",
  1814. "google.cv/imgres",
  1815. "google.cz/imgres",
  1816. "google.de/imgres",
  1817. "google.dj/imgres",
  1818. "google.dk/imgres",
  1819. "google.dm/imgres",
  1820. "google.dz/imgres",
  1821. "google.ee/imgres",
  1822. "google.es/imgres",
  1823. "google.fi/imgres",
  1824. "google.fm/imgres",
  1825. "google.fr/imgres",
  1826. "google.ga/imgres",
  1827. "google.gd/imgres",
  1828. "google.ge/imgres",
  1829. "google.gf/imgres",
  1830. "google.gg/imgres",
  1831. "google.gl/imgres",
  1832. "google.gm/imgres",
  1833. "google.gp/imgres",
  1834. "google.gr/imgres",
  1835. "google.gy/imgres",
  1836. "google.hn/imgres",
  1837. "google.hr/imgres",
  1838. "google.ht/imgres",
  1839. "google.hu/imgres",
  1840. "google.ie/imgres",
  1841. "google.im/imgres",
  1842. "google.io/imgres",
  1843. "google.iq/imgres",
  1844. "google.is/imgres",
  1845. "google.it/imgres",
  1846. "google.it.ao/imgres",
  1847. "google.je/imgres",
  1848. "google.jo/imgres",
  1849. "google.kg/imgres",
  1850. "google.ki/imgres",
  1851. "google.kz/imgres",
  1852. "google.la/imgres",
  1853. "google.li/imgres",
  1854. "google.lk/imgres",
  1855. "google.lt/imgres",
  1856. "google.lu/imgres",
  1857. "google.lv/imgres",
  1858. "google.md/imgres",
  1859. "google.me/imgres",
  1860. "google.mg/imgres",
  1861. "google.mk/imgres",
  1862. "google.ml/imgres",
  1863. "google.mn/imgres",
  1864. "google.ms/imgres",
  1865. "google.mu/imgres",
  1866. "google.mv/imgres",
  1867. "google.mw/imgres",
  1868. "google.ne/imgres",
  1869. "google.nl/imgres",
  1870. "google.no/imgres",
  1871. "google.nr/imgres",
  1872. "google.nu/imgres",
  1873. "google.pl/imgres",
  1874. "google.pn/imgres",
  1875. "google.ps/imgres",
  1876. "google.pt/imgres",
  1877. "google.ro/imgres",
  1878. "google.rs/imgres",
  1879. "google.ru/imgres",
  1880. "google.rw/imgres",
  1881. "google.sc/imgres",
  1882. "google.se/imgres",
  1883. "google.sh/imgres",
  1884. "google.si/imgres",
  1885. "google.sk/imgres",
  1886. "google.sm/imgres",
  1887. "google.sn/imgres",
  1888. "google.so/imgres",
  1889. "google.st/imgres",
  1890. "google.td/imgres",
  1891. "google.tg/imgres",
  1892. "google.tk/imgres",
  1893. "google.tl/imgres",
  1894. "google.tm/imgres",
  1895. "google.to/imgres",
  1896. "google.tt/imgres",
  1897. "google.us/imgres",
  1898. "google.vg/imgres",
  1899. "google.vu/imgres",
  1900. "images.google.ws",
  1901. "images.google.ac",
  1902. "images.google.ad",
  1903. "images.google.ae",
  1904. "images.google.am",
  1905. "images.google.as",
  1906. "images.google.at",
  1907. "images.google.az",
  1908. "images.google.ba",
  1909. "images.google.be",
  1910. "images.google.bf",
  1911. "images.google.bg",
  1912. "images.google.bi",
  1913. "images.google.bj",
  1914. "images.google.bs",
  1915. "images.google.by",
  1916. "images.google.ca",
  1917. "images.google.cat",
  1918. "images.google.cc",
  1919. "images.google.cd",
  1920. "images.google.cf",
  1921. "images.google.cg",
  1922. "images.google.ch",
  1923. "images.google.ci",
  1924. "images.google.cl",
  1925. "images.google.cm",
  1926. "images.google.cn",
  1927. "images.google.co.bw",
  1928. "images.google.co.ck",
  1929. "images.google.co.cr",
  1930. "images.google.co.id",
  1931. "images.google.co.il",
  1932. "images.google.co.in",
  1933. "images.google.co.jp",
  1934. "images.google.co.ke",
  1935. "images.google.co.kr",
  1936. "images.google.co.ls",
  1937. "images.google.co.ma",
  1938. "images.google.co.mz",
  1939. "images.google.co.nz",
  1940. "images.google.co.th",
  1941. "images.google.co.tz",
  1942. "images.google.co.ug",
  1943. "images.google.co.uk",
  1944. "images.google.co.uz",
  1945. "images.google.co.ve",
  1946. "images.google.co.vi",
  1947. "images.google.co.za",
  1948. "images.google.co.zm",
  1949. "images.google.co.zw",
  1950. "images.google.com",
  1951. "images.google.com.af",
  1952. "images.google.com.ag",
  1953. "images.google.com.ai",
  1954. "images.google.com.ar",
  1955. "images.google.com.au",
  1956. "images.google.com.bd",
  1957. "images.google.com.bh",
  1958. "images.google.com.bn",
  1959. "images.google.com.bo",
  1960. "images.google.com.br",
  1961. "images.google.com.by",
  1962. "images.google.com.bz",
  1963. "images.google.com.co",
  1964. "images.google.com.cu",
  1965. "images.google.com.cy",
  1966. "images.google.com.do",
  1967. "images.google.com.ec",
  1968. "images.google.com.eg",
  1969. "images.google.com.et",
  1970. "images.google.com.fj",
  1971. "images.google.com.gh",
  1972. "images.google.com.gi",
  1973. "images.google.com.gt",
  1974. "images.google.com.hk",
  1975. "images.google.com.jm",
  1976. "images.google.com.kh",
  1977. "images.google.com.kh",
  1978. "images.google.com.kw",
  1979. "images.google.com.lb",
  1980. "images.google.com.lc",
  1981. "images.google.com.ly",
  1982. "images.google.com.mt",
  1983. "images.google.com.mx",
  1984. "images.google.com.my",
  1985. "images.google.com.na",
  1986. "images.google.com.nf",
  1987. "images.google.com.ng",
  1988. "images.google.com.ni",
  1989. "images.google.com.np",
  1990. "images.google.com.om",
  1991. "images.google.com.pa",
  1992. "images.google.com.pe",
  1993. "images.google.com.ph",
  1994. "images.google.com.pk",
  1995. "images.google.com.pr",
  1996. "images.google.com.py",
  1997. "images.google.com.qa",
  1998. "images.google.com.sa",
  1999. "images.google.com.sb",
  2000. "images.google.com.sg",
  2001. "images.google.com.sl",
  2002. "images.google.com.sv",
  2003. "images.google.com.tj",
  2004. "images.google.com.tn",
  2005. "images.google.com.tr",
  2006. "images.google.com.tw",
  2007. "images.google.com.ua",
  2008. "images.google.com.uy",
  2009. "images.google.com.vc",
  2010. "images.google.com.vn",
  2011. "images.google.cv",
  2012. "images.google.cz",
  2013. "images.google.de",
  2014. "images.google.dj",
  2015. "images.google.dk",
  2016. "images.google.dm",
  2017. "images.google.dz",
  2018. "images.google.ee",
  2019. "images.google.es",
  2020. "images.google.fi",
  2021. "images.google.fm",
  2022. "images.google.fr",
  2023. "images.google.ga",
  2024. "images.google.gd",
  2025. "images.google.ge",
  2026. "images.google.gf",
  2027. "images.google.gg",
  2028. "images.google.gl",
  2029. "images.google.gm",
  2030. "images.google.gp",
  2031. "images.google.gr",
  2032. "images.google.gy",
  2033. "images.google.hn",
  2034. "images.google.hr",
  2035. "images.google.ht",
  2036. "images.google.hu",
  2037. "images.google.ie",
  2038. "images.google.im",
  2039. "images.google.io",
  2040. "images.google.iq",
  2041. "images.google.is",
  2042. "images.google.it",
  2043. "images.google.it.ao",
  2044. "images.google.je",
  2045. "images.google.jo",
  2046. "images.google.kg",
  2047. "images.google.ki",
  2048. "images.google.kz",
  2049. "images.google.la",
  2050. "images.google.li",
  2051. "images.google.lk",
  2052. "images.google.lt",
  2053. "images.google.lu",
  2054. "images.google.lv",
  2055. "images.google.md",
  2056. "images.google.me",
  2057. "images.google.mg",
  2058. "images.google.mk",
  2059. "images.google.ml",
  2060. "images.google.mn",
  2061. "images.google.ms",
  2062. "images.google.mu",
  2063. "images.google.mv",
  2064. "images.google.mw",
  2065. "images.google.ne",
  2066. "images.google.nl",
  2067. "images.google.no",
  2068. "images.google.nr",
  2069. "images.google.nu",
  2070. "images.google.pl",
  2071. "images.google.pn",
  2072. "images.google.ps",
  2073. "images.google.pt",
  2074. "images.google.ro",
  2075. "images.google.rs",
  2076. "images.google.ru",
  2077. "images.google.rw",
  2078. "images.google.sc",
  2079. "images.google.se",
  2080. "images.google.sh",
  2081. "images.google.si",
  2082. "images.google.sk",
  2083. "images.google.sm",
  2084. "images.google.sn",
  2085. "images.google.so",
  2086. "images.google.st",
  2087. "images.google.td",
  2088. "images.google.tg",
  2089. "images.google.tk",
  2090. "images.google.tl",
  2091. "images.google.tm",
  2092. "images.google.to",
  2093. "images.google.tt",
  2094. "images.google.us",
  2095. "images.google.vg",
  2096. "images.google.vu",
  2097. "images.google.ws"
  2098. ],
  2099. "parameters": [
  2100. "q"
  2101. ]
  2102. },
  2103. "Google News": {
  2104. "domains": [
  2105. "news.google.ac",
  2106. "news.google.ad",
  2107. "news.google.ae",
  2108. "news.google.am",
  2109. "news.google.as",
  2110. "news.google.at",
  2111. "news.google.az",
  2112. "news.google.ba",
  2113. "news.google.be",
  2114. "news.google.bf",
  2115. "news.google.bg",
  2116. "news.google.bi",
  2117. "news.google.bj",
  2118. "news.google.bs",
  2119. "news.google.by",
  2120. "news.google.ca",
  2121. "news.google.cat",
  2122. "news.google.cc",
  2123. "news.google.cd",
  2124. "news.google.cf",
  2125. "news.google.cg",
  2126. "news.google.ch",
  2127. "news.google.ci",
  2128. "news.google.cl",
  2129. "news.google.cm",
  2130. "news.google.cn",
  2131. "news.google.co.bw",
  2132. "news.google.co.ck",
  2133. "news.google.co.cr",
  2134. "news.google.co.id",
  2135. "news.google.co.il",
  2136. "news.google.co.in",
  2137. "news.google.co.jp",
  2138. "news.google.co.ke",
  2139. "news.google.co.kr",
  2140. "news.google.co.ls",
  2141. "news.google.co.ma",
  2142. "news.google.co.mz",
  2143. "news.google.co.nz",
  2144. "news.google.co.th",
  2145. "news.google.co.tz",
  2146. "news.google.co.ug",
  2147. "news.google.co.uk",
  2148. "news.google.co.uz",
  2149. "news.google.co.ve",
  2150. "news.google.co.vi",
  2151. "news.google.co.za",
  2152. "news.google.co.zm",
  2153. "news.google.co.zw",
  2154. "news.google.com",
  2155. "news.google.com.af",
  2156. "news.google.com.ag",
  2157. "news.google.com.ai",
  2158. "news.google.com.ar",
  2159. "news.google.com.au",
  2160. "news.google.com.bd",
  2161. "news.google.com.bh",
  2162. "news.google.com.bn",
  2163. "news.google.com.bo",
  2164. "news.google.com.br",
  2165. "news.google.com.by",
  2166. "news.google.com.bz",
  2167. "news.google.com.co",
  2168. "news.google.com.cu",
  2169. "news.google.com.cy",
  2170. "news.google.com.do",
  2171. "news.google.com.ec",
  2172. "news.google.com.eg",
  2173. "news.google.com.et",
  2174. "news.google.com.fj",
  2175. "news.google.com.gh",
  2176. "news.google.com.gi",
  2177. "news.google.com.gt",
  2178. "news.google.com.hk",
  2179. "news.google.com.jm",
  2180. "news.google.com.kh",
  2181. "news.google.com.kh",
  2182. "news.google.com.kw",
  2183. "news.google.com.lb",
  2184. "news.google.com.lc",
  2185. "news.google.com.ly",
  2186. "news.google.com.mt",
  2187. "news.google.com.mx",
  2188. "news.google.com.my",
  2189. "news.google.com.na",
  2190. "news.google.com.nf",
  2191. "news.google.com.ng",
  2192. "news.google.com.ni",
  2193. "news.google.com.np",
  2194. "news.google.com.om",
  2195. "news.google.com.pa",
  2196. "news.google.com.pe",
  2197. "news.google.com.ph",
  2198. "news.google.com.pk",
  2199. "news.google.com.pr",
  2200. "news.google.com.py",
  2201. "news.google.com.qa",
  2202. "news.google.com.sa",
  2203. "news.google.com.sb",
  2204. "news.google.com.sg",
  2205. "news.google.com.sl",
  2206. "news.google.com.sv",
  2207. "news.google.com.tj",
  2208. "news.google.com.tn",
  2209. "news.google.com.tr",
  2210. "news.google.com.tw",
  2211. "news.google.com.ua",
  2212. "news.google.com.uy",
  2213. "news.google.com.vc",
  2214. "news.google.com.vn",
  2215. "news.google.cv",
  2216. "news.google.cz",
  2217. "news.google.de",
  2218. "news.google.dj",
  2219. "news.google.dk",
  2220. "news.google.dm",
  2221. "news.google.dz",
  2222. "news.google.ee",
  2223. "news.google.es",
  2224. "news.google.fi",
  2225. "news.google.fm",
  2226. "news.google.fr",
  2227. "news.google.ga",
  2228. "news.google.gd",
  2229. "news.google.ge",
  2230. "news.google.gf",
  2231. "news.google.gg",
  2232. "news.google.gl",
  2233. "news.google.gm",
  2234. "news.google.gp",
  2235. "news.google.gr",
  2236. "news.google.gy",
  2237. "news.google.hn",
  2238. "news.google.hr",
  2239. "news.google.ht",
  2240. "news.google.hu",
  2241. "news.google.ie",
  2242. "news.google.im",
  2243. "news.google.io",
  2244. "news.google.iq",
  2245. "news.google.is",
  2246. "news.google.it",
  2247. "news.google.it.ao",
  2248. "news.google.je",
  2249. "news.google.jo",
  2250. "news.google.kg",
  2251. "news.google.ki",
  2252. "news.google.kz",
  2253. "news.google.la",
  2254. "news.google.li",
  2255. "news.google.lk",
  2256. "news.google.lt",
  2257. "news.google.lu",
  2258. "news.google.lv",
  2259. "news.google.md",
  2260. "news.google.me",
  2261. "news.google.mg",
  2262. "news.google.mk",
  2263. "news.google.ml",
  2264. "news.google.mn",
  2265. "news.google.ms",
  2266. "news.google.mu",
  2267. "news.google.mv",
  2268. "news.google.mw",
  2269. "news.google.ne",
  2270. "news.google.nl",
  2271. "news.google.no",
  2272. "news.google.nr",
  2273. "news.google.nu",
  2274. "news.google.pl",
  2275. "news.google.pn",
  2276. "news.google.ps",
  2277. "news.google.pt",
  2278. "news.google.ro",
  2279. "news.google.rs",
  2280. "news.google.ru",
  2281. "news.google.rw",
  2282. "news.google.sc",
  2283. "news.google.se",
  2284. "news.google.sh",
  2285. "news.google.si",
  2286. "news.google.sk",
  2287. "news.google.sm",
  2288. "news.google.sn",
  2289. "news.google.so",
  2290. "news.google.st",
  2291. "news.google.td",
  2292. "news.google.tg",
  2293. "news.google.tk",
  2294. "news.google.tl",
  2295. "news.google.tm",
  2296. "news.google.to",
  2297. "news.google.tt",
  2298. "news.google.us",
  2299. "news.google.vg",
  2300. "news.google.vu",
  2301. "news.google.ws"
  2302. ],
  2303. "parameters": [
  2304. "q"
  2305. ]
  2306. },
  2307. "Google Product Search": {
  2308. "domains": [
  2309. "google.ac/products",
  2310. "google.ad/products",
  2311. "google.ae/products",
  2312. "google.am/products",
  2313. "google.as/products",
  2314. "google.at/products",
  2315. "google.az/products",
  2316. "google.ba/products",
  2317. "google.be/products",
  2318. "google.bf/products",
  2319. "google.bg/products",
  2320. "google.bi/products",
  2321. "google.bj/products",
  2322. "google.bs/products",
  2323. "google.by/products",
  2324. "google.ca/products",
  2325. "google.cat/products",
  2326. "google.cc/products",
  2327. "google.cd/products",
  2328. "google.cf/products",
  2329. "google.cg/products",
  2330. "google.ch/products",
  2331. "google.ci/products",
  2332. "google.cl/products",
  2333. "google.cm/products",
  2334. "google.cn/products",
  2335. "google.co.bw/products",
  2336. "google.co.ck/products",
  2337. "google.co.cr/products",
  2338. "google.co.id/products",
  2339. "google.co.il/products",
  2340. "google.co.in/products",
  2341. "google.co.jp/products",
  2342. "google.co.ke/products",
  2343. "google.co.kr/products",
  2344. "google.co.ls/products",
  2345. "google.co.ma/products",
  2346. "google.co.mz/products",
  2347. "google.co.nz/products",
  2348. "google.co.th/products",
  2349. "google.co.tz/products",
  2350. "google.co.ug/products",
  2351. "google.co.uk/products",
  2352. "google.co.uz/products",
  2353. "google.co.ve/products",
  2354. "google.co.vi/products",
  2355. "google.co.za/products",
  2356. "google.co.zm/products",
  2357. "google.co.zw/products",
  2358. "google.com/products",
  2359. "google.com.af/products",
  2360. "google.com.ag/products",
  2361. "google.com.ai/products",
  2362. "google.com.ar/products",
  2363. "google.com.au/products",
  2364. "google.com.bd/products",
  2365. "google.com.bh/products",
  2366. "google.com.bn/products",
  2367. "google.com.bo/products",
  2368. "google.com.br/products",
  2369. "google.com.by/products",
  2370. "google.com.bz/products",
  2371. "google.com.co/products",
  2372. "google.com.cu/products",
  2373. "google.com.cy/products",
  2374. "google.com.do/products",
  2375. "google.com.ec/products",
  2376. "google.com.eg/products",
  2377. "google.com.et/products",
  2378. "google.com.fj/products",
  2379. "google.com.gh/products",
  2380. "google.com.gi/products",
  2381. "google.com.gt/products",
  2382. "google.com.hk/products",
  2383. "google.com.jm/products",
  2384. "google.com.kh/products",
  2385. "google.com.kh/products",
  2386. "google.com.kw/products",
  2387. "google.com.lb/products",
  2388. "google.com.lc/products",
  2389. "google.com.ly/products",
  2390. "google.com.mt/products",
  2391. "google.com.mx/products",
  2392. "google.com.my/products",
  2393. "google.com.na/products",
  2394. "google.com.nf/products",
  2395. "google.com.ng/products",
  2396. "google.com.ni/products",
  2397. "google.com.np/products",
  2398. "google.com.om/products",
  2399. "google.com.pa/products",
  2400. "google.com.pe/products",
  2401. "google.com.ph/products",
  2402. "google.com.pk/products",
  2403. "google.com.pr/products",
  2404. "google.com.py/products",
  2405. "google.com.qa/products",
  2406. "google.com.sa/products",
  2407. "google.com.sb/products",
  2408. "google.com.sg/products",
  2409. "google.com.sl/products",
  2410. "google.com.sv/products",
  2411. "google.com.tj/products",
  2412. "google.com.tn/products",
  2413. "google.com.tr/products",
  2414. "google.com.tw/products",
  2415. "google.com.ua/products",
  2416. "google.com.uy/products",
  2417. "google.com.vc/products",
  2418. "google.com.vn/products",
  2419. "google.cv/products",
  2420. "google.cz/products",
  2421. "google.de/products",
  2422. "google.dj/products",
  2423. "google.dk/products",
  2424. "google.dm/products",
  2425. "google.dz/products",
  2426. "google.ee/products",
  2427. "google.es/products",
  2428. "google.fi/products",
  2429. "google.fm/products",
  2430. "google.fr/products",
  2431. "google.ga/products",
  2432. "google.gd/products",
  2433. "google.ge/products",
  2434. "google.gf/products",
  2435. "google.gg/products",
  2436. "google.gl/products",
  2437. "google.gm/products",
  2438. "google.gp/products",
  2439. "google.gr/products",
  2440. "google.gy/products",
  2441. "google.hn/products",
  2442. "google.hr/products",
  2443. "google.ht/products",
  2444. "google.hu/products",
  2445. "google.ie/products",
  2446. "google.im/products",
  2447. "google.io/products",
  2448. "google.iq/products",
  2449. "google.is/products",
  2450. "google.it/products",
  2451. "google.it.ao/products",
  2452. "google.je/products",
  2453. "google.jo/products",
  2454. "google.kg/products",
  2455. "google.ki/products",
  2456. "google.kz/products",
  2457. "google.la/products",
  2458. "google.li/products",
  2459. "google.lk/products",
  2460. "google.lt/products",
  2461. "google.lu/products",
  2462. "google.lv/products",
  2463. "google.md/products",
  2464. "google.me/products",
  2465. "google.mg/products",
  2466. "google.mk/products",
  2467. "google.ml/products",
  2468. "google.mn/products",
  2469. "google.ms/products",
  2470. "google.mu/products",
  2471. "google.mv/products",
  2472. "google.mw/products",
  2473. "google.ne/products",
  2474. "google.nl/products",
  2475. "google.no/products",
  2476. "google.nr/products",
  2477. "google.nu/products",
  2478. "google.pl/products",
  2479. "google.pn/products",
  2480. "google.ps/products",
  2481. "google.pt/products",
  2482. "google.ro/products",
  2483. "google.rs/products",
  2484. "google.ru/products",
  2485. "google.rw/products",
  2486. "google.sc/products",
  2487. "google.se/products",
  2488. "google.sh/products",
  2489. "google.si/products",
  2490. "google.sk/products",
  2491. "google.sm/products",
  2492. "google.sn/products",
  2493. "google.so/products",
  2494. "google.st/products",
  2495. "google.td/products",
  2496. "google.tg/products",
  2497. "google.tk/products",
  2498. "google.tl/products",
  2499. "google.tm/products",
  2500. "google.to/products",
  2501. "google.tt/products",
  2502. "google.us/products",
  2503. "google.vg/products",
  2504. "google.vu/products",
  2505. "google.ws/products",
  2506. "www.google.ac/products",
  2507. "www.google.ad/products",
  2508. "www.google.ae/products",
  2509. "www.google.am/products",
  2510. "www.google.as/products",
  2511. "www.google.at/products",
  2512. "www.google.az/products",
  2513. "www.google.ba/products",
  2514. "www.google.be/products",
  2515. "www.google.bf/products",
  2516. "www.google.bg/products",
  2517. "www.google.bi/products",
  2518. "www.google.bj/products",
  2519. "www.google.bs/products",
  2520. "www.google.by/products",
  2521. "www.google.ca/products",
  2522. "www.google.cat/products",
  2523. "www.google.cc/products",
  2524. "www.google.cd/products",
  2525. "www.google.cf/products",
  2526. "www.google.cg/products",
  2527. "www.google.ch/products",
  2528. "www.google.ci/products",
  2529. "www.google.cl/products",
  2530. "www.google.cm/products",
  2531. "www.google.cn/products",
  2532. "www.google.co.bw/products",
  2533. "www.google.co.ck/products",
  2534. "www.google.co.cr/products",
  2535. "www.google.co.id/products",
  2536. "www.google.co.il/products",
  2537. "www.google.co.in/products",
  2538. "www.google.co.jp/products",
  2539. "www.google.co.ke/products",
  2540. "www.google.co.kr/products",
  2541. "www.google.co.ls/products",
  2542. "www.google.co.ma/products",
  2543. "www.google.co.mz/products",
  2544. "www.google.co.nz/products",
  2545. "www.google.co.th/products",
  2546. "www.google.co.tz/products",
  2547. "www.google.co.ug/products",
  2548. "www.google.co.uk/products",
  2549. "www.google.co.uz/products",
  2550. "www.google.co.ve/products",
  2551. "www.google.co.vi/products",
  2552. "www.google.co.za/products",
  2553. "www.google.co.zm/products",
  2554. "www.google.co.zw/products",
  2555. "www.google.com/products",
  2556. "www.google.com.af/products",
  2557. "www.google.com.ag/products",
  2558. "www.google.com.ai/products",
  2559. "www.google.com.ar/products",
  2560. "www.google.com.au/products",
  2561. "www.google.com.bd/products",
  2562. "www.google.com.bh/products",
  2563. "www.google.com.bn/products",
  2564. "www.google.com.bo/products",
  2565. "www.google.com.br/products",
  2566. "www.google.com.by/products",
  2567. "www.google.com.bz/products",
  2568. "www.google.com.co/products",
  2569. "www.google.com.cu/products",
  2570. "www.google.com.cy/products",
  2571. "www.google.com.do/products",
  2572. "www.google.com.ec/products",
  2573. "www.google.com.eg/products",
  2574. "www.google.com.et/products",
  2575. "www.google.com.fj/products",
  2576. "www.google.com.gh/products",
  2577. "www.google.com.gi/products",
  2578. "www.google.com.gt/products",
  2579. "www.google.com.hk/products",
  2580. "www.google.com.jm/products",
  2581. "www.google.com.kh/products",
  2582. "www.google.com.kh/products",
  2583. "www.google.com.kw/products",
  2584. "www.google.com.lb/products",
  2585. "www.google.com.lc/products",
  2586. "www.google.com.ly/products",
  2587. "www.google.com.mt/products",
  2588. "www.google.com.mx/products",
  2589. "www.google.com.my/products",
  2590. "www.google.com.na/products",
  2591. "www.google.com.nf/products",
  2592. "www.google.com.ng/products",
  2593. "www.google.com.ni/products",
  2594. "www.google.com.np/products",
  2595. "www.google.com.om/products",
  2596. "www.google.com.pa/products",
  2597. "www.google.com.pe/products",
  2598. "www.google.com.ph/products",
  2599. "www.google.com.pk/products",
  2600. "www.google.com.pr/products",
  2601. "www.google.com.py/products",
  2602. "www.google.com.qa/products",
  2603. "www.google.com.sa/products",
  2604. "www.google.com.sb/products",
  2605. "www.google.com.sg/products",
  2606. "www.google.com.sl/products",
  2607. "www.google.com.sv/products",
  2608. "www.google.com.tj/products",
  2609. "www.google.com.tn/products",
  2610. "www.google.com.tr/products",
  2611. "www.google.com.tw/products",
  2612. "www.google.com.ua/products",
  2613. "www.google.com.uy/products",
  2614. "www.google.com.vc/products",
  2615. "www.google.com.vn/products",
  2616. "www.google.cv/products",
  2617. "www.google.cz/products",
  2618. "www.google.de/products",
  2619. "www.google.dj/products",
  2620. "www.google.dk/products",
  2621. "www.google.dm/products",
  2622. "www.google.dz/products",
  2623. "www.google.ee/products",
  2624. "www.google.es/products",
  2625. "www.google.fi/products",
  2626. "www.google.fm/products",
  2627. "www.google.fr/products",
  2628. "www.google.ga/products",
  2629. "www.google.gd/products",
  2630. "www.google.ge/products",
  2631. "www.google.gf/products",
  2632. "www.google.gg/products",
  2633. "www.google.gl/products",
  2634. "www.google.gm/products",
  2635. "www.google.gp/products",
  2636. "www.google.gr/products",
  2637. "www.google.gy/products",
  2638. "www.google.hn/products",
  2639. "www.google.hr/products",
  2640. "www.google.ht/products",
  2641. "www.google.hu/products",
  2642. "www.google.ie/products",
  2643. "www.google.im/products",
  2644. "www.google.io/products",
  2645. "www.google.iq/products",
  2646. "www.google.is/products",
  2647. "www.google.it/products",
  2648. "www.google.it.ao/products",
  2649. "www.google.je/products",
  2650. "www.google.jo/products",
  2651. "www.google.kg/products",
  2652. "www.google.ki/products",
  2653. "www.google.kz/products",
  2654. "www.google.la/products",
  2655. "www.google.li/products",
  2656. "www.google.lk/products",
  2657. "www.google.lt/products",
  2658. "www.google.lu/products",
  2659. "www.google.lv/products",
  2660. "www.google.md/products",
  2661. "www.google.me/products",
  2662. "www.google.mg/products",
  2663. "www.google.mk/products",
  2664. "www.google.ml/products",
  2665. "www.google.mn/products",
  2666. "www.google.ms/products",
  2667. "www.google.mu/products",
  2668. "www.google.mv/products",
  2669. "www.google.mw/products",
  2670. "www.google.ne/products",
  2671. "www.google.nl/products",
  2672. "www.google.no/products",
  2673. "www.google.nr/products",
  2674. "www.google.nu/products",
  2675. "www.google.pl/products",
  2676. "www.google.pn/products",
  2677. "www.google.ps/products",
  2678. "www.google.pt/products",
  2679. "www.google.ro/products",
  2680. "www.google.rs/products",
  2681. "www.google.ru/products",
  2682. "www.google.rw/products",
  2683. "www.google.sc/products",
  2684. "www.google.se/products",
  2685. "www.google.sh/products",
  2686. "www.google.si/products",
  2687. "www.google.sk/products",
  2688. "www.google.sm/products",
  2689. "www.google.sn/products",
  2690. "www.google.so/products",
  2691. "www.google.st/products",
  2692. "www.google.td/products",
  2693. "www.google.tg/products",
  2694. "www.google.tk/products",
  2695. "www.google.tl/products",
  2696. "www.google.tm/products",
  2697. "www.google.to/products",
  2698. "www.google.tt/products",
  2699. "www.google.us/products",
  2700. "www.google.vg/products",
  2701. "www.google.vu/products",
  2702. "www.google.ws/products"
  2703. ],
  2704. "parameters": [
  2705. "q"
  2706. ]
  2707. },
  2708. "Google Video": {
  2709. "domains": [
  2710. "video.google.com"
  2711. ],
  2712. "parameters": [
  2713. "q"
  2714. ]
  2715. },
  2716. "Goyellow.de": {
  2717. "domains": [
  2718. "www.goyellow.de"
  2719. ],
  2720. "parameters": [
  2721. "MDN"
  2722. ]
  2723. },
  2724. "Gule Sider": {
  2725. "domains": [
  2726. "www.gulesider.no"
  2727. ],
  2728. "parameters": [
  2729. "q"
  2730. ]
  2731. },
  2732. "HighBeam": {
  2733. "domains": [
  2734. "www.highbeam.com"
  2735. ],
  2736. "parameters": [
  2737. "q"
  2738. ]
  2739. },
  2740. "Hit-Parade": {
  2741. "domains": [
  2742. "req.-hit-parade.com",
  2743. "class.hit-parade.com",
  2744. "www.hit-parade.com"
  2745. ],
  2746. "parameters": [
  2747. "p7"
  2748. ]
  2749. },
  2750. "Holmes": {
  2751. "domains": [
  2752. "holmes.ge"
  2753. ],
  2754. "parameters": [
  2755. "q"
  2756. ]
  2757. },
  2758. "Hooseek.com": {
  2759. "domains": [
  2760. "www.hooseek.com"
  2761. ],
  2762. "parameters": [
  2763. "recherche"
  2764. ]
  2765. },
  2766. "Hotbot": {
  2767. "domains": [
  2768. "www.hotbot.com"
  2769. ],
  2770. "parameters": [
  2771. "query"
  2772. ]
  2773. },
  2774. "Haosou": {
  2775. "domains": [
  2776. "www.haosou.com"
  2777. ],
  2778. "parameters": [
  2779. "q"
  2780. ]
  2781. },
  2782. "I-play": {
  2783. "domains": [
  2784. "start.iplay.com"
  2785. ],
  2786. "parameters": [
  2787. "q"
  2788. ]
  2789. },
  2790. "I.ua": {
  2791. "domains": [
  2792. "search.i.ua"
  2793. ],
  2794. "parameters": [
  2795. "q"
  2796. ]
  2797. },
  2798. "ICQ": {
  2799. "domains": [
  2800. "www.icq.com",
  2801. "search.icq.com"
  2802. ],
  2803. "parameters": [
  2804. "q"
  2805. ]
  2806. },
  2807. "IXquick": {
  2808. "domains": [
  2809. "ixquick.com",
  2810. "www.eu.ixquick.com",
  2811. "ixquick.de",
  2812. "www.ixquick.de",
  2813. "us.ixquick.com",
  2814. "s1.us.ixquick.com",
  2815. "s2.us.ixquick.com",
  2816. "s3.us.ixquick.com",
  2817. "s4.us.ixquick.com",
  2818. "s5.us.ixquick.com",
  2819. "eu.ixquick.com",
  2820. "s8-eu.ixquick.com",
  2821. "s1-eu.ixquick.de"
  2822. ],
  2823. "parameters": [
  2824. "query"
  2825. ]
  2826. },
  2827. "Icerockeet": {
  2828. "domains": [
  2829. "blogs.icerocket.com"
  2830. ],
  2831. "parameters": [
  2832. "q"
  2833. ]
  2834. },
  2835. "Ilse": {
  2836. "domains": [
  2837. "www.ilse.nl"
  2838. ],
  2839. "parameters": [
  2840. "search_for"
  2841. ]
  2842. },
  2843. "InfoSpace": {
  2844. "domains": [
  2845. "infospace.com",
  2846. "dogpile.com",
  2847. "www.dogpile.com",
  2848. "metacrawler.com",
  2849. "webfetch.com",
  2850. "webcrawler.com",
  2851. "search.kiwee.com",
  2852. "isearch.babylon.com",
  2853. "start.facemoods.com",
  2854. "search.magnetic.com",
  2855. "search.searchcompletion.com",
  2856. "clusty.com"
  2857. ],
  2858. "parameters": [
  2859. "q",
  2860. "s"
  2861. ]
  2862. },
  2863. "Inbox": {
  2864. "domains": [
  2865. "inbox.com"
  2866. ],
  2867. "parameters": [
  2868. "q"
  2869. ]
  2870. },
  2871. "Inbox.com": {
  2872. "domains": [
  2873. "inbox.com/search/"
  2874. ],
  2875. "parameters": [
  2876. "q"
  2877. ]
  2878. },
  2879. "Info": {
  2880. "domains": [
  2881. "info.com"
  2882. ],
  2883. "parameters": [
  2884. "qkw"
  2885. ]
  2886. },
  2887. "Interia": {
  2888. "domains": [
  2889. "www.google.interia.pl"
  2890. ],
  2891. "parameters": [
  2892. "q"
  2893. ]
  2894. },
  2895. "Jungle Key": {
  2896. "domains": [
  2897. "junglekey.com",
  2898. "junglekey.fr"
  2899. ],
  2900. "parameters": [
  2901. "query"
  2902. ]
  2903. },
  2904. "Jungle Spider": {
  2905. "domains": [
  2906. "www.jungle-spider.de"
  2907. ],
  2908. "parameters": [
  2909. "q"
  2910. ]
  2911. },
  2912. "Jyxo": {
  2913. "domains": [
  2914. "jyxo.1188.cz"
  2915. ],
  2916. "parameters": [
  2917. "q"
  2918. ]
  2919. },
  2920. "Kataweb": {
  2921. "domains": [
  2922. "www.kataweb.it"
  2923. ],
  2924. "parameters": [
  2925. "q"
  2926. ]
  2927. },
  2928. "Kvasir": {
  2929. "domains": [
  2930. "www.kvasir.no"
  2931. ],
  2932. "parameters": [
  2933. "q"
  2934. ]
  2935. },
  2936. "La Toile Du Quebec Via Google": {
  2937. "domains": [
  2938. "www.toile.com",
  2939. "web.toile.com"
  2940. ],
  2941. "parameters": [
  2942. "q"
  2943. ]
  2944. },
  2945. "Latne": {
  2946. "domains": [
  2947. "www.latne.lv"
  2948. ],
  2949. "parameters": [
  2950. "q"
  2951. ]
  2952. },
  2953. "Lo.st": {
  2954. "domains": [
  2955. "lo.st"
  2956. ],
  2957. "parameters": [
  2958. "x_query"
  2959. ]
  2960. },
  2961. "Looksmart": {
  2962. "domains": [
  2963. "www.looksmart.com"
  2964. ],
  2965. "parameters": [
  2966. "key"
  2967. ]
  2968. },
  2969. "Lycos": {
  2970. "domains": [
  2971. "search.lycos.com",
  2972. "www.lycos.com",
  2973. "lycos.com"
  2974. ],
  2975. "parameters": [
  2976. "query"
  2977. ]
  2978. },
  2979. "Mail.ru": {
  2980. "domains": [
  2981. "go.mail.ru"
  2982. ],
  2983. "parameters": [
  2984. "q"
  2985. ]
  2986. },
  2987. "Mamma": {
  2988. "domains": [
  2989. "www.mamma.com",
  2990. "mamma75.mamma.com"
  2991. ],
  2992. "parameters": [
  2993. "query"
  2994. ]
  2995. },
  2996. "Marktplaats": {
  2997. "domains": [
  2998. "www.marktplaats.nl"
  2999. ],
  3000. "parameters": [
  3001. "query"
  3002. ]
  3003. },
  3004. "Maxwebsearch": {
  3005. "domains": [
  3006. "maxwebsearch.com"
  3007. ],
  3008. "parameters": [
  3009. "query"
  3010. ]
  3011. },
  3012. "Meinestadt": {
  3013. "domains": [
  3014. "www.meinestadt.de"
  3015. ],
  3016. "parameters": [
  3017. "words"
  3018. ]
  3019. },
  3020. "Meta": {
  3021. "domains": [
  3022. "meta.ua"
  3023. ],
  3024. "parameters": [
  3025. "q"
  3026. ]
  3027. },
  3028. "MetaCrawler.de": {
  3029. "domains": [
  3030. "s1.metacrawler.de",
  3031. "s2.metacrawler.de",
  3032. "s3.metacrawler.de"
  3033. ],
  3034. "parameters": [
  3035. "qry"
  3036. ]
  3037. },
  3038. "Metager": {
  3039. "domains": [
  3040. "meta.rrzn.uni-hannover.de",
  3041. "www.metager.de"
  3042. ],
  3043. "parameters": [
  3044. "eingabe"
  3045. ]
  3046. },
  3047. "Metager2": {
  3048. "domains": [
  3049. "metager2.de"
  3050. ],
  3051. "parameters": [
  3052. "q"
  3053. ]
  3054. },
  3055. "Mister Wong": {
  3056. "domains": [
  3057. "www.mister-wong.com",
  3058. "www.mister-wong.de"
  3059. ],
  3060. "parameters": [
  3061. "Keywords"
  3062. ]
  3063. },
  3064. "Monstercrawler": {
  3065. "domains": [
  3066. "www.monstercrawler.com"
  3067. ],
  3068. "parameters": [
  3069. "qry"
  3070. ]
  3071. },
  3072. "Mozbot": {
  3073. "domains": [
  3074. "www.mozbot.fr",
  3075. "www.mozbot.co.uk",
  3076. "www.mozbot.com"
  3077. ],
  3078. "parameters": [
  3079. "q"
  3080. ]
  3081. },
  3082. "MySearch": {
  3083. "domains": [
  3084. "www.mysearch.com",
  3085. "ms114.mysearch.com",
  3086. "ms146.mysearch.com",
  3087. "kf.mysearch.myway.com",
  3088. "ki.mysearch.myway.com",
  3089. "search.myway.com",
  3090. "search.mywebsearch.com"
  3091. ],
  3092. "parameters": [
  3093. "searchfor",
  3094. "searchFor"
  3095. ]
  3096. },
  3097. "Najdi": {
  3098. "domains": [
  3099. "www.najdi.si"
  3100. ],
  3101. "parameters": [
  3102. "q"
  3103. ]
  3104. },
  3105. "Nate": {
  3106. "domains": [
  3107. "search.nate.com"
  3108. ],
  3109. "parameters": [
  3110. "q"
  3111. ]
  3112. },
  3113. "Naver": {
  3114. "domains": [
  3115. "search.naver.com"
  3116. ],
  3117. "parameters": [
  3118. "query"
  3119. ]
  3120. },
  3121. "Naver Images": {
  3122. "domains": [
  3123. "image.search.naver.com",
  3124. "imagesearch.naver.com"
  3125. ],
  3126. "parameters": [
  3127. "query"
  3128. ]
  3129. },
  3130. "Needtofind": {
  3131. "domains": [
  3132. "ko.search.need2find.com"
  3133. ],
  3134. "parameters": [
  3135. "searchfor"
  3136. ]
  3137. },
  3138. "Neti": {
  3139. "domains": [
  3140. "www.neti.ee"
  3141. ],
  3142. "parameters": [
  3143. "query"
  3144. ]
  3145. },
  3146. "Nifty": {
  3147. "domains": [
  3148. "search.nifty.com"
  3149. ],
  3150. "parameters": [
  3151. "q"
  3152. ]
  3153. },
  3154. "Nigma": {
  3155. "domains": [
  3156. "nigma.ru"
  3157. ],
  3158. "parameters": [
  3159. "s"
  3160. ]
  3161. },
  3162. "Onet": {
  3163. "domains": [
  3164. "szukaj.onet.pl"
  3165. ],
  3166. "parameters": [
  3167. "qt"
  3168. ]
  3169. },
  3170. "Online.no": {
  3171. "domains": [
  3172. "online.no"
  3173. ],
  3174. "parameters": [
  3175. "q"
  3176. ]
  3177. },
  3178. "Opplysningen 1881": {
  3179. "domains": [
  3180. "www.1881.no"
  3181. ],
  3182. "parameters": [
  3183. "Query"
  3184. ]
  3185. },
  3186. "Orange": {
  3187. "domains": [
  3188. "busca.orange.es",
  3189. "search.orange.co.uk"
  3190. ],
  3191. "parameters": [
  3192. "q"
  3193. ]
  3194. },
  3195. "Paperball": {
  3196. "domains": [
  3197. "www.paperball.de"
  3198. ],
  3199. "parameters": [
  3200. "q"
  3201. ]
  3202. },
  3203. "PeoplePC": {
  3204. "domains": [
  3205. "search.peoplepc.com"
  3206. ],
  3207. "parameters": [
  3208. "q"
  3209. ]
  3210. },
  3211. "Picsearch": {
  3212. "domains": [
  3213. "www.picsearch.com"
  3214. ],
  3215. "parameters": [
  3216. "q"
  3217. ]
  3218. },
  3219. "Plazoo": {
  3220. "domains": [
  3221. "www.plazoo.com"
  3222. ],
  3223. "parameters": [
  3224. "q"
  3225. ]
  3226. },
  3227. "Poisk.ru": {
  3228. "domains": [
  3229. "www.plazoo.com"
  3230. ],
  3231. "parameters": [
  3232. "q"
  3233. ]
  3234. },
  3235. "PriceRunner": {
  3236. "domains": [
  3237. "www.pricerunner.co.uk"
  3238. ],
  3239. "parameters": [
  3240. "q"
  3241. ]
  3242. },
  3243. "Qualigo": {
  3244. "domains": [
  3245. "www.qualigo.at",
  3246. "www.qualigo.ch",
  3247. "www.qualigo.de",
  3248. "www.qualigo.nl"
  3249. ],
  3250. "parameters": [
  3251. "q"
  3252. ]
  3253. },
  3254. "RPMFind": {
  3255. "domains": [
  3256. "rpmfind.net",
  3257. "fr2.rpmfind.net"
  3258. ],
  3259. "parameters": [
  3260. "query"
  3261. ]
  3262. },
  3263. "Rakuten": {
  3264. "domains": [
  3265. "websearch.rakuten.co.jp"
  3266. ],
  3267. "parameters": [
  3268. "qt"
  3269. ]
  3270. },
  3271. "Rambler": {
  3272. "domains": [
  3273. "nova.rambler.ru"
  3274. ],
  3275. "parameters": [
  3276. "query",
  3277. "words"
  3278. ]
  3279. },
  3280. "Road Runner Search": {
  3281. "domains": [
  3282. "search.rr.com"
  3283. ],
  3284. "parameters": [
  3285. "q"
  3286. ]
  3287. },
  3288. "Sapo": {
  3289. "domains": [
  3290. "pesquisa.sapo.pt"
  3291. ],
  3292. "parameters": [
  3293. "q"
  3294. ]
  3295. },
  3296. "Search This": {
  3297. "domains": [
  3298. "www.searchthis.com"
  3299. ],
  3300. "parameters": [
  3301. "q"
  3302. ]
  3303. },
  3304. "Search.ch": {
  3305. "domains": [
  3306. "www.search.ch"
  3307. ],
  3308. "parameters": [
  3309. "q"
  3310. ]
  3311. },
  3312. "Search.com": {
  3313. "domains": [
  3314. "www.search.com"
  3315. ],
  3316. "parameters": [
  3317. "q"
  3318. ]
  3319. },
  3320. "SearchCanvas": {
  3321. "domains": [
  3322. "www.searchcanvas.com"
  3323. ],
  3324. "parameters": [
  3325. "q"
  3326. ]
  3327. },
  3328. "Searchalot": {
  3329. "domains": [
  3330. "searchalot.com"
  3331. ],
  3332. "parameters": [
  3333. "q"
  3334. ]
  3335. },
  3336. "SearchLock": {
  3337. "domains": [
  3338. "searchlock.com"
  3339. ],
  3340. "parameters": [
  3341. "q"
  3342. ]
  3343. },
  3344. "Searchy": {
  3345. "domains": [
  3346. "www.searchy.co.uk"
  3347. ],
  3348. "parameters": [
  3349. "q"
  3350. ]
  3351. },
  3352. "Seznam": {
  3353. "domains": [
  3354. "search.seznam.cz"
  3355. ],
  3356. "parameters": [
  3357. "q"
  3358. ]
  3359. },
  3360. "Sharelook": {
  3361. "domains": [
  3362. "www.sharelook.fr"
  3363. ],
  3364. "parameters": [
  3365. "keyword"
  3366. ]
  3367. },
  3368. "Skynet": {
  3369. "domains": [
  3370. "www.skynet.be"
  3371. ],
  3372. "parameters": [
  3373. "q"
  3374. ]
  3375. },
  3376. "The Smart Search": {
  3377. "domains": [
  3378. "thesmartsearch.net",
  3379. "www.thesmartsearch.net"
  3380. ],
  3381. "parameters": [
  3382. "q"
  3383. ]
  3384. },
  3385. "Softonic": {
  3386. "domains": [
  3387. "search.softonic.com"
  3388. ],
  3389. "parameters": [
  3390. "q"
  3391. ]
  3392. },
  3393. "Sogou": {
  3394. "domains": [
  3395. "www.sogou.com",
  3396. "www.soso.com"
  3397. ],
  3398. "parameters": [
  3399. "query",
  3400. "w"
  3401. ]
  3402. },
  3403. "Startpagina": {
  3404. "domains": [
  3405. "startgoogle.startpagina.nl"
  3406. ],
  3407. "parameters": [
  3408. "q"
  3409. ]
  3410. },
  3411. "Startsiden": {
  3412. "domains": [
  3413. "www.startsiden.no"
  3414. ],
  3415. "parameters": [
  3416. "q"
  3417. ]
  3418. },
  3419. "Suchmaschine.com": {
  3420. "domains": [
  3421. "www.suchmaschine.com"
  3422. ],
  3423. "parameters": [
  3424. "suchstr"
  3425. ]
  3426. },
  3427. "Suchnase": {
  3428. "domains": [
  3429. "www.suchnase.de"
  3430. ],
  3431. "parameters": [
  3432. "q"
  3433. ]
  3434. },
  3435. "Superpages": {
  3436. "domains": [
  3437. "superpages.com"
  3438. ],
  3439. "parameters": [
  3440. "C"
  3441. ]
  3442. },
  3443. "T-Online": {
  3444. "domains": [
  3445. "suche.t-online.de",
  3446. "brisbane.t-online.de",
  3447. "navigationshilfe.t-online.de"
  3448. ],
  3449. "parameters": [
  3450. "q"
  3451. ]
  3452. },
  3453. "TalkTalk": {
  3454. "domains": [
  3455. "www.talktalk.co.uk"
  3456. ],
  3457. "parameters": [
  3458. "query"
  3459. ]
  3460. },
  3461. "Technorati": {
  3462. "domains": [
  3463. "technorati.com"
  3464. ],
  3465. "parameters": [
  3466. "q"
  3467. ]
  3468. },
  3469. "Telstra": {
  3470. "domains": [
  3471. "search.media.telstra.com.au"
  3472. ],
  3473. "parameters": [
  3474. "find"
  3475. ]
  3476. },
  3477. "Teoma": {
  3478. "domains": [
  3479. "www.teoma.com"
  3480. ],
  3481. "parameters": [
  3482. "q"
  3483. ]
  3484. },
  3485. "Terra": {
  3486. "domains": [
  3487. "buscador.terra.es",
  3488. "buscador.terra.cl",
  3489. "buscador.terra.com.br"
  3490. ],
  3491. "parameters": [
  3492. "query"
  3493. ]
  3494. },
  3495. "Tiscali": {
  3496. "domains": [
  3497. "search.tiscali.it",
  3498. "search-dyn.tiscali.it",
  3499. "hledani.tiscali.cz"
  3500. ],
  3501. "parameters": [
  3502. "q",
  3503. "key"
  3504. ]
  3505. },
  3506. "Tixuma": {
  3507. "domains": [
  3508. "www.tixuma.de"
  3509. ],
  3510. "parameters": [
  3511. "sc"
  3512. ]
  3513. },
  3514. "Toolbarhome": {
  3515. "domains": [
  3516. "www.toolbarhome.com",
  3517. "vshare.toolbarhome.com"
  3518. ],
  3519. "parameters": [
  3520. "q"
  3521. ]
  3522. },
  3523. "Trouvez.com": {
  3524. "domains": [
  3525. "www.trouvez.com"
  3526. ],
  3527. "parameters": [
  3528. "query"
  3529. ]
  3530. },
  3531. "TrovaRapido": {
  3532. "domains": [
  3533. "www.trovarapido.com"
  3534. ],
  3535. "parameters": [
  3536. "q"
  3537. ]
  3538. },
  3539. "Trusted-Search": {
  3540. "domains": [
  3541. "www.trusted--search.com"
  3542. ],
  3543. "parameters": [
  3544. "w"
  3545. ]
  3546. },
  3547. "Tut.by": {
  3548. "domains": [
  3549. "search.tut.by"
  3550. ],
  3551. "parameters": [
  3552. "query"
  3553. ]
  3554. },
  3555. "Twingly": {
  3556. "domains": [
  3557. "www.twingly.com"
  3558. ],
  3559. "parameters": [
  3560. "q"
  3561. ]
  3562. },
  3563. "UKR.net": {
  3564. "domains": [
  3565. "search.ukr.net"
  3566. ],
  3567. "parameters": [
  3568. "q"
  3569. ]
  3570. },
  3571. "URL.ORGanizier": {
  3572. "domains": [
  3573. "www.url.org"
  3574. ],
  3575. "parameters": [
  3576. "q"
  3577. ]
  3578. },
  3579. "Vinden": {
  3580. "domains": [
  3581. "www.vinden.nl"
  3582. ],
  3583. "parameters": [
  3584. "q"
  3585. ]
  3586. },
  3587. "Vindex": {
  3588. "domains": [
  3589. "www.vindex.nl",
  3590. "search.vindex.nl"
  3591. ],
  3592. "parameters": [
  3593. "search_for"
  3594. ]
  3595. },
  3596. "Virgilio": {
  3597. "domains": [
  3598. "ricerca.virgilio.it",
  3599. "ricercaimmagini.virgilio.it",
  3600. "ricercavideo.virgilio.it",
  3601. "ricercanews.virgilio.it",
  3602. "mobile.virgilio.it"
  3603. ],
  3604. "parameters": [
  3605. "qs"
  3606. ]
  3607. },
  3608. "Vi-view": {
  3609. "domains": [
  3610. "viview.inspsearch.com"
  3611. ],
  3612. "parameters": [
  3613. "q"
  3614. ]
  3615. },
  3616. "Voila": {
  3617. "domains": [
  3618. "search.ke.voila.fr",
  3619. "www.lemoteur.fr"
  3620. ],
  3621. "parameters": [
  3622. "rdata",
  3623. "kw"
  3624. ]
  3625. },
  3626. "Volny": {
  3627. "domains": [
  3628. "web.volny.cz"
  3629. ],
  3630. "parameters": [
  3631. "search"
  3632. ]
  3633. },
  3634. "WWW": {
  3635. "domains": [
  3636. "search.www.ee"
  3637. ],
  3638. "parameters": [
  3639. "query"
  3640. ]
  3641. },
  3642. "Walhello": {
  3643. "domains": [
  3644. "www.walhello.info",
  3645. "www.walhello.com",
  3646. "www.walhello.de",
  3647. "www.walhello.nl"
  3648. ],
  3649. "parameters": [
  3650. "key"
  3651. ]
  3652. },
  3653. "Web.de": {
  3654. "domains": [
  3655. "suche.web.de"
  3656. ],
  3657. "parameters": [
  3658. "su"
  3659. ]
  3660. },
  3661. "Web.nl": {
  3662. "domains": [
  3663. "www.web.nl"
  3664. ],
  3665. "parameters": [
  3666. "zoekwoord"
  3667. ]
  3668. },
  3669. "WebSearch": {
  3670. "domains": [
  3671. "www.websearch.com"
  3672. ],
  3673. "parameters": [
  3674. "qkw",
  3675. "q"
  3676. ]
  3677. },
  3678. "Weborama": {
  3679. "domains": [
  3680. "www.weborama.com"
  3681. ],
  3682. "parameters": [
  3683. "QUERY"
  3684. ]
  3685. },
  3686. "Winamp": {
  3687. "domains": [
  3688. "search.winamp.com"
  3689. ],
  3690. "parameters": [
  3691. "q"
  3692. ]
  3693. },
  3694. "Wirtualna Polska": {
  3695. "domains": [
  3696. "szukaj.wp.pl"
  3697. ],
  3698. "parameters": [
  3699. "szukaj"
  3700. ]
  3701. },
  3702. "Witch": {
  3703. "domains": [
  3704. "www.witch.de"
  3705. ],
  3706. "parameters": [
  3707. "search"
  3708. ]
  3709. },
  3710. "X-recherche": {
  3711. "domains": [
  3712. "www.x-recherche.com"
  3713. ],
  3714. "parameters": [
  3715. "MOTS"
  3716. ]
  3717. },
  3718. "Yahoo!": {
  3719. "domains": [
  3720. "search.yahoo.com",
  3721. "yahoo.com",
  3722. "ar.search.yahoo.com",
  3723. "ar.yahoo.com",
  3724. "au.search.yahoo.com",
  3725. "au.yahoo.com",
  3726. "br.search.yahoo.com",
  3727. "br.yahoo.com",
  3728. "cade.searchde.yahoo.com",
  3729. "cade.yahoo.com",
  3730. "chinese.searchinese.yahoo.com",
  3731. "chinese.yahoo.com",
  3732. "cn.search.yahoo.com",
  3733. "cn.yahoo.com",
  3734. "de.search.yahoo.com",
  3735. "de.yahoo.com",
  3736. "dk.search.yahoo.com",
  3737. "dk.yahoo.com",
  3738. "es.search.yahoo.com",
  3739. "es.yahoo.com",
  3740. "espanol.searchpanol.yahoo.com",
  3741. "espanol.searchpanol.yahoo.com",
  3742. "espanol.yahoo.com",
  3743. "espanol.yahoo.com",
  3744. "fr.search.yahoo.com",
  3745. "fr.yahoo.com",
  3746. "ie.search.yahoo.com",
  3747. "ie.yahoo.com",
  3748. "it.search.yahoo.com",
  3749. "it.yahoo.com",
  3750. "kr.search.yahoo.com",
  3751. "kr.yahoo.com",
  3752. "mx.search.yahoo.com",
  3753. "mx.yahoo.com",
  3754. "no.search.yahoo.com",
  3755. "no.yahoo.com",
  3756. "nz.search.yahoo.com",
  3757. "nz.yahoo.com",
  3758. "one.cn.yahoo.com",
  3759. "one.searchn.yahoo.com",
  3760. "qc.search.yahoo.com",
  3761. "qc.search.yahoo.com",
  3762. "qc.search.yahoo.com",
  3763. "qc.yahoo.com",
  3764. "qc.yahoo.com",
  3765. "se.search.yahoo.com",
  3766. "se.search.yahoo.com",
  3767. "se.yahoo.com",
  3768. "search.searcharch.yahoo.com",
  3769. "search.yahoo.com",
  3770. "uk.search.yahoo.com",
  3771. "uk.yahoo.com",
  3772. "www.yahoo.co.jp",
  3773. "search.yahoo.co.jp",
  3774. "m.chiebukuro.yahoo.co.jp",
  3775. "detail.chiebukuro.yahoo.co.jp",
  3776. "www.cercato.it",
  3777. "search.offerbox.com",
  3778. "ys.mirostart.com"
  3779. ],
  3780. "parameters": [
  3781. "p",
  3782. "q"
  3783. ]
  3784. },
  3785. "Yahoo! Images": {
  3786. "domains": [
  3787. "image.yahoo.cn",
  3788. "images.search.yahoo.com",
  3789. "image.search.yahoo.co.jp"
  3790. ],
  3791. "parameters": [
  3792. "p",
  3793. "q"
  3794. ]
  3795. },
  3796. "Yam": {
  3797. "domains": [
  3798. "search.yam.com"
  3799. ],
  3800. "parameters": [
  3801. "k"
  3802. ]
  3803. },
  3804. "Yandex": {
  3805. "domains": [
  3806. "yandex.ru",
  3807. "yandex.ua",
  3808. "yandex.com",
  3809. "yandex.by",
  3810. "www.yandex.ru",
  3811. "www.yandex.ua",
  3812. "www.yandex.com",
  3813. "www.yandex.by"
  3814. ],
  3815. "parameters": [
  3816. "text"
  3817. ]
  3818. },
  3819. "Yandex Images": {
  3820. "domains": [
  3821. "images.yandex.ru",
  3822. "images.yandex.ua",
  3823. "images.yandex.com"
  3824. ],
  3825. "parameters": [
  3826. "text"
  3827. ]
  3828. },
  3829. "Yasni": {
  3830. "domains": [
  3831. "www.yasni.de",
  3832. "www.yasni.com",
  3833. "www.yasni.co.uk",
  3834. "www.yasni.ch",
  3835. "www.yasni.at"
  3836. ],
  3837. "parameters": [
  3838. "query"
  3839. ]
  3840. },
  3841. "Yatedo": {
  3842. "domains": [
  3843. "www.yatedo.com",
  3844. "www.yatedo.fr"
  3845. ],
  3846. "parameters": [
  3847. "q"
  3848. ]
  3849. },
  3850. "Yellowpages": {
  3851. "domains": [
  3852. "www.yellowpages.com",
  3853. "www.yellowpages.com.au",
  3854. "www.yellowpages.ca"
  3855. ],
  3856. "parameters": [
  3857. "q",
  3858. "search_terms"
  3859. ]
  3860. },
  3861. "Yippy": {
  3862. "domains": [
  3863. "search.yippy.com"
  3864. ],
  3865. "parameters": [
  3866. "q",
  3867. "query"
  3868. ]
  3869. },
  3870. "YouGoo": {
  3871. "domains": [
  3872. "www.yougoo.fr"
  3873. ],
  3874. "parameters": [
  3875. "q"
  3876. ]
  3877. },
  3878. "Zapmeta": {
  3879. "domains": [
  3880. "www.zapmeta.com",
  3881. "www.zapmeta.nl",
  3882. "www.zapmeta.de",
  3883. "uk.zapmeta.com"
  3884. ],
  3885. "parameters": [
  3886. "q",
  3887. "query"
  3888. ]
  3889. },
  3890. "Zhongsou": {
  3891. "domains": [
  3892. "p.zhongsou.com"
  3893. ],
  3894. "parameters": [
  3895. "w"
  3896. ]
  3897. },
  3898. "Zoek": {
  3899. "domains": [
  3900. "www3.zoek.nl"
  3901. ],
  3902. "parameters": [
  3903. "q"
  3904. ]
  3905. },
  3906. "Zoeken": {
  3907. "domains": [
  3908. "www.zoeken.nl"
  3909. ],
  3910. "parameters": [
  3911. "q"
  3912. ]
  3913. },
  3914. "Zoohoo": {
  3915. "domains": [
  3916. "zoohoo.cz"
  3917. ],
  3918. "parameters": [
  3919. "q"
  3920. ]
  3921. },
  3922. "all.by": {
  3923. "domains": [
  3924. "all.by"
  3925. ],
  3926. "parameters": [
  3927. "query"
  3928. ]
  3929. },
  3930. "arama": {
  3931. "domains": [
  3932. "arama.com"
  3933. ],
  3934. "parameters": [
  3935. "q"
  3936. ]
  3937. },
  3938. "blekko": {
  3939. "domains": [
  3940. "blekko.com"
  3941. ],
  3942. "parameters": [
  3943. "q"
  3944. ]
  3945. },
  3946. "canoe.ca": {
  3947. "domains": [
  3948. "web.canoe.ca"
  3949. ],
  3950. "parameters": [
  3951. "q"
  3952. ]
  3953. },
  3954. "dmoz": {
  3955. "domains": [
  3956. "dmoz.org",
  3957. "editors.dmoz.org"
  3958. ],
  3959. "parameters": [
  3960. "q"
  3961. ]
  3962. },
  3963. "earthlink": {
  3964. "domains": [
  3965. "search.earthlink.net"
  3966. ],
  3967. "parameters": [
  3968. "q"
  3969. ]
  3970. },
  3971. "eo": {
  3972. "domains": [
  3973. "eo.st"
  3974. ],
  3975. "parameters": [
  3976. "x_query"
  3977. ]
  3978. },
  3979. "goo": {
  3980. "domains": [
  3981. "search.goo.ne.jp",
  3982. "ocnsearch.goo.ne.jp"
  3983. ],
  3984. "parameters": [
  3985. "MT"
  3986. ]
  3987. },
  3988. "maailm": {
  3989. "domains": [
  3990. "www.maailm.com"
  3991. ],
  3992. "parameters": [
  3993. "tekst"
  3994. ]
  3995. },
  3996. "qip": {
  3997. "domains": [
  3998. "search.qip.ru"
  3999. ],
  4000. "parameters": [
  4001. "query"
  4002. ]
  4003. },
  4004. "SoSoDesk": {
  4005. "domains": [
  4006. "www.soso.com",
  4007. "sosodesktop.com",
  4008. "search.sosodesktop.com"
  4009. ],
  4010. "parameters": [
  4011. "q"
  4012. ]
  4013. },
  4014. "Snapdo": {
  4015. "domains": [
  4016. "search.snapdo.com"
  4017. ],
  4018. "parameters": [
  4019. "q"
  4020. ]
  4021. },
  4022. "suche.info": {
  4023. "domains": [
  4024. "suche.info"
  4025. ],
  4026. "parameters": [
  4027. "q"
  4028. ]
  4029. },
  4030. "uol.com.br": {
  4031. "domains": [
  4032. "busca.uol.com.br"
  4033. ],
  4034. "parameters": [
  4035. "q"
  4036. ]
  4037. }
  4038. },
  4039. "social": {
  4040. "Badoo": {
  4041. "domains": [
  4042. "badoo.com"
  4043. ]
  4044. },
  4045. "Bebo": {
  4046. "domains": [
  4047. "bebo.com"
  4048. ]
  4049. },
  4050. "BlackPlanet": {
  4051. "domains": [
  4052. "blackplanet.com"
  4053. ]
  4054. },
  4055. "Bloglovin'": {
  4056. "domains": [
  4057. "bloglovin.com"
  4058. ]
  4059. },
  4060. "Buzznet": {
  4061. "domains": [
  4062. "wayn.com",
  4063. "buzznet.com"
  4064. ]
  4065. },
  4066. "Classmates": {
  4067. "domains": [
  4068. "classmates.com"
  4069. ]
  4070. },
  4071. "Cyworld": {
  4072. "domains": [
  4073. "global.cyworld.com"
  4074. ]
  4075. },
  4076. "DeviantArt":{
  4077. "domains": [
  4078. "deviantart.com"
  4079. ]
  4080. },
  4081. "Delicious":{
  4082. "domains": [
  4083. "delicious.com"
  4084. ]
  4085. },
  4086. "Discus": {
  4087. "domains": [
  4088. "redirect.disqus.com",
  4089. "disq.us",
  4090. "disqus.com"
  4091. ]
  4092. },
  4093. "Donanimhaber": {
  4094. "domains": [
  4095. "donanimhaber.com"
  4096. ]
  4097. },
  4098. "Douban": {
  4099. "domains": [
  4100. "douban.com"
  4101. ]
  4102. },
  4103. "Facebook": {
  4104. "domains": [
  4105. "facebook.com",
  4106. "fb.me",
  4107. "m.facebook.com",
  4108. "l.facebook.com",
  4109. "lm.facebook.com"
  4110. ]
  4111. },
  4112. "Flickr": {
  4113. "domains": [
  4114. "flickr.com"
  4115. ]
  4116. },
  4117. "Flixster": {
  4118. "domains": [
  4119. "flixster.com"
  4120. ]
  4121. },
  4122. "Flipboard": {
  4123. "domains": [
  4124. "flipboard.com"
  4125. ]
  4126. },
  4127. "Fotolog": {
  4128. "domains": [
  4129. "fotolog.com"
  4130. ]
  4131. },
  4132. "Foursquare": {
  4133. "domains": [
  4134. "foursquare.com"
  4135. ]
  4136. },
  4137. "Friends Reunited": {
  4138. "domains": [
  4139. "friendsreunited.com"
  4140. ]
  4141. },
  4142. "Friendster": {
  4143. "domains": [
  4144. "friendster.com"
  4145. ]
  4146. },
  4147. "Gaia Online": {
  4148. "domains": [
  4149. "gaiaonline.com"
  4150. ]
  4151. },
  4152. "Geni": {
  4153. "domains": [
  4154. "geni.com"
  4155. ]
  4156. },
  4157. "GitHub": {
  4158. "domains": [
  4159. "github.com"
  4160. ]
  4161. },
  4162. "Google+": {
  4163. "domains": [
  4164. "url.google.com",
  4165. "plus.google.com",
  4166. "plus.url.google.com"
  4167. ]
  4168. },
  4169. "Habbo": {
  4170. "domains": [
  4171. "habbo.com"
  4172. ]
  4173. },
  4174. "Hacker News": {
  4175. "domains": [
  4176. "news.ycombinator.com"
  4177. ]
  4178. },
  4179. "Hocam.com": {
  4180. "domains": [
  4181. "hocam.com"
  4182. ]
  4183. },
  4184. "Hyves": {
  4185. "domains": [
  4186. "hyves.nl"
  4187. ]
  4188. },
  4189. "Iconosquare": {
  4190. "domains": [
  4191. "iconosquare.com"
  4192. ]
  4193. },
  4194. "Identi.ca": {
  4195. "domains": [
  4196. "identi.ca"
  4197. ]
  4198. },
  4199. "Imgur": {
  4200. "domains": [
  4201. "imgur.com"
  4202. ]
  4203. },
  4204. "Inci Sozluk": {
  4205. "domains": [
  4206. "inci.sozlukspot.com",
  4207. "incisozluk.com",
  4208. "incisozluk.cc"
  4209. ]
  4210. },
  4211. "Instagram": {
  4212. "domains": [
  4213. "instagram.com"
  4214. ]
  4215. },
  4216. "Instela": {
  4217. "domains": [
  4218. "instela.com"
  4219. ]
  4220. },
  4221. "Last.fm": {
  4222. "domains": [
  4223. "lastfm.ru"
  4224. ]
  4225. },
  4226. "LinkedIn": {
  4227. "domains": [
  4228. "linkedin.com",
  4229. "lnkd.in"
  4230. ]
  4231. },
  4232. "LiveJournal": {
  4233. "domains": [
  4234. "livejournal.ru"
  4235. ]
  4236. },
  4237. "Mail.ru": {
  4238. "domains": [
  4239. "my.mail.ru"
  4240. ]
  4241. },
  4242. "Medium": {
  4243. "domains": [
  4244. "medium.com"
  4245. ]
  4246. },
  4247. "Meetup": {
  4248. "domains": [
  4249. "meetup.com"
  4250. ]
  4251. },
  4252. "Messenger": {
  4253. "domains": [
  4254. "messenger.com"
  4255. ]
  4256. },
  4257. "Mixi": {
  4258. "domains": [
  4259. "mixi.jp"
  4260. ]
  4261. },
  4262. "MoiKrug.ru": {
  4263. "domains": [
  4264. "moikrug.ru"
  4265. ]
  4266. },
  4267. "Multiply": {
  4268. "domains": [
  4269. "multiply.com"
  4270. ]
  4271. },
  4272. "MyHeritage": {
  4273. "domains": [
  4274. "myheritage.com"
  4275. ]
  4276. },
  4277. "MyLife": {
  4278. "domains": [
  4279. "mylife.ru"
  4280. ]
  4281. },
  4282. "Myspace": {
  4283. "domains": [
  4284. "myspace.com"
  4285. ]
  4286. },
  4287. "Nasza-klasa.pl": {
  4288. "domains": [
  4289. "nk.pl"
  4290. ]
  4291. },
  4292. "Netlog": {
  4293. "domains": [
  4294. "netlog.com"
  4295. ]
  4296. },
  4297. "Odnoklassniki": {
  4298. "domains": [
  4299. "odnoklassniki.ru",
  4300. "ok.ru"
  4301. ]
  4302. },
  4303. "Orkut": {
  4304. "domains": [
  4305. "orkut.com"
  4306. ]
  4307. },
  4308. "Paper.li": {
  4309. "domains": [
  4310. "paper.li"
  4311. ]
  4312. },
  4313. "Pinterest": {
  4314. "domains": [
  4315. "pinterest.com"
  4316. ]
  4317. },
  4318. "Plaxo": {
  4319. "domains": [
  4320. "plaxo.com"
  4321. ]
  4322. },
  4323. "Pocket": {
  4324. "domains": [
  4325. "getpocket.com"
  4326. ]
  4327. },
  4328. "Polyvore": {
  4329. "domains": [
  4330. "polyvore.com"
  4331. ]
  4332. },
  4333. "Quora": {
  4334. "domains": [
  4335. "quora.com"
  4336. ]
  4337. },
  4338. "Qzone": {
  4339. "domains": [
  4340. "qzone.qq.com"
  4341. ]
  4342. },
  4343. "Reddit": {
  4344. "domains": [
  4345. "reddit.com"
  4346. ]
  4347. },
  4348. "Renren": {
  4349. "domains": [
  4350. "renren.com"
  4351. ]
  4352. },
  4353. "Skyrock": {
  4354. "domains": [
  4355. "skyrock.com"
  4356. ]
  4357. },
  4358. "Snapchat": {
  4359. "domains": [
  4360. "snapchat.com"
  4361. ]
  4362. },
  4363. "Sonico.com": {
  4364. "domains": [
  4365. "sonico.com"
  4366. ]
  4367. },
  4368. "SourceForge": {
  4369. "domains": [
  4370. "sourceforge.net"
  4371. ]
  4372. },
  4373. "StackOverflow": {
  4374. "domains": [
  4375. "stackoverflow.com"
  4376. ]
  4377. },
  4378. "StudiVZ": {
  4379. "domains": [
  4380. "studivz.net"
  4381. ]
  4382. },
  4383. "StumbleUpon": {
  4384. "domains": [
  4385. "stumbleupon.com"
  4386. ]
  4387. },
  4388. "Tagged": {
  4389. "domains": [
  4390. "login.tagged.com"
  4391. ]
  4392. },
  4393. "Taringa!": {
  4394. "domains": [
  4395. "taringa.net"
  4396. ]
  4397. },
  4398. "TikTok": {
  4399. "domains": [
  4400. "tiktok.com",
  4401. "tiktokcdn.com"
  4402. ]
  4403. },
  4404. "Tuenti": {
  4405. "domains": [
  4406. "tuenti.com"
  4407. ]
  4408. },
  4409. "Tumblr": {
  4410. "domains": [
  4411. "tumblr.com",
  4412. "umblr.com",
  4413. "t.umblr.com"
  4414. ]
  4415. },
  4416. "Twitter": {
  4417. "domains": [
  4418. "twitter.com",
  4419. "t.co"
  4420. ]
  4421. },
  4422. "Twitch":{
  4423. "domains": [
  4424. "twitch.tv",
  4425. "twitch.com"
  4426. ]
  4427. },
  4428. "Viadeo": {
  4429. "domains": [
  4430. "viadeo.com"
  4431. ]
  4432. },
  4433. "Vimeo": {
  4434. "domains": [
  4435. "vimeo.com"
  4436. ]
  4437. },
  4438. "Vkontakte": {
  4439. "domains": [
  4440. "vk.com",
  4441. "vkontakte.ru"
  4442. ]
  4443. },
  4444. "Wanelo": {
  4445. "domains": [
  4446. "wanelo.com"
  4447. ]
  4448. },
  4449. "WAYN": {
  4450. "domains": [
  4451. "wayn.com"
  4452. ]
  4453. },
  4454. "WeeWorld": {
  4455. "domains": [
  4456. "weeworld.com"
  4457. ]
  4458. },
  4459. "Weibo": {
  4460. "domains": [
  4461. "weibo.com",
  4462. "t.cn"
  4463. ]
  4464. },
  4465. "Windows Live Spaces": {
  4466. "domains": [
  4467. "login.live.com"
  4468. ]
  4469. },
  4470. "XING": {
  4471. "domains": [
  4472. "xing.com"
  4473. ]
  4474. },
  4475. "Xanga": {
  4476. "domains": [
  4477. "xanga.com"
  4478. ]
  4479. },
  4480. "hi5": {
  4481. "domains": [
  4482. "hi5.com"
  4483. ]
  4484. },
  4485. "myYearbook": {
  4486. "domains": [
  4487. "myyearbook.com"
  4488. ]
  4489. },
  4490. "ITU Sozluk": {
  4491. "domains": [
  4492. "itusozluk.com"
  4493. ]
  4494. },
  4495. "Eksi Sozluk": {
  4496. "domains": [
  4497. "Sozluk.com",
  4498. "sourtimes.org"
  4499. ]
  4500. },
  4501. "Uludag Sozluk": {
  4502. "domains": [
  4503. "uludagsozluk.com",
  4504. "ulusozluk.com"
  4505. ]
  4506. },
  4507. "vKruguDruzei.ru": {
  4508. "domains": [
  4509. "vkrugudruzei.ru"
  4510. ]
  4511. },
  4512. "Whirlpool": {
  4513. "domains": [
  4514. "forums.whirlpool.net.au"
  4515. ]
  4516. },
  4517. "Youtube": {
  4518. "domains": [
  4519. "youtube.com",
  4520. "youtu.be"
  4521. ]
  4522. }
  4523. },
  4524. "unknown": {
  4525. "Google": {
  4526. "domains": [
  4527. "support.google.com",
  4528. "developers.google.com",
  4529. "maps.google.com",
  4530. "accounts.google.com",
  4531. "drive.google.com",
  4532. "sites.google.com",
  4533. "groups.google.com",
  4534. "groups.google.co.uk",
  4535. "news.google.co.uk"
  4536. ]
  4537. },
  4538. "Yahoo!": {
  4539. "domains": [
  4540. "finance.yahoo.com",
  4541. "news.yahoo.com",
  4542. "eurosport.yahoo.com",
  4543. "sports.yahoo.com",
  4544. "astrology.yahoo.com",
  4545. "travel.yahoo.com",
  4546. "answers.yahoo.com",
  4547. "screen.yahoo.com",
  4548. "weather.yahoo.com",
  4549. "messenger.yahoo.com",
  4550. "games.yahoo.com",
  4551. "shopping.yahoo.net",
  4552. "movies.yahoo.com",
  4553. "cars.yahoo.com",
  4554. "lifestyle.yahoo.com",
  4555. "omg.yahoo.com",
  4556. "match.yahoo.net"
  4557. ]
  4558. }
  4559. }
  4560. }
  4561. `