{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import csv\n", "import gzip\n", "import io\n", "import re\n", "\n", "import pandas\n", "import requests" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 53, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['uc001abw.1', 'uc001abz.4', 'uc001aca.2', 'uc001acd.3', 'uc001ach.2', 'uc001acj.4', 'uc001ack.2', 'uc001acu.2']\n", "['']\n", "['', '']\n", "['', '', '0.35539']\n", "['', '', '0.56523', '0.73316']\n", "['', '0.24312', '0.028204', '0.048074', '0.089494']\n", "['', '0.34471', '0.67455', '0.59903', '0.48292', '0.045723']\n", "['', '', '0.14494', '', '0.52816', '0.16999', '0.5987']\n", "['', '', '0.19984', '0.51258', '0.432', '0.056087', '0.65374', '0.43504']\n", "['', '', '', '', '0.46932', '0.047139', '', '']\n" ] } ], "source": [ "# http://csb.pitt.edu/erc_analysis/Methods.php\n", "with gzip.open('download/erc_mam33.gz', 'rb') as read_file:\n", " text = io.TextIOWrapper(read_file)\n", " for i, line in enumerate(text):\n", " row = line.strip('\\n').split('\\t')\n", " print(row[:8])\n", " if i > 8: break" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 26, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "17487" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 17487 lines in erc_mam33.gz\n", "len(header)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [], "source": [ "def read_erc_mat(path):\n", " read_file = gzip.open('download/erc_mam33.gz', 'rb')\n", " text = io.TextIOWrapper(read_file)\n", " reader = csv.reader(text, delimiter='\\t')\n", " genes = next(reader)\n", " for source, correlations in zip(genes[1:], reader):\n", " targets = genes[:len(correlations)]\n", " for target, correlation in zip(targets, correlations):\n", " if correlation == '':\n", " continue\n", " yield source, target, correlation\n", " read_file.close()" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [], "source": [ "def read_ucsc_map(path):\n", " map_df = pandas.read_table(path, names=['ucsc_id', 'symbol', 'entrez_id'], comment='#')\n", " map_df = map_df.query(\"entrez_id != 'n/a'\")\n", " ucsc_to_entrez = dict()\n", " for ucsc_id, entrez_id in zip(map_df.ucsc_id, map_df.entrez_id):\n", " assert ucsc_id not in ucsc_to_entrez\n", " ucsc_to_entrez[ucsc_id] = entrez_id\n", " return ucsc_to_entrez" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": false }, "outputs": [], "source": [ "pattern = re.compile('list_uids=([0-9]+)\" TARGET=_blank class=\"toc\">Entrez Gene')\n", "import sys\n", "\n", "def query_ucsc_gene(ucsc_id):\n", " print('webquery for', ucsc_id)\n", " sys.stdout.flush()\n", " url = 'https://genome.ucsc.edu/cgi-bin/hgGene?hgg_gene={}&org=human'.format(ucsc_id)\n", " response = requests.get(url)\n", " match = re.search(pattern, response.text)\n", " if not match:\n", " return None\n", " entrez_id = int(match.group(1))\n", " print('webquery matched {} to {}'.format(ucsc_id, entrez_id))\n", " return entrez_id" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 14, "metadata": { "collapsed": false }, "outputs": [], "source": [ "map_list = list()\n", "for genome_build in [38, 19, 18]:\n", " path = 'download/ucsc-gene-map-hg{}.tsv'.format(genome_build)\n", " map_list.append(read_ucsc_map(path))\n", "\n", "cache = dict()\n", "def get_entrez(ucsc_id):\n", " if ucsc_id in cache:\n", " return cache[ucsc_id]\n", " for ucsc_to_entrez in map_list:\n", " entrez_id = ucsc_to_entrez.get(ucsc_id)\n", " if entrez_id:\n", " cache[ucsc_id] = entrez_id\n", " return entrez_id\n", " entrez_id = query_ucsc_gene(ucsc_id)\n", " cache[ucsc_id] = entrez_id\n", " return entrez_id" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "webquery for uc001aik.3\n", "webquery for uc001aju.2\n", "webquery matched uc001aju.2 to 127281\n", "webquery for uc001apg.1\n", "webquery for uc001apm.3\n", "webquery matched uc001apm.3 to 765\n", "webquery for uc001aro.3\n", "webquery matched uc001aro.3 to 54897\n", "webquery for uc001ase.3\n", "webquery matched uc001ase.3 to 10218\n", "webquery for uc001ate.4\n", "webquery matched uc001ate.4 to 1185\n", "webquery for uc001awn.3\n", "webquery matched uc001awn.3 to 842\n", "webquery for uc001axc.3\n", "webquery matched uc001axc.3 to 388595\n", "webquery for uc001aym.4\n", "webquery matched uc001aym.4 to 26099\n", "webquery for uc001bbo.3\n", "webquery matched uc001bbo.3 to 23065\n", "webquery for uc001bcz.3\n", "webquery matched uc001bcz.3 to 26279\n", "webquery for uc001bnm.3\n", "webquery matched uc001bnm.3 to 6548\n", "webquery for uc001bno.3\n", "webquery matched uc001bno.3 to 23038\n", "webquery for uc001bod.3\n", "webquery matched uc001bod.3 to 2827\n", "webquery for uc001bub.3\n", "webquery matched uc001bub.3 to 10657\n", "webquery for uc001bvd.3\n", "webquery matched uc001bvd.3 to 65108\n", "webquery for uc001bwc.3\n", "webquery matched uc001bwc.3 to 64766\n", "webquery for uc001bxu.3\n", "webquery matched uc001bxu.3 to 2709\n", "webquery for uc001bzx.3\n", "webquery matched uc001bzx.3 to 27095\n", "webquery for uc001cbi.3\n", "webquery matched uc001cbi.3 to 79753\n", "webquery for uc001cbr.3\n", "webquery matched uc001cbr.3 to 55143\n", "webquery for uc001ccq.2\n", "webquery matched uc001ccq.2 to 64121\n", "webquery for uc001cfg.3\n", "webquery matched uc001cfg.3 to 10269\n", "webquery for uc001cjb.3\n", "webquery matched uc001cjb.3 to 64834\n", "webquery for uc001cjk.2\n", "webquery matched uc001cjk.2 to 23334\n", "webquery for uc001ckb.3\n", "webquery matched uc001ckb.3 to 6487\n", "webquery for uc001cll.3\n", "webquery matched uc001cll.3 to 6536\n", "webquery for uc001cmt.2\n", "webquery matched uc001cmt.2 to 8891\n", "webquery for uc001cqb.3\n", "webquery matched uc001cqb.3 to 8569\n", "webquery for uc001cqh.3\n", "webquery matched uc001cqh.3 to 64756\n", "webquery for uc001cti.3\n", "webquery matched uc001cti.3 to 51060\n", "webquery for uc001cto.3\n", "webquery matched uc001cto.3 to 9372\n", "webquery for uc001cxe.3\n", "webquery matched uc001cxe.3 to 23648\n", "webquery for uc001dap.3\n", "webquery matched uc001dap.3 to 85440\n", "webquery for uc001dht.3\n", "webquery matched uc001dht.3 to 23032\n", "webquery for uc001dhx.3\n", "webquery matched uc001dhx.3 to 374986\n", "webquery for uc001dqa.3\n", "webquery matched uc001dqa.3 to 8412\n", "webquery for uc001dqv.4\n", "webquery matched uc001dqv.4 to 126969\n", "webquery for uc001dvn.4\n", "webquery matched uc001dvn.4 to 29957\n", "webquery for uc001dwa.3\n", "webquery matched uc001dwa.3 to 254268\n", "webquery for uc001eas.3\n", "webquery matched uc001eas.3 to 27159\n", "webquery for uc001ebw.3\n", "webquery matched uc001ebw.3 to 643355\n", "webquery for uc001epm.4\n", "webquery matched uc001epm.4 to 9557\n", "webquery for uc001euq.3\n", "webquery matched uc001euq.3 to 80222\n", "webquery for uc001exx.3\n", "webquery matched uc001exx.3 to 8991\n", "webquery for uc001faa.3\n", "webquery matched uc001faa.3 to 353145\n", "webquery for uc001fah.3\n", "webquery matched uc001fah.3 to 353140\n", "webquery for uc001fbl.3\n", "webquery matched uc001fbl.3 to 149018\n", "webquery for uc001fcq.3\n", "webquery matched uc001fcq.3 to 23557\n", "webquery for uc001fcr.3\n", "webquery matched uc001fcr.3 to 3608\n", "webquery for uc001fdl.3\n", "webquery matched uc001fdl.3 to 27173\n", "webquery for uc001foh.3\n", "webquery matched uc001foh.3 to 112770\n", "webquery for uc001fpc.3\n", "webquery matched uc001fpc.3 to 4209\n", "webquery for uc001fwn.3\n", "webquery matched uc001fwn.3 to 962\n", "webquery for uc001fwu.3\n", "webquery matched uc001fwu.3 to 4063\n", "webquery for uc001fxi.3\n", "webquery matched uc001fxi.3 to 7391\n", "webquery for uc001gal.3\n", "webquery matched uc001gal.3 to 257177\n", "webquery for uc001gdj.4\n", "webquery matched uc001gdj.4 to 54499\n", "webquery for uc001gfc.3\n", "webquery matched uc001gfc.3 to 23432\n", "webquery for uc001ggn.3\n", "webquery matched uc001ggn.3 to 92342\n", "webquery for uc001gie.3\n", "webquery matched uc001gie.3 to 26052\n", "webquery for uc001gnq.3\n", "webquery matched uc001gnq.3 to 26092\n", "webquery for uc001gql.3\n", "webquery matched uc001gql.3 to 10092\n", "webquery for uc001gra.3\n", "webquery matched uc001gra.3 to 116496\n", "webquery for uc001gsa.3\n", "webquery matched uc001gsa.3 to 5132\n", "webquery for uc001gvb.3\n", "webquery matched uc001gvb.3 to 2494\n", "webquery for uc001gvo.3\n", "webquery matched uc001gvo.3 to 55765\n", "webquery for uc001gwf.3\n", "webquery matched uc001gwf.3 to 7139\n", "webquery for uc001gwq.3\n", "webquery matched uc001gwq.3 to 23612\n", "webquery for uc001gyj.3\n", "webquery for uc001gyq.4\n", "webquery matched uc001gyq.4 to 51094\n", "webquery for uc001gzd.3\n", "webquery matched uc001gzd.3 to 4656\n", "webquery for uc001hau.3\n", "webquery matched uc001hau.3 to 22874\n", "webquery for uc001hgu.1\n", "webquery for uc001hhs.4\n", "webquery matched uc001hhs.4 to 255928\n", "webquery for uc001hkh.3\n", "webquery matched uc001hkh.3 to 5629\n", "webquery for uc001hoh.2\n", "webquery matched uc001hoh.2 to 23219\n", "webquery for uc001hpq.3\n", "webquery matched uc001hpq.3 to 29920\n", "webquery for uc001hqa.2\n", "webquery matched uc001hqa.2 to 286826\n", "webquery for uc001hth.3\n", "webquery matched uc001hth.3 to 5867\n", "webquery for uc001hur.3\n", "webquery matched uc001hur.3 to 83932\n", "webquery for uc001hxc.2\n", "webquery matched uc001hxc.2 to 148789\n", "webquery for uc001hxj.2\n", "webquery matched uc001hxj.2 to 1130\n", "webquery for uc001iad.4\n", "webquery matched uc001iad.4 to 10472\n", "webquery for uc001iah.3\n", "webquery matched uc001iah.3 to 200159\n", "webquery for uc001ihi.3\n", "webquery matched uc001ihi.3 to 83592\n", "webquery for uc001iia.3\n", "webquery matched uc001iia.3 to 10276\n", "webquery for uc001iit.3\n", "webquery matched uc001iit.3 to 84893\n", "webquery for uc001ild.4\n", "webquery matched uc001ild.4 to 55526\n", "webquery for uc001ind.3\n", "webquery matched uc001ind.3 to 51182\n", "webquery for uc001inf.3\n", "webquery matched uc001inf.3 to 51182\n", "webquery for uc001inx.4\n", "webquery matched uc001inx.4 to 10557\n", "webquery for uc001ipk.3\n", "webquery matched uc001ipk.3 to 4360\n", "webquery for uc001ipm.3\n", "webquery matched uc001ipm.3 to 4360\n", "webquery for uc001itv.3\n", "webquery matched uc001itv.3 to 22931\n", "webquery for uc001jan.3\n", "webquery matched uc001jan.3 to 55454\n", "webquery for uc001jce.3\n", "webquery matched uc001jce.3 to 240\n", "webquery for uc001jeh.3\n", "webquery matched uc001jeh.3 to 728113\n", "webquery for uc001jgt.3\n", "webquery matched uc001jgt.3 to 58504\n", "webquery for uc001jhs.4\n", "webquery matched uc001jhs.4 to 2074\n", "webquery for uc001jiu.3\n", "webquery matched uc001jiu.3 to 100287932\n", "webquery for uc001jkc.4\n", "webquery matched uc001jkc.4 to 55847\n", "webquery for uc001jkf.3\n", "webquery matched uc001jkf.3 to 7019\n", "webquery for uc001jqr.3\n", "webquery matched uc001jqr.3 to 219743\n", "webquery for uc001jur.3\n", "webquery matched uc001jur.3 to 58529\n", "webquery for uc001kbl.3\n", "webquery matched uc001kbl.3 to 80195\n", "webquery for uc001kbx.3\n", "webquery matched uc001kbx.3 to 143241\n", "webquery for uc001kfk.3\n", "webquery matched uc001kfk.3 to 57559\n", "webquery for uc001kgi.3\n", "webquery matched uc001kgi.3 to 3434\n", "webquery for uc001khi.3\n", "webquery matched uc001khi.3 to 84333\n", "webquery for uc001kkh.3\n", "webquery matched uc001kkh.3 to 9124\n", "webquery for uc001ksu.3\n", "webquery for uc001kta.3\n", "webquery matched uc001kta.3 to 8945\n", "webquery for uc001kvb.3\n", "webquery matched uc001kvb.3 to 4791\n", "webquery for uc001kyf.3\n", "webquery matched uc001kyf.3 to 85450\n", "webquery for uc001laj.3\n", "webquery matched uc001laj.3 to 4892\n", "webquery for uc001lao.3\n", "webquery matched uc001lao.3 to 840\n", "webquery for uc001law.2\n", "webquery matched uc001law.2 to 9937\n", "webquery for uc001lhm.3\n", "webquery matched uc001lhm.3 to 51363\n", "webquery for uc001lqr.3\n", "webquery matched uc001lqr.3 to 283232\n", "webquery for uc001ltj.3\n", "webquery matched uc001ltj.3 to 9024\n", "webquery for uc001lxq.4\n", "webquery matched uc001lxq.4 to 116534\n", "webquery for uc001lys.3\n", "webquery matched uc001lys.3 to 27315\n", "webquery for uc001mfj.4\n", "webquery matched uc001mfj.4 to 8495\n", "webquery for uc001mgo.3\n", "webquery for uc001mki.3\n", "webquery matched uc001mki.3 to 55742\n", "webquery for uc001mly.3\n", "webquery matched uc001mly.3 to 387755\n", "webquery for uc001mot.3\n", "webquery matched uc001mot.3 to 55293\n", "webquery for uc001mpc.3\n", "webquery matched uc001mpc.3 to 84867\n", "webquery for uc001mtu.3\n", "webquery matched uc001mtu.3 to 10480\n", "webquery for uc001mtv.3\n", "webquery matched uc001mtv.3 to 493860\n", "webquery for uc001myo.3\n", "webquery matched uc001myo.3 to 56981\n", "webquery for uc001nco.3\n", "webquery matched uc001nco.3 to 4192\n", "webquery for uc001ndd.3\n", "webquery matched uc001ndd.3 to 392\n", "webquery for uc001ndr.3\n", "webquery matched uc001ndr.3 to 79096\n", "webquery for uc001nrw.1\n", "webquery for uc001nso.3\n", "webquery matched uc001nso.3 to 5866\n", "webquery for uc001nua.3\n", "webquery matched uc001nua.3 to 23193\n", "webquery for uc001oct.3\n", "webquery matched uc001oct.3 to 7108\n", "webquery for uc001ofo.4\n", "webquery matched uc001ofo.4 to 91056\n", "webquery for uc001okm.3\n", "webquery matched uc001okm.3 to 57804\n", "webquery for uc001ola.3\n", "webquery matched uc001ola.3 to 374403\n", "webquery for uc001oma.3\n", "webquery matched uc001oma.3 to 10263\n", "webquery for uc001osj.3\n", "webquery matched uc001osj.3 to 81570\n", "webquery for uc001otj.3\n", "webquery matched uc001otj.3 to 5029\n", "webquery for uc001otr.3\n", "webquery matched uc001otr.3 to 5031\n", "webquery for uc001ouw.3\n", "webquery matched uc001ouw.3 to 51400\n", "webquery for uc001pap.3\n", "webquery matched uc001pap.3 to 55863\n", "webquery for uc001pgy.3\n", "webquery matched uc001pgy.3 to 329\n", "webquery for uc001pht.2\n", "webquery matched uc001pht.2 to 100506742\n", "webquery for uc001pli.1\n", "webquery for uc001pmz.3\n", "webquery matched uc001pmz.3 to 6392\n", "webquery for uc001pqt.3\n", "webquery matched uc001pqt.3 to 257160\n", "webquery for uc001psy.3\n", "webquery for uc001pwe.3\n", "webquery matched uc001pwe.3 to 867\n", "webquery for uc001pym.3\n", "webquery matched uc001pym.3 to 79864\n", "webquery for uc001pzv.2\n", "webquery for uc001pzx.3\n", "webquery matched uc001pzx.3 to 26494\n", "webquery for uc001qbs.3\n", "webquery matched uc001qbs.3 to 219854\n", "webquery for uc001qcz.4\n", "webquery matched uc001qcz.4 to 29118\n", "webquery for uc001qda.3\n", "webquery for uc001qgx.4\n", "webquery matched uc001qgx.4 to 22997\n", "webquery for uc001qhb.2\n", "webquery matched uc001qhb.2 to 83700\n", "webquery for uc001qlh.3\n", "webquery matched uc001qlh.3 to 83695\n", "webquery for uc001qmf.3\n", "webquery matched uc001qmf.3 to 56341\n", "webquery for uc001qni.3\n", "webquery matched uc001qni.3 to 3741\n", "webquery for uc001qpq.1\n", "webquery for uc001qrk.3\n", "webquery matched uc001qrk.3 to 7167\n", "webquery for uc001quz.4\n", "webquery matched uc001quz.4 to 144568\n", "webquery for uc001qwg.2\n", "webquery matched uc001qwg.2 to 29121\n", "webquery for uc001rdg.3\n", "webquery matched uc001rdg.3 to 4257\n", "webquery for uc001rek.3\n", "webquery matched uc001rek.3 to 28234\n", "webquery for uc001rff.3\n", "webquery matched uc001rff.3 to 3764\n", "webquery for uc001rfm.3\n", "webquery matched uc001rfm.3 to 55907\n", "webquery for uc001rit.3\n", "webquery matched uc001rit.3 to 55711\n", "webquery for uc001rnr.4\n", "webquery matched uc001rnr.4 to 83448\n", "webquery for uc001rqw.3\n", "webquery matched uc001rqw.3 to 29843\n", "webquery for uc001rtp.3\n", "webquery matched uc001rtp.3 to 7846\n", "webquery for uc001rvv.3\n", "webquery matched uc001rvv.3 to 41\n", "webquery for uc001rvz.3\n", "webquery matched uc001rvz.3 to 2819\n", "webquery for uc001ryw.3\n", "webquery matched uc001ryw.3 to 6334\n", "webquery for uc001rzb.1\n", "webquery for uc001saz.3\n", "webquery matched uc001saz.3 to 3851\n", "webquery for uc001sfr.4\n", "webquery matched uc001sfr.4 to 4778\n", "webquery for uc001shi.3\n", "webquery matched uc001shi.3 to 2647\n", "webquery for uc001shn.3\n", "webquery matched uc001shn.3 to 967\n", "webquery for uc001shz.1\n", "webquery for uc001sib.3\n", "webquery matched uc001sib.3 to 4327\n", "webquery for uc001smw.4\n", "webquery matched uc001smw.4 to 4640\n", "webquery for uc001sqr.3\n", "webquery matched uc001sqr.3 to 121227\n", "webquery for uc001squ.3\n", "webquery matched uc001squ.3 to 9194\n", "webquery for uc001ssz.1\n", "webquery for uc001sui.3\n", "webquery matched uc001sui.3 to 4193\n", "webquery for uc001svu.1\n", "webquery for uc001swl.3\n", "webquery matched uc001swl.3 to 8549\n", "webquery for uc001szo.2\n", "webquery matched uc001szo.2 to 8499\n", "webquery for uc001szv.3\n", "webquery matched uc001szv.3 to 55117\n", "webquery for uc001tcz.3\n", "webquery for uc001tdl.3\n", "webquery matched uc001tdl.3 to 55967\n", "webquery for uc001tdm.4\n", "webquery matched uc001tdm.4 to 7181\n", "webquery for uc001teq.2\n", "webquery for uc001ter.1\n", "webquery for uc001tfx.3\n", "webquery matched uc001tfx.3 to 121457\n", "webquery for uc001tmi.3\n", "webquery matched uc001tmi.3 to 1407\n", "webquery for uc001tnj.3\n", "webquery matched uc001tnj.3 to 23603\n", "webquery for uc001toq.3\n", "webquery matched uc001toq.3 to 89910\n", "webquery for uc001tta.3\n", "webquery matched uc001tta.3 to 8550\n", "webquery for uc001tvo.3\n", "webquery matched uc001tvo.3 to 6910\n", "webquery for uc001tyz.3\n", "webquery matched uc001tyz.3 to 84747\n", "webquery for uc001ubl.3\n", "webquery matched uc001ubl.3 to 5715\n", "webquery for uc001ueq.3\n", "webquery matched uc001ueq.3 to 8099\n", "webquery for uc001uio.3\n", "webquery matched uc001uio.3 to 2054\n", "webquery for uc001upt.4\n", "webquery matched uc001upt.4 to 55835\n", "webquery for uc001urv.3\n", "webquery matched uc001urv.3 to 1045\n", "webquery for uc001uss.3\n", "webquery matched uc001uss.3 to 84056\n", "webquery for uc001uwy.3\n", "webquery matched uc001uwy.3 to 80209\n", "webquery for uc001uxc.3\n", "webquery matched uc001uxc.3 to 387921\n", "webquery for uc001vbc.3\n", "webquery for uc001vht.3\n", "webquery matched uc001vht.3 to 81624\n", "webquery for uc001vjq.3\n", "webquery matched uc001vjq.3 to 7347\n", "webquery for uc001vkk.2\n", "webquery matched uc001vkk.2 to 122060\n", "webquery for uc001vmk.3\n", "webquery matched uc001vmk.3 to 22873\n", "webquery for uc001vmw.3\n", "webquery matched uc001vmw.3 to 266722\n", "webquery for uc001vmz.3\n", "webquery matched uc001vmz.3 to 10150\n", "webquery for uc001vpb.3\n", "webquery matched uc001vpb.3 to 9358\n", "webquery for uc001vpj.3\n", "webquery matched uc001vpj.3 to 196541\n", "webquery for uc001vsw.3\n", "webquery matched uc001vsw.3 to 2155\n", "webquery for uc001vwy.3\n", "webquery matched uc001vwy.3 to 57820\n", "webquery for uc001wbi.2\n", "webquery for uc001wbk.3\n", "webquery for uc001wbt.1\n", "webquery for uc001wbw.2\n", "webquery for uc001wbx.2\n", "webquery for uc001wbz.1\n", "webquery for uc001wcb.2\n", "webquery for uc001wch.2\n", "webquery for uc001wct.4\n", "webquery for uc001wcy.3\n", "webquery for uc001wdb.2\n", "webquery for uc001wdi.2\n", "webquery for uc001wdk.2\n", "webquery for uc001wdn.3\n", "webquery for uc001wdq.2\n", "webquery for uc001wdr.2\n", "webquery for uc001wdt.1\n", "webquery for uc001wea.4\n", "webquery for uc001web.1\n", "webquery for uc001wiz.3\n", "webquery matched uc001wiz.3 to 23428\n", "webquery for uc001wjo.3\n", "webquery matched uc001wjo.3 to 10278\n", "webquery for uc001wkh.4\n", "webquery matched uc001wkh.4 to 79178\n", "webquery for uc001wog.3\n", "webquery matched uc001wog.3 to 5875\n", "webquery for uc001wqe.3\n", "webquery matched uc001wqe.3 to 2290\n", "webquery for uc001wuf.3\n", "webquery matched uc001wuf.3 to 3169\n", "webquery for uc001wuj.3\n", "webquery for uc001wwl.3\n", "webquery matched uc001wwl.3 to 6235\n", "webquery for uc001xbb.3\n", "webquery matched uc001xbb.3 to 23034\n", "webquery for uc001xbd.1\n", "webquery for uc001xcq.3\n", "webquery matched uc001xcq.3 to 5015\n", "webquery for uc001xgi.3\n", "webquery matched uc001xgi.3 to 112840\n", "webquery for uc001xjc.3\n", "webquery matched uc001xjc.3 to 64398\n", "webquery for uc001xon.4\n", "webquery matched uc001xon.4 to 10965\n", "webquery for uc001xpd.2\n", "webquery matched uc001xpd.2 to 145483\n", "webquery for uc001xsy.3\n", "webquery matched uc001xsy.3 to 64207\n", "webquery for uc001xue.4\n", "webquery matched uc001xue.4 to 81892\n", "webquery for uc001xun.3\n", "webquery matched uc001xun.3 to 9369\n", "webquery for uc001ydm.2\n", "webquery matched uc001ydm.2 to 5104\n", "webquery for uc001yke.3\n", "webquery for uc001ylm.3\n", "webquery matched uc001ylm.3 to 5891\n", "webquery for uc001ymb.3\n", "webquery matched uc001ymb.3 to 23186\n", "webquery for uc001ymq.3\n", "webquery matched uc001ymq.3 to 1983\n", "webquery for uc001yqh.3\n", "webquery matched uc001yqh.3 to 3714\n", "webquery for uc001yrt.3\n", "webquery for uc001yrw.1\n", "webquery for uc001zbj.3\n", "webquery matched uc001zbj.3 to 8924\n", "webquery for uc001zhc.1\n", "webquery for uc001zhf.4\n", "webquery matched uc001zhf.4 to 342184\n", "webquery for uc001zhh.3\n", "webquery matched uc001zhh.3 to 342184\n", "webquery for uc001zjr.3\n", "webquery matched uc001zjr.3 to 4212\n", "webquery for uc001zkw.3\n", "webquery matched uc001zkw.3 to 90427\n", "webquery for uc001zos.3\n", "webquery matched uc001zos.3 to 51332\n", "webquery for uc001zsq.1\n", "webquery for uc001zuk.3\n", "webquery matched uc001zuk.3 to 145645\n", "webquery for uc001zup.3\n", "webquery matched uc001zup.3 to 90527\n", "webquery for uc001zvh.3\n", "webquery matched uc001zvh.3 to 84419\n", "webquery for uc001zvv.3\n", "webquery matched uc001zvv.3 to 58472\n", "webquery for uc002afb.1\n", "webquery for uc002afs.3\n", "webquery matched uc002afs.3 to 54778\n", "webquery for uc002aga.3\n", "webquery matched uc002aga.3 to 4643\n", "webquery for uc002agp.3\n", "webquery matched uc002agp.3 to 79664\n", "webquery for uc002amf.3\n", "webquery matched uc002amf.3 to 9960\n", "webquery for uc002amn.3\n", "webquery matched uc002amn.3 to 283807\n", "webquery for uc002aqk.4\n", "webquery matched uc002aqk.4 to 79719\n", "webquery for uc002atl.4\n", "webquery matched uc002atl.4 to 4649\n", "webquery for uc002awe.3\n", "webquery matched uc002awe.3 to 9399\n", "webquery for uc002axo.3\n", "webquery matched uc002axo.3 to 80125\n", "webquery for uc002bad.3\n", "webquery matched uc002bad.3 to 79661\n", "webquery for uc002baf.3\n", "webquery matched uc002baf.3 to 4123\n", "webquery for uc002bel.3\n", "webquery matched uc002bel.3 to 10933\n", "webquery for uc002bky.1\n", "webquery for uc002boi.3\n", "webquery matched uc002boi.3 to 8800\n", "webquery for uc002bpp.3\n", "webquery matched uc002bpp.3 to 64784\n", "webquery for uc002bqm.3\n", "webquery matched uc002bqm.3 to 9055\n", "webquery for uc002cfo.3\n", "webquery matched uc002cfo.3 to 4350\n", "webquery for uc002cje.3\n", "webquery matched uc002cje.3 to 65990\n", "webquery for uc002cnx.3\n", "webquery matched uc002cnx.3 to 124056\n", "webquery for uc002cqs.3\n", "webquery matched uc002cqs.3 to 5170\n", "webquery for uc002crt.3\n", "webquery matched uc002crt.3 to 10942\n", "webquery for uc002cuf.1\n", "webquery for uc002cxv.3\n", "webquery matched uc002cxv.3 to 79641\n", "webquery for uc002cyq.1\n", "webquery for uc002czw.3\n", "webquery matched uc002czw.3 to 80063\n", "webquery for uc002dbw.2\n", "webquery matched uc002dbw.2 to 92017\n", "webquery for uc002dby.4\n", "webquery matched uc002dby.4 to 92017\n", "webquery for uc002ddd.3\n", "webquery matched uc002ddd.3 to 123803\n", "webquery for uc002dga.4\n", "webquery matched uc002dga.4 to 728276\n", "webquery for uc002dgn.2\n", "webquery matched uc002dgn.2 to 57020\n", "webquery for uc002dkk.3\n", "webquery matched uc002dkk.3 to 55718\n", "webquery for uc002dmu.3\n", "webquery matched uc002dmu.3 to 115584\n", "webquery for uc002don.3\n", "webquery matched uc002don.3 to 3566\n", "webquery for uc002dqy.3\n", "webquery matched uc002dqy.3 to 11273\n", "webquery for uc002dtm.3\n", "webquery matched uc002dtm.3 to 6693\n", "webquery for uc002dts.3\n", "webquery matched uc002dts.3 to 3835\n", "webquery for uc002duv.3\n", "webquery matched uc002duv.3 to 253980\n", "webquery for uc002dxy.3\n", "webquery matched uc002dxy.3 to 1731\n", "webquery for uc002dyx.3\n", "webquery matched uc002dyx.3 to 115509\n", "webquery for uc002dzy.2\n", "webquery matched uc002dzy.2 to 283932\n", "webquery for uc002eal.3\n", "webquery matched uc002eal.3 to 6810\n", "webquery for uc002eaw.4\n", "webquery matched uc002eaw.4 to 10295\n", "webquery for uc002ebd.3\n", "webquery matched uc002ebd.3 to 146547\n", "webquery for uc002eci.2\n", "webquery matched uc002eci.2 to 64755\n", "webquery for uc002efs.3\n", "webquery matched uc002efs.3 to 23090\n", "webquery for uc002eiy.3\n", "webquery matched uc002eiy.3 to 267\n", "webquery for uc002erg.1\n", "webquery for uc002eve.3\n", "webquery matched uc002eve.3 to 64174\n", "webquery for uc002evi.3\n", "webquery matched uc002evi.3 to 54920\n", "webquery for uc002exd.3\n", "webquery matched uc002exd.3 to 7014\n", "webquery for uc002exs.3\n", "webquery matched uc002exs.3 to 28987\n", "webquery for uc002eyo.3\n", "webquery matched uc002eyo.3 to 11269\n", "webquery for uc002ezr.3\n", "webquery matched uc002ezr.3 to 54768\n", "webquery for uc002fau.3\n", "webquery matched uc002fau.3 to 91862\n", "webquery for uc002fbd.2\n", "webquery matched uc002fbd.2 to 342371\n", "webquery for uc002fem.3\n", "webquery matched uc002fem.3 to 79583\n", "webquery for uc002ffh.4\n", "webquery matched uc002ffh.4 to 10143\n", "webquery for uc002fix.3\n", "webquery matched uc002fix.3 to 23199\n", "webquery for uc002fkd.3\n", "webquery matched uc002fkd.3 to 57338\n", "webquery for uc002flb.3\n", "webquery matched uc002flb.3 to 1535\n", "webquery for uc002flo.4\n", "webquery for uc002fmo.1\n", "webquery for uc002fnu.3\n", "webquery matched uc002fnu.3 to 5119\n", "webquery for uc002fsd.3\n", "webquery matched uc002fsd.3 to 29\n", "webquery for uc002fyv.2\n", "webquery matched uc002fyv.2 to 84225\n", "webquery for uc002fzb.3\n", "webquery matched uc002fzb.3 to 5694\n", "webquery for uc002gaa.3\n", "webquery matched uc002gaa.3 to 5216\n", "webquery for uc002gce.3\n", "webquery matched uc002gce.3 to 79003\n", "webquery for uc002gea.3\n", "webquery matched uc002gea.3 to 440400\n", "webquery for uc002gev.3\n", "webquery matched uc002gev.3 to 37\n", "webquery for uc002gkm.3\n", "webquery matched uc002gkm.3 to 9212\n", "webquery for uc002glj.3\n", "webquery matched uc002glj.3 to 81565\n", "webquery for uc002gll.3\n", "webquery matched uc002gll.3 to 4628\n", "webquery for uc002gph.2\n", "webquery matched uc002gph.2 to 54902\n", "webquery for uc002grl.3\n", "webquery matched uc002grl.3 to 10400\n", "webquery for uc002guj.3\n", "webquery matched uc002guj.3 to 10517\n", "webquery for uc002gwo.3\n", "webquery matched uc002gwo.3 to 11216\n", "webquery for uc002heu.3\n", "webquery matched uc002heu.3 to 84081\n", "webquery for uc002hey.4\n", "webquery matched uc002hey.4 to 6532\n", "webquery for uc002hhz.3\n", "webquery matched uc002hhz.3 to 6354\n", "webquery for uc002hkd.3\n", "webquery matched uc002hkd.3 to 8148\n", "webquery for uc002hqu.3\n", "webquery matched uc002hqu.3 to 54883\n", "webquery for uc002hsu.3\n", "webquery matched uc002hsu.3 to 22806\n", "webquery for uc002htz.2\n", "webquery matched uc002htz.2 to 9572\n", "webquery for uc002hwl.3\n", "webquery matched uc002hwl.3 to 3884\n", "webquery for uc002iai.2\n", "webquery matched uc002iai.2 to 29893\n", "webquery for uc002ibl.3\n", "webquery matched uc002ibl.3 to 28958\n", "webquery for uc002ibr.3\n", "webquery matched uc002ibr.3 to 10197\n", "webquery for uc002ibv.3\n", "webquery matched uc002ibv.3 to 8639\n", "webquery for uc002ibx.3\n", "webquery for uc002ifn.3\n", "webquery matched uc002ifn.3 to 339201\n", "webquery for uc002ihm.3\n", "webquery matched uc002ihm.3 to 51751\n", "webquery for uc002iho.3\n", "webquery matched uc002iho.3 to 388389\n", "webquery for uc002imj.1\n", "webquery for uc002imp.3\n", "webquery matched uc002imp.3 to 79170\n", "webquery for uc002imr.3\n", "webquery matched uc002imr.3 to 80279\n", "webquery for uc002iof.3\n", "webquery matched uc002iof.3 to 10241\n", "webquery for uc002iqf.3\n", "webquery matched uc002iqf.3 to 201191\n", "webquery for uc002iqk.3\n", "webquery for uc002ivx.4\n", "webquery matched uc002ivx.4 to 9256\n", "webquery for uc002iwx.3\n", "webquery matched uc002iwx.3 to 22843\n", "webquery for uc002ixy.3\n", "webquery matched uc002ixy.3 to 6198\n", "webquery for uc002jad.3\n", "webquery matched uc002jad.3 to 9902\n", "webquery for uc002jgc.3\n", "webquery matched uc002jgc.3 to 26207\n", "webquery for uc002jhg.3\n", "webquery matched uc002jhg.3 to 5573\n", "webquery for uc002jio.3\n", "webquery matched uc002jio.3 to 3773\n", "webquery for uc002jkv.3\n", "webquery matched uc002jkv.3 to 11314\n", "webquery for uc002jlo.3\n", "webquery matched uc002jlo.3 to 9368\n", "webquery for uc002jmt.3\n", "webquery matched uc002jmt.3 to 9121\n", "webquery for uc002joc.3\n", "webquery matched uc002joc.3 to 57513\n", "webquery for uc002joq.3\n", "webquery for uc002jpx.3\n", "webquery matched uc002jpx.3 to 201292\n", "webquery for uc002jwp.3\n", "webquery matched uc002jwp.3 to 114897\n", "webquery for uc002jwv.3\n", "webquery matched uc002jwv.3 to 64772\n", "webquery for uc002jxj.3\n", "webquery matched uc002jxj.3 to 125058\n", "webquery for uc002jyh.2\n", "webquery for uc002kbi.3\n", "webquery matched uc002kbi.3 to 1468\n", "webquery for uc002kdc.3\n", "webquery matched uc002kdc.3 to 201254\n", "webquery for uc002kdr.3\n", "webquery matched uc002kdr.3 to 64118\n", "webquery for uc002kqc.2\n", "webquery matched uc002kqc.2 to 2774\n", "webquery for uc002kri.3\n", "webquery matched uc002kri.3 to 79959\n", "webquery for uc002ksa.2\n", "webquery matched uc002ksa.2 to 753\n", "webquery for uc002kwe.3\n", "webquery matched uc002kwe.3 to 83539\n", "webquery for uc002lav.3\n", "webquery matched uc002lav.3 to 6014\n", "webquery for uc002lcz.3\n", "webquery matched uc002lcz.3 to 4087\n", "webquery for uc002lfo.4\n", "webquery matched uc002lfo.4 to 162681\n", "webquery for uc002lin.3\n", "webquery matched uc002lin.3 to 8792\n", "webquery for uc002ljl.3\n", "webquery matched uc002ljl.3 to 8710\n", "webquery for uc002lly.3\n", "webquery matched uc002lly.3 to 10194\n", "webquery for uc002lmf.1\n", "webquery matched uc002lmf.1 to 400658\n", "webquery for uc002loz.3\n", "webquery matched uc002loz.3 to 682\n", "webquery for uc002lsk.3\n", "webquery matched uc002lsk.3 to 2593\n", "webquery for uc002ltv.3\n", "webquery matched uc002ltv.3 to 148229\n", "webquery for uc002luh.3\n", "webquery matched uc002luh.3 to 113179\n", "webquery for uc002luj.3\n", "webquery matched uc002luj.3 to 113178\n", "webquery for uc002luz.3\n", "webquery matched uc002luz.3 to 8943\n", "webquery for uc002lvo.1\n", "webquery for uc002lvy.3\n", "webquery matched uc002lvy.3 to 84823\n", "webquery for uc002lzl.3\n", "webquery matched uc002lzl.3 to 84699\n", "webquery for uc002mbi.3\n", "webquery matched uc002mbi.3 to 148022\n", "webquery for uc002mcx.3\n", "webquery matched uc002mcx.3 to 9361\n", "webquery for uc002mfw.3\n", "webquery matched uc002mfw.3 to 2015\n", "webquery for uc002mgz.3\n", "webquery matched uc002mgz.3 to 126006\n", "webquery for uc002mha.4\n", "webquery matched uc002mha.4 to 6813\n", "webquery for uc002mmr.3\n", "webquery matched uc002mmr.3 to 50700\n", "webquery for uc002mqs.4\n", "webquery matched uc002mqs.4 to 57572\n", "webquery for uc002mul.1\n", "webquery for uc002mvd.3\n", "webquery matched uc002mvd.3 to 7001\n", "webquery for uc002mvj.3\n", "webquery matched uc002mvj.3 to 83546\n", "webquery for uc002mvq.3\n", "webquery matched uc002mvq.3 to 2639\n", "webquery for uc002mwb.3\n", "webquery matched uc002mwb.3 to 90480\n", "webquery for uc002mwm.3\n", "webquery matched uc002mwm.3 to 112939\n", "webquery for uc002mxx.3\n", "webquery matched uc002mxx.3 to 9466\n", "webquery for uc002myx.3\n", "webquery matched uc002myx.3 to 10755\n", "webquery for uc002nhp.2\n", "webquery matched uc002nhp.2 to 6142\n", "webquery for uc002nlf.2\n", "webquery matched uc002nlf.2 to 284439\n", "webquery for uc002nlg.3\n", "webquery matched uc002nlg.3 to 54929\n", "webquery for uc002oek.3\n", "webquery matched uc002oek.3 to 84911\n", "webquery for uc002oim.3\n", "webquery matched uc002oim.3 to 399473\n", "webquery for uc002old.3\n", "webquery matched uc002old.3 to 54623\n", "webquery for uc002omq.3\n", "webquery matched uc002omq.3 to 5704\n", "webquery for uc002onh.3\n", "webquery matched uc002onh.3 to 126526\n", "webquery for uc002opk.1\n", "webquery for uc002opt.3\n", "webquery matched uc002opt.3 to 1553\n", "webquery for uc002osh.3\n", "webquery for uc002ozu.3\n", "webquery matched uc002ozu.3 to 4059\n", "webquery for uc002pav.3\n", "webquery matched uc002pav.3 to 79090\n", "webquery for uc002pbd.3\n", "webquery matched uc002pbd.3 to 1158\n", "webquery for uc002pcc.3\n", "webquery matched uc002pcc.3 to 6253\n", "webquery for uc002pdw.3\n", "webquery matched uc002pdw.3 to 729440\n", "webquery for uc002pgs.3\n", "webquery matched uc002pgs.3 to 56917\n", "webquery for uc002pic.3\n", "webquery for uc002pnj.3\n", "webquery matched uc002pnj.3 to 8463\n", "webquery for uc002pny.3\n", "webquery matched uc002pny.3 to 23521\n", "webquery for uc002pok.3\n", "webquery matched uc002pok.3 to 51070\n", "webquery for uc002pqn.4\n", "webquery matched uc002pqn.4 to 84335\n", "webquery for uc002psb.4\n", "webquery matched uc002psb.4 to 5424\n", "webquery for uc002pxe.3\n", "webquery matched uc002pxe.3 to 8778\n", "webquery for uc002qch.4\n", "webquery matched uc002qch.4 to 91662\n", "webquery for uc002qix.3\n", "webquery matched uc002qix.3 to 54776\n", "webquery for uc002qvo.3\n", "webquery matched uc002qvo.3 to 55629\n", "webquery for uc002qya.3\n", "webquery matched uc002qya.3 to 78989\n", "webquery for uc002qyo.3\n", "webquery matched uc002qyo.3 to 129607\n", "webquery for uc002rbh.3\n", "webquery matched uc002rbh.3 to 1876\n", "webquery for uc002rbt.3\n", "webquery matched uc002rbt.3 to 23175\n", "webquery for uc002rce.3\n", "webquery matched uc002rce.3 to 1653\n", "webquery for uc002rgc.3\n", "webquery matched uc002rgc.3 to 1788\n", "webquery for uc002rgh.3\n", "webquery matched uc002rgh.3 to 1838\n", "webquery for uc002rkl.3\n", "webquery matched uc002rkl.3 to 5496\n", "webquery for uc002rla.3\n", "webquery matched uc002rla.3 to 84450\n", "webquery for uc002rro.3\n", "webquery matched uc002rro.3 to 8491\n", "webquery for uc002sbo.3\n", "webquery matched uc002sbo.3 to 10575\n", "webquery for uc002skb.4\n", "webquery for uc002snx.3\n", "webquery matched uc002snx.3 to 130120\n", "webquery for uc002sqg.3\n", "webquery matched uc002sqg.3 to 10713\n", "webquery for uc002ssh.3\n", "webquery for uc002swn.4\n", "webquery matched uc002swn.4 to 55683\n", "webquery for uc002tcm.1\n", "webquery for uc002tew.3\n", "webquery matched uc002tew.3 to 151011\n", "webquery for uc002tid.3\n", "webquery for uc002tmb.3\n", "webquery matched uc002tmb.3 to 200373\n", "webquery for uc002tnq.3\n", "webquery matched uc002tnq.3 to 2995\n", "webquery for uc002try.1\n", "webquery for uc002tuw.3\n", "webquery matched uc002tuw.3 to 4175\n", "webquery for uc002ucc.3\n", "webquery matched uc002ucc.3 to 2641\n", "webquery for uc002uce.3\n", "webquery matched uc002uce.3 to 64135\n", "webquery for uc002uhh.2\n", "webquery matched uc002uhh.2 to 8604\n", "webquery for uc002uiu.3\n", "webquery matched uc002uiu.3 to 151556\n", "webquery for uc002ujl.3\n", "webquery matched uc002ujl.3 to 1386\n", "webquery for uc002ukm.1\n", "webquery for uc002ulh.4\n", "webquery matched uc002ulh.4 to 4780\n", "webquery for uc002umv.1\n", "webquery for uc002uoo.3\n", "webquery matched uc002uoo.3 to 151242\n", "webquery for uc002upq.3\n", "webquery matched uc002upq.3 to 3685\n", "webquery for uc002upv.4\n", "webquery matched uc002upv.4 to 10203\n", "webquery for uc002uyy.1\n", "webquery matched uc002uyy.1 to 100652824\n", "webquery for uc002vbq.3\n", "webquery matched uc002vbq.3 to 8745\n", "webquery for uc002vdb.3\n", "webquery matched uc002vdb.3 to 5746\n", "webquery for uc002vdn.3\n", "webquery matched uc002vdn.3 to 6120\n", "webquery for uc002veq.3\n", "webquery matched uc002veq.3 to 79582\n", "webquery for uc002vgm.3\n", "webquery for uc002vhd.3\n", "webquery matched uc002vhd.3 to 10109\n", "webquery for uc002vin.3\n", "webquery matched uc002vin.3 to 7701\n", "webquery for uc002vjf.3\n", "webquery matched uc002vjf.3 to 8941\n", "webquery for uc002vka.3\n", "webquery matched uc002vka.3 to 130617\n", "webquery for uc002vlz.3\n", "webquery matched uc002vlz.3 to 55515\n", "webquery for uc002vnl.4\n", "webquery matched uc002vnl.4 to 23704\n", "webquery for uc002vny.2\n", "webquery matched uc002vny.2 to 8452\n", "webquery for uc002voy.3\n", "webquery matched uc002voy.3 to 56947\n", "webquery for uc002vrq.4\n", "webquery matched uc002vrq.4 to 80210\n", "webquery for uc002vsw.3\n", "webquery matched uc002vsw.3 to 1144\n", "webquery for uc002vvf.3\n", "webquery for uc002vxt.3\n", "webquery for uc002vzi.3\n", "webquery matched uc002vzi.3 to 57140\n", "webquery for uc002wbj.3\n", "webquery for uc002wbp.3\n", "webquery matched uc002wbp.3 to 10494\n", "webquery for uc002wea.3\n", "webquery matched uc002wea.3 to 140809\n", "webquery for uc002wgp.3\n", "webquery matched uc002wgp.3 to 3420\n", "webquery for uc002whw.3\n", "webquery matched uc002whw.3 to 22888\n", "webquery for uc002whz.3\n", "webquery matched uc002whz.3 to 60493\n", "webquery for uc002wid.3\n", "webquery matched uc002wid.3 to 3704\n", "webquery for uc002wnb.3\n", "webquery matched uc002wnb.3 to 23236\n", "webquery for uc002wuf.3\n", "webquery matched uc002wuf.3 to 30813\n", "webquery for uc002wvt.3\n", "webquery matched uc002wvt.3 to 245932\n", "webquery for uc002wxu.4\n", "webquery matched uc002wxu.4 to 140688\n", "webquery for uc002wyj.3\n", "webquery matched uc002wyj.3 to 80341\n", "webquery for uc002wyz.3\n", "webquery matched uc002wyz.3 to 51654\n", "webquery for uc002xcx.3\n", "webquery for uc002xhn.1\n", "webquery for uc002xlq.3\n", "webquery matched uc002xlq.3 to 78997\n", "webquery for uc002xma.3\n", "webquery matched uc002xma.3 to 3172\n", "webquery for uc002xoh.2\n", "webquery matched uc002xoh.2 to 51604\n", "webquery for uc002xty.3\n", "webquery matched uc002xty.3 to 1434\n", "webquery for uc002xwd.3\n", "webquery matched uc002xwd.3 to 4773\n", "webquery for uc002xxa.3\n", "webquery matched uc002xxa.3 to 140689\n", "webquery for uc002xyq.3\n", "webquery matched uc002xyq.3 to 56937\n", "webquery for uc002yag.3\n", "webquery matched uc002yag.3 to 51497\n", "webquery for uc002yfg.3\n", "webquery matched uc002yfg.3 to 5753\n", "webquery for uc002ygc.3\n", "webquery matched uc002ygc.3 to 10139\n", "webquery for uc002ysk.3\n", "webquery matched uc002ysk.3 to 29980\n", "webquery for uc002yty.3\n", "webquery for uc002ywo.2\n", "webquery matched uc002ywo.2 to 3763\n", "webquery for uc002ywx.3\n", "webquery matched uc002ywx.3 to 3772\n", "webquery for uc002yxg.3\n", "webquery matched uc002yxg.3 to 2114\n", "webquery for uc002yxi.3\n", "webquery matched uc002yxi.3 to 8624\n", "webquery for uc002zbb.2\n", "webquery matched uc002zbb.2 to 64699\n", "webquery for uc002zci.3\n", "webquery matched uc002zci.3 to 10785\n", "webquery for uc002zdr.3\n", "webquery matched uc002zdr.3 to 1476\n", "webquery for uc002zei.2\n", "webquery matched uc002zei.2 to 326\n", "webquery for uc002zly.3\n", "webquery matched uc002zly.3 to 23765\n", "webquery for uc002zmw.3\n", "webquery matched uc002zmw.3 to 23786\n", "webquery for uc002zns.3\n", "webquery for uc002zoz.3\n", "webquery matched uc002zoz.3 to 6576\n", "webquery for uc002zsh.3\n", "webquery matched uc002zsh.3 to 7625\n", "webquery for uc002zsz.4\n", "webquery matched uc002zsz.4 to 5297\n", "webquery for uc003aci.3\n", "webquery matched uc003aci.3 to 89781\n", "webquery for uc003adg.3\n", "webquery for uc003aem.3\n", "webquery matched uc003aem.3 to 129080\n", "webquery for uc003aff.3\n", "webquery matched uc003aff.3 to 10633\n", "webquery for uc003afp.3\n", "webquery for uc003agz.2\n", "webquery matched uc003agz.2 to 3976\n", "webquery for uc003aha.3\n", "webquery for uc003ajc.3\n", "webquery matched uc003ajc.3 to 150291\n", "webquery for uc003akt.3\n", "webquery for uc003ale.3\n", "webquery matched uc003ale.3 to 9814\n", "webquery for uc003apv.2\n", "webquery matched uc003apv.2 to 11020\n", "webquery for uc003aqh.3\n", "webquery matched uc003aqh.3 to 7263\n", "webquery for uc003awb.3\n", "webquery matched uc003awb.3 to 25776\n", "webquery for uc003azw.3\n", "webquery matched uc003azw.3 to 23264\n", "webquery for uc003azy.3\n", "webquery matched uc003azy.3 to 7008\n", "webquery for uc003bdn.3\n", "webquery matched uc003bdn.3 to 706\n", "webquery for uc003bdo.3\n", "webquery matched uc003bdo.3 to 706\n", "webquery for uc003bds.3\n", "webquery for uc003bmb.4\n", "webquery matched uc003bmb.4 to 1890\n", "webquery for uc003bmz.4\n", "webquery matched uc003bmz.4 to 410\n", "webquery for uc003bqq.3\n", "webquery matched uc003bqq.3 to 29995\n", "webquery for uc003bqu.3\n", "webquery matched uc003bqu.3 to 51066\n", "webquery for uc003btg.3\n", "webquery matched uc003btg.3 to 26140\n", "webquery for uc003bxd.3\n", "webquery matched uc003bxd.3 to 23609\n", "webquery for uc003cdv.3\n", "webquery matched uc003cdv.3 to 9497\n", "webquery for uc003cdx.3\n", "webquery matched uc003cdx.3 to 8320\n", "webquery for uc003ceb.3\n", "webquery matched uc003ceb.3 to 64343\n", "webquery for uc003cfy.3\n", "webquery matched uc003cfy.3 to 10015\n", "webquery for uc003cju.3\n", "webquery matched uc003cju.3 to 4336\n", "webquery for uc003ckg.3\n", "webquery matched uc003ckg.3 to 9045\n", "webquery for uc003cky.3\n", "webquery matched uc003cky.3 to 22906\n", "webquery for uc003cpb.4\n", "webquery matched uc003cpb.4 to 79443\n", "webquery for uc003cqo.2\n", "webquery matched uc003cqo.2 to 151903\n", "webquery for uc003csj.2\n", "webquery matched uc003csj.2 to 820\n", "webquery for uc003cvx.3\n", "webquery matched uc003cvx.3 to 5859\n", "webquery for uc003cxh.3\n", "webquery matched uc003cxh.3 to 63891\n", "webquery for uc003czp.3\n", "webquery matched uc003czp.3 to 3373\n", "webquery for uc003ddx.3\n", "webquery matched uc003ddx.3 to 8314\n", "webquery for uc003dgf.3\n", "webquery for uc003dgu.4\n", "webquery matched uc003dgu.4 to 776\n", "webquery for uc003dhn.3\n", "webquery matched uc003dhn.3 to 7474\n", "webquery for uc003dju.4\n", "webquery matched uc003dju.4 to 11102\n", "webquery for uc003dtc.3\n", "webquery matched uc003dtc.3 to 10402\n", "webquery for uc003dtt.3\n", "webquery matched uc003dtt.3 to 55773\n", "webquery for uc003duz.3\n", "webquery matched uc003duz.3 to 54931\n", "webquery for uc003dxs.1\n", "webquery for uc003dyk.4\n", "webquery matched uc003dyk.4 to 55347\n", "webquery for uc003dze.3\n", "webquery matched uc003dze.3 to 55032\n", "webquery for uc003eay.3\n", "webquery matched uc003eay.3 to 79691\n", "webquery for uc003eei.4\n", "webquery matched uc003eei.4 to 2804\n", "webquery for uc003eib.3\n", "webquery matched uc003eib.3 to 8723\n", "webquery for uc003ejn.2\n", "webquery matched uc003ejn.2 to 131601\n", "webquery for uc003ejp.3\n", "webquery matched uc003ejp.3 to 4171\n", "webquery for uc003ejx.3\n", "webquery matched uc003ejx.3 to 11343\n", "webquery for uc003enc.3\n", "webquery matched uc003enc.3 to 7200\n", "webquery for uc003ewh.3\n", "webquery matched uc003ewh.3 to 185\n", "webquery for uc003fbt.3\n", "webquery matched uc003fbt.3 to 51319\n", "webquery for uc003foi.3\n", "webquery matched uc003foi.3 to 1181\n", "webquery for uc003fta.3\n", "webquery matched uc003fta.3 to 57110\n", "webquery for uc003gbw.3\n", "webquery matched uc003gbw.3 to 1609\n", "webquery for uc003ghf.3\n", "webquery matched uc003ghf.3 to 285489\n", "webquery for uc003gpp.3\n", "webquery matched uc003gpp.3 to 64151\n", "webquery for uc003gqp.4\n", "webquery matched uc003gqp.4 to 57733\n", "webquery for uc003gwy.3\n", "webquery matched uc003gwy.3 to 132789\n", "webquery for uc003hag.4\n", "webquery matched uc003hag.4 to 84708\n", "webquery for uc003hax.2\n", "webquery matched uc003hax.2 to 55858\n", "webquery for uc003hbi.3\n", "webquery matched uc003hbi.3 to 9662\n", "webquery for uc003hhh.2\n", "webquery matched uc003hhh.2 to 2919\n", "webquery for uc003hhk.3\n", "webquery matched uc003hhk.3 to 6374\n", "webquery for uc003hhw.3\n", "webquery matched uc003hhw.3 to 255324\n", "webquery for uc003hoy.3\n", "webquery matched uc003hoy.3 to 84803\n", "webquery for uc003hrm.4\n", "webquery matched uc003hrm.4 to 152926\n", "webquery for uc003hrt.3\n", "webquery matched uc003hrt.3 to 51191\n", "webquery for uc003hti.3\n", "webquery matched uc003hti.3 to 10611\n", "webquery for uc003hvd.3\n", "webquery for uc003hvl.3\n", "webquery matched uc003hvl.3 to 79982\n", "webquery for uc003hxg.3\n", "webquery for uc003hzx.4\n", "webquery for uc003ibb.3\n", "webquery matched uc003ibb.3 to 51574\n", "webquery for uc003idj.1\n", "webquery for uc003ifa.3\n", "webquery matched uc003ifa.3 to 10252\n", "webquery for uc003ilv.1\n", "webquery for uc003ioo.3\n", "webquery matched uc003ioo.3 to 166863\n", "webquery for uc003iqh.3\n", "webquery matched uc003iqh.3 to 56884\n", "webquery for uc003itl.4\n", "webquery for uc003itu.2\n", "webquery matched uc003itu.2 to 3248\n", "webquery for uc003iug.3\n", "webquery matched uc003iug.3 to 2823\n", "webquery for uc003jdm.4\n", "webquery matched uc003jdm.4 to 23379\n", "webquery for uc003jea.4\n", "webquery matched uc003jea.4 to 134121\n", "webquery for uc003jfx.3\n", "webquery matched uc003jfx.3 to 10409\n", "webquery for uc003jhy.3\n", "webquery matched uc003jhy.3 to 6897\n", "webquery for uc003jjs.3\n", "webquery matched uc003jjs.3 to 3575\n", "webquery for uc003jno.3\n", "webquery matched uc003jno.3 to 167359\n", "webquery for uc003jnq.4\n", "webquery matched uc003jnq.4 to 3157\n", "webquery for uc003jpz.3\n", "webquery matched uc003jpz.3 to 8611\n", "webquery for uc003jqf.2\n", "webquery matched uc003jqf.2 to 153129\n", "webquery for uc003jtj.3\n", "webquery matched uc003jtj.3 to 401190\n", "webquery for uc003jtv.4\n", "webquery matched uc003jtv.4 to 23398\n", "webquery for uc003jun.3\n", "webquery matched uc003jun.3 to 140890\n", "webquery for uc003kdm.3\n", "webquery matched uc003kdm.3 to 26049\n", "webquery for uc003kem.3\n", "webquery matched uc003kem.3 to 2151\n", "webquery for uc003kfj.3\n", "webquery matched uc003kfj.3 to 8546\n", "webquery for uc003kfy.3\n", "webquery matched uc003kfy.3 to 9456\n", "webquery for uc003kgz.3\n", "webquery matched uc003kgz.3 to 4437\n", "webquery for uc003kho.3\n", "webquery matched uc003kho.3 to 23635\n", "webquery for uc003koe.3\n", "webquery matched uc003koe.3 to 23262\n", "webquery for uc003kte.3\n", "webquery matched uc003kte.3 to 6643\n", "webquery for uc003ktl.3\n", "webquery matched uc003ktl.3 to 1456\n", "webquery for uc003kuf.3\n", "webquery matched uc003kuf.3 to 115123\n", "webquery for uc003kve.3\n", "webquery matched uc003kve.3 to 3094\n", "webquery for uc003kwf.3\n", "webquery matched uc003kwf.3 to 1437\n", "webquery for uc003lcz.3\n", "webquery matched uc003lcz.3 to 51308\n", "webquery for uc003lgv.3\n", "webquery matched uc003lgv.3 to 3035\n", "webquery for uc003lhy.1\n", "webquery for uc003lmn.4\n", "webquery matched uc003lmn.4 to 2246\n", "webquery for uc003lnl.4\n", "webquery matched uc003lnl.4 to 81555\n", "webquery for uc003loh.4\n", "webquery matched uc003loh.4 to 5521\n", "webquery for uc003lui.3\n", "webquery matched uc003lui.3 to 6678\n", "webquery for uc003lvo.3\n", "webquery matched uc003lvo.3 to 23367\n", "webquery for uc003lwz.3\n", "webquery matched uc003lwz.3 to 8728\n", "webquery for uc003lzk.3\n", "webquery matched uc003lzk.3 to 27430\n", "webquery for uc003mab.3\n", "webquery matched uc003mab.3 to 6586\n", "webquery for uc003mcx.3\n", "webquery matched uc003mcx.3 to 51617\n", "webquery for uc003mdg.4\n", "webquery matched uc003mdg.4 to 84321\n", "webquery for uc003meh.3\n", "webquery matched uc003meh.3 to 1212\n", "webquery for uc003mfx.3\n", "webquery matched uc003mfx.3 to 27166\n", "webquery for uc003mnb.1\n", "webquery for uc003mtd.3\n", "webquery matched uc003mtd.3 to 55770\n", "webquery for uc003mub.3\n", "webquery matched uc003mub.3 to 1992\n", "webquery for uc003mug.3\n", "webquery matched uc003mug.3 to 5272\n", "webquery for uc003nar.3\n", "webquery for uc003nbj.3\n", "webquery matched uc003nbj.3 to 3720\n", "webquery for uc003ncw.3\n", "webquery matched uc003ncw.3 to 3400\n", "webquery for uc003nfm.3\n", "webquery matched uc003nfm.3 to 10475\n", "webquery for uc003ngv.3\n", "webquery matched uc003ngv.3 to 8351\n", "webquery for uc003ngw.3\n", "webquery matched uc003ngw.3 to 3013\n", "webquery for uc003nkt.3\n", "webquery matched uc003nkt.3 to 222698\n", "webquery for uc003nrc.3\n", "webquery matched uc003nrc.3 to 11270\n", "webquery for uc003nui.3\n", "webquery matched uc003nui.3 to 7124\n", "webquery for uc003odb.3\n", "webquery matched uc003odb.3 to 6257\n", "webquery for uc003oir.4\n", "webquery for uc003ojp.3\n", "webquery matched uc003ojp.3 to 29993\n", "webquery for uc003ols.3\n", "webquery matched uc003ols.3 to 5603\n", "webquery for uc003oqk.1\n", "webquery for uc003oth.3\n", "webquery matched uc003oth.3 to 5528\n", "webquery for uc003oxp.3\n", "webquery matched uc003oxp.3 to 8464\n", "webquery for uc003ozo.2\n", "webquery matched uc003ozo.2 to 7180\n", "webquery for uc003ozy.2\n", "webquery matched uc003ozy.2 to 403339\n", "webquery for uc003pcc.1\n", "webquery for uc003pck.3\n", "webquery matched uc003pck.3 to 222584\n", "webquery for uc003pga.3\n", "webquery matched uc003pga.3 to 22999\n", "webquery for uc003pim.3\n", "webquery matched uc003pim.3 to 134728\n", "webquery for uc003pmz.3\n", "webquery matched uc003pmz.3 to 135293\n", "webquery for uc003pta.1\n", "webquery matched uc003pta.1 to 100996634\n", "webquery for uc003ptc.1\n", "webquery for uc003puj.1\n", "webquery for uc003pvf.3\n", "webquery matched uc003pvf.3 to 10758\n", "webquery for uc003pwv.3\n", "webquery matched uc003pwv.3 to 441168\n", "webquery for uc003pwz.3\n", "webquery matched uc003pwz.3 to 221301\n", "webquery for uc003qbh.3\n", "webquery matched uc003qbh.3 to 352999\n", "webquery for uc003qbw.3\n", "webquery matched uc003qbw.3 to 154075\n", "webquery for uc003qck.3\n", "webquery matched uc003qck.3 to 9465\n", "webquery for uc003qhr.3\n", "webquery matched uc003qhr.3 to 7128\n", "webquery for uc003qpe.3\n", "webquery matched uc003qpe.3 to 7432\n", "webquery for uc003qsl.3\n", "webquery matched uc003qsl.3 to 9589\n", "webquery for uc003qti.3\n", "webquery matched uc003qti.3 to 6581\n", "webquery for uc003srb.2\n", "webquery matched uc003srb.2 to 56913\n", "webquery for uc003srk.3\n", "webquery matched uc003srk.3 to 113263\n", "webquery for uc003svc.3\n", "webquery matched uc003svc.3 to 8701\n", "webquery for uc003svk.3\n", "webquery matched uc003svk.3 to 54543\n", "webquery for uc003sws.4\n", "webquery matched uc003sws.4 to 56164\n", "webquery for uc003syp.2\n", "webquery matched uc003syp.2 to 100133311\n", "webquery for uc003tch.3\n", "webquery matched uc003tch.3 to 63974\n", "webquery for uc003tdk.3\n", "webquery matched uc003tdk.3 to 51251\n", "webquery for uc003tfp.3\n", "webquery matched uc003tfp.3 to 54749\n", "webquery for uc003tgs.1\n", "webquery for uc003tkb.3\n", "webquery matched uc003tkb.3 to 165\n", "webquery for uc003tkf.4\n", "webquery matched uc003tkf.4 to 5425\n", "webquery for uc003tlg.3\n", "webquery matched uc003tlg.3 to 54606\n", "webquery for uc003tmv.3\n", "webquery matched uc003tmv.3 to 9238\n", "webquery for uc003toh.4\n", "webquery matched uc003toh.4 to 136288\n", "webquery for uc003tvn.3\n", "webquery matched uc003tvn.3 to 55253\n", "webquery for uc003tvy.3\n", "webquery matched uc003tvy.3 to 64409\n", "webquery for uc003umo.3\n", "webquery matched uc003umo.3 to 55610\n", "webquery for uc003upg.3\n", "webquery matched uc003upg.3 to 25851\n", "webquery for uc003usq.3\n", "webquery matched uc003usq.3 to 7551\n", "webquery for uc003uut.3\n", "webquery matched uc003uut.3 to 55063\n", "webquery for uc003uwp.3\n", "webquery matched uc003uwp.3 to 56996\n", "webquery for uc003uxt.3\n", "webquery matched uc003uxt.3 to 5054\n", "webquery for uc003uzt.1\n", "webquery matched uc003uzt.1 to 10156\n", "webquery for uc003vcv.3\n", "webquery matched uc003vcv.3 to 6733\n", "webquery for uc003vdp.3\n", "webquery matched uc003vdp.3 to 6856\n", "webquery for uc003veh.3\n", "webquery matched uc003veh.3 to 11062\n", "webquery for uc003vli.3\n", "webquery matched uc003vli.3 to 2861\n", "webquery for uc003vpz.3\n", "webquery matched uc003vpz.3 to 95681\n", "webquery for uc003vxf.3\n", "webquery for uc003vxg.3\n", "webquery for uc003vxp.4\n", "webquery for uc003vyh.2\n", "webquery for uc003vyi.2\n", "webquery for uc003vyj.2\n", "webquery for uc003vyt.3\n", "webquery for uc003vzo.2\n", "webquery for uc003vzp.2\n", "webquery for uc003vzx.3\n", "webquery for uc003waa.1\n", "webquery for uc003wbp.2\n", "webquery for uc003wpd.3\n", "webquery for uc003wpl.3\n", "webquery matched uc003wpl.3 to 9228\n", "webquery for uc003xby.3\n", "webquery matched uc003xby.3 to 64236\n", "webquery for uc003xds.3\n", "webquery for uc003xee.3\n", "webquery matched uc003xee.3 to 4747\n", "webquery for uc003xfu.3\n", "webquery matched uc003xfu.3 to 2053\n", "webquery for uc003xgu.3\n", "webquery matched uc003xgu.3 to 157574\n", "webquery for uc003xjm.4\n", "webquery matched uc003xjm.4 to 80185\n", "webquery for uc003xkt.4\n", "webquery matched uc003xkt.4 to 9070\n", "webquery for uc003xnf.3\n", "webquery matched uc003xnf.3 to 1587\n", "webquery for uc003xnj.3\n", "webquery matched uc003xnj.3 to 2515\n", "webquery for uc003xpe.3\n", "webquery matched uc003xpe.3 to 6575\n", "webquery for uc003xpw.2\n", "webquery matched uc003xpw.2 to 84197\n", "webquery for uc003xqq.4\n", "webquery matched uc003xqq.4 to 492307\n", "webquery for uc003xrm.3\n", "webquery matched uc003xrm.3 to 51606\n", "webquery for uc003xuy.3\n", "webquery matched uc003xuy.3 to 253943\n", "webquery for uc003xvh.3\n", "webquery for uc003xzu.3\n", "webquery matched uc003xzu.3 to 55284\n", "webquery for uc003ybx.4\n", "webquery matched uc003ybx.4 to 65986\n", "webquery for uc003ygm.2\n", "webquery matched uc003ygm.2 to 100861412\n", "webquery for uc003yhb.3\n", "webquery matched uc003yhb.3 to 55656\n", "webquery for uc003yip.3\n", "webquery matched uc003yip.3 to 6788\n", "webquery for uc003yiw.3\n", "webquery matched uc003yiw.3 to 157680\n", "webquery for uc003ylk.3\n", "webquery matched uc003ylk.3 to 115908\n", "webquery for uc003yll.3\n", "webquery matched uc003yll.3 to 81034\n", "webquery for uc003yox.3\n", "webquery matched uc003yox.3 to 7373\n", "webquery for uc003ypl.2\n", "webquery matched uc003ypl.2 to 79139\n", "webquery for uc003yss.3\n", "webquery matched uc003yss.3 to 51571\n", "webquery for uc003ytk.3\n", "webquery matched uc003ytk.3 to 23639\n", "webquery for uc003yxw.3\n", "webquery matched uc003yxw.3 to 286128\n", "webquery for uc003yzs.3\n", "webquery matched uc003yzs.3 to 22827\n", "webquery for uc003zbm.3\n", "webquery matched uc003zbm.3 to 23246\n", "webquery for uc003zde.1\n", "webquery for uc003zdk.2\n", "webquery matched uc003zdk.2 to 9684\n", "webquery for uc003zin.3\n", "webquery matched uc003zin.3 to 403313\n", "webquery for uc003zji.3\n", "webquery matched uc003zji.3 to 57589\n", "webquery for uc003znk.3\n", "webquery matched uc003znk.3 to 54801\n", "webquery for uc003znq.3\n", "webquery matched uc003znq.3 to 55667\n", "webquery for uc003zqq.2\n", "webquery matched uc003zqq.2 to 203228\n", "webquery for uc003zve.3\n", "webquery matched uc003zve.3 to 2592\n", "webquery for uc003zvo.3\n", "webquery matched uc003zvo.3 to 6366\n", "webquery for uc003zvs.3\n", "webquery matched uc003zvs.3 to 25822\n", "webquery for uc003zym.3\n", "webquery matched uc003zym.3 to 51754\n", "webquery for uc003zyn.3\n", "webquery matched uc003zyn.3 to 51754\n", "webquery for uc003zzn.3\n", "webquery matched uc003zzn.3 to 9833\n", "webquery for uc004aba.3\n", "webquery for uc004agu.3\n", "webquery matched uc004agu.3 to 8395\n", "webquery for uc004amu.2\n", "webquery matched uc004amu.2 to 414328\n", "webquery for uc004ana.3\n", "webquery matched uc004ana.3 to 55582\n", "webquery for uc004aoo.3\n", "webquery matched uc004aoo.3 to 389766\n", "webquery for uc004aqe.3\n", "webquery matched uc004aqe.3 to 1903\n", "webquery for uc004aru.3\n", "webquery matched uc004aru.3 to 3376\n", "webquery for uc004axy.3\n", "webquery matched uc004axy.3 to 55363\n", "webquery for uc004bhq.3\n", "webquery matched uc004bhq.3 to 5998\n", "webquery for uc004bjz.3\n", "webquery matched uc004bjz.3 to 7099\n", "webquery for uc004bkf.3\n", "webquery matched uc004bkf.3 to 55755\n", "webquery for uc004bko.3\n", "webquery matched uc004bko.3 to 5711\n", "webquery for uc004bkp.3\n", "webquery for uc004blh.3\n", "webquery matched uc004blh.3 to 2040\n", "webquery for uc004bnh.3\n", "webquery matched uc004bnh.3 to 10773\n", "webquery for uc004bod.1\n", "webquery for uc004boj.3\n", "webquery matched uc004boj.3 to 5695\n", "webquery for uc004box.3\n", "webquery matched uc004box.3 to 401551\n", "webquery for uc004bqu.3\n", "webquery matched uc004bqu.3 to 29988\n", "webquery for uc004bsj.4\n", "webquery matched uc004bsj.4 to 2022\n", "webquery for uc004btb.3\n", "webquery matched uc004btb.3 to 114789\n", "webquery for uc004bti.3\n", "webquery matched uc004bti.3 to 80142\n", "webquery for uc004bzj.3\n", "webquery for uc004bzl.3\n", "webquery for uc004cco.3\n", "webquery matched uc004cco.3 to 5900\n", "webquery for uc004cfe.3\n", "webquery matched uc004cfe.3 to 1289\n", "webquery for uc004cfv.4\n", "webquery matched uc004cfv.4 to 51116\n", "webquery for uc004cgx.4\n", "webquery matched uc004cgx.4 to 90120\n", "webquery for uc004cld.2\n", "webquery matched uc004cld.2 to 11253\n", "webquery for uc004cxi.3\n", "webquery matched uc004cxi.3 to 8905\n", "webquery for uc004dag.3\n", "webquery matched uc004dag.3 to 6611\n", "webquery for uc004dez.1\n", "webquery for uc004dfy.3\n", "webquery matched uc004dfy.3 to 4128\n", "webquery for uc004dkz.3\n", "webquery matched uc004dkz.3 to 27344\n", "webquery for uc004dsk.3\n", "webquery matched uc004dsk.3 to 158787\n", "webquery for uc004dsp.3\n", "webquery matched uc004dsp.3 to 10075\n", "webquery for uc004dtz.3\n", "webquery matched uc004dtz.3 to 27301\n", "webquery for uc004ebz.3\n", "webquery matched uc004ebz.3 to 22\n", "webquery for uc004fid.2\n", "webquery matched uc004fid.2 to 10134\n", "webquery for uc004fip.3\n", "webquery matched uc004fip.3 to 3421\n", "webquery for uc004fjb.3\n", "webquery matched uc004fjb.3 to 3897\n", "webquery for uc009vmm.2\n", "webquery for uc009whd.3\n", "webquery matched uc009whd.3 to 9398\n", "webquery for uc009xjx.3\n", "webquery matched uc009xjx.3 to 653567\n", "webquery for uc009xjy.3\n", "webquery matched uc009xjy.3 to 653567\n", "webquery for uc009xop.2\n", "webquery matched uc009xop.2 to 8505\n", "webquery for uc009xyw.3\n", "webquery matched uc009xyw.3 to 57698\n", "webquery for uc009ynu.1\n", "webquery for uc009ype.3\n", "webquery matched uc009ype.3 to 84304\n", "webquery for uc009ysn.1\n", "webquery for uc009zpy.3\n", "webquery matched uc009zpy.3 to 115557\n", "webquery for uc010acr.3\n", "webquery matched uc010acr.3 to 3356\n", "webquery for uc010aiq.1\n", "webquery for uc010air.1\n", "webquery for uc010aiz.2\n", "webquery for uc010ajh.1\n", "webquery for uc010ajq.1\n", "webquery for uc010aki.1\n", "webquery for uc010axb.3\n", "webquery matched uc010axb.3 to 283638\n", "webquery for uc010brn.2\n", "webquery matched uc010brn.2 to 64718\n", "webquery for uc010cod.3\n", "webquery matched uc010cod.3 to 124739\n", "webquery for uc010crg.3\n", "webquery matched uc010crg.3 to 8844\n", "webquery for uc010cyj.3\n", "webquery matched uc010cyj.3 to 80347\n", "webquery for uc010dci.3\n", "webquery for uc010dck.1\n", "webquery for uc010dhs.3\n", "webquery matched uc010dhs.3 to 146713\n", "webquery for uc010dkh.3\n", "webquery matched uc010dkh.3 to 116\n", "webquery for uc010dur.1\n", "webquery for uc010enw.3\n", "webquery matched uc010enw.3 to 7376\n", "webquery for uc010fyv.3\n", "webquery matched uc010fyv.3 to 51540\n", "webquery for uc010gcf.3\n", "webquery for uc010gmp.3\n", "webquery matched uc010gmp.3 to 3753\n", "webquery for uc010heg.3\n", "webquery matched uc010heg.3 to 6533\n", "webquery for uc010hka.3\n", "webquery matched uc010hka.3 to 11277\n", "webquery for uc010hpr.3\n", "webquery matched uc010hpr.3 to 56987\n", "webquery for uc010jja.3\n", "webquery matched uc010jja.3 to 2554\n", "webquery for uc010jpa.3\n", "webquery matched uc010jpa.3 to 100113407\n", "webquery for uc010jqt.3\n", "webquery matched uc010jqt.3 to 387316\n", "webquery for uc010jwl.1\n", "webquery for uc010kxj.1\n", "webquery for uc010lnw.1\n", "webquery for uc010lnz.1\n", "webquery for uc010lol.1\n", "webquery for uc010luc.2\n", "webquery for uc010mhy.3\n", "webquery matched uc010mhy.3 to 8777\n", "webquery for uc010nhv.3\n", "webquery matched uc010nhv.3 to 2002\n", "webquery for uc010nuv.2\n", "webquery for uc010oir.2\n", "webquery for uc010oxm.1\n", "webquery matched uc010oxm.1 to 647135\n", "webquery for uc010peq.2\n", "webquery matched uc010peq.2 to 51043\n", "webquery for uc010pgo.1\n", "webquery for uc010pho.2\n", "webquery matched uc010pho.2 to 57127\n", "webquery for uc010pwb.2\n", "webquery matched uc010pwb.2 to 79605\n", "webquery for uc010qbd.2\n", "webquery matched uc010qbd.2 to 83860\n", "webquery for uc010qcq.1\n", "webquery for uc010qcr.1\n", "webquery for uc010qfa.1\n", "webquery for uc010qha.2\n", "webquery matched uc010qha.2 to 100287932\n", "webquery for uc010rbf.2\n", "webquery matched uc010rbf.2 to 341277\n", "webquery for uc010rve.2\n", "webquery for uc010rwf.1\n", "webquery matched uc010rwf.1 to 120376\n", "webquery for uc010smg.1\n", "webquery for uc010smi.1\n", "webquery for uc010snr.1\n", "webquery for uc010spd.1\n", "webquery matched uc010spd.1 to 9840\n", "webquery for uc010spo.2\n", "webquery matched uc010spo.2 to 403284\n", "webquery for uc010tmm.2\n", "webquery for uc010tmr.2\n", "webquery for uc010tsr.2\n", "webquery for uc010tvu.2\n", "webquery matched uc010tvu.2 to 85439\n", "webquery for uc010tyn.2\n", "webquery matched uc010tyn.2 to 256281\n", "webquery for uc010vjd.2\n", "webquery matched uc010vjd.2 to 8996\n", "webquery for uc010wgz.1\n", "webquery for uc010wji.2\n", "webquery matched uc010wji.2 to 146909\n", "webquery for uc010wrr.2\n", "webquery matched uc010wrr.2 to 347741\n", "webquery for uc010xbj.2\n", "webquery matched uc010xbj.2 to 284252\n", "webquery for uc010xcc.2\n", "webquery matched uc010xcc.2 to 10982\n", "webquery for uc010xhv.2\n", "webquery for uc010xmo.2\n", "webquery for uc010xyt.2\n", "webquery matched uc010xyt.2 to 84215\n", "webquery for uc010yii.1\n", "webquery for uc010yod.2\n", "webquery matched uc010yod.2 to 388946\n", "webquery for uc010yov.1\n", "webquery for uc010zxu.1\n", "webquery matched uc010zxu.1 to 128506\n", "webquery for uc011adj.2\n", "webquery matched uc011adj.2 to 337878\n", "webquery for uc011amu.2\n", "webquery matched uc011amu.2 to 4357\n", "webquery for uc011aqf.2\n", "webquery for uc011aqs.2\n", "webquery matched uc011aqs.2 to 26150\n", "webquery for uc011auw.1\n", "webquery matched uc011auw.1 to 9922\n", "webquery for uc011bgq.1\n", "webquery for uc011bgy.2\n", "webquery matched uc011bgy.2 to 2838\n", "webquery for uc011bmq.2\n", "webquery matched uc011bmq.2 to 5291\n", "webquery for uc011bof.2\n", "webquery matched uc011bof.2 to 401093\n", "webquery for uc011cqt.2\n", "webquery matched uc011cqt.2 to 3350\n", "webquery for uc011dfl.2\n", "webquery matched uc011dfl.2 to 51491\n", "webquery for uc011dnu.1\n", "webquery matched uc011dnu.1 to 4049\n", "webquery for uc011duc.2\n", "webquery matched uc011duc.2 to 340205\n", "webquery for uc011eci.2\n", "webquery matched uc011eci.2 to 134860\n", "webquery for uc011egm.1\n", "webquery matched uc011egm.1 to 441177\n", "webquery for uc011kqt.2\n", "webquery matched uc011kqt.2 to 100996928\n", "webquery for uc011kro.1\n", "webquery for uc011krr.1\n", "webquery for uc011krs.1\n", "webquery for uc011krx.2\n", "webquery for uc011kry.1\n", "webquery for uc011ksd.2\n", "webquery for uc011ksk.1\n", "webquery for uc011ksl.1\n", "webquery for uc011kvf.2\n", "webquery for uc011kzy.2\n", "webquery matched uc011kzy.2 to 137814\n", "webquery for uc011lct.2\n", "webquery for uc011lgn.2\n", "webquery matched uc011lgn.2 to 54704\n", "webquery for uc011loq.2\n", "webquery matched uc011loq.2 to 3590\n", "webquery for uc011lzk.2\n", "webquery matched uc011lzk.2 to 2844\n", "webquery for uc011may.1\n", "webquery matched uc011may.1 to 81605\n", "webquery for uc011mfg.1\n", "webquery matched uc011mfg.1 to 9719\n", "webquery for uc011mkc.2\n", "webquery matched uc011mkc.2 to 645090\n", "webquery for uc011mlp.2\n", "webquery matched uc011mlp.2 to 369\n", "webquery for uc011mmr.2\n", "webquery matched uc011mmr.2 to 90060\n", "webquery for uc021ohx.1\n", "webquery matched uc021ohx.1 to 644068\n", "webquery for uc021olr.1\n", "webquery matched uc021olr.1 to 81025\n", "webquery for uc021olw.1\n", "webquery matched uc021olw.1 to 23499\n", "webquery for uc021opb.1\n", "webquery for uc021osa.1\n", "webquery matched uc021osa.1 to 148281\n", "webquery for uc021pnx.1\n", "webquery matched uc021pnx.1 to 387640\n", "webquery for uc021ppl.1\n", "webquery for uc021pqa.1\n", "webquery matched uc021pqa.1 to 118461\n", "webquery for uc021prt.1\n", "webquery for uc021qct.1\n", "webquery for uc021qcy.1\n", "webquery for uc021qdd.1\n", "webquery for uc021qgl.1\n", "webquery for uc021qje.1\n", "webquery matched uc021qje.1 to 219525\n", "webquery for uc021qjl.1\n", "webquery for uc021qma.1\n", "webquery for uc021qrt.1\n", "webquery for uc021qtx.1\n", "webquery matched uc021qtx.1 to 4839\n", "webquery for uc021qvx.1\n", "webquery matched uc021qvx.1 to 89869\n", "webquery for uc021qzp.1\n", "webquery for uc021rcc.1\n", "webquery for uc021rcx.1\n", "webquery matched uc021rcx.1 to 7296\n", "webquery for uc021rms.1\n", "webquery matched uc021rms.1 to 55795\n", "webquery for uc021roz.1\n", "webquery for uc021rpa.1\n", "webquery for uc021rpg.1\n", "webquery for uc021rph.1\n", "webquery for uc021rpl.1\n", "webquery for uc021rpm.1\n", "webquery for uc021rpo.1\n", "webquery for uc021rpv.1\n", "webquery for uc021ruj.1\n", "webquery matched uc021ruj.1 to 441687\n", "webquery for uc021ruq.1\n", "webquery matched uc021ruq.1 to 2877\n", "webquery for uc021rvf.1\n", "webquery for uc021rwf.1\n", "webquery matched uc021rwf.1 to 399671\n", "webquery for uc021rwo.1\n", "webquery matched uc021rwo.1 to 283571\n", "webquery for uc021sbk.1\n", "webquery for uc021sic.1\n", "webquery matched uc021sic.1 to 1139\n", "webquery for uc021tjy.1\n", "webquery matched uc021tjy.1 to 51647\n", "webquery for uc021tpj.1\n", "webquery for uc021udd.1\n", "webquery matched uc021udd.1 to 85451\n", "webquery for uc021ufd.1\n", "webquery for uc021uie.1\n", "webquery matched uc021uie.1 to 29919\n", "webquery for uc021uip.1\n", "webquery matched uc021uip.1 to 51444\n", "webquery for uc021uml.1\n", "webquery matched uc021uml.1 to 399664\n", "webquery for uc021upq.1\n", "webquery matched uc021upq.1 to 8677\n", "webquery for uc021uqk.1\n", "webquery matched uc021uqk.1 to 23025\n", "webquery for uc021usn.1\n", "webquery matched uc021usn.1 to 2865\n", "webquery for uc021usq.1\n", "webquery for uc021utt.1\n", "webquery for uc021uys.1\n", "webquery for uc021vsr.1\n", "webquery for uc021vtn.1\n", "webquery for uc021vvg.1\n", "webquery matched uc021vvg.1 to 65062\n", "webquery for uc021way.1\n", "webquery for uc021xbn.1\n", "webquery matched uc021xbn.1 to 131544\n", "webquery for uc021xne.1\n", "webquery matched uc021xne.1 to 401124\n", "webquery for uc021xpz.1\n", "webquery matched uc021xpz.1 to 84992\n", "webquery for uc021yvy.1\n", "webquery for uc021yvz.1\n", "webquery matched uc021yvz.1 to 3119\n", "webquery for uc021yzr.1\n", "webquery matched uc021yzr.1 to 116138\n", "webquery for uc021zdd.1\n", "webquery matched uc021zdd.1 to 25957\n", "webquery for uc021zfz.1\n", "webquery matched uc021zfz.1 to 10370\n", "webquery for uc021zif.1\n", "webquery matched uc021zif.1 to 51660\n", "webquery for uc022aof.1\n", "webquery for uc022apt.1\n", "webquery for uc022bcm.1\n", "webquery for uc022bff.1\n", "webquery matched uc022bff.1 to 100129250\n", "webquery for uc022cce.1\n", "webquery for uc022cie.1\n", "webquery matched uc022cie.1 to 1527\n" ] } ], "source": [ "write_file = gzip.open('data/erc_mam33.tsv.gz', 'wb')\n", "text = io.TextIOWrapper(write_file, line_buffering = True)\n", "writer = csv.writer(text, delimiter='\\t')\n", "writer.writerow(['source_ucsc', 'source_entrez', 'target_ucsc', 'target_entrez', 'correlation'])\n", "erc_gen = read_erc_mat('download/erc_mam33.gz')\n", "for source_ucsc, target_ucsc, correlation in erc_gen:\n", " source_entrez = get_entrez(source_ucsc)\n", " target_entrez = get_entrez(target_ucsc)\n", " row = source_ucsc, source_entrez, target_ucsc, target_entrez, correlation\n", " writer.writerow(row)\n", "write_file.close()" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.4.0" } }, "nbformat": 4, "nbformat_minor": 0 }