EL Embeddings

This example corresponds to the paper EL Embeddings: Geometric Construction of Models for the Description Logic EL++.

The idea of this paper is to embed EL by modeling ontology classes as \(n\)-dimensional balls (\(n\)-balls) and ontology object properties as transformations of those \(n\)-balls. For each of the normal forms, there is a distance function defined that will work as loss functions in the optimization framework.

Let’s just define the imports that will be needed along the example:

import mowl
mowl.init_jvm("10g")
import torch as th

The EL-Embeddings model, maps ontology classes, object properties and operators into a geometric model. The \(\mathcal{EL}\) description logic is expressed using the following General Concept Inclusions (GCIs):

\[\begin{split}\begin{align} C &\sqsubseteq D & (\text{GCI 0}) \\ C_1 \sqcap C_2 &\sqsubseteq D & (\text{GCI 1}) \\ C &\sqsubseteq \exists R. D & (\text{GCI 2})\\ \exists R. C &\sqsubseteq D & (\text{GCI 3})\\ C &\sqsubseteq \bot & (\text{GCI BOT 0}) \\ C_1 \sqcap C_2 &\sqsubseteq \bot & (\text{GCI BOT 1}) \\ \exists R. C &\sqsubseteq \bot & (\text{GCI BOT 3}) \end{align}\end{split}\]

where \(C,C_1, C_2,D\) are ontology classes and \(R\) is an ontology object property

EL-Embeddings (PyTorch) module.

EL-Embeddings defines a geometric modelling for all the GCIs in the EL language. The implementation of ELEmbeddings module can be found at mowl.nn.el.elem.module.ELEmModule.

EL-Embeddings model

The module mowl.nn.el.elem.module.ELEmModule is used in the mowl.models.elembeddings.model.ELEmbeddings. In the use case of this example, we will test over a biological problem, which is protein-protein interactions. Given two proteins \(p_1,p_2\), the phenomenon “\(p_1\) interacts with \(p_2\)” is encoded using GCI 2 as:

\[p_1 \sqsubseteq interacts\_with. p_2\]

For that, we can use the class mowl.models.elembeddings.examples.model_ppi.ELEmPPI mode, which uses the mowl.datasets.builtin.PPIYeastSlimDataset dataset.

Training the model

from mowl.datasets.builtin import PPIYeastSlimDataset
from mowl.models.elembeddings.examples.model_ppi import ELEmPPI

dataset = PPIYeastSlimDataset()

model = ELEmPPI(dataset,
                embed_dim=30,
                margin=0.1,
                reg_norm=1,
                learning_rate=0.001,
                epochs=20,
                batch_size=4096,
                model_filepath=None,
                device='cpu')

model.train()
  0%|          | 0/20 [00:00<?, ?it/s]
  5%|5         | 1/20 [00:20<06:24, 20.24s/it]
 10%|#         | 2/20 [00:25<03:23, 11.33s/it]
 15%|#5        | 3/20 [00:30<02:24,  8.50s/it]
 20%|##        | 4/20 [00:35<01:54,  7.16s/it]
 25%|##5       | 5/20 [00:40<01:36,  6.44s/it]
 30%|###       | 6/20 [00:45<01:24,  6.00s/it]
 35%|###5      | 7/20 [00:51<01:14,  5.73s/it]
 40%|####      | 8/20 [00:56<01:07,  5.60s/it]
 45%|####5     | 9/20 [01:01<01:00,  5.49s/it]
 50%|#####     | 10/20 [01:06<00:53,  5.39s/it]
 55%|#####5    | 11/20 [01:12<00:48,  5.37s/it]
 60%|######    | 12/20 [01:17<00:42,  5.34s/it]
 65%|######5   | 13/20 [01:22<00:37,  5.29s/it]
 70%|#######   | 14/20 [01:27<00:31,  5.27s/it]
 75%|#######5  | 15/20 [01:32<00:26,  5.24s/it]
 80%|########  | 16/20 [01:38<00:20,  5.21s/it]
 85%|########5 | 17/20 [01:43<00:15,  5.20s/it]
 90%|######### | 18/20 [01:48<00:10,  5.19s/it]
 95%|#########5| 19/20 [01:53<00:05,  5.21s/it]
100%|##########| 20/20 [01:58<00:00,  5.20s/it]
100%|##########| 20/20 [01:58<00:00,  5.94s/it]

1

Evaluating the model

Now, it is time to evaluate embeddings. For this, we use the ModelRankBasedEvaluator class.

from mowl.evaluation.rank_based import ModelRankBasedEvaluator

with th.no_grad():
    model.load_best_model()
    evaluator = ModelRankBasedEvaluator(
        model,
        device = "cpu",
        eval_method = model.eval_method
    )

    evaluator.evaluate(show=True)
['http://4932.Q0010', 'http://4932.Q0017', 'http://4932.Q0032', 'http://4932.Q0045', 'http://4932.Q0050', 'http://4932.Q0055', 'http://4932.Q0060', 'http://4932.Q0065', 'http://4932.Q0070', 'http://4932.Q0075', 'http://4932.Q0080', 'http://4932.Q0085', 'http://4932.Q0092', 'http://4932.Q0105', 'http://4932.Q0110', 'http://4932.Q0115', 'http://4932.Q0120', 'http://4932.Q0130', 'http://4932.Q0140', 'http://4932.Q0142', 'http://4932.Q0143', 'http://4932.Q0160', 'http://4932.Q0182', 'http://4932.Q0250', 'http://4932.Q0255', 'http://4932.Q0275', 'http://4932.Q0297', 'http://4932.YAL001C', 'http://4932.YAL002W', 'http://4932.YAL003W', 'http://4932.YAL004W', 'http://4932.YAL005C', 'http://4932.YAL007C', 'http://4932.YAL008W', 'http://4932.YAL009W', 'http://4932.YAL010C', 'http://4932.YAL011W', 'http://4932.YAL012W', 'http://4932.YAL013W', 'http://4932.YAL014C', 'http://4932.YAL015C', 'http://4932.YAL016C-B', 'http://4932.YAL016W', 'http://4932.YAL017W', 'http://4932.YAL018C', 'http://4932.YAL019W', 'http://4932.YAL020C', 'http://4932.YAL021C', 'http://4932.YAL022C', 'http://4932.YAL023C', 'http://4932.YAL024C', 'http://4932.YAL025C', 'http://4932.YAL026C', 'http://4932.YAL027W', 'http://4932.YAL028W', 'http://4932.YAL029C', 'http://4932.YAL030W', 'http://4932.YAL031C', 'http://4932.YAL032C', 'http://4932.YAL033W', 'http://4932.YAL034C', 'http://4932.YAL034W-A', 'http://4932.YAL035W', 'http://4932.YAL036C', 'http://4932.YAL038W', 'http://4932.YAL039C', 'http://4932.YAL040C', 'http://4932.YAL041W', 'http://4932.YAL042W', 'http://4932.YAL043C', 'http://4932.YAL044C', 'http://4932.YAL044W-A', 'http://4932.YAL046C', 'http://4932.YAL047C', 'http://4932.YAL048C', 'http://4932.YAL049C', 'http://4932.YAL051W', 'http://4932.YAL053W', 'http://4932.YAL054C', 'http://4932.YAL055W', 'http://4932.YAL056C-A', 'http://4932.YAL056W', 'http://4932.YAL058W', 'http://4932.YAL059C-A', 'http://4932.YAL059W', 'http://4932.YAL060W', 'http://4932.YAL061W', 'http://4932.YAL062W', 'http://4932.YAL063C', 'http://4932.YAL064W-B', 'http://4932.YAL065C', 'http://4932.YAL067C', 'http://4932.YAL068C', 'http://4932.YAL068W-A', 'http://4932.YAL069W', 'http://4932.YAR002C-A', 'http://4932.YAR002W', 'http://4932.YAR003W', 'http://4932.YAR007C', 'http://4932.YAR008W', 'http://4932.YAR009C', 'http://4932.YAR010C', 'http://4932.YAR014C', 'http://4932.YAR015W', 'http://4932.YAR018C', 'http://4932.YAR019C', 'http://4932.YAR020C', 'http://4932.YAR023C', 'http://4932.YAR027W', 'http://4932.YAR028W', 'http://4932.YAR029W', 'http://4932.YAR031W', 'http://4932.YAR033W', 'http://4932.YAR035C-A', 'http://4932.YAR035W', 'http://4932.YAR042W', 'http://4932.YAR047C', 'http://4932.YAR050W', 'http://4932.YAR064W', 'http://4932.YAR068W', 'http://4932.YAR070C', 'http://4932.YAR071W', 'http://4932.YAR073W', 'http://4932.YAR075W', 'http://4932.YBL001C', 'http://4932.YBL002W', 'http://4932.YBL003C', 'http://4932.YBL004W', 'http://4932.YBL005W', 'http://4932.YBL005W-A', 'http://4932.YBL005W-B', 'http://4932.YBL006C', 'http://4932.YBL007C', 'http://4932.YBL008W', 'http://4932.YBL009W', 'http://4932.YBL010C', 'http://4932.YBL011W', 'http://4932.YBL012C', 'http://4932.YBL013W', 'http://4932.YBL014C', 'http://4932.YBL015W', 'http://4932.YBL016W', 'http://4932.YBL017C', 'http://4932.YBL018C', 'http://4932.YBL019W', 'http://4932.YBL020W', 'http://4932.YBL021C', 'http://4932.YBL022C', 'http://4932.YBL023C', 'http://4932.YBL024W', 'http://4932.YBL025W', 'http://4932.YBL026W', 'http://4932.YBL027W', 'http://4932.YBL028C', 'http://4932.YBL029C-A', 'http://4932.YBL029W', 'http://4932.YBL030C', 'http://4932.YBL031W', 'http://4932.YBL032W', 'http://4932.YBL033C', 'http://4932.YBL034C', 'http://4932.YBL035C', 'http://4932.YBL036C', 'http://4932.YBL037W', 'http://4932.YBL038W', 'http://4932.YBL039C', 'http://4932.YBL039W-B', 'http://4932.YBL040C', 'http://4932.YBL041W', 'http://4932.YBL042C', 'http://4932.YBL043W', 'http://4932.YBL044W', 'http://4932.YBL045C', 'http://4932.YBL046W', 'http://4932.YBL047C', 'http://4932.YBL048W', 'http://4932.YBL049W', 'http://4932.YBL050W', 'http://4932.YBL051C', 'http://4932.YBL052C', 'http://4932.YBL054W', 'http://4932.YBL055C', 'http://4932.YBL056W', 'http://4932.YBL057C', 'http://4932.YBL058W', 'http://4932.YBL059C-A', 'http://4932.YBL059W', 'http://4932.YBL060W', 'http://4932.YBL061C', 'http://4932.YBL062W', 'http://4932.YBL063W', 'http://4932.YBL064C', 'http://4932.YBL065W', 'http://4932.YBL066C', 'http://4932.YBL067C', 'http://4932.YBL068W', 'http://4932.YBL068W-A', 'http://4932.YBL069W', 'http://4932.YBL070C', 'http://4932.YBL071C', 'http://4932.YBL071W-A', 'http://4932.YBL072C', 'http://4932.YBL074C', 'http://4932.YBL075C', 'http://4932.YBL076C', 'http://4932.YBL077W', 'http://4932.YBL078C', 'http://4932.YBL079W', 'http://4932.YBL080C', 'http://4932.YBL081W', 'http://4932.YBL082C', 'http://4932.YBL083C', 'http://4932.YBL084C', 'http://4932.YBL085W', 'http://4932.YBL086C', 'http://4932.YBL087C', 'http://4932.YBL088C', 'http://4932.YBL089W', 'http://4932.YBL090W', 'http://4932.YBL091C', 'http://4932.YBL091C-A', 'http://4932.YBL092W', 'http://4932.YBL093C', 'http://4932.YBL094C', 'http://4932.YBL095W', 'http://4932.YBL096C', 'http://4932.YBL097W', 'http://4932.YBL098W', 'http://4932.YBL099W', 'http://4932.YBL101C', 'http://4932.YBL102W', 'http://4932.YBL103C', 'http://4932.YBL104C', 'http://4932.YBL105C', 'http://4932.YBL106C', 'http://4932.YBL107C', 'http://4932.YBL108W', 'http://4932.YBL109W', 'http://4932.YBL111C', 'http://4932.YBL113C', 'http://4932.YBL113W-A', 'http://4932.YBR001C', 'http://4932.YBR002C', 'http://4932.YBR003W', 'http://4932.YBR004C', 'http://4932.YBR005W', 'http://4932.YBR006W', 'http://4932.YBR007C', 'http://4932.YBR008C', 'http://4932.YBR009C', 'http://4932.YBR010W', 'http://4932.YBR011C', 'http://4932.YBR012W-B', 'http://4932.YBR013C', 'http://4932.YBR014C', 'http://4932.YBR015C', 'http://4932.YBR016W', 'http://4932.YBR017C', 'http://4932.YBR018C', 'http://4932.YBR019C', 'http://4932.YBR020W', 'http://4932.YBR021W', 'http://4932.YBR022W', 'http://4932.YBR023C', 'http://4932.YBR024W', 'http://4932.YBR025C', 'http://4932.YBR026C', 'http://4932.YBR028C', 'http://4932.YBR029C', 'http://4932.YBR030W', 'http://4932.YBR031W', 'http://4932.YBR032W', 'http://4932.YBR033W', 'http://4932.YBR034C', 'http://4932.YBR035C', 'http://4932.YBR036C', 'http://4932.YBR037C', 'http://4932.YBR038W', 'http://4932.YBR039W', 'http://4932.YBR040W', 'http://4932.YBR041W', 'http://4932.YBR042C', 'http://4932.YBR043C', 'http://4932.YBR044C', 'http://4932.YBR045C', 'http://4932.YBR046C', 'http://4932.YBR047W', 'http://4932.YBR048W', 'http://4932.YBR049C', 'http://4932.YBR050C', 'http://4932.YBR052C', 'http://4932.YBR053C', 'http://4932.YBR054W', 'http://4932.YBR055C', 'http://4932.YBR056W', 'http://4932.YBR056W-A', 'http://4932.YBR057C', 'http://4932.YBR058C', 'http://4932.YBR058C-A', 'http://4932.YBR059C', 'http://4932.YBR060C', 'http://4932.YBR061C', 'http://4932.YBR062C', 'http://4932.YBR065C', 'http://4932.YBR066C', 'http://4932.YBR067C', 'http://4932.YBR068C', 'http://4932.YBR069C', 'http://4932.YBR070C', 'http://4932.YBR071W', 'http://4932.YBR072C-A', 'http://4932.YBR072W', 'http://4932.YBR073W', 'http://4932.YBR074W', 'http://4932.YBR076W', 'http://4932.YBR077C', 'http://4932.YBR078W', 'http://4932.YBR079C', 'http://4932.YBR080C', 'http://4932.YBR081C', 'http://4932.YBR082C', 'http://4932.YBR083W', 'http://4932.YBR084C-A', 'http://4932.YBR084W', 'http://4932.YBR085C-A', 'http://4932.YBR085W', 'http://4932.YBR086C', 'http://4932.YBR087W', 'http://4932.YBR088C', 'http://4932.YBR089C-A', 'http://4932.YBR091C', 'http://4932.YBR092C', 'http://4932.YBR093C', 'http://4932.YBR094W', 'http://4932.YBR095C', 'http://4932.YBR096W', 'http://4932.YBR097W', 'http://4932.YBR098W', 'http://4932.YBR099C', 'http://4932.YBR101C', 'http://4932.YBR102C', 'http://4932.YBR103W', 'http://4932.YBR104W', 'http://4932.YBR105C', 'http://4932.YBR106W', 'http://4932.YBR107C', 'http://4932.YBR108W', 'http://4932.YBR109C', 'http://4932.YBR110W', 'http://4932.YBR111C', 'http://4932.YBR111W-A', 'http://4932.YBR112C', 'http://4932.YBR113W', 'http://4932.YBR114W', 'http://4932.YBR115C', 'http://4932.YBR116C', 'http://4932.YBR117C', 'http://4932.YBR118W', 'http://4932.YBR119W', 'http://4932.YBR120C', 'http://4932.YBR121C', 'http://4932.YBR122C', 'http://4932.YBR123C', 'http://4932.YBR124W', 'http://4932.YBR125C', 'http://4932.YBR126C', 'http://4932.YBR126W-A', 'http://4932.YBR126W-B', 'http://4932.YBR127C', 'http://4932.YBR128C', 'http://4932.YBR129C', 'http://4932.YBR130C', 'http://4932.YBR131C-A', 'http://4932.YBR131W', 'http://4932.YBR132C', 'http://4932.YBR133C', 'http://4932.YBR135W', 'http://4932.YBR136W', 'http://4932.YBR137W', 'http://4932.YBR138C', 'http://4932.YBR139W', 'http://4932.YBR140C', 'http://4932.YBR141C', 'http://4932.YBR142W', 'http://4932.YBR143C', 'http://4932.YBR144C', 'http://4932.YBR145W', 'http://4932.YBR146W', 'http://4932.YBR147W', 'http://4932.YBR148W', 'http://4932.YBR149W', 'http://4932.YBR150C', 'http://4932.YBR151W', 'http://4932.YBR152W', 'http://4932.YBR153W', 'http://4932.YBR154C', 'http://4932.YBR155W', 'http://4932.YBR156C', 'http://4932.YBR157C', 'http://4932.YBR158W', 'http://4932.YBR159W', 'http://4932.YBR160W', 'http://4932.YBR161W', 'http://4932.YBR162C', 'http://4932.YBR162W-A', 'http://4932.YBR163W', 'http://4932.YBR164C', 'http://4932.YBR165W', 'http://4932.YBR166C', 'http://4932.YBR167C', 'http://4932.YBR168W', 'http://4932.YBR169C', 'http://4932.YBR170C', 'http://4932.YBR171W', 'http://4932.YBR172C', 'http://4932.YBR173C', 'http://4932.YBR175W', 'http://4932.YBR176W', 'http://4932.YBR177C', 'http://4932.YBR179C', 'http://4932.YBR180W', 'http://4932.YBR181C', 'http://4932.YBR182C', 'http://4932.YBR182C-A', 'http://4932.YBR183W', 'http://4932.YBR184W', 'http://4932.YBR185C', 'http://4932.YBR186W', 'http://4932.YBR187W', 'http://4932.YBR188C', 'http://4932.YBR189W', 'http://4932.YBR190W', 'http://4932.YBR191W', 'http://4932.YBR191W-A', 'http://4932.YBR192W', 'http://4932.YBR193C', 'http://4932.YBR194W', 'http://4932.YBR195C', 'http://4932.YBR196C', 'http://4932.YBR196C-A', 'http://4932.YBR197C', 'http://4932.YBR198C', 'http://4932.YBR199W', 'http://4932.YBR200W', 'http://4932.YBR200W-A', 'http://4932.YBR201W', 'http://4932.YBR202W', 'http://4932.YBR203W', 'http://4932.YBR204C', 'http://4932.YBR205W', 'http://4932.YBR207W', 'http://4932.YBR208C', 'http://4932.YBR209W', 'http://4932.YBR210W', 'http://4932.YBR211C', 'http://4932.YBR212W', 'http://4932.YBR213W', 'http://4932.YBR214W', 'http://4932.YBR215W', 'http://4932.YBR216C', 'http://4932.YBR217W', 'http://4932.YBR218C', 'http://4932.YBR219C', 'http://4932.YBR220C', 'http://4932.YBR221C', 'http://4932.YBR222C', 'http://4932.YBR223C', 'http://4932.YBR225W', 'http://4932.YBR227C', 'http://4932.YBR228W', 'http://4932.YBR229C', 'http://4932.YBR230C', 'http://4932.YBR230W-A', 'http://4932.YBR231C', 'http://4932.YBR233W', 'http://4932.YBR233W-A', 'http://4932.YBR234C', 'http://4932.YBR235W', 'http://4932.YBR236C', 'http://4932.YBR237W', 'http://4932.YBR238C', 'http://4932.YBR239C', 'http://4932.YBR240C', 'http://4932.YBR241C', 'http://4932.YBR242W', 'http://4932.YBR243C', 'http://4932.YBR244W', 'http://4932.YBR245C', 'http://4932.YBR246W', 'http://4932.YBR247C', 'http://4932.YBR248C', 'http://4932.YBR249C', 'http://4932.YBR250W', 'http://4932.YBR251W', 'http://4932.YBR252W', 'http://4932.YBR253W', 'http://4932.YBR254C', 'http://4932.YBR255C-A', 'http://4932.YBR255W', 'http://4932.YBR256C', 'http://4932.YBR257W', 'http://4932.YBR258C', 'http://4932.YBR259W', 'http://4932.YBR260C', 'http://4932.YBR261C', 'http://4932.YBR262C', 'http://4932.YBR263W', 'http://4932.YBR264C', 'http://4932.YBR265W', 'http://4932.YBR266C', 'http://4932.YBR267W', 'http://4932.YBR268W', 'http://4932.YBR269C', 'http://4932.YBR270C', 'http://4932.YBR271W', 'http://4932.YBR272C', 'http://4932.YBR273C', 'http://4932.YBR274W', 'http://4932.YBR275C', 'http://4932.YBR276C', 'http://4932.YBR278W', 'http://4932.YBR279W', 'http://4932.YBR280C', 'http://4932.YBR281C', 'http://4932.YBR282W', 'http://4932.YBR283C', 'http://4932.YBR284W', 'http://4932.YBR285W', 'http://4932.YBR286W', 'http://4932.YBR287W', 'http://4932.YBR288C', 'http://4932.YBR289W', 'http://4932.YBR290W', 'http://4932.YBR291C', 'http://4932.YBR292C', 'http://4932.YBR293W', 'http://4932.YBR294W', 'http://4932.YBR295W', 'http://4932.YBR296C', 'http://4932.YBR296C-A', 'http://4932.YBR297W', 'http://4932.YBR298C', 'http://4932.YBR298C-A', 'http://4932.YBR299W', 'http://4932.YBR300C', 'http://4932.YBR301W', 'http://4932.YBR302C', 'http://4932.YCL001W', 'http://4932.YCL001W-A', 'http://4932.YCL001W-B', 'http://4932.YCL004W', 'http://4932.YCL005W', 'http://4932.YCL005W-A', 'http://4932.YCL007C', 'http://4932.YCL008C', 'http://4932.YCL009C', 'http://4932.YCL010C', 'http://4932.YCL011C', 'http://4932.YCL012C', 'http://4932.YCL014W', 'http://4932.YCL016C', 'http://4932.YCL017C', 'http://4932.YCL018W', 'http://4932.YCL019W', 'http://4932.YCL020W', 'http://4932.YCL021W-A', 'http://4932.YCL023C', 'http://4932.YCL024W', 'http://4932.YCL025C', 'http://4932.YCL026C-A', 'http://4932.YCL026C-B', 'http://4932.YCL027W', 'http://4932.YCL028W', 'http://4932.YCL029C', 'http://4932.YCL030C', 'http://4932.YCL031C', 'http://4932.YCL032W', 'http://4932.YCL033C', 'http://4932.YCL034W', 'http://4932.YCL035C', 'http://4932.YCL036W', 'http://4932.YCL037C', 'http://4932.YCL038C', 'http://4932.YCL039W', 'http://4932.YCL040W', 'http://4932.YCL042W', 'http://4932.YCL043C', 'http://4932.YCL044C', 'http://4932.YCL045C', 'http://4932.YCL046W', 'http://4932.YCL047C', 'http://4932.YCL048W', 'http://4932.YCL048W-A', 'http://4932.YCL049C', 'http://4932.YCL050C', 'http://4932.YCL051W', 'http://4932.YCL052C', 'http://4932.YCL054W', 'http://4932.YCL055W', 'http://4932.YCL056C', 'http://4932.YCL057C-A', 'http://4932.YCL057W', 'http://4932.YCL058C', 'http://4932.YCL058W-A', 'http://4932.YCL059C', 'http://4932.YCL061C', 'http://4932.YCL063W', 'http://4932.YCL064C', 'http://4932.YCL066W', 'http://4932.YCL067C', 'http://4932.YCL068C', 'http://4932.YCL069W', 'http://4932.YCL073C', 'http://4932.YCR001W', 'http://4932.YCR002C', 'http://4932.YCR003W', 'http://4932.YCR004C', 'http://4932.YCR005C', 'http://4932.YCR007C', 'http://4932.YCR008W', 'http://4932.YCR009C', 'http://4932.YCR010C', 'http://4932.YCR011C', 'http://4932.YCR012W', 'http://4932.YCR013C', 'http://4932.YCR014C', 'http://4932.YCR015C', 'http://4932.YCR016W', 'http://4932.YCR017C', 'http://4932.YCR018C', 'http://4932.YCR018C-A', 'http://4932.YCR019W', 'http://4932.YCR020C', 'http://4932.YCR020C-A', 'http://4932.YCR020W-B', 'http://4932.YCR021C', 'http://4932.YCR022C', 'http://4932.YCR023C', 'http://4932.YCR024C', 'http://4932.YCR024C-A', 'http://4932.YCR024C-B', 'http://4932.YCR025C', 'http://4932.YCR026C', 'http://4932.YCR027C', 'http://4932.YCR028C', 'http://4932.YCR028C-A', 'http://4932.YCR030C', 'http://4932.YCR031C', 'http://4932.YCR032W', 'http://4932.YCR033W', 'http://4932.YCR034W', 'http://4932.YCR035C', 'http://4932.YCR036W', 'http://4932.YCR037C', 'http://4932.YCR038C', 'http://4932.YCR039C', 'http://4932.YCR040W', 'http://4932.YCR041W', 'http://4932.YCR042C', 'http://4932.YCR043C', 'http://4932.YCR044C', 'http://4932.YCR045C', 'http://4932.YCR046C', 'http://4932.YCR047C', 'http://4932.YCR047W-A', 'http://4932.YCR048W', 'http://4932.YCR051W', 'http://4932.YCR052W', 'http://4932.YCR053W', 'http://4932.YCR054C', 'http://4932.YCR057C', 'http://4932.YCR059C', 'http://4932.YCR060W', 'http://4932.YCR061W', 'http://4932.YCR063W', 'http://4932.YCR065W', 'http://4932.YCR066W', 'http://4932.YCR067C', 'http://4932.YCR068W', 'http://4932.YCR069W', 'http://4932.YCR071C', 'http://4932.YCR072C', 'http://4932.YCR073C', 'http://4932.YCR073W-A', 'http://4932.YCR075C', 'http://4932.YCR075W-A', 'http://4932.YCR076C', 'http://4932.YCR077C', 'http://4932.YCR079W', 'http://4932.YCR081W', 'http://4932.YCR082W', 'http://4932.YCR083W', 'http://4932.YCR084C', 'http://4932.YCR086W', 'http://4932.YCR087C-A', 'http://4932.YCR088W', 'http://4932.YCR089W', 'http://4932.YCR090C', 'http://4932.YCR091W', 'http://4932.YCR092C', 'http://4932.YCR093W', 'http://4932.YCR094W', 'http://4932.YCR095C', 'http://4932.YCR096C', 'http://4932.YCR097W', 'http://4932.YCR097W-A', 'http://4932.YCR098C', 'http://4932.YCR099C', 'http://4932.YCR100C', 'http://4932.YCR101C', 'http://4932.YCR102C', 'http://4932.YCR102W-A', 'http://4932.YCR104W', 'http://4932.YCR105W', 'http://4932.YCR106W', 'http://4932.YCR107W', 'http://4932.YCR108C', 'http://4932.YDL001W', 'http://4932.YDL002C', 'http://4932.YDL003W', 'http://4932.YDL004W', 'http://4932.YDL005C', 'http://4932.YDL006W', 'http://4932.YDL007W', 'http://4932.YDL008W', 'http://4932.YDL009C', 'http://4932.YDL010W', 'http://4932.YDL011C', 'http://4932.YDL012C', 'http://4932.YDL013W', 'http://4932.YDL014W', 'http://4932.YDL015C', 'http://4932.YDL017W', 'http://4932.YDL018C', 'http://4932.YDL019C', 'http://4932.YDL020C', 'http://4932.YDL021W', 'http://4932.YDL022C-A', 'http://4932.YDL022W', 'http://4932.YDL024C', 'http://4932.YDL025C', 'http://4932.YDL026W', 'http://4932.YDL027C', 'http://4932.YDL028C', 'http://4932.YDL029W', 'http://4932.YDL030W', 'http://4932.YDL031W', 'http://4932.YDL033C', 'http://4932.YDL034W', 'http://4932.YDL035C', 'http://4932.YDL036C', 'http://4932.YDL037C', 'http://4932.YDL039C', 'http://4932.YDL040C', 'http://4932.YDL042C', 'http://4932.YDL043C', 'http://4932.YDL044C', 'http://4932.YDL045C', 'http://4932.YDL045W-A', 'http://4932.YDL046W', 'http://4932.YDL047W', 'http://4932.YDL048C', 'http://4932.YDL049C', 'http://4932.YDL050C', 'http://4932.YDL051W', 'http://4932.YDL052C', 'http://4932.YDL053C', 'http://4932.YDL054C', 'http://4932.YDL055C', 'http://4932.YDL056W', 'http://4932.YDL057W', 'http://4932.YDL058W', 'http://4932.YDL059C', 'http://4932.YDL060W', 'http://4932.YDL061C', 'http://4932.YDL063C', 'http://4932.YDL064W', 'http://4932.YDL065C', 'http://4932.YDL066W', 'http://4932.YDL067C', 'http://4932.YDL069C', 'http://4932.YDL070W', 'http://4932.YDL071C', 'http://4932.YDL072C', 'http://4932.YDL073W', 'http://4932.YDL074C', 'http://4932.YDL075W', 'http://4932.YDL076C', 'http://4932.YDL077C', 'http://4932.YDL078C', 'http://4932.YDL079C', 'http://4932.YDL080C', 'http://4932.YDL081C', 'http://4932.YDL082W', 'http://4932.YDL083C', 'http://4932.YDL084W', 'http://4932.YDL085C-A', 'http://4932.YDL085W', 'http://4932.YDL086W', 'http://4932.YDL087C', 'http://4932.YDL088C', 'http://4932.YDL089W', 'http://4932.YDL090C', 'http://4932.YDL091C', 'http://4932.YDL092W', 'http://4932.YDL093W', 'http://4932.YDL095W', 'http://4932.YDL096C', 'http://4932.YDL097C', 'http://4932.YDL098C', 'http://4932.YDL099W', 'http://4932.YDL100C', 'http://4932.YDL101C', 'http://4932.YDL102W', 'http://4932.YDL103C', 'http://4932.YDL104C', 'http://4932.YDL105W', 'http://4932.YDL106C', 'http://4932.YDL107W', 'http://4932.YDL108W', 'http://4932.YDL109C', 'http://4932.YDL110C', 'http://4932.YDL111C', 'http://4932.YDL112W', 'http://4932.YDL113C', 'http://4932.YDL114W', 'http://4932.YDL115C', 'http://4932.YDL116W', 'http://4932.YDL117W', 'http://4932.YDL119C', 'http://4932.YDL120W', 'http://4932.YDL121C', 'http://4932.YDL122W', 'http://4932.YDL123W', 'http://4932.YDL124W', 'http://4932.YDL125C', 'http://4932.YDL126C', 'http://4932.YDL127W', 'http://4932.YDL128W', 'http://4932.YDL129W', 'http://4932.YDL130W', 'http://4932.YDL130W-A', 'http://4932.YDL131W', 'http://4932.YDL132W', 'http://4932.YDL133C-A', 'http://4932.YDL133W', 'http://4932.YDL134C', 'http://4932.YDL135C', 'http://4932.YDL136W', 'http://4932.YDL137W', 'http://4932.YDL138W', 'http://4932.YDL139C', 'http://4932.YDL140C', 'http://4932.YDL141W', 'http://4932.YDL142C', 'http://4932.YDL143W', 'http://4932.YDL144C', 'http://4932.YDL145C', 'http://4932.YDL146W', 'http://4932.YDL147W', 'http://4932.YDL148C', 'http://4932.YDL149W', 'http://4932.YDL150W', 'http://4932.YDL151C', 'http://4932.YDL153C', 'http://4932.YDL154W', 'http://4932.YDL155W', 'http://4932.YDL156W', 'http://4932.YDL157C', 'http://4932.YDL159W', 'http://4932.YDL159W-A', 'http://4932.YDL160C', 'http://4932.YDL160C-A', 'http://4932.YDL161W', 'http://4932.YDL164C', 'http://4932.YDL165W', 'http://4932.YDL166C', 'http://4932.YDL167C', 'http://4932.YDL168W', 'http://4932.YDL169C', 'http://4932.YDL170W', 'http://4932.YDL171C', 'http://4932.YDL172C', 'http://4932.YDL173W', 'http://4932.YDL174C', 'http://4932.YDL175C', 'http://4932.YDL176W', 'http://4932.YDL177C', 'http://4932.YDL178W', 'http://4932.YDL179W', 'http://4932.YDL180W', 'http://4932.YDL181W', 'http://4932.YDL182W', 'http://4932.YDL183C', 'http://4932.YDL184C', 'http://4932.YDL185W', 'http://4932.YDL188C', 'http://4932.YDL189W', 'http://4932.YDL190C', 'http://4932.YDL191W', 'http://4932.YDL192W', 'http://4932.YDL193W', 'http://4932.YDL194W', 'http://4932.YDL195W', 'http://4932.YDL196W', 'http://4932.YDL197C', 'http://4932.YDL198C', 'http://4932.YDL199C', 'http://4932.YDL200C', 'http://4932.YDL201W', 'http://4932.YDL202W', 'http://4932.YDL203C', 'http://4932.YDL204W', 'http://4932.YDL205C', 'http://4932.YDL206W', 'http://4932.YDL207W', 'http://4932.YDL208W', 'http://4932.YDL209C', 'http://4932.YDL210W', 'http://4932.YDL211C', 'http://4932.YDL212W', 'http://4932.YDL213C', 'http://4932.YDL214C', 'http://4932.YDL215C', 'http://4932.YDL216C', 'http://4932.YDL217C', 'http://4932.YDL218W', 'http://4932.YDL219W', 'http://4932.YDL220C', 'http://4932.YDL222C', 'http://4932.YDL223C', 'http://4932.YDL224C', 'http://4932.YDL225W', 'http://4932.YDL226C', 'http://4932.YDL227C', 'http://4932.YDL228C', 'http://4932.YDL229W', 'http://4932.YDL230W', 'http://4932.YDL231C', 'http://4932.YDL232W', 'http://4932.YDL233W', 'http://4932.YDL234C', 'http://4932.YDL235C', 'http://4932.YDL236W', 'http://4932.YDL237W', 'http://4932.YDL238C', 'http://4932.YDL239C', 'http://4932.YDL240W', 'http://4932.YDL241W', 'http://4932.YDL242W', 'http://4932.YDL243C', 'http://4932.YDL244W', 'http://4932.YDL245C', 'http://4932.YDL246C', 'http://4932.YDL247W', 'http://4932.YDL247W-A', 'http://4932.YDL248W', 'http://4932.YDR001C', 'http://4932.YDR002W', 'http://4932.YDR003W', 'http://4932.YDR004W', 'http://4932.YDR005C', 'http://4932.YDR006C', 'http://4932.YDR007W', 'http://4932.YDR008C', 'http://4932.YDR009W', 'http://4932.YDR011W', 'http://4932.YDR012W', 'http://4932.YDR013W', 'http://4932.YDR014W', 'http://4932.YDR014W-A', 'http://4932.YDR016C', 'http://4932.YDR017C', 'http://4932.YDR018C', 'http://4932.YDR019C', 'http://4932.YDR020C', 'http://4932.YDR021W', 'http://4932.YDR022C', 'http://4932.YDR023W', 'http://4932.YDR025W', 'http://4932.YDR026C', 'http://4932.YDR027C', 'http://4932.YDR028C', 'http://4932.YDR030C', 'http://4932.YDR031W', 'http://4932.YDR032C', 'http://4932.YDR033W', 'http://4932.YDR034C', 'http://4932.YDR034C-A', 'http://4932.YDR034W-B', 'http://4932.YDR035W', 'http://4932.YDR036C', 'http://4932.YDR037W', 'http://4932.YDR038C', 'http://4932.YDR039C', 'http://4932.YDR040C', 'http://4932.YDR041W', 'http://4932.YDR042C', 'http://4932.YDR043C', 'http://4932.YDR044W', 'http://4932.YDR045C', 'http://4932.YDR046C', 'http://4932.YDR047W', 'http://4932.YDR048C', 'http://4932.YDR049W', 'http://4932.YDR050C', 'http://4932.YDR051C', 'http://4932.YDR052C', 'http://4932.YDR053W', 'http://4932.YDR054C', 'http://4932.YDR055W', 'http://4932.YDR056C', 'http://4932.YDR057W', 'http://4932.YDR058C', 'http://4932.YDR059C', 'http://4932.YDR060W', 'http://4932.YDR061W', 'http://4932.YDR062W', 'http://4932.YDR063W', 'http://4932.YDR064W', 'http://4932.YDR065W', 'http://4932.YDR066C', 'http://4932.YDR067C', 'http://4932.YDR068W', 'http://4932.YDR069C', 'http://4932.YDR070C', 'http://4932.YDR071C', 'http://4932.YDR072C', 'http://4932.YDR073W', 'http://4932.YDR074W', 'http://4932.YDR075W', 'http://4932.YDR076W', 'http://4932.YDR077W', 'http://4932.YDR078C', 'http://4932.YDR079C-A', 'http://4932.YDR079W', 'http://4932.YDR080W', 'http://4932.YDR081C', 'http://4932.YDR082W', 'http://4932.YDR083W', 'http://4932.YDR084C', 'http://4932.YDR085C', 'http://4932.YDR086C', 'http://4932.YDR087C', 'http://4932.YDR088C', 'http://4932.YDR089W', 'http://4932.YDR090C', 'http://4932.YDR091C', 'http://4932.YDR092W', 'http://4932.YDR093W', 'http://4932.YDR094W', 'http://4932.YDR095C', 'http://4932.YDR096W', 'http://4932.YDR097C', 'http://4932.YDR098C', 'http://4932.YDR098C-B', 'http://4932.YDR099W', 'http://4932.YDR100W', 'http://4932.YDR101C', 'http://4932.YDR102C', 'http://4932.YDR103W', 'http://4932.YDR104C', 'http://4932.YDR105C', 'http://4932.YDR106W', 'http://4932.YDR107C', 'http://4932.YDR108W', 'http://4932.YDR109C', 'http://4932.YDR110W', 'http://4932.YDR111C', 'http://4932.YDR113C', 'http://4932.YDR114C', 'http://4932.YDR115W', 'http://4932.YDR116C', 'http://4932.YDR117C', 'http://4932.YDR118W', 'http://4932.YDR119W', 'http://4932.YDR119W-A', 'http://4932.YDR120C', 'http://4932.YDR121W', 'http://4932.YDR122W', 'http://4932.YDR123C', 'http://4932.YDR124W', 'http://4932.YDR125C', 'http://4932.YDR126W', 'http://4932.YDR127W', 'http://4932.YDR128W', 'http://4932.YDR129C', 'http://4932.YDR130C', 'http://4932.YDR131C', 'http://4932.YDR132C', 'http://4932.YDR133C', 'http://4932.YDR135C', 'http://4932.YDR136C', 'http://4932.YDR137W', 'http://4932.YDR138W', 'http://4932.YDR139C', 'http://4932.YDR140W', 'http://4932.YDR141C', 'http://4932.YDR142C', 'http://4932.YDR143C', 'http://4932.YDR144C', 'http://4932.YDR145W', 'http://4932.YDR146C', 'http://4932.YDR147W', 'http://4932.YDR148C', 'http://4932.YDR149C', 'http://4932.YDR150W', 'http://4932.YDR151C', 'http://4932.YDR152W', 'http://4932.YDR153C', 'http://4932.YDR154C', 'http://4932.YDR155C', 'http://4932.YDR156W', 'http://4932.YDR157W', 'http://4932.YDR158W', 'http://4932.YDR159W', 'http://4932.YDR160W', 'http://4932.YDR161W', 'http://4932.YDR162C', 'http://4932.YDR163W', 'http://4932.YDR164C', 'http://4932.YDR165W', 'http://4932.YDR166C', 'http://4932.YDR167W', 'http://4932.YDR168W', 'http://4932.YDR169C', 'http://4932.YDR169C-A', 'http://4932.YDR170C', 'http://4932.YDR170W-A', 'http://4932.YDR171W', 'http://4932.YDR172W', 'http://4932.YDR173C', 'http://4932.YDR174W', 'http://4932.YDR175C', 'http://4932.YDR176W', 'http://4932.YDR177W', 'http://4932.YDR178W', 'http://4932.YDR179C', 'http://4932.YDR179W-A', 'http://4932.YDR180W', 'http://4932.YDR181C', 'http://4932.YDR182W', 'http://4932.YDR182W-A', 'http://4932.YDR183W', 'http://4932.YDR184C', 'http://4932.YDR185C', 'http://4932.YDR186C', 'http://4932.YDR187C', 'http://4932.YDR188W', 'http://4932.YDR189W', 'http://4932.YDR190C', 'http://4932.YDR191W', 'http://4932.YDR192C', 'http://4932.YDR193W', 'http://4932.YDR194C', 'http://4932.YDR195W', 'http://4932.YDR196C', 'http://4932.YDR197W', 'http://4932.YDR198C', 'http://4932.YDR199W', 'http://4932.YDR200C', 'http://4932.YDR201W', 'http://4932.YDR202C', 'http://4932.YDR203W', 'http://4932.YDR204W', 'http://4932.YDR205W', 'http://4932.YDR206W', 'http://4932.YDR207C', 'http://4932.YDR208W', 'http://4932.YDR210W', 'http://4932.YDR210W-B', 'http://4932.YDR211W', 'http://4932.YDR212W', 'http://4932.YDR213W', 'http://4932.YDR214W', 'http://4932.YDR215C', 'http://4932.YDR216W', 'http://4932.YDR217C', 'http://4932.YDR218C', 'http://4932.YDR219C', 'http://4932.YDR220C', 'http://4932.YDR221W', 'http://4932.YDR222W', 'http://4932.YDR223W', 'http://4932.YDR224C', 'http://4932.YDR225W', 'http://4932.YDR226W', 'http://4932.YDR227W', 'http://4932.YDR228C', 'http://4932.YDR229W', 'http://4932.YDR231C', 'http://4932.YDR232W', 'http://4932.YDR233C', 'http://4932.YDR234W', 'http://4932.YDR235W', 'http://4932.YDR236C', 'http://4932.YDR237W', 'http://4932.YDR238C', 'http://4932.YDR239C', 'http://4932.YDR240C', 'http://4932.YDR241W', 'http://4932.YDR242W', 'http://4932.YDR243C', 'http://4932.YDR244W', 'http://4932.YDR245W', 'http://4932.YDR246W', 'http://4932.YDR246W-A', 'http://4932.YDR247W', 'http://4932.YDR248C', 'http://4932.YDR249C', 'http://4932.YDR250C', 'http://4932.YDR251W', 'http://4932.YDR252W', 'http://4932.YDR253C', 'http://4932.YDR254W', 'http://4932.YDR255C', 'http://4932.YDR256C', 'http://4932.YDR257C', 'http://4932.YDR258C', 'http://4932.YDR259C', 'http://4932.YDR260C', 'http://4932.YDR261C', 'http://4932.YDR261W-B', 'http://4932.YDR262W', 'http://4932.YDR263C', 'http://4932.YDR264C', 'http://4932.YDR265W', 'http://4932.YDR266C', 'http://4932.YDR267C', 'http://4932.YDR268W', 'http://4932.YDR270W', 'http://4932.YDR272W', 'http://4932.YDR273W', 'http://4932.YDR274C', 'http://4932.YDR275W', 'http://4932.YDR276C', 'http://4932.YDR277C', 'http://4932.YDR279W', 'http://4932.YDR280W', 'http://4932.YDR281C', 'http://4932.YDR282C', 'http://4932.YDR283C', 'http://4932.YDR284C', 'http://4932.YDR285W', 'http://4932.YDR286C', 'http://4932.YDR287W', 'http://4932.YDR288W', 'http://4932.YDR289C', 'http://4932.YDR291W', 'http://4932.YDR292C', 'http://4932.YDR293C', 'http://4932.YDR294C', 'http://4932.YDR295C', 'http://4932.YDR296W', 'http://4932.YDR297W', 'http://4932.YDR298C', 'http://4932.YDR299W', 'http://4932.YDR300C', 'http://4932.YDR301W', 'http://4932.YDR302W', 'http://4932.YDR303C', 'http://4932.YDR304C', 'http://4932.YDR305C', 'http://4932.YDR306C', 'http://4932.YDR307W', 'http://4932.YDR308C', 'http://4932.YDR309C', 'http://4932.YDR310C', 'http://4932.YDR311W', 'http://4932.YDR312W', 'http://4932.YDR313C', 'http://4932.YDR314C', 'http://4932.YDR315C', 'http://4932.YDR316W', 'http://4932.YDR316W-A', 'http://4932.YDR317W', 'http://4932.YDR318W', 'http://4932.YDR319C', 'http://4932.YDR320C', 'http://4932.YDR320C-A', 'http://4932.YDR321W', 'http://4932.YDR322C-A', 'http://4932.YDR322W', 'http://4932.YDR323C', 'http://4932.YDR324C', 'http://4932.YDR325W', 'http://4932.YDR326C', 'http://4932.YDR327W', 'http://4932.YDR328C', 'http://4932.YDR329C', 'http://4932.YDR330W', 'http://4932.YDR331W', 'http://4932.YDR332W', 'http://4932.YDR333C', 'http://4932.YDR334W', 'http://4932.YDR335W', 'http://4932.YDR336W', 'http://4932.YDR337W', 'http://4932.YDR338C', 'http://4932.YDR339C', 'http://4932.YDR341C', 'http://4932.YDR342C', 'http://4932.YDR343C', 'http://4932.YDR345C', 'http://4932.YDR346C', 'http://4932.YDR347W', 'http://4932.YDR348C', 'http://4932.YDR349C', 'http://4932.YDR350C', 'http://4932.YDR351W', 'http://4932.YDR352W', 'http://4932.YDR353W', 'http://4932.YDR354W', 'http://4932.YDR356W', 'http://4932.YDR357C', 'http://4932.YDR358W', 'http://4932.YDR359C', 'http://4932.YDR360W', 'http://4932.YDR361C', 'http://4932.YDR362C', 'http://4932.YDR363W', 'http://4932.YDR363W-A', 'http://4932.YDR364C', 'http://4932.YDR365C', 'http://4932.YDR366C', 'http://4932.YDR367W', 'http://4932.YDR368W', 'http://4932.YDR369C', 'http://4932.YDR370C', 'http://4932.YDR371W', 'http://4932.YDR372C', 'http://4932.YDR373W', 'http://4932.YDR374C', 'http://4932.YDR374W-A', 'http://4932.YDR375C', 'http://4932.YDR376W', 'http://4932.YDR377W', 'http://4932.YDR378C', 'http://4932.YDR379C-A', 'http://4932.YDR379W', 'http://4932.YDR380W', 'http://4932.YDR381C-A', 'http://4932.YDR381W', 'http://4932.YDR382W', 'http://4932.YDR383C', 'http://4932.YDR384C', 'http://4932.YDR385W', 'http://4932.YDR386W', 'http://4932.YDR387C', 'http://4932.YDR388W', 'http://4932.YDR389W', 'http://4932.YDR390C', 'http://4932.YDR391C', 'http://4932.YDR392W', 'http://4932.YDR393W', 'http://4932.YDR394W', 'http://4932.YDR395W', 'http://4932.YDR396W', 'http://4932.YDR397C', 'http://4932.YDR398W', 'http://4932.YDR399W', 'http://4932.YDR400W', 'http://4932.YDR402C', 'http://4932.YDR403W', 'http://4932.YDR404C', 'http://4932.YDR405W', 'http://4932.YDR406W', 'http://4932.YDR407C', 'http://4932.YDR408C', 'http://4932.YDR409W', 'http://4932.YDR410C', 'http://4932.YDR411C', 'http://4932.YDR412W', 'http://4932.YDR414C', 'http://4932.YDR415C', 'http://4932.YDR416W', 'http://4932.YDR417C', 'http://4932.YDR418W', 'http://4932.YDR419W', 'http://4932.YDR420W', 'http://4932.YDR421W', 'http://4932.YDR422C', 'http://4932.YDR423C', 'http://4932.YDR424C', 'http://4932.YDR425W', 'http://4932.YDR427W', 'http://4932.YDR428C', 'http://4932.YDR429C', 'http://4932.YDR430C', 'http://4932.YDR431W', 'http://4932.YDR432W', 'http://4932.YDR433W', 'http://4932.YDR434W', 'http://4932.YDR435C', 'http://4932.YDR436W', 'http://4932.YDR437W', 'http://4932.YDR438W', 'http://4932.YDR439W', 'http://4932.YDR440W', 'http://4932.YDR441C', 'http://4932.YDR443C', 'http://4932.YDR444W', 'http://4932.YDR446W', 'http://4932.YDR447C', 'http://4932.YDR448W', 'http://4932.YDR449C', 'http://4932.YDR450W', 'http://4932.YDR451C', 'http://4932.YDR452W', 'http://4932.YDR453C', 'http://4932.YDR454C', 'http://4932.YDR455C', 'http://4932.YDR456W', 'http://4932.YDR457W', 'http://4932.YDR458C', 'http://4932.YDR459C', 'http://4932.YDR460W', 'http://4932.YDR461W', 'http://4932.YDR462W', 'http://4932.YDR463W', 'http://4932.YDR464W', 'http://4932.YDR465C', 'http://4932.YDR466W', 'http://4932.YDR468C', 'http://4932.YDR469W', 'http://4932.YDR470C', 'http://4932.YDR471W', 'http://4932.YDR472W', 'http://4932.YDR473C', 'http://4932.YDR475C', 'http://4932.YDR476C', 'http://4932.YDR477W', 'http://4932.YDR478W', 'http://4932.YDR479C', 'http://4932.YDR480W', 'http://4932.YDR481C', 'http://4932.YDR482C', 'http://4932.YDR483W', 'http://4932.YDR484W', 'http://4932.YDR485C', 'http://4932.YDR486C', 'http://4932.YDR487C', 'http://4932.YDR488C', 'http://4932.YDR489W', 'http://4932.YDR490C', 'http://4932.YDR492W', 'http://4932.YDR493W', 'http://4932.YDR494W', 'http://4932.YDR495C', 'http://4932.YDR496C', 'http://4932.YDR497C', 'http://4932.YDR498C', 'http://4932.YDR499W', 'http://4932.YDR500C', 'http://4932.YDR501W', 'http://4932.YDR502C', 'http://4932.YDR503C', 'http://4932.YDR504C', 'http://4932.YDR505C', 'http://4932.YDR506C', 'http://4932.YDR507C', 'http://4932.YDR508C', 'http://4932.YDR509W', 'http://4932.YDR510W', 'http://4932.YDR511W', 'http://4932.YDR512C', 'http://4932.YDR513W', 'http://4932.YDR514C', 'http://4932.YDR515W', 'http://4932.YDR516C', 'http://4932.YDR517W', 'http://4932.YDR518W', 'http://4932.YDR519W', 'http://4932.YDR520C', 'http://4932.YDR521W', 'http://4932.YDR522C', 'http://4932.YDR523C', 'http://4932.YDR524C', 'http://4932.YDR524C-B', 'http://4932.YDR524W-C', 'http://4932.YDR525W', 'http://4932.YDR525W-A', 'http://4932.YDR527W', 'http://4932.YDR528W', 'http://4932.YDR529C', 'http://4932.YDR530C', 'http://4932.YDR531W', 'http://4932.YDR532C', 'http://4932.YDR533C', 'http://4932.YDR534C', 'http://4932.YDR536W', 'http://4932.YDR538W', 'http://4932.YDR539W', 'http://4932.YDR540C', 'http://4932.YDR541C', 'http://4932.YDR542W', 'http://4932.YDR543C', 'http://4932.YDR544C', 'http://4932.YDR545C-A', 'http://4932.YDR545W', 'http://4932.YEL001C', 'http://4932.YEL002C', 'http://4932.YEL003W', 'http://4932.YEL004W', 'http://4932.YEL005C', 'http://4932.YEL006W', 'http://4932.YEL007W', 'http://4932.YEL008W', 'http://4932.YEL009C', 'http://4932.YEL011W', 'http://4932.YEL012W', 'http://4932.YEL013W', 'http://4932.YEL014C', 'http://4932.YEL015W', 'http://4932.YEL016C', 'http://4932.YEL017C-A', 'http://4932.YEL017W', 'http://4932.YEL018W', 'http://4932.YEL019C', 'http://4932.YEL020C', 'http://4932.YEL020W-A', 'http://4932.YEL021W', 'http://4932.YEL022W', 'http://4932.YEL023C', 'http://4932.YEL024W', 'http://4932.YEL025C', 'http://4932.YEL026W', 'http://4932.YEL027W', 'http://4932.YEL029C', 'http://4932.YEL030W', 'http://4932.YEL031W', 'http://4932.YEL032W', 'http://4932.YEL033W', 'http://4932.YEL034C-A', 'http://4932.YEL034W', 'http://4932.YEL035C', 'http://4932.YEL036C', 'http://4932.YEL037C', 'http://4932.YEL038W', 'http://4932.YEL039C', 'http://4932.YEL040W', 'http://4932.YEL041W', 'http://4932.YEL042W', 'http://4932.YEL043W', 'http://4932.YEL044W', 'http://4932.YEL045C', 'http://4932.YEL046C', 'http://4932.YEL047C', 'http://4932.YEL048C', 'http://4932.YEL049W', 'http://4932.YEL050C', 'http://4932.YEL051W', 'http://4932.YEL052W', 'http://4932.YEL053C', 'http://4932.YEL054C', 'http://4932.YEL055C', 'http://4932.YEL056W', 'http://4932.YEL057C', 'http://4932.YEL058W', 'http://4932.YEL059C-A', 'http://4932.YEL059W', 'http://4932.YEL060C', 'http://4932.YEL061C', 'http://4932.YEL062W', 'http://4932.YEL063C', 'http://4932.YEL064C', 'http://4932.YEL065W', 'http://4932.YEL066W', 'http://4932.YEL067C', 'http://4932.YEL068C', 'http://4932.YEL069C', 'http://4932.YEL070W', 'http://4932.YEL071W', 'http://4932.YEL072W', 'http://4932.YEL073C', 'http://4932.YEL074W', 'http://4932.YEL075C', 'http://4932.YEL075W-A', 'http://4932.YEL076C', 'http://4932.YEL076C-A', 'http://4932.YEL077C', 'http://4932.YER001W', 'http://4932.YER002W', 'http://4932.YER003C', 'http://4932.YER004W', 'http://4932.YER005W', 'http://4932.YER006W', 'http://4932.YER007C-A', 'http://4932.YER007W', 'http://4932.YER008C', 'http://4932.YER009W', 'http://4932.YER010C', 'http://4932.YER011W', 'http://4932.YER012W', 'http://4932.YER013W', 'http://4932.YER014C-A', 'http://4932.YER014W', 'http://4932.YER015W', 'http://4932.YER016W', 'http://4932.YER017C', 'http://4932.YER018C', 'http://4932.YER019C-A', 'http://4932.YER019W', 'http://4932.YER020W', 'http://4932.YER021W', 'http://4932.YER022W', 'http://4932.YER023W', 'http://4932.YER024W', 'http://4932.YER025W', 'http://4932.YER026C', 'http://4932.YER027C', 'http://4932.YER028C', 'http://4932.YER029C', 'http://4932.YER030W', 'http://4932.YER031C', 'http://4932.YER032W', 'http://4932.YER033C', 'http://4932.YER034W', 'http://4932.YER035W', 'http://4932.YER036C', 'http://4932.YER037W', 'http://4932.YER038C', 'http://4932.YER039C', 'http://4932.YER039C-A', 'http://4932.YER040W', 'http://4932.YER041W', 'http://4932.YER042W', 'http://4932.YER043C', 'http://4932.YER044C', 'http://4932.YER044C-A', 'http://4932.YER045C', 'http://4932.YER046W', 'http://4932.YER046W-A', 'http://4932.YER047C', 'http://4932.YER048C', 'http://4932.YER048W-A', 'http://4932.YER049W', 'http://4932.YER050C', 'http://4932.YER051W', 'http://4932.YER052C', 'http://4932.YER053C', 'http://4932.YER053C-A', 'http://4932.YER054C', 'http://4932.YER055C', 'http://4932.YER056C', 'http://4932.YER056C-A', 'http://4932.YER057C', 'http://4932.YER058W', 'http://4932.YER059W', 'http://4932.YER060W', 'http://4932.YER060W-A', 'http://4932.YER061C', 'http://4932.YER062C', 'http://4932.YER063W', 'http://4932.YER064C', 'http://4932.YER065C', 'http://4932.YER066W', 'http://4932.YER067C-A', 'http://4932.YER067W', 'http://4932.YER068W', 'http://4932.YER069W', 'http://4932.YER070W', 'http://4932.YER071C', 'http://4932.YER072W', 'http://4932.YER073W', 'http://4932.YER074W', 'http://4932.YER074W-A', 'http://4932.YER075C', 'http://4932.YER076C', 'http://4932.YER077C', 'http://4932.YER078C', 'http://4932.YER078W-A', 'http://4932.YER079W', 'http://4932.YER080W', 'http://4932.YER081W', 'http://4932.YER082C', 'http://4932.YER083C', 'http://4932.YER084W', 'http://4932.YER086W', 'http://4932.YER087C-B', 'http://4932.YER087W', 'http://4932.YER088C', 'http://4932.YER089C', 'http://4932.YER090W', 'http://4932.YER091C', 'http://4932.YER092W', 'http://4932.YER093C', 'http://4932.YER093C-A', 'http://4932.YER094C', 'http://4932.YER095W', 'http://4932.YER096W', 'http://4932.YER098W', 'http://4932.YER099C', 'http://4932.YER100W', 'http://4932.YER101C', 'http://4932.YER102W', 'http://4932.YER103W', 'http://4932.YER104W', 'http://4932.YER105C', 'http://4932.YER106W', 'http://4932.YER107C', 'http://4932.YER109C', 'http://4932.YER110C', 'http://4932.YER111C', 'http://4932.YER112W', 'http://4932.YER113C', 'http://4932.YER114C', 'http://4932.YER115C', 'http://4932.YER116C', 'http://4932.YER117W', 'http://4932.YER118C', 'http://4932.YER119C', 'http://4932.YER120W', 'http://4932.YER121W', 'http://4932.YER122C', 'http://4932.YER123W', 'http://4932.YER124C', 'http://4932.YER125W', 'http://4932.YER126C', 'http://4932.YER127W', 'http://4932.YER128W', 'http://4932.YER129W', 'http://4932.YER130C', 'http://4932.YER131W', 'http://4932.YER132C', 'http://4932.YER133W', 'http://4932.YER134C', 'http://4932.YER135C', 'http://4932.YER136W', 'http://4932.YER137C', 'http://4932.YER138C', 'http://4932.YER138W-A', 'http://4932.YER139C', 'http://4932.YER140W', 'http://4932.YER141W', 'http://4932.YER142C', 'http://4932.YER143W', 'http://4932.YER144C', 'http://4932.YER145C', 'http://4932.YER146W', 'http://4932.YER147C', 'http://4932.YER148W', 'http://4932.YER149C', 'http://4932.YER150W', 'http://4932.YER151C', 'http://4932.YER152C', 'http://4932.YER153C', 'http://4932.YER154W', 'http://4932.YER155C', 'http://4932.YER156C', 'http://4932.YER157W', 'http://4932.YER158C', 'http://4932.YER159C', 'http://4932.YER160C', 'http://4932.YER161C', 'http://4932.YER162C', 'http://4932.YER163C', 'http://4932.YER164W', 'http://4932.YER165W', 'http://4932.YER166W', 'http://4932.YER167W', 'http://4932.YER168C', 'http://4932.YER169W', 'http://4932.YER170W', 'http://4932.YER171W', 'http://4932.YER172C', 'http://4932.YER173W', 'http://4932.YER174C', 'http://4932.YER175C', 'http://4932.YER176W', 'http://4932.YER177W', 'http://4932.YER178W', 'http://4932.YER179W', 'http://4932.YER180C', 'http://4932.YER180C-A', 'http://4932.YER182W', 'http://4932.YER183C', 'http://4932.YER184C', 'http://4932.YER185W', 'http://4932.YER186C', 'http://4932.YER187W', 'http://4932.YER188C-A', 'http://4932.YER188W', 'http://4932.YER189W', 'http://4932.YER190W', 'http://4932.YFL001W', 'http://4932.YFL002C', 'http://4932.YFL003C', 'http://4932.YFL004W', 'http://4932.YFL005W', 'http://4932.YFL007W', 'http://4932.YFL008W', 'http://4932.YFL009W', 'http://4932.YFL010C', 'http://4932.YFL010W-A', 'http://4932.YFL011W', 'http://4932.YFL012W', 'http://4932.YFL013C', 'http://4932.YFL014W', 'http://4932.YFL016C', 'http://4932.YFL017C', 'http://4932.YFL017W-A', 'http://4932.YFL018C', 'http://4932.YFL020C', 'http://4932.YFL021W', 'http://4932.YFL022C', 'http://4932.YFL023W', 'http://4932.YFL024C', 'http://4932.YFL025C', 'http://4932.YFL026W', 'http://4932.YFL027C', 'http://4932.YFL028C', 'http://4932.YFL029C', 'http://4932.YFL030W', 'http://4932.YFL031W', 'http://4932.YFL033C', 'http://4932.YFL034C-A', 'http://4932.YFL034C-B', 'http://4932.YFL034W', 'http://4932.YFL036W', 'http://4932.YFL037W', 'http://4932.YFL038C', 'http://4932.YFL039C', 'http://4932.YFL040W', 'http://4932.YFL041W', 'http://4932.YFL042C', 'http://4932.YFL044C', 'http://4932.YFL045C', 'http://4932.YFL046W', 'http://4932.YFL047W', 'http://4932.YFL048C', 'http://4932.YFL049W', 'http://4932.YFL050C', 'http://4932.YFL051C', 'http://4932.YFL052W', 'http://4932.YFL053W', 'http://4932.YFL054C', 'http://4932.YFL055W', 'http://4932.YFL056C', 'http://4932.YFL057C', 'http://4932.YFL058W', 'http://4932.YFL059W', 'http://4932.YFL060C', 'http://4932.YFL061W', 'http://4932.YFL062W', 'http://4932.YFL063W', 'http://4932.YFL064C', 'http://4932.YFL065C', 'http://4932.YFL066C', 'http://4932.YFL067W', 'http://4932.YFR001W', 'http://4932.YFR002W', 'http://4932.YFR003C', 'http://4932.YFR004W', 'http://4932.YFR005C', 'http://4932.YFR006W', 'http://4932.YFR007W', 'http://4932.YFR008W', 'http://4932.YFR009W', 'http://4932.YFR010W', 'http://4932.YFR011C', 'http://4932.YFR012W', 'http://4932.YFR012W-A', 'http://4932.YFR013W', 'http://4932.YFR014C', 'http://4932.YFR015C', 'http://4932.YFR016C', 'http://4932.YFR017C', 'http://4932.YFR018C', 'http://4932.YFR019W', 'http://4932.YFR020W', 'http://4932.YFR021W', 'http://4932.YFR022W', 'http://4932.YFR023W', 'http://4932.YFR024C-A', 'http://4932.YFR025C', 'http://4932.YFR026C', 'http://4932.YFR027W', 'http://4932.YFR028C', 'http://4932.YFR029W', 'http://4932.YFR030W', 'http://4932.YFR031C', 'http://4932.YFR031C-A', 'http://4932.YFR032C', 'http://4932.YFR032C-A', 'http://4932.YFR033C', 'http://4932.YFR034C', 'http://4932.YFR035C', 'http://4932.YFR036W', 'http://4932.YFR037C', 'http://4932.YFR038W', 'http://4932.YFR039C', 'http://4932.YFR040W', 'http://4932.YFR041C', 'http://4932.YFR042W', 'http://4932.YFR043C', 'http://4932.YFR044C', 'http://4932.YFR045W', 'http://4932.YFR046C', 'http://4932.YFR047C', 'http://4932.YFR048W', 'http://4932.YFR049W', 'http://4932.YFR050C', 'http://4932.YFR051C', 'http://4932.YFR052W', 'http://4932.YFR053C', 'http://4932.YFR054C', 'http://4932.YFR055W', 'http://4932.YFR056C', 'http://4932.YFR057W', 'http://4932.YGL001C', 'http://4932.YGL002W', 'http://4932.YGL003C', 'http://4932.YGL004C', 'http://4932.YGL005C', 'http://4932.YGL006W', 'http://4932.YGL007W', 'http://4932.YGL008C', 'http://4932.YGL009C', 'http://4932.YGL010W', 'http://4932.YGL011C', 'http://4932.YGL012W', 'http://4932.YGL013C', 'http://4932.YGL014W', 'http://4932.YGL016W', 'http://4932.YGL017W', 'http://4932.YGL018C', 'http://4932.YGL019W', 'http://4932.YGL020C', 'http://4932.YGL021W', 'http://4932.YGL022W', 'http://4932.YGL023C', 'http://4932.YGL024W', 'http://4932.YGL025C', 'http://4932.YGL026C', 'http://4932.YGL027C', 'http://4932.YGL028C', 'http://4932.YGL029W', 'http://4932.YGL030W', 'http://4932.YGL031C', 'http://4932.YGL032C', 'http://4932.YGL033W', 'http://4932.YGL035C', 'http://4932.YGL036W', 'http://4932.YGL037C', 'http://4932.YGL038C', 'http://4932.YGL039W', 'http://4932.YGL040C', 'http://4932.YGL043W', 'http://4932.YGL044C', 'http://4932.YGL045W', 'http://4932.YGL047W', 'http://4932.YGL048C', 'http://4932.YGL049C', 'http://4932.YGL050W', 'http://4932.YGL051W', 'http://4932.YGL052W', 'http://4932.YGL053W', 'http://4932.YGL054C', 'http://4932.YGL055W', 'http://4932.YGL056C', 'http://4932.YGL057C', 'http://4932.YGL058W', 'http://4932.YGL059W', 'http://4932.YGL060W', 'http://4932.YGL061C', 'http://4932.YGL062W', 'http://4932.YGL063W', 'http://4932.YGL064C', 'http://4932.YGL065C', 'http://4932.YGL066W', 'http://4932.YGL067W', 'http://4932.YGL068W', 'http://4932.YGL070C', 'http://4932.YGL071W', 'http://4932.YGL072C', 'http://4932.YGL073W', 'http://4932.YGL075C', 'http://4932.YGL076C', 'http://4932.YGL077C', 'http://4932.YGL078C', 'http://4932.YGL079W', 'http://4932.YGL080W', 'http://4932.YGL081W', 'http://4932.YGL082W', 'http://4932.YGL083W', 'http://4932.YGL084C', 'http://4932.YGL085W', 'http://4932.YGL086W', 'http://4932.YGL087C', 'http://4932.YGL089C', 'http://4932.YGL090W', 'http://4932.YGL091C', 'http://4932.YGL092W', 'http://4932.YGL093W', 'http://4932.YGL094C', 'http://4932.YGL095C', 'http://4932.YGL096W', 'http://4932.YGL097W', 'http://4932.YGL098W', 'http://4932.YGL099W', 'http://4932.YGL100W', 'http://4932.YGL101W', 'http://4932.YGL102C', 'http://4932.YGL103W', 'http://4932.YGL104C', 'http://4932.YGL105W', 'http://4932.YGL106W', 'http://4932.YGL107C', 'http://4932.YGL108C', 'http://4932.YGL110C', 'http://4932.YGL111W', 'http://4932.YGL112C', 'http://4932.YGL113W', 'http://4932.YGL114W', 'http://4932.YGL115W', 'http://4932.YGL116W', 'http://4932.YGL117W', 'http://4932.YGL119W', 'http://4932.YGL120C', 'http://4932.YGL121C', 'http://4932.YGL122C', 'http://4932.YGL123W', 'http://4932.YGL124C', 'http://4932.YGL125W', 'http://4932.YGL126W', 'http://4932.YGL127C', 'http://4932.YGL128C', 'http://4932.YGL129C', 'http://4932.YGL130W', 'http://4932.YGL131C', 'http://4932.YGL133W', 'http://4932.YGL134W', 'http://4932.YGL135W', 'http://4932.YGL136C', 'http://4932.YGL137W', 'http://4932.YGL138C', 'http://4932.YGL139W', 'http://4932.YGL140C', 'http://4932.YGL141W', 'http://4932.YGL142C', 'http://4932.YGL143C', 'http://4932.YGL144C', 'http://4932.YGL145W', 'http://4932.YGL146C', 'http://4932.YGL147C', 'http://4932.YGL148W', 'http://4932.YGL150C', 'http://4932.YGL151W', 'http://4932.YGL152C', 'http://4932.YGL153W', 'http://4932.YGL154C', 'http://4932.YGL155W', 'http://4932.YGL156W', 'http://4932.YGL157W', 'http://4932.YGL158W', 'http://4932.YGL159W', 'http://4932.YGL160W', 'http://4932.YGL161C', 'http://4932.YGL162W', 'http://4932.YGL163C', 'http://4932.YGL164C', 'http://4932.YGL165C', 'http://4932.YGL166W', 'http://4932.YGL167C', 'http://4932.YGL168W', 'http://4932.YGL169W', 'http://4932.YGL170C', 'http://4932.YGL171W', 'http://4932.YGL172W', 'http://4932.YGL173C', 'http://4932.YGL174W', 'http://4932.YGL175C', 'http://4932.YGL176C', 'http://4932.YGL177W', 'http://4932.YGL178W', 'http://4932.YGL179C', 'http://4932.YGL180W', 'http://4932.YGL181W', 'http://4932.YGL182C', 'http://4932.YGL183C', 'http://4932.YGL184C', 'http://4932.YGL185C', 'http://4932.YGL186C', 'http://4932.YGL187C', 'http://4932.YGL188C', 'http://4932.YGL188C-A', 'http://4932.YGL189C', 'http://4932.YGL190C', 'http://4932.YGL191W', 'http://4932.YGL192W', 'http://4932.YGL193C', 'http://4932.YGL194C', 'http://4932.YGL195W', 'http://4932.YGL196W', 'http://4932.YGL197W', 'http://4932.YGL198W', 'http://4932.YGL199C', 'http://4932.YGL200C', 'http://4932.YGL201C', 'http://4932.YGL202W', 'http://4932.YGL203C', 'http://4932.YGL205W', 'http://4932.YGL206C', 'http://4932.YGL207W', 'http://4932.YGL208W', 'http://4932.YGL209W', 'http://4932.YGL210W', 'http://4932.YGL211W', 'http://4932.YGL212W', 'http://4932.YGL213C', 'http://4932.YGL214W', 'http://4932.YGL215W', 'http://4932.YGL216W', 'http://4932.YGL217C', 'http://4932.YGL218W', 'http://4932.YGL219C', 'http://4932.YGL220W', 'http://4932.YGL221C', 'http://4932.YGL222C', 'http://4932.YGL223C', 'http://4932.YGL224C', 'http://4932.YGL225W', 'http://4932.YGL226C-A', 'http://4932.YGL226W', 'http://4932.YGL227W', 'http://4932.YGL228W', 'http://4932.YGL229C', 'http://4932.YGL230C', 'http://4932.YGL231C', 'http://4932.YGL232W', 'http://4932.YGL233W', 'http://4932.YGL234W', 'http://4932.YGL235W', 'http://4932.YGL236C', 'http://4932.YGL237C', 'http://4932.YGL238W', 'http://4932.YGL240W', 'http://4932.YGL241W', 'http://4932.YGL242C', 'http://4932.YGL243W', 'http://4932.YGL244W', 'http://4932.YGL245W', 'http://4932.YGL246C', 'http://4932.YGL247W', 'http://4932.YGL248W', 'http://4932.YGL249W', 'http://4932.YGL250W', 'http://4932.YGL251C', 'http://4932.YGL252C', 'http://4932.YGL253W', 'http://4932.YGL254W', 'http://4932.YGL255W', 'http://4932.YGL256W', 'http://4932.YGL257C', 'http://4932.YGL258W', 'http://4932.YGL258W-A', 'http://4932.YGL259W', 'http://4932.YGL260W', 'http://4932.YGL261C', 'http://4932.YGL262W', 'http://4932.YGL263W', 'http://4932.YGR001C', 'http://4932.YGR002C', 'http://4932.YGR003W', 'http://4932.YGR004W', 'http://4932.YGR005C', 'http://4932.YGR006W', 'http://4932.YGR007W', 'http://4932.YGR008C', 'http://4932.YGR009C', 'http://4932.YGR010W', 'http://4932.YGR012W', 'http://4932.YGR013W', 'http://4932.YGR014W', 'http://4932.YGR015C', 'http://4932.YGR016W', 'http://4932.YGR017W', 'http://4932.YGR019W', 'http://4932.YGR020C', 'http://4932.YGR021W', 'http://4932.YGR023W', 'http://4932.YGR024C', 'http://4932.YGR026W', 'http://4932.YGR027C', 'http://4932.YGR027W-A', 'http://4932.YGR028W', 'http://4932.YGR029W', 'http://4932.YGR030C', 'http://4932.YGR031C-A', 'http://4932.YGR031W', 'http://4932.YGR032W', 'http://4932.YGR033C', 'http://4932.YGR034W', 'http://4932.YGR035C', 'http://4932.YGR036C', 'http://4932.YGR037C', 'http://4932.YGR038W', 'http://4932.YGR039W', 'http://4932.YGR040W', 'http://4932.YGR041W', 'http://4932.YGR042W', 'http://4932.YGR043C', 'http://4932.YGR044C', 'http://4932.YGR045C', 'http://4932.YGR046W', 'http://4932.YGR047C', 'http://4932.YGR048W', 'http://4932.YGR049W', 'http://4932.YGR052W', 'http://4932.YGR054W', 'http://4932.YGR055W', 'http://4932.YGR056W', 'http://4932.YGR057C', 'http://4932.YGR058W', 'http://4932.YGR059W', 'http://4932.YGR060W', 'http://4932.YGR061C', 'http://4932.YGR062C', 'http://4932.YGR063C', 'http://4932.YGR064W', 'http://4932.YGR065C', 'http://4932.YGR066C', 'http://4932.YGR067C', 'http://4932.YGR068C', 'http://4932.YGR069W', 'http://4932.YGR070W', 'http://4932.YGR071C', 'http://4932.YGR072W', 'http://4932.YGR074W', 'http://4932.YGR075C', 'http://4932.YGR076C', 'http://4932.YGR077C', 'http://4932.YGR078C', 'http://4932.YGR080W', 'http://4932.YGR081C', 'http://4932.YGR082W', 'http://4932.YGR083C', 'http://4932.YGR084C', 'http://4932.YGR085C', 'http://4932.YGR086C', 'http://4932.YGR087C', 'http://4932.YGR088W', 'http://4932.YGR089W', 'http://4932.YGR090W', 'http://4932.YGR091W', 'http://4932.YGR092W', 'http://4932.YGR093W', 'http://4932.YGR094W', 'http://4932.YGR095C', 'http://4932.YGR096W', 'http://4932.YGR097W', 'http://4932.YGR098C', 'http://4932.YGR099W', 'http://4932.YGR100W', 'http://4932.YGR101W', 'http://4932.YGR102C', 'http://4932.YGR103W', 'http://4932.YGR104C', 'http://4932.YGR105W', 'http://4932.YGR106C', 'http://4932.YGR108W', 'http://4932.YGR109C', 'http://4932.YGR109W-A', 'http://4932.YGR109W-B', 'http://4932.YGR110W', 'http://4932.YGR111W', 'http://4932.YGR112W', 'http://4932.YGR113W', 'http://4932.YGR116W', 'http://4932.YGR118W', 'http://4932.YGR119C', 'http://4932.YGR120C', 'http://4932.YGR121C', 'http://4932.YGR121W-A', 'http://4932.YGR122W', 'http://4932.YGR123C', 'http://4932.YGR124W', 'http://4932.YGR125W', 'http://4932.YGR126W', 'http://4932.YGR127W', 'http://4932.YGR128C', 'http://4932.YGR129W', 'http://4932.YGR130C', 'http://4932.YGR131W', 'http://4932.YGR132C', 'http://4932.YGR133W', 'http://4932.YGR134W', 'http://4932.YGR135W', 'http://4932.YGR136W', 'http://4932.YGR137W', 'http://4932.YGR138C', 'http://4932.YGR140W', 'http://4932.YGR141W', 'http://4932.YGR142W', 'http://4932.YGR143W', 'http://4932.YGR144W', 'http://4932.YGR145W', 'http://4932.YGR146C', 'http://4932.YGR146C-A', 'http://4932.YGR147C', 'http://4932.YGR148C', 'http://4932.YGR149W', 'http://4932.YGR150C', 'http://4932.YGR151C', 'http://4932.YGR152C', 'http://4932.YGR153W', 'http://4932.YGR154C', 'http://4932.YGR155W', 'http://4932.YGR156W', 'http://4932.YGR157W', 'http://4932.YGR158C', 'http://4932.YGR159C', 'http://4932.YGR160W', 'http://4932.YGR161C', 'http://4932.YGR161W-B', 'http://4932.YGR161W-C', 'http://4932.YGR162W', 'http://4932.YGR163W', 'http://4932.YGR165W', 'http://4932.YGR166W', 'http://4932.YGR167W', 'http://4932.YGR168C', 'http://4932.YGR169C', 'http://4932.YGR169C-A', 'http://4932.YGR170W', 'http://4932.YGR171C', 'http://4932.YGR172C', 'http://4932.YGR173W', 'http://4932.YGR174C', 'http://4932.YGR175C', 'http://4932.YGR176W', 'http://4932.YGR177C', 'http://4932.YGR178C', 'http://4932.YGR179C', 'http://4932.YGR180C', 'http://4932.YGR181W', 'http://4932.YGR182C', 'http://4932.YGR183C', 'http://4932.YGR184C', 'http://4932.YGR185C', 'http://4932.YGR186W', 'http://4932.YGR187C', 'http://4932.YGR188C', 'http://4932.YGR189C', 'http://4932.YGR190C', 'http://4932.YGR191W', 'http://4932.YGR192C', 'http://4932.YGR193C', 'http://4932.YGR194C', 'http://4932.YGR195W', 'http://4932.YGR196C', 'http://4932.YGR197C', 'http://4932.YGR198W', 'http://4932.YGR199W', 'http://4932.YGR200C', 'http://4932.YGR201C', 'http://4932.YGR202C', 'http://4932.YGR203W', 'http://4932.YGR204W', 'http://4932.YGR205W', 'http://4932.YGR206W', 'http://4932.YGR207C', 'http://4932.YGR208W', 'http://4932.YGR209C', 'http://4932.YGR210C', 'http://4932.YGR211W', 'http://4932.YGR212W', 'http://4932.YGR213C', 'http://4932.YGR214W', 'http://4932.YGR215W', 'http://4932.YGR216C', 'http://4932.YGR217W', 'http://4932.YGR218W', 'http://4932.YGR220C', 'http://4932.YGR221C', 'http://4932.YGR222W', 'http://4932.YGR223C', 'http://4932.YGR224W', 'http://4932.YGR225W', 'http://4932.YGR227W', 'http://4932.YGR229C', 'http://4932.YGR230W', 'http://4932.YGR231C', 'http://4932.YGR232W', 'http://4932.YGR233C', 'http://4932.YGR234W', 'http://4932.YGR235C', 'http://4932.YGR236C', 'http://4932.YGR237C', 'http://4932.YGR238C', 'http://4932.YGR239C', 'http://4932.YGR240C', 'http://4932.YGR241C', 'http://4932.YGR243W', 'http://4932.YGR244C', 'http://4932.YGR245C', 'http://4932.YGR246C', 'http://4932.YGR247W', 'http://4932.YGR248W', 'http://4932.YGR249W', 'http://4932.YGR250C', 'http://4932.YGR251W', 'http://4932.YGR252W', 'http://4932.YGR253C', 'http://4932.YGR254W', 'http://4932.YGR255C', 'http://4932.YGR256W', 'http://4932.YGR257C', 'http://4932.YGR258C', 'http://4932.YGR259C', 'http://4932.YGR260W', 'http://4932.YGR261C', 'http://4932.YGR262C', 'http://4932.YGR263C', 'http://4932.YGR264C', 'http://4932.YGR266W', 'http://4932.YGR267C', 'http://4932.YGR268C', 'http://4932.YGR269W', 'http://4932.YGR270W', 'http://4932.YGR271C-A', 'http://4932.YGR271W', 'http://4932.YGR273C', 'http://4932.YGR274C', 'http://4932.YGR275W', 'http://4932.YGR276C', 'http://4932.YGR277C', 'http://4932.YGR278W', 'http://4932.YGR279C', 'http://4932.YGR280C', 'http://4932.YGR281W', 'http://4932.YGR282C', 'http://4932.YGR283C', 'http://4932.YGR284C', 'http://4932.YGR285C', 'http://4932.YGR286C', 'http://4932.YGR287C', 'http://4932.YGR288W', 'http://4932.YGR289C', 'http://4932.YGR290W', 'http://4932.YGR292W', 'http://4932.YGR294W', 'http://4932.YGR295C', 'http://4932.YGR296C-A', 'http://4932.YGR296C-B', 'http://4932.YGR296W', 'http://4932.YHL001W', 'http://4932.YHL002W', 'http://4932.YHL003C', 'http://4932.YHL004W', 'http://4932.YHL005C', 'http://4932.YHL006C', 'http://4932.YHL007C', 'http://4932.YHL008C', 'http://4932.YHL009W-B', 'http://4932.YHL010C', 'http://4932.YHL011C', 'http://4932.YHL012W', 'http://4932.YHL013C', 'http://4932.YHL014C', 'http://4932.YHL015W', 'http://4932.YHL016C', 'http://4932.YHL017W', 'http://4932.YHL018W', 'http://4932.YHL019C', 'http://4932.YHL020C', 'http://4932.YHL021C', 'http://4932.YHL022C', 'http://4932.YHL023C', 'http://4932.YHL024W', 'http://4932.YHL025W', 'http://4932.YHL026C', 'http://4932.YHL027W', 'http://4932.YHL028W', 'http://4932.YHL029C', 'http://4932.YHL030W', 'http://4932.YHL031C', 'http://4932.YHL032C', 'http://4932.YHL033C', 'http://4932.YHL034C', 'http://4932.YHL035C', 'http://4932.YHL036W', 'http://4932.YHL038C', 'http://4932.YHL039W', 'http://4932.YHL040C', 'http://4932.YHL041W', 'http://4932.YHL042W', 'http://4932.YHL043W', 'http://4932.YHL044W', 'http://4932.YHL045W', 'http://4932.YHL046C', 'http://4932.YHL046W-A', 'http://4932.YHL047C', 'http://4932.YHL048C-A', 'http://4932.YHL048W', 'http://4932.YHL049C', 'http://4932.YHL050C', 'http://4932.YHL050W-A', 'http://4932.YHR001W', 'http://4932.YHR001W-A', 'http://4932.YHR002W', 'http://4932.YHR003C', 'http://4932.YHR004C', 'http://4932.YHR005C', 'http://4932.YHR005C-A', 'http://4932.YHR006W', 'http://4932.YHR007C', 'http://4932.YHR008C', 'http://4932.YHR009C', 'http://4932.YHR010W', 'http://4932.YHR011W', 'http://4932.YHR012W', 'http://4932.YHR013C', 'http://4932.YHR014W', 'http://4932.YHR015W', 'http://4932.YHR016C', 'http://4932.YHR017W', 'http://4932.YHR018C', 'http://4932.YHR019C', 'http://4932.YHR020W', 'http://4932.YHR021C', 'http://4932.YHR021W-A', 'http://4932.YHR022C', 'http://4932.YHR023W', 'http://4932.YHR024C', 'http://4932.YHR025W', 'http://4932.YHR026W', 'http://4932.YHR027C', 'http://4932.YHR028C', 'http://4932.YHR029C', 'http://4932.YHR030C', 'http://4932.YHR031C', 'http://4932.YHR032W', 'http://4932.YHR033W', 'http://4932.YHR034C', 'http://4932.YHR035W', 'http://4932.YHR036W', 'http://4932.YHR037W', 'http://4932.YHR038W', 'http://4932.YHR039C', 'http://4932.YHR039C-A', 'http://4932.YHR040W', 'http://4932.YHR041C', 'http://4932.YHR042W', 'http://4932.YHR043C', 'http://4932.YHR044C', 'http://4932.YHR045W', 'http://4932.YHR046C', 'http://4932.YHR047C', 'http://4932.YHR048W', 'http://4932.YHR049W', 'http://4932.YHR050W', 'http://4932.YHR051W', 'http://4932.YHR052W', 'http://4932.YHR053C', 'http://4932.YHR055C', 'http://4932.YHR056C', 'http://4932.YHR056W-A', 'http://4932.YHR057C', 'http://4932.YHR058C', 'http://4932.YHR059W', 'http://4932.YHR060W', 'http://4932.YHR061C', 'http://4932.YHR062C', 'http://4932.YHR063C', 'http://4932.YHR063W-A', 'http://4932.YHR064C', 'http://4932.YHR065C', 'http://4932.YHR066W', 'http://4932.YHR067W', 'http://4932.YHR068W', 'http://4932.YHR069C', 'http://4932.YHR070W', 'http://4932.YHR071W', 'http://4932.YHR072W', 'http://4932.YHR072W-A', 'http://4932.YHR073W', 'http://4932.YHR074W', 'http://4932.YHR075C', 'http://4932.YHR076W', 'http://4932.YHR077C', 'http://4932.YHR078W', 'http://4932.YHR079C', 'http://4932.YHR079C-A', 'http://4932.YHR080C', 'http://4932.YHR081W', 'http://4932.YHR082C', 'http://4932.YHR083W', 'http://4932.YHR084W', 'http://4932.YHR085W', 'http://4932.YHR086W', 'http://4932.YHR086W-A', 'http://4932.YHR087W', 'http://4932.YHR088W', 'http://4932.YHR089C', 'http://4932.YHR090C', 'http://4932.YHR091C', 'http://4932.YHR092C', 'http://4932.YHR093W', 'http://4932.YHR094C', 'http://4932.YHR095W', 'http://4932.YHR096C', 'http://4932.YHR097C', 'http://4932.YHR098C', 'http://4932.YHR099W', 'http://4932.YHR100C', 'http://4932.YHR101C', 'http://4932.YHR102W', 'http://4932.YHR103W', 'http://4932.YHR104W', 'http://4932.YHR105W', 'http://4932.YHR106W', 'http://4932.YHR107C', 'http://4932.YHR108W', 'http://4932.YHR109W', 'http://4932.YHR110W', 'http://4932.YHR111W', 'http://4932.YHR112C', 'http://4932.YHR113W', 'http://4932.YHR114W', 'http://4932.YHR115C', 'http://4932.YHR116W', 'http://4932.YHR117W', 'http://4932.YHR118C', 'http://4932.YHR119W', 'http://4932.YHR120W', 'http://4932.YHR121W', 'http://4932.YHR122W', 'http://4932.YHR123W', 'http://4932.YHR124W', 'http://4932.YHR126C', 'http://4932.YHR127W', 'http://4932.YHR128W', 'http://4932.YHR129C', 'http://4932.YHR131C', 'http://4932.YHR132C', 'http://4932.YHR132W-A', 'http://4932.YHR133C', 'http://4932.YHR134W', 'http://4932.YHR135C', 'http://4932.YHR136C', 'http://4932.YHR137W', 'http://4932.YHR138C', 'http://4932.YHR139C', 'http://4932.YHR140W', 'http://4932.YHR141C', 'http://4932.YHR142W', 'http://4932.YHR143W', 'http://4932.YHR143W-A', 'http://4932.YHR144C', 'http://4932.YHR145C', 'http://4932.YHR146W', 'http://4932.YHR147C', 'http://4932.YHR148W', 'http://4932.YHR149C', 'http://4932.YHR150W', 'http://4932.YHR151C', 'http://4932.YHR152W', 'http://4932.YHR153C', 'http://4932.YHR154W', 'http://4932.YHR155W', 'http://4932.YHR156C', 'http://4932.YHR157W', 'http://4932.YHR158C', 'http://4932.YHR159W', 'http://4932.YHR160C', 'http://4932.YHR161C', 'http://4932.YHR162W', 'http://4932.YHR163W', 'http://4932.YHR164C', 'http://4932.YHR165C', 'http://4932.YHR166C', 'http://4932.YHR167W', 'http://4932.YHR168W', 'http://4932.YHR169W', 'http://4932.YHR170W', 'http://4932.YHR171W', 'http://4932.YHR172W', 'http://4932.YHR173C', 'http://4932.YHR174W', 'http://4932.YHR175W', 'http://4932.YHR176W', 'http://4932.YHR177W', 'http://4932.YHR178W', 'http://4932.YHR179W', 'http://4932.YHR180W', 'http://4932.YHR180W-A', 'http://4932.YHR181W', 'http://4932.YHR182W', 'http://4932.YHR183W', 'http://4932.YHR184W', 'http://4932.YHR185C', 'http://4932.YHR186C', 'http://4932.YHR187W', 'http://4932.YHR188C', 'http://4932.YHR189W', 'http://4932.YHR190W', 'http://4932.YHR191C', 'http://4932.YHR192W', 'http://4932.YHR193C', 'http://4932.YHR194W', 'http://4932.YHR195W', 'http://4932.YHR196W', 'http://4932.YHR197W', 'http://4932.YHR198C', 'http://4932.YHR199C', 'http://4932.YHR199C-A', 'http://4932.YHR200W', 'http://4932.YHR201C', 'http://4932.YHR202W', 'http://4932.YHR203C', 'http://4932.YHR204W', 'http://4932.YHR205W', 'http://4932.YHR206W', 'http://4932.YHR207C', 'http://4932.YHR208W', 'http://4932.YHR209W', 'http://4932.YHR210C', 'http://4932.YHR211W', 'http://4932.YHR212W-A', 'http://4932.YHR213W', 'http://4932.YHR213W-A', 'http://4932.YHR213W-B', 'http://4932.YHR214C-B', 'http://4932.YHR214C-D', 'http://4932.YHR214C-E', 'http://4932.YHR214W', 'http://4932.YHR214W-A', 'http://4932.YHR215W', 'http://4932.YHR216W', 'http://4932.YHR217C', 'http://4932.YHR218W', 'http://4932.YHR218W-A', 'http://4932.YHR219W', 'http://4932.YIL001W', 'http://4932.YIL002C', 'http://4932.YIL003W', 'http://4932.YIL004C', 'http://4932.YIL005W', 'http://4932.YIL006W', 'http://4932.YIL007C', 'http://4932.YIL008W', 'http://4932.YIL009C-A', 'http://4932.YIL009W', 'http://4932.YIL010W', 'http://4932.YIL011W', 'http://4932.YIL013C', 'http://4932.YIL014C-A', 'http://4932.YIL014W', 'http://4932.YIL015W', 'http://4932.YIL016W', 'http://4932.YIL017C', 'http://4932.YIL018W', 'http://4932.YIL019W', 'http://4932.YIL020C', 'http://4932.YIL021W', 'http://4932.YIL022W', 'http://4932.YIL023C', 'http://4932.YIL025C', 'http://4932.YIL026C', 'http://4932.YIL027C', 'http://4932.YIL028W', 'http://4932.YIL029C', 'http://4932.YIL030C', 'http://4932.YIL031W', 'http://4932.YIL033C', 'http://4932.YIL034C', 'http://4932.YIL035C', 'http://4932.YIL036W', 'http://4932.YIL037C', 'http://4932.YIL038C', 'http://4932.YIL039W', 'http://4932.YIL040W', 'http://4932.YIL041W', 'http://4932.YIL042C', 'http://4932.YIL043C', 'http://4932.YIL044C', 'http://4932.YIL045W', 'http://4932.YIL046W', 'http://4932.YIL047C', 'http://4932.YIL048W', 'http://4932.YIL049W', 'http://4932.YIL050W', 'http://4932.YIL051C', 'http://4932.YIL052C', 'http://4932.YIL053W', 'http://4932.YIL054W', 'http://4932.YIL055C', 'http://4932.YIL056W', 'http://4932.YIL057C', 'http://4932.YIL060W', 'http://4932.YIL061C', 'http://4932.YIL062C', 'http://4932.YIL063C', 'http://4932.YIL064W', 'http://4932.YIL065C', 'http://4932.YIL066C', 'http://4932.YIL067C', 'http://4932.YIL068C', 'http://4932.YIL069C', 'http://4932.YIL070C', 'http://4932.YIL071C', 'http://4932.YIL071W-A', 'http://4932.YIL072W', 'http://4932.YIL073C', 'http://4932.YIL074C', 'http://4932.YIL075C', 'http://4932.YIL076W', 'http://4932.YIL077C', 'http://4932.YIL078W', 'http://4932.YIL079C', 'http://4932.YIL082W', 'http://4932.YIL082W-A', 'http://4932.YIL083C', 'http://4932.YIL084C', 'http://4932.YIL085C', 'http://4932.YIL087C', 'http://4932.YIL088C', 'http://4932.YIL089W', 'http://4932.YIL090W', 'http://4932.YIL091C', 'http://4932.YIL092W', 'http://4932.YIL093C', 'http://4932.YIL094C', 'http://4932.YIL095W', 'http://4932.YIL096C', 'http://4932.YIL097W', 'http://4932.YIL098C', 'http://4932.YIL099W', 'http://4932.YIL101C', 'http://4932.YIL102C-A', 'http://4932.YIL103W', 'http://4932.YIL104C', 'http://4932.YIL105C', 'http://4932.YIL106W', 'http://4932.YIL107C', 'http://4932.YIL108W', 'http://4932.YIL109C', 'http://4932.YIL110W', 'http://4932.YIL111W', 'http://4932.YIL112W', 'http://4932.YIL113W', 'http://4932.YIL114C', 'http://4932.YIL115C', 'http://4932.YIL116W', 'http://4932.YIL117C', 'http://4932.YIL118W', 'http://4932.YIL119C', 'http://4932.YIL120W', 'http://4932.YIL121W', 'http://4932.YIL122W', 'http://4932.YIL123W', 'http://4932.YIL124W', 'http://4932.YIL125W', 'http://4932.YIL126W', 'http://4932.YIL127C', 'http://4932.YIL128W', 'http://4932.YIL129C', 'http://4932.YIL130W', 'http://4932.YIL131C', 'http://4932.YIL132C', 'http://4932.YIL133C', 'http://4932.YIL134W', 'http://4932.YIL135C', 'http://4932.YIL136W', 'http://4932.YIL137C', 'http://4932.YIL138C', 'http://4932.YIL139C', 'http://4932.YIL140W', 'http://4932.YIL142W', 'http://4932.YIL143C', 'http://4932.YIL144W', 'http://4932.YIL145C', 'http://4932.YIL146C', 'http://4932.YIL147C', 'http://4932.YIL148W', 'http://4932.YIL149C', 'http://4932.YIL150C', 'http://4932.YIL151C', 'http://4932.YIL152W', 'http://4932.YIL153W', 'http://4932.YIL154C', 'http://4932.YIL155C', 'http://4932.YIL156W', 'http://4932.YIL156W-B', 'http://4932.YIL157C', 'http://4932.YIL158W', 'http://4932.YIL159W', 'http://4932.YIL160C', 'http://4932.YIL161W', 'http://4932.YIL162W', 'http://4932.YIL163C', 'http://4932.YIL164C', 'http://4932.YIL165C', 'http://4932.YIL166C', 'http://4932.YIL169C', 'http://4932.YIL172C', 'http://4932.YIL173W', 'http://4932.YIL176C', 'http://4932.YIL177C', 'http://4932.YIL177W-A', 'http://4932.YIR001C', 'http://4932.YIR002C', 'http://4932.YIR003W', 'http://4932.YIR004W', 'http://4932.YIR005W', 'http://4932.YIR006C', 'http://4932.YIR007W', 'http://4932.YIR008C', 'http://4932.YIR009W', 'http://4932.YIR010W', 'http://4932.YIR011C', 'http://4932.YIR012W', 'http://4932.YIR013C', 'http://4932.YIR014W', 'http://4932.YIR015W', 'http://4932.YIR016W', 'http://4932.YIR017C', 'http://4932.YIR018W', 'http://4932.YIR019C', 'http://4932.YIR020C', 'http://4932.YIR021W', 'http://4932.YIR022W', 'http://4932.YIR023W', 'http://4932.YIR024C', 'http://4932.YIR025W', 'http://4932.YIR026C', 'http://4932.YIR027C', 'http://4932.YIR028W', 'http://4932.YIR029W', 'http://4932.YIR030C', 'http://4932.YIR031C', 'http://4932.YIR032C', 'http://4932.YIR033W', 'http://4932.YIR034C', 'http://4932.YIR035C', 'http://4932.YIR036C', 'http://4932.YIR037W', 'http://4932.YIR038C', 'http://4932.YIR039C', 'http://4932.YIR040C', 'http://4932.YIR041W', 'http://4932.YIR042C', 'http://4932.YJL001W', 'http://4932.YJL002C', 'http://4932.YJL003W', 'http://4932.YJL004C', 'http://4932.YJL005W', 'http://4932.YJL006C', 'http://4932.YJL007C', 'http://4932.YJL008C', 'http://4932.YJL009W', 'http://4932.YJL010C', 'http://4932.YJL011C', 'http://4932.YJL012C', 'http://4932.YJL013C', 'http://4932.YJL014W', 'http://4932.YJL015C', 'http://4932.YJL016W', 'http://4932.YJL019W', 'http://4932.YJL020C', 'http://4932.YJL022W', 'http://4932.YJL023C', 'http://4932.YJL024C', 'http://4932.YJL025W', 'http://4932.YJL026W', 'http://4932.YJL027C', 'http://4932.YJL028W', 'http://4932.YJL029C', 'http://4932.YJL030W', 'http://4932.YJL031C', 'http://4932.YJL033W', 'http://4932.YJL034W', 'http://4932.YJL035C', 'http://4932.YJL036W', 'http://4932.YJL037W', 'http://4932.YJL038C', 'http://4932.YJL039C', 'http://4932.YJL041W', 'http://4932.YJL042W', 'http://4932.YJL043W', 'http://4932.YJL044C', 'http://4932.YJL045W', 'http://4932.YJL046W', 'http://4932.YJL047C', 'http://4932.YJL047C-A', 'http://4932.YJL048C', 'http://4932.YJL049W', 'http://4932.YJL050W', 'http://4932.YJL051W', 'http://4932.YJL052C-A', 'http://4932.YJL052W', 'http://4932.YJL053W', 'http://4932.YJL054W', 'http://4932.YJL055W', 'http://4932.YJL056C', 'http://4932.YJL057C', 'http://4932.YJL058C', 'http://4932.YJL059W', 'http://4932.YJL060W', 'http://4932.YJL061W', 'http://4932.YJL062W', 'http://4932.YJL062W-A', 'http://4932.YJL063C', 'http://4932.YJL064W', 'http://4932.YJL065C', 'http://4932.YJL066C', 'http://4932.YJL068C', 'http://4932.YJL069C', 'http://4932.YJL070C', 'http://4932.YJL071W', 'http://4932.YJL072C', 'http://4932.YJL073W', 'http://4932.YJL074C', 'http://4932.YJL076W', 'http://4932.YJL077C', 'http://4932.YJL077W-A', 'http://4932.YJL078C', 'http://4932.YJL079C', 'http://4932.YJL080C', 'http://4932.YJL081C', 'http://4932.YJL082W', 'http://4932.YJL083W', 'http://4932.YJL084C', 'http://4932.YJL085W', 'http://4932.YJL087C', 'http://4932.YJL088W', 'http://4932.YJL089W', 'http://4932.YJL090C', 'http://4932.YJL091C', 'http://4932.YJL092W', 'http://4932.YJL093C', 'http://4932.YJL094C', 'http://4932.YJL095W', 'http://4932.YJL096W', 'http://4932.YJL097W', 'http://4932.YJL098W', 'http://4932.YJL099W', 'http://4932.YJL100W', 'http://4932.YJL101C', 'http://4932.YJL102W', 'http://4932.YJL103C', 'http://4932.YJL104W', 'http://4932.YJL105W', 'http://4932.YJL106W', 'http://4932.YJL107C', 'http://4932.YJL108C', 'http://4932.YJL109C', 'http://4932.YJL110C', 'http://4932.YJL111W', 'http://4932.YJL112W', 'http://4932.YJL115W', 'http://4932.YJL116C', 'http://4932.YJL117W', 'http://4932.YJL118W', 'http://4932.YJL119C', 'http://4932.YJL120W', 'http://4932.YJL121C', 'http://4932.YJL122W', 'http://4932.YJL123C', 'http://4932.YJL124C', 'http://4932.YJL125C', 'http://4932.YJL126W', 'http://4932.YJL127C', 'http://4932.YJL127C-B', 'http://4932.YJL128C', 'http://4932.YJL129C', 'http://4932.YJL130C', 'http://4932.YJL131C', 'http://4932.YJL132W', 'http://4932.YJL133C-A', 'http://4932.YJL133W', 'http://4932.YJL134W', 'http://4932.YJL136C', 'http://4932.YJL137C', 'http://4932.YJL138C', 'http://4932.YJL139C', 'http://4932.YJL140W', 'http://4932.YJL141C', 'http://4932.YJL142C', 'http://4932.YJL143W', 'http://4932.YJL144W', 'http://4932.YJL145W', 'http://4932.YJL146W', 'http://4932.YJL147C', 'http://4932.YJL148W', 'http://4932.YJL149W', 'http://4932.YJL151C', 'http://4932.YJL153C', 'http://4932.YJL154C', 'http://4932.YJL155C', 'http://4932.YJL156C', 'http://4932.YJL157C', 'http://4932.YJL158C', 'http://4932.YJL159W', 'http://4932.YJL160C', 'http://4932.YJL161W', 'http://4932.YJL162C', 'http://4932.YJL163C', 'http://4932.YJL164C', 'http://4932.YJL165C', 'http://4932.YJL166W', 'http://4932.YJL167W', 'http://4932.YJL168C', 'http://4932.YJL170C', 'http://4932.YJL171C', 'http://4932.YJL172W', 'http://4932.YJL173C', 'http://4932.YJL174W', 'http://4932.YJL175W', 'http://4932.YJL176C', 'http://4932.YJL177W', 'http://4932.YJL178C', 'http://4932.YJL179W', 'http://4932.YJL180C', 'http://4932.YJL181W', 'http://4932.YJL183W', 'http://4932.YJL184W', 'http://4932.YJL185C', 'http://4932.YJL186W', 'http://4932.YJL187C', 'http://4932.YJL188C', 'http://4932.YJL189W', 'http://4932.YJL190C', 'http://4932.YJL191W', 'http://4932.YJL192C', 'http://4932.YJL194W', 'http://4932.YJL195C', 'http://4932.YJL196C', 'http://4932.YJL197W', 'http://4932.YJL198W', 'http://4932.YJL199C', 'http://4932.YJL200C', 'http://4932.YJL201W', 'http://4932.YJL203W', 'http://4932.YJL204C', 'http://4932.YJL205C', 'http://4932.YJL206C', 'http://4932.YJL207C', 'http://4932.YJL208C', 'http://4932.YJL209W', 'http://4932.YJL210W', 'http://4932.YJL211C', 'http://4932.YJL212C', 'http://4932.YJL214W', 'http://4932.YJL216C', 'http://4932.YJL217W', 'http://4932.YJL218W', 'http://4932.YJL219W', 'http://4932.YJL221C', 'http://4932.YJL222W', 'http://4932.YJL222W-A', 'http://4932.YJL222W-B', 'http://4932.YJL223C', 'http://4932.YJL225C', 'http://4932.YJR001W', 'http://4932.YJR002W', 'http://4932.YJR003C', 'http://4932.YJR004C', 'http://4932.YJR005C-A', 'http://4932.YJR005W', 'http://4932.YJR006W', 'http://4932.YJR007W', 'http://4932.YJR008W', 'http://4932.YJR009C', 'http://4932.YJR010C-A', 'http://4932.YJR010W', 'http://4932.YJR011C', 'http://4932.YJR012C', 'http://4932.YJR013W', 'http://4932.YJR014W', 'http://4932.YJR015W', 'http://4932.YJR016C', 'http://4932.YJR017C', 'http://4932.YJR019C', 'http://4932.YJR021C', 'http://4932.YJR022W', 'http://4932.YJR023C', 'http://4932.YJR024C', 'http://4932.YJR025C', 'http://4932.YJR027W', 'http://4932.YJR028W', 'http://4932.YJR029W', 'http://4932.YJR030C', 'http://4932.YJR031C', 'http://4932.YJR032W', 'http://4932.YJR033C', 'http://4932.YJR034W', 'http://4932.YJR035W', 'http://4932.YJR036C', 'http://4932.YJR037W', 'http://4932.YJR039W', 'http://4932.YJR040W', 'http://4932.YJR041C', 'http://4932.YJR042W', 'http://4932.YJR043C', 'http://4932.YJR044C', 'http://4932.YJR045C', 'http://4932.YJR046W', 'http://4932.YJR047C', 'http://4932.YJR048W', 'http://4932.YJR049C', 'http://4932.YJR050W', 'http://4932.YJR051W', 'http://4932.YJR052W', 'http://4932.YJR053W', 'http://4932.YJR054W', 'http://4932.YJR055W', 'http://4932.YJR056C', 'http://4932.YJR057W', 'http://4932.YJR058C', 'http://4932.YJR059W', 'http://4932.YJR060W', 'http://4932.YJR061W', 'http://4932.YJR062C', 'http://4932.YJR063W', 'http://4932.YJR064W', 'http://4932.YJR065C', 'http://4932.YJR066W', 'http://4932.YJR067C', 'http://4932.YJR068W', 'http://4932.YJR069C', 'http://4932.YJR070C', 'http://4932.YJR072C', 'http://4932.YJR073C', 'http://4932.YJR074W', 'http://4932.YJR075W', 'http://4932.YJR076C', 'http://4932.YJR077C', 'http://4932.YJR078W', 'http://4932.YJR079W', 'http://4932.YJR080C', 'http://4932.YJR082C', 'http://4932.YJR083C', 'http://4932.YJR084W', 'http://4932.YJR085C', 'http://4932.YJR086W', 'http://4932.YJR087W', 'http://4932.YJR088C', 'http://4932.YJR089W', 'http://4932.YJR090C', 'http://4932.YJR091C', 'http://4932.YJR092W', 'http://4932.YJR093C', 'http://4932.YJR094C', 'http://4932.YJR094W-A', 'http://4932.YJR095W', 'http://4932.YJR096W', 'http://4932.YJR097W', 'http://4932.YJR098C', 'http://4932.YJR099W', 'http://4932.YJR100C', 'http://4932.YJR101W', 'http://4932.YJR102C', 'http://4932.YJR103W', 'http://4932.YJR104C', 'http://4932.YJR105W', 'http://4932.YJR106W', 'http://4932.YJR107W', 'http://4932.YJR108W', 'http://4932.YJR109C', 'http://4932.YJR110W', 'http://4932.YJR111C', 'http://4932.YJR112W', 'http://4932.YJR112W-A', 'http://4932.YJR113C', 'http://4932.YJR114W', 'http://4932.YJR115W', 'http://4932.YJR116W', 'http://4932.YJR117W', 'http://4932.YJR118C', 'http://4932.YJR119C', 'http://4932.YJR120W', 'http://4932.YJR121W', 'http://4932.YJR122W', 'http://4932.YJR123W', 'http://4932.YJR124C', 'http://4932.YJR125C', 'http://4932.YJR126C', 'http://4932.YJR127C', 'http://4932.YJR129C', 'http://4932.YJR130C', 'http://4932.YJR131W', 'http://4932.YJR132W', 'http://4932.YJR133W', 'http://4932.YJR134C', 'http://4932.YJR135C', 'http://4932.YJR135W-A', 'http://4932.YJR136C', 'http://4932.YJR137C', 'http://4932.YJR138W', 'http://4932.YJR139C', 'http://4932.YJR140C', 'http://4932.YJR141W', 'http://4932.YJR142W', 'http://4932.YJR143C', 'http://4932.YJR144W', 'http://4932.YJR145C', 'http://4932.YJR146W', 'http://4932.YJR147W', 'http://4932.YJR148W', 'http://4932.YJR149W', 'http://4932.YJR150C', 'http://4932.YJR151C', 'http://4932.YJR152W', 'http://4932.YJR153W', 'http://4932.YJR154W', 'http://4932.YJR155W', 'http://4932.YJR156C', 'http://4932.YJR158W', 'http://4932.YJR159W', 'http://4932.YJR160C', 'http://4932.YJR161C', 'http://4932.YJR162C', 'http://4932.YKL001C', 'http://4932.YKL002W', 'http://4932.YKL003C', 'http://4932.YKL004W', 'http://4932.YKL005C', 'http://4932.YKL006C-A', 'http://4932.YKL006W', 'http://4932.YKL007W', 'http://4932.YKL008C', 'http://4932.YKL009W', 'http://4932.YKL010C', 'http://4932.YKL011C', 'http://4932.YKL012W', 'http://4932.YKL013C', 'http://4932.YKL014C', 'http://4932.YKL015W', 'http://4932.YKL016C', 'http://4932.YKL017C', 'http://4932.YKL018W', 'http://4932.YKL019W', 'http://4932.YKL020C', 'http://4932.YKL021C', 'http://4932.YKL022C', 'http://4932.YKL023W', 'http://4932.YKL024C', 'http://4932.YKL025C', 'http://4932.YKL026C', 'http://4932.YKL027W', 'http://4932.YKL028W', 'http://4932.YKL029C', 'http://4932.YKL031W', 'http://4932.YKL032C', 'http://4932.YKL033W', 'http://4932.YKL033W-A', 'http://4932.YKL034W', 'http://4932.YKL035W', 'http://4932.YKL037W', 'http://4932.YKL038W', 'http://4932.YKL040C', 'http://4932.YKL041W', 'http://4932.YKL042W', 'http://4932.YKL043W', 'http://4932.YKL044W', 'http://4932.YKL045W', 'http://4932.YKL046C', 'http://4932.YKL047W', 'http://4932.YKL048C', 'http://4932.YKL049C', 'http://4932.YKL050C', 'http://4932.YKL051W', 'http://4932.YKL052C', 'http://4932.YKL053C-A', 'http://4932.YKL054C', 'http://4932.YKL055C', 'http://4932.YKL056C', 'http://4932.YKL057C', 'http://4932.YKL058W', 'http://4932.YKL059C', 'http://4932.YKL060C', 'http://4932.YKL061W', 'http://4932.YKL062W', 'http://4932.YKL064W', 'http://4932.YKL065C', 'http://4932.YKL065W-A', 'http://4932.YKL066W', 'http://4932.YKL067W', 'http://4932.YKL068W', 'http://4932.YKL068W-A', 'http://4932.YKL069W', 'http://4932.YKL070W', 'http://4932.YKL071W', 'http://4932.YKL072W', 'http://4932.YKL073W', 'http://4932.YKL074C', 'http://4932.YKL075C', 'http://4932.YKL077W', 'http://4932.YKL078W', 'http://4932.YKL079W', 'http://4932.YKL080W', 'http://4932.YKL081W', 'http://4932.YKL082C', 'http://4932.YKL084W', 'http://4932.YKL085W', 'http://4932.YKL086W', 'http://4932.YKL087C', 'http://4932.YKL088W', 'http://4932.YKL089W', 'http://4932.YKL090W', 'http://4932.YKL091C', 'http://4932.YKL092C', 'http://4932.YKL093W', 'http://4932.YKL094W', 'http://4932.YKL095W', 'http://4932.YKL096C-B', 'http://4932.YKL096W', 'http://4932.YKL096W-A', 'http://4932.YKL098W', 'http://4932.YKL099C', 'http://4932.YKL100C', 'http://4932.YKL101W', 'http://4932.YKL102C', 'http://4932.YKL103C', 'http://4932.YKL104C', 'http://4932.YKL105C', 'http://4932.YKL106W', 'http://4932.YKL107W', 'http://4932.YKL108W', 'http://4932.YKL109W', 'http://4932.YKL110C', 'http://4932.YKL111C', 'http://4932.YKL112W', 'http://4932.YKL113C', 'http://4932.YKL114C', 'http://4932.YKL116C', 'http://4932.YKL117W', 'http://4932.YKL118W', 'http://4932.YKL119C', 'http://4932.YKL120W', 'http://4932.YKL121W', 'http://4932.YKL122C', 'http://4932.YKL124W', 'http://4932.YKL125W', 'http://4932.YKL126W', 'http://4932.YKL127W', 'http://4932.YKL128C', 'http://4932.YKL129C', 'http://4932.YKL130C', 'http://4932.YKL132C', 'http://4932.YKL133C', 'http://4932.YKL134C', 'http://4932.YKL135C', 'http://4932.YKL137W', 'http://4932.YKL138C', 'http://4932.YKL138C-A', 'http://4932.YKL139W', 'http://4932.YKL140W', 'http://4932.YKL141W', 'http://4932.YKL142W', 'http://4932.YKL143W', 'http://4932.YKL144C', 'http://4932.YKL145W', 'http://4932.YKL146W', 'http://4932.YKL148C', 'http://4932.YKL149C', 'http://4932.YKL150W', 'http://4932.YKL151C', 'http://4932.YKL152C', 'http://4932.YKL153W', 'http://4932.YKL154W', 'http://4932.YKL155C', 'http://4932.YKL156W', 'http://4932.YKL157W', 'http://4932.YKL159C', 'http://4932.YKL160W', 'http://4932.YKL161C', 'http://4932.YKL162C', 'http://4932.YKL163W', 'http://4932.YKL164C', 'http://4932.YKL165C', 'http://4932.YKL165C-A', 'http://4932.YKL166C', 'http://4932.YKL167C', 'http://4932.YKL168C', 'http://4932.YKL170W', 'http://4932.YKL171W', 'http://4932.YKL172W', 'http://4932.YKL173W', 'http://4932.YKL174C', 'http://4932.YKL175W', 'http://4932.YKL176C', 'http://4932.YKL177W', 'http://4932.YKL178C', 'http://4932.YKL179C', 'http://4932.YKL180W', 'http://4932.YKL181W', 'http://4932.YKL182W', 'http://4932.YKL183C-A', 'http://4932.YKL183W', 'http://4932.YKL184W', 'http://4932.YKL185W', 'http://4932.YKL186C', 'http://4932.YKL187C', 'http://4932.YKL188C', 'http://4932.YKL189W', 'http://4932.YKL190W', 'http://4932.YKL191W', 'http://4932.YKL192C', 'http://4932.YKL193C', 'http://4932.YKL194C', 'http://4932.YKL195W', 'http://4932.YKL196C', 'http://4932.YKL197C', 'http://4932.YKL198C', 'http://4932.YKL201C', 'http://4932.YKL203C', 'http://4932.YKL204W', 'http://4932.YKL205W', 'http://4932.YKL206C', 'http://4932.YKL207W', 'http://4932.YKL208W', 'http://4932.YKL209C', 'http://4932.YKL210W', 'http://4932.YKL211C', 'http://4932.YKL212W', 'http://4932.YKL213C', 'http://4932.YKL214C', 'http://4932.YKL215C', 'http://4932.YKL216W', 'http://4932.YKL217W', 'http://4932.YKL218C', 'http://4932.YKL219W', 'http://4932.YKL220C', 'http://4932.YKL221W', 'http://4932.YKL222C', 'http://4932.YKL223W', 'http://4932.YKL224C', 'http://4932.YKL225W', 'http://4932.YKR001C', 'http://4932.YKR002W', 'http://4932.YKR003W', 'http://4932.YKR004C', 'http://4932.YKR005C', 'http://4932.YKR006C', 'http://4932.YKR007W', 'http://4932.YKR008W', 'http://4932.YKR009C', 'http://4932.YKR010C', 'http://4932.YKR011C', 'http://4932.YKR013W', 'http://4932.YKR014C', 'http://4932.YKR016W', 'http://4932.YKR017C', 'http://4932.YKR018C', 'http://4932.YKR019C', 'http://4932.YKR020W', 'http://4932.YKR021W', 'http://4932.YKR022C', 'http://4932.YKR023W', 'http://4932.YKR024C', 'http://4932.YKR025W', 'http://4932.YKR026C', 'http://4932.YKR027W', 'http://4932.YKR028W', 'http://4932.YKR029C', 'http://4932.YKR030W', 'http://4932.YKR031C', 'http://4932.YKR034W', 'http://4932.YKR035C', 'http://4932.YKR035W-A', 'http://4932.YKR036C', 'http://4932.YKR037C', 'http://4932.YKR038C', 'http://4932.YKR039W', 'http://4932.YKR042W', 'http://4932.YKR043C', 'http://4932.YKR044W', 'http://4932.YKR045C', 'http://4932.YKR046C', 'http://4932.YKR048C', 'http://4932.YKR049C', 'http://4932.YKR050W', 'http://4932.YKR051W', 'http://4932.YKR052C', 'http://4932.YKR053C', 'http://4932.YKR054C', 'http://4932.YKR055W', 'http://4932.YKR056W', 'http://4932.YKR057W', 'http://4932.YKR058W', 'http://4932.YKR059W', 'http://4932.YKR060W', 'http://4932.YKR061W', 'http://4932.YKR062W', 'http://4932.YKR063C', 'http://4932.YKR064W', 'http://4932.YKR065C', 'http://4932.YKR066C', 'http://4932.YKR067W', 'http://4932.YKR068C', 'http://4932.YKR069W', 'http://4932.YKR070W', 'http://4932.YKR071C', 'http://4932.YKR072C', 'http://4932.YKR073C', 'http://4932.YKR074W', 'http://4932.YKR075C', 'http://4932.YKR076W', 'http://4932.YKR077W', 'http://4932.YKR078W', 'http://4932.YKR079C', 'http://4932.YKR080W', 'http://4932.YKR081C', 'http://4932.YKR082W', 'http://4932.YKR083C', 'http://4932.YKR084C', 'http://4932.YKR085C', 'http://4932.YKR086W', 'http://4932.YKR087C', 'http://4932.YKR088C', 'http://4932.YKR089C', 'http://4932.YKR090W', 'http://4932.YKR091W', 'http://4932.YKR092C', 'http://4932.YKR093W', 'http://4932.YKR094C', 'http://4932.YKR095W', 'http://4932.YKR095W-A', 'http://4932.YKR096W', 'http://4932.YKR097W', 'http://4932.YKR098C', 'http://4932.YKR099W', 'http://4932.YKR100C', 'http://4932.YKR101W', 'http://4932.YKR102W', 'http://4932.YKR103W', 'http://4932.YKR104W', 'http://4932.YKR105C', 'http://4932.YKR106W', 'http://4932.YLL001W', 'http://4932.YLL002W', 'http://4932.YLL003W', 'http://4932.YLL004W', 'http://4932.YLL005C', 'http://4932.YLL006W', 'http://4932.YLL007C', 'http://4932.YLL008W', 'http://4932.YLL009C', 'http://4932.YLL010C', 'http://4932.YLL011W', 'http://4932.YLL012W', 'http://4932.YLL013C', 'http://4932.YLL014W', 'http://4932.YLL015W', 'http://4932.YLL018C', 'http://4932.YLL018C-A', 'http://4932.YLL019C', 'http://4932.YLL021W', 'http://4932.YLL022C', 'http://4932.YLL023C', 'http://4932.YLL024C', 'http://4932.YLL025W', 'http://4932.YLL026W', 'http://4932.YLL027W', 'http://4932.YLL028W', 'http://4932.YLL029W', 'http://4932.YLL030C', 'http://4932.YLL031C', 'http://4932.YLL032C', 'http://4932.YLL033W', 'http://4932.YLL034C', 'http://4932.YLL035W', 'http://4932.YLL036C', 'http://4932.YLL038C', 'http://4932.YLL039C', 'http://4932.YLL040C', 'http://4932.YLL041C', 'http://4932.YLL042C', 'http://4932.YLL043W', 'http://4932.YLL044W', 'http://4932.YLL045C', 'http://4932.YLL046C', 'http://4932.YLL048C', 'http://4932.YLL049W', 'http://4932.YLL050C', 'http://4932.YLL051C', 'http://4932.YLL052C', 'http://4932.YLL053C', 'http://4932.YLL054C', 'http://4932.YLL055W', 'http://4932.YLL056C', 'http://4932.YLL057C', 'http://4932.YLL058W', 'http://4932.YLL059C', 'http://4932.YLL060C', 'http://4932.YLL061W', 'http://4932.YLL062C', 'http://4932.YLL063C', 'http://4932.YLL064C', 'http://4932.YLL065W', 'http://4932.YLL066C', 'http://4932.YLL066W-A', 'http://4932.YLL066W-B', 'http://4932.YLL067C', 'http://4932.YLL067W-A', 'http://4932.YLR001C', 'http://4932.YLR002C', 'http://4932.YLR003C', 'http://4932.YLR004C', 'http://4932.YLR005W', 'http://4932.YLR006C', 'http://4932.YLR007W', 'http://4932.YLR008C', 'http://4932.YLR009W', 'http://4932.YLR010C', 'http://4932.YLR011W', 'http://4932.YLR012C', 'http://4932.YLR013W', 'http://4932.YLR014C', 'http://4932.YLR015W', 'http://4932.YLR016C', 'http://4932.YLR017W', 'http://4932.YLR018C', 'http://4932.YLR019W', 'http://4932.YLR020C', 'http://4932.YLR021W', 'http://4932.YLR022C', 'http://4932.YLR023C', 'http://4932.YLR024C', 'http://4932.YLR025W', 'http://4932.YLR026C', 'http://4932.YLR027C', 'http://4932.YLR028C', 'http://4932.YLR029C', 'http://4932.YLR031W', 'http://4932.YLR032W', 'http://4932.YLR033W', 'http://4932.YLR034C', 'http://4932.YLR035C', 'http://4932.YLR035C-A', 'http://4932.YLR037C', 'http://4932.YLR038C', 'http://4932.YLR039C', 'http://4932.YLR040C', 'http://4932.YLR042C', 'http://4932.YLR043C', 'http://4932.YLR044C', 'http://4932.YLR045C', 'http://4932.YLR046C', 'http://4932.YLR047C', 'http://4932.YLR048W', 'http://4932.YLR049C', 'http://4932.YLR050C', 'http://4932.YLR051C', 'http://4932.YLR052W', 'http://4932.YLR053C', 'http://4932.YLR054C', 'http://4932.YLR055C', 'http://4932.YLR056W', 'http://4932.YLR057W', 'http://4932.YLR058C', 'http://4932.YLR059C', 'http://4932.YLR060W', 'http://4932.YLR061W', 'http://4932.YLR062C', 'http://4932.YLR063W', 'http://4932.YLR064W', 'http://4932.YLR065C', 'http://4932.YLR066W', 'http://4932.YLR067C', 'http://4932.YLR068W', 'http://4932.YLR069C', 'http://4932.YLR070C', 'http://4932.YLR071C', 'http://4932.YLR072W', 'http://4932.YLR073C', 'http://4932.YLR074C', 'http://4932.YLR075W', 'http://4932.YLR076C', 'http://4932.YLR077W', 'http://4932.YLR078C', 'http://4932.YLR079W', 'http://4932.YLR080W', 'http://4932.YLR081W', 'http://4932.YLR082C', 'http://4932.YLR083C', 'http://4932.YLR084C', 'http://4932.YLR085C', 'http://4932.YLR086W', 'http://4932.YLR087C', 'http://4932.YLR088W', 'http://4932.YLR089C', 'http://4932.YLR090W', 'http://4932.YLR091W', 'http://4932.YLR092W', 'http://4932.YLR093C', 'http://4932.YLR094C', 'http://4932.YLR095C', 'http://4932.YLR096W', 'http://4932.YLR097C', 'http://4932.YLR098C', 'http://4932.YLR099C', 'http://4932.YLR099W-A', 'http://4932.YLR100W', 'http://4932.YLR101C', 'http://4932.YLR102C', 'http://4932.YLR103C', 'http://4932.YLR104W', 'http://4932.YLR105C', 'http://4932.YLR106C', 'http://4932.YLR107W', 'http://4932.YLR108C', 'http://4932.YLR109W', 'http://4932.YLR110C', 'http://4932.YLR111W', 'http://4932.YLR112W', 'http://4932.YLR113W', 'http://4932.YLR114C', 'http://4932.YLR115W', 'http://4932.YLR116W', 'http://4932.YLR117C', 'http://4932.YLR118C', 'http://4932.YLR119W', 'http://4932.YLR120C', 'http://4932.YLR121C', 'http://4932.YLR123C', 'http://4932.YLR124W', 'http://4932.YLR125W', 'http://4932.YLR126C', 'http://4932.YLR127C', 'http://4932.YLR128W', 'http://4932.YLR129W', 'http://4932.YLR130C', 'http://4932.YLR131C', 'http://4932.YLR132C', 'http://4932.YLR133W', 'http://4932.YLR134W', 'http://4932.YLR135W', 'http://4932.YLR136C', 'http://4932.YLR137W', 'http://4932.YLR138W', 'http://4932.YLR139C', 'http://4932.YLR141W', 'http://4932.YLR142W', 'http://4932.YLR143W', 'http://4932.YLR144C', 'http://4932.YLR145W', 'http://4932.YLR146C', 'http://4932.YLR146W-A', 'http://4932.YLR147C', 'http://4932.YLR148W', 'http://4932.YLR149C', 'http://4932.YLR149C-A', 'http://4932.YLR150W', 'http://4932.YLR151C', 'http://4932.YLR152C', 'http://4932.YLR153C', 'http://4932.YLR154C', 'http://4932.YLR154C-G', 'http://4932.YLR154C-H', 'http://4932.YLR154W-B', 'http://4932.YLR154W-C', 'http://4932.YLR154W-E', 'http://4932.YLR154W-F', 'http://4932.YLR155C', 'http://4932.YLR156W', 'http://4932.YLR157C', 'http://4932.YLR157W-E', 'http://4932.YLR158C', 'http://4932.YLR160C', 'http://4932.YLR162W', 'http://4932.YLR162W-A', 'http://4932.YLR163C', 'http://4932.YLR163W-A', 'http://4932.YLR164W', 'http://4932.YLR165C', 'http://4932.YLR166C', 'http://4932.YLR167W', 'http://4932.YLR168C', 'http://4932.YLR170C', 'http://4932.YLR172C', 'http://4932.YLR173W', 'http://4932.YLR174W', 'http://4932.YLR175W', 'http://4932.YLR176C', 'http://4932.YLR177W', 'http://4932.YLR178C', 'http://4932.YLR179C', 'http://4932.YLR180W', 'http://4932.YLR181C', 'http://4932.YLR182W', 'http://4932.YLR183C', 'http://4932.YLR184W', 'http://4932.YLR185W', 'http://4932.YLR186W', 'http://4932.YLR187W', 'http://4932.YLR188W', 'http://4932.YLR189C', 'http://4932.YLR190W', 'http://4932.YLR191W', 'http://4932.YLR192C', 'http://4932.YLR193C', 'http://4932.YLR194C', 'http://4932.YLR195C', 'http://4932.YLR196W', 'http://4932.YLR197W', 'http://4932.YLR199C', 'http://4932.YLR200W', 'http://4932.YLR201C', 'http://4932.YLR203C', 'http://4932.YLR204W', 'http://4932.YLR205C', 'http://4932.YLR206W', 'http://4932.YLR207W', 'http://4932.YLR208W', 'http://4932.YLR209C', 'http://4932.YLR210W', 'http://4932.YLR211C', 'http://4932.YLR212C', 'http://4932.YLR213C', 'http://4932.YLR214W', 'http://4932.YLR215C', 'http://4932.YLR216C', 'http://4932.YLR218C', 'http://4932.YLR219W', 'http://4932.YLR220W', 'http://4932.YLR221C', 'http://4932.YLR222C', 'http://4932.YLR223C', 'http://4932.YLR224W', 'http://4932.YLR226W', 'http://4932.YLR227C', 'http://4932.YLR228C', 'http://4932.YLR229C', 'http://4932.YLR231C', 'http://4932.YLR232W', 'http://4932.YLR233C', 'http://4932.YLR234W', 'http://4932.YLR235C', 'http://4932.YLR236C', 'http://4932.YLR237W', 'http://4932.YLR238W', 'http://4932.YLR239C', 'http://4932.YLR240W', 'http://4932.YLR241W', 'http://4932.YLR242C', 'http://4932.YLR243W', 'http://4932.YLR244C', 'http://4932.YLR245C', 'http://4932.YLR246W', 'http://4932.YLR247C', 'http://4932.YLR248W', 'http://4932.YLR249W', 'http://4932.YLR250W', 'http://4932.YLR251W', 'http://4932.YLR252W', 'http://4932.YLR253W', 'http://4932.YLR254C', 'http://4932.YLR256W', 'http://4932.YLR256W-A', 'http://4932.YLR257W', 'http://4932.YLR258W', 'http://4932.YLR259C', 'http://4932.YLR260W', 'http://4932.YLR261C', 'http://4932.YLR262C', 'http://4932.YLR262C-A', 'http://4932.YLR263W', 'http://4932.YLR264W', 'http://4932.YLR265C', 'http://4932.YLR266C', 'http://4932.YLR267W', 'http://4932.YLR268W', 'http://4932.YLR270W', 'http://4932.YLR271W', 'http://4932.YLR272C', 'http://4932.YLR273C', 'http://4932.YLR274W', 'http://4932.YLR275W', 'http://4932.YLR276C', 'http://4932.YLR277C', 'http://4932.YLR278C', 'http://4932.YLR280C', 'http://4932.YLR281C', 'http://4932.YLR283W', 'http://4932.YLR284C', 'http://4932.YLR285W', 'http://4932.YLR286C', 'http://4932.YLR287C', 'http://4932.YLR287C-A', 'http://4932.YLR288C', 'http://4932.YLR289W', 'http://4932.YLR290C', 'http://4932.YLR291C', 'http://4932.YLR292C', 'http://4932.YLR293C', 'http://4932.YLR294C', 'http://4932.YLR295C', 'http://4932.YLR296W', 'http://4932.YLR297W', 'http://4932.YLR298C', 'http://4932.YLR299W', 'http://4932.YLR300W', 'http://4932.YLR301W', 'http://4932.YLR302C', 'http://4932.YLR303W', 'http://4932.YLR304C', 'http://4932.YLR305C', 'http://4932.YLR306W', 'http://4932.YLR307C-A', 'http://4932.YLR307W', 'http://4932.YLR308W', 'http://4932.YLR309C', 'http://4932.YLR310C', 'http://4932.YLR311C', 'http://4932.YLR312C', 'http://4932.YLR312W-A', 'http://4932.YLR313C', 'http://4932.YLR314C', 'http://4932.YLR315W', 'http://4932.YLR316C', 'http://4932.YLR318W', 'http://4932.YLR319C', 'http://4932.YLR320W', 'http://4932.YLR321C', 'http://4932.YLR322W', 'http://4932.YLR323C', 'http://4932.YLR324W', 'http://4932.YLR325C', 'http://4932.YLR326W', 'http://4932.YLR327C', 'http://4932.YLR328W', 'http://4932.YLR329W', 'http://4932.YLR330W', 'http://4932.YLR331C', 'http://4932.YLR332W', 'http://4932.YLR333C', 'http://4932.YLR334C', 'http://4932.YLR335W', 'http://4932.YLR336C', 'http://4932.YLR337C', 'http://4932.YLR338W', 'http://4932.YLR339C', 'http://4932.YLR340W', 'http://4932.YLR341W', 'http://4932.YLR342W', 'http://4932.YLR342W-A', 'http://4932.YLR343W', 'http://4932.YLR344W', 'http://4932.YLR345W', 'http://4932.YLR346C', 'http://4932.YLR347C', 'http://4932.YLR348C', 'http://4932.YLR350W', 'http://4932.YLR351C', 'http://4932.YLR352W', 'http://4932.YLR353W', 'http://4932.YLR354C', 'http://4932.YLR355C', 'http://4932.YLR356W', 'http://4932.YLR357W', 'http://4932.YLR358C', 'http://4932.YLR359W', 'http://4932.YLR360W', 'http://4932.YLR361C', 'http://4932.YLR362W', 'http://4932.YLR363C', 'http://4932.YLR363W-A', 'http://4932.YLR364W', 'http://4932.YLR367W', 'http://4932.YLR368W', 'http://4932.YLR369W', 'http://4932.YLR370C', 'http://4932.YLR371W', 'http://4932.YLR372W', 'http://4932.YLR373C', 'http://4932.YLR375W', 'http://4932.YLR376C', 'http://4932.YLR377C', 'http://4932.YLR378C', 'http://4932.YLR379W', 'http://4932.YLR380W', 'http://4932.YLR381W', 'http://4932.YLR382C', 'http://4932.YLR383W', 'http://4932.YLR384C', 'http://4932.YLR385C', 'http://4932.YLR386W', 'http://4932.YLR387C', 'http://4932.YLR388W', 'http://4932.YLR389C', 'http://4932.YLR390W', 'http://4932.YLR390W-A', 'http://4932.YLR392C', 'http://4932.YLR393W', 'http://4932.YLR394W', 'http://4932.YLR395C', 'http://4932.YLR396C', 'http://4932.YLR397C', 'http://4932.YLR398C', 'http://4932.YLR399C', 'http://4932.YLR401C', 'http://4932.YLR403W', 'http://4932.YLR404W', 'http://4932.YLR405W', 'http://4932.YLR406C', 'http://4932.YLR407W', 'http://4932.YLR408C', 'http://4932.YLR409C', 'http://4932.YLR410W', 'http://4932.YLR410W-B', 'http://4932.YLR411W', 'http://4932.YLR412W', 'http://4932.YLR413W', 'http://4932.YLR414C', 'http://4932.YLR417W', 'http://4932.YLR418C', 'http://4932.YLR419W', 'http://4932.YLR420W', 'http://4932.YLR421C', 'http://4932.YLR422W', 'http://4932.YLR423C', 'http://4932.YLR424W', 'http://4932.YLR425W', 'http://4932.YLR426W', 'http://4932.YLR427W', 'http://4932.YLR429W', 'http://4932.YLR430W', 'http://4932.YLR431C', 'http://4932.YLR432W', 'http://4932.YLR433C', 'http://4932.YLR435W', 'http://4932.YLR436C', 'http://4932.YLR437C', 'http://4932.YLR438C-A', 'http://4932.YLR438W', 'http://4932.YLR439W', 'http://4932.YLR440C', 'http://4932.YLR441C', 'http://4932.YLR442C', 'http://4932.YLR443W', 'http://4932.YLR444C', 'http://4932.YLR445W', 'http://4932.YLR446W', 'http://4932.YLR447C', 'http://4932.YLR448W', 'http://4932.YLR449W', 'http://4932.YLR450W', 'http://4932.YLR451W', 'http://4932.YLR452C', 'http://4932.YLR453C', 'http://4932.YLR454W', 'http://4932.YLR455W', 'http://4932.YLR456W', 'http://4932.YLR457C', 'http://4932.YLR459W', 'http://4932.YLR460C', 'http://4932.YLR461W', 'http://4932.YLR462W', 'http://4932.YLR463C', 'http://4932.YLR465C', 'http://4932.YLR466C-B', 'http://4932.YLR466W', 'http://4932.YLR467C-A', 'http://4932.YLR467W', 'http://4932.YML001W', 'http://4932.YML002W', 'http://4932.YML003W', 'http://4932.YML004C', 'http://4932.YML005W', 'http://4932.YML006C', 'http://4932.YML007C-A', 'http://4932.YML007W', 'http://4932.YML008C', 'http://4932.YML009C', 'http://4932.YML009C-A', 'http://4932.YML009W-B', 'http://4932.YML010W', 'http://4932.YML011C', 'http://4932.YML012C-A', 'http://4932.YML012W', 'http://4932.YML013W', 'http://4932.YML014W', 'http://4932.YML015C', 'http://4932.YML016C', 'http://4932.YML017W', 'http://4932.YML018C', 'http://4932.YML019W', 'http://4932.YML020W', 'http://4932.YML021C', 'http://4932.YML022W', 'http://4932.YML023C', 'http://4932.YML024W', 'http://4932.YML025C', 'http://4932.YML026C', 'http://4932.YML027W', 'http://4932.YML028W', 'http://4932.YML029W', 'http://4932.YML030W', 'http://4932.YML031W', 'http://4932.YML032C', 'http://4932.YML034C-A', 'http://4932.YML034W', 'http://4932.YML035C', 'http://4932.YML036W', 'http://4932.YML038C', 'http://4932.YML040W', 'http://4932.YML041C', 'http://4932.YML042W', 'http://4932.YML043C', 'http://4932.YML045W', 'http://4932.YML046W', 'http://4932.YML047C', 'http://4932.YML048W', 'http://4932.YML049C', 'http://4932.YML050W', 'http://4932.YML051W', 'http://4932.YML052W', 'http://4932.YML053C', 'http://4932.YML054C', 'http://4932.YML055W', 'http://4932.YML056C', 'http://4932.YML057C-A', 'http://4932.YML057W', 'http://4932.YML058W', 'http://4932.YML058W-A', 'http://4932.YML059C', 'http://4932.YML060W', 'http://4932.YML061C', 'http://4932.YML062C', 'http://4932.YML063W', 'http://4932.YML064C', 'http://4932.YML065W', 'http://4932.YML066C', 'http://4932.YML067C', 'http://4932.YML068W', 'http://4932.YML069W', 'http://4932.YML070W', 'http://4932.YML071C', 'http://4932.YML072C', 'http://4932.YML073C', 'http://4932.YML074C', 'http://4932.YML075C', 'http://4932.YML076C', 'http://4932.YML077W', 'http://4932.YML078W', 'http://4932.YML079W', 'http://4932.YML080W', 'http://4932.YML081C-A', 'http://4932.YML081W', 'http://4932.YML082W', 'http://4932.YML083C', 'http://4932.YML085C', 'http://4932.YML086C', 'http://4932.YML087C', 'http://4932.YML088W', 'http://4932.YML089C', 'http://4932.YML090W', 'http://4932.YML091C', 'http://4932.YML092C', 'http://4932.YML093W', 'http://4932.YML094C-A', 'http://4932.YML094W', 'http://4932.YML095C', 'http://4932.YML096W', 'http://4932.YML097C', 'http://4932.YML098W', 'http://4932.YML099C', 'http://4932.YML100W', 'http://4932.YML101C', 'http://4932.YML102W', 'http://4932.YML103C', 'http://4932.YML104C', 'http://4932.YML105C', 'http://4932.YML106W', 'http://4932.YML107C', 'http://4932.YML108W', 'http://4932.YML109W', 'http://4932.YML110C', 'http://4932.YML111W', 'http://4932.YML112W', 'http://4932.YML113W', 'http://4932.YML114C', 'http://4932.YML115C', 'http://4932.YML116W', 'http://4932.YML116W-A', 'http://4932.YML117W', 'http://4932.YML118W', 'http://4932.YML119W', 'http://4932.YML120C', 'http://4932.YML121W', 'http://4932.YML122C', 'http://4932.YML123C', 'http://4932.YML124C', 'http://4932.YML125C', 'http://4932.YML126C', 'http://4932.YML127W', 'http://4932.YML128C', 'http://4932.YML129C', 'http://4932.YML130C', 'http://4932.YML131W', 'http://4932.YML132W', 'http://4932.YML133C', 'http://4932.YML133W-A', 'http://4932.YML133W-B', 'http://4932.YMR001C', 'http://4932.YMR002W', 'http://4932.YMR003W', 'http://4932.YMR004W', 'http://4932.YMR005W', 'http://4932.YMR006C', 'http://4932.YMR007W', 'http://4932.YMR008C', 'http://4932.YMR009W', 'http://4932.YMR010W', 'http://4932.YMR011W', 'http://4932.YMR012W', 'http://4932.YMR013C', 'http://4932.YMR014W', 'http://4932.YMR015C', 'http://4932.YMR016C', 'http://4932.YMR017W', 'http://4932.YMR018W', 'http://4932.YMR019W', 'http://4932.YMR020W', 'http://4932.YMR021C', 'http://4932.YMR022W', 'http://4932.YMR023C', 'http://4932.YMR024W', 'http://4932.YMR025W', 'http://4932.YMR026C', 'http://4932.YMR027W', 'http://4932.YMR028W', 'http://4932.YMR029C', 'http://4932.YMR030W', 'http://4932.YMR031C', 'http://4932.YMR031W-A', 'http://4932.YMR032W', 'http://4932.YMR033W', 'http://4932.YMR034C', 'http://4932.YMR035W', 'http://4932.YMR036C', 'http://4932.YMR037C', 'http://4932.YMR038C', 'http://4932.YMR039C', 'http://4932.YMR040W', 'http://4932.YMR041C', 'http://4932.YMR042W', 'http://4932.YMR043W', 'http://4932.YMR044W', 'http://4932.YMR046C', 'http://4932.YMR047C', 'http://4932.YMR048W', 'http://4932.YMR049C', 'http://4932.YMR052C-A', 'http://4932.YMR052W', 'http://4932.YMR053C', 'http://4932.YMR054W', 'http://4932.YMR055C', 'http://4932.YMR056C', 'http://4932.YMR058W', 'http://4932.YMR059W', 'http://4932.YMR060C', 'http://4932.YMR061W', 'http://4932.YMR062C', 'http://4932.YMR063W', 'http://4932.YMR064W', 'http://4932.YMR065W', 'http://4932.YMR066W', 'http://4932.YMR067C', 'http://4932.YMR068W', 'http://4932.YMR069W', 'http://4932.YMR070W', 'http://4932.YMR071C', 'http://4932.YMR072W', 'http://4932.YMR073C', 'http://4932.YMR074C', 'http://4932.YMR075C-A', 'http://4932.YMR075W', 'http://4932.YMR076C', 'http://4932.YMR077C', 'http://4932.YMR078C', 'http://4932.YMR079W', 'http://4932.YMR080C', 'http://4932.YMR081C', 'http://4932.YMR082C', 'http://4932.YMR083W', 'http://4932.YMR084W', 'http://4932.YMR085W', 'http://4932.YMR086W', 'http://4932.YMR087W', 'http://4932.YMR088C', 'http://4932.YMR089C', 'http://4932.YMR090W', 'http://4932.YMR091C', 'http://4932.YMR092C', 'http://4932.YMR093W', 'http://4932.YMR094W', 'http://4932.YMR095C', 'http://4932.YMR096W', 'http://4932.YMR097C', 'http://4932.YMR098C', 'http://4932.YMR099C', 'http://4932.YMR100W', 'http://4932.YMR101C', 'http://4932.YMR102C', 'http://4932.YMR103C', 'http://4932.YMR104C', 'http://4932.YMR105C', 'http://4932.YMR106C', 'http://4932.YMR107W', 'http://4932.YMR108W', 'http://4932.YMR109W', 'http://4932.YMR110C', 'http://4932.YMR111C', 'http://4932.YMR112C', 'http://4932.YMR113W', 'http://4932.YMR114C', 'http://4932.YMR115W', 'http://4932.YMR116C', 'http://4932.YMR117C', 'http://4932.YMR118C', 'http://4932.YMR119W', 'http://4932.YMR120C', 'http://4932.YMR121C', 'http://4932.YMR122W-A', 'http://4932.YMR123W', 'http://4932.YMR124W', 'http://4932.YMR125W', 'http://4932.YMR126C', 'http://4932.YMR127C', 'http://4932.YMR128W', 'http://4932.YMR129W', 'http://4932.YMR130W', 'http://4932.YMR131C', 'http://4932.YMR132C', 'http://4932.YMR133W', 'http://4932.YMR134W', 'http://4932.YMR135C', 'http://4932.YMR136W', 'http://4932.YMR137C', 'http://4932.YMR138W', 'http://4932.YMR139W', 'http://4932.YMR140W', 'http://4932.YMR142C', 'http://4932.YMR143W', 'http://4932.YMR144W', 'http://4932.YMR145C', 'http://4932.YMR146C', 'http://4932.YMR147W', 'http://4932.YMR148W', 'http://4932.YMR149W', 'http://4932.YMR150C', 'http://4932.YMR151W', 'http://4932.YMR152W', 'http://4932.YMR153W', 'http://4932.YMR154C', 'http://4932.YMR155W', 'http://4932.YMR156C', 'http://4932.YMR157C', 'http://4932.YMR158C-A', 'http://4932.YMR158W', 'http://4932.YMR158W-B', 'http://4932.YMR159C', 'http://4932.YMR161W', 'http://4932.YMR162C', 'http://4932.YMR163C', 'http://4932.YMR164C', 'http://4932.YMR165C', 'http://4932.YMR166C', 'http://4932.YMR167W', 'http://4932.YMR168C', 'http://4932.YMR169C', 'http://4932.YMR170C', 'http://4932.YMR171C', 'http://4932.YMR172W', 'http://4932.YMR173W', 'http://4932.YMR173W-A', 'http://4932.YMR174C', 'http://4932.YMR175W', 'http://4932.YMR176W', 'http://4932.YMR177W', 'http://4932.YMR178W', 'http://4932.YMR179W', 'http://4932.YMR180C', 'http://4932.YMR181C', 'http://4932.YMR182C', 'http://4932.YMR183C', 'http://4932.YMR184W', 'http://4932.YMR185W', 'http://4932.YMR186W', 'http://4932.YMR188C', 'http://4932.YMR189W', 'http://4932.YMR190C', 'http://4932.YMR191W', 'http://4932.YMR192W', 'http://4932.YMR193W', 'http://4932.YMR194C-B', 'http://4932.YMR194W', 'http://4932.YMR195W', 'http://4932.YMR196W', 'http://4932.YMR197C', 'http://4932.YMR198W', 'http://4932.YMR199W', 'http://4932.YMR200W', 'http://4932.YMR201C', 'http://4932.YMR202W', 'http://4932.YMR203W', 'http://4932.YMR204C', 'http://4932.YMR205C', 'http://4932.YMR206W', 'http://4932.YMR207C', 'http://4932.YMR208W', 'http://4932.YMR209C', 'http://4932.YMR210W', 'http://4932.YMR211W', 'http://4932.YMR212C', 'http://4932.YMR213W', 'http://4932.YMR214W', 'http://4932.YMR215W', 'http://4932.YMR216C', 'http://4932.YMR217W', 'http://4932.YMR218C', 'http://4932.YMR219W', 'http://4932.YMR220W', 'http://4932.YMR221C', 'http://4932.YMR222C', 'http://4932.YMR223W', 'http://4932.YMR224C', 'http://4932.YMR225C', 'http://4932.YMR226C', 'http://4932.YMR227C', 'http://4932.YMR228W', 'http://4932.YMR229C', 'http://4932.YMR230W', 'http://4932.YMR230W-A', 'http://4932.YMR231W', 'http://4932.YMR232W', 'http://4932.YMR233W', 'http://4932.YMR234W', 'http://4932.YMR235C', 'http://4932.YMR236W', 'http://4932.YMR237W', 'http://4932.YMR238W', 'http://4932.YMR239C', 'http://4932.YMR240C', 'http://4932.YMR241W', 'http://4932.YMR242C', 'http://4932.YMR243C', 'http://4932.YMR244C-A', 'http://4932.YMR244W', 'http://4932.YMR245W', 'http://4932.YMR246W', 'http://4932.YMR247C', 'http://4932.YMR250W', 'http://4932.YMR251W', 'http://4932.YMR251W-A', 'http://4932.YMR253C', 'http://4932.YMR255W', 'http://4932.YMR256C', 'http://4932.YMR257C', 'http://4932.YMR258C', 'http://4932.YMR259C', 'http://4932.YMR260C', 'http://4932.YMR261C', 'http://4932.YMR262W', 'http://4932.YMR263W', 'http://4932.YMR264W', 'http://4932.YMR265C', 'http://4932.YMR266W', 'http://4932.YMR267W', 'http://4932.YMR268C', 'http://4932.YMR269W', 'http://4932.YMR270C', 'http://4932.YMR271C', 'http://4932.YMR272C', 'http://4932.YMR273C', 'http://4932.YMR274C', 'http://4932.YMR275C', 'http://4932.YMR276W', 'http://4932.YMR277W', 'http://4932.YMR278W', 'http://4932.YMR279C', 'http://4932.YMR280C', 'http://4932.YMR281W', 'http://4932.YMR282C', 'http://4932.YMR283C', 'http://4932.YMR284W', 'http://4932.YMR285C', 'http://4932.YMR286W', 'http://4932.YMR287C', 'http://4932.YMR288W', 'http://4932.YMR289W', 'http://4932.YMR290C', 'http://4932.YMR291W', 'http://4932.YMR292W', 'http://4932.YMR293C', 'http://4932.YMR294W', 'http://4932.YMR295C', 'http://4932.YMR296C', 'http://4932.YMR297W', 'http://4932.YMR298W', 'http://4932.YMR299C', 'http://4932.YMR300C', 'http://4932.YMR301C', 'http://4932.YMR302C', 'http://4932.YMR303C', 'http://4932.YMR304C-A', 'http://4932.YMR304W', 'http://4932.YMR305C', 'http://4932.YMR306W', 'http://4932.YMR307W', 'http://4932.YMR308C', 'http://4932.YMR309C', 'http://4932.YMR310C', 'http://4932.YMR311C', 'http://4932.YMR312W', 'http://4932.YMR313C', 'http://4932.YMR314W', 'http://4932.YMR315W', 'http://4932.YMR316W', 'http://4932.YMR317W', 'http://4932.YMR318C', 'http://4932.YMR319C', 'http://4932.YMR320W', 'http://4932.YMR321C', 'http://4932.YMR322C', 'http://4932.YMR323W', 'http://4932.YMR325W', 'http://4932.YMR326C', 'http://4932.YNL001W', 'http://4932.YNL002C', 'http://4932.YNL003C', 'http://4932.YNL004W', 'http://4932.YNL005C', 'http://4932.YNL006W', 'http://4932.YNL007C', 'http://4932.YNL008C', 'http://4932.YNL009W', 'http://4932.YNL010W', 'http://4932.YNL011C', 'http://4932.YNL012W', 'http://4932.YNL014W', 'http://4932.YNL015W', 'http://4932.YNL016W', 'http://4932.YNL018C', 'http://4932.YNL019C', 'http://4932.YNL020C', 'http://4932.YNL021W', 'http://4932.YNL022C', 'http://4932.YNL023C', 'http://4932.YNL024C', 'http://4932.YNL024C-A', 'http://4932.YNL025C', 'http://4932.YNL026W', 'http://4932.YNL027W', 'http://4932.YNL028W', 'http://4932.YNL029C', 'http://4932.YNL030W', 'http://4932.YNL031C', 'http://4932.YNL032W', 'http://4932.YNL033W', 'http://4932.YNL034W', 'http://4932.YNL035C', 'http://4932.YNL036W', 'http://4932.YNL037C', 'http://4932.YNL038W', 'http://4932.YNL039W', 'http://4932.YNL040W', 'http://4932.YNL041C', 'http://4932.YNL042W', 'http://4932.YNL043C', 'http://4932.YNL044W', 'http://4932.YNL045W', 'http://4932.YNL046W', 'http://4932.YNL047C', 'http://4932.YNL048W', 'http://4932.YNL049C', 'http://4932.YNL050C', 'http://4932.YNL051W', 'http://4932.YNL052W', 'http://4932.YNL053W', 'http://4932.YNL054W', 'http://4932.YNL055C', 'http://4932.YNL056W', 'http://4932.YNL058C', 'http://4932.YNL059C', 'http://4932.YNL061W', 'http://4932.YNL062C', 'http://4932.YNL063W', 'http://4932.YNL064C', 'http://4932.YNL065W', 'http://4932.YNL066W', 'http://4932.YNL067W', 'http://4932.YNL068C', 'http://4932.YNL069C', 'http://4932.YNL070W', 'http://4932.YNL071W', 'http://4932.YNL072W', 'http://4932.YNL073W', 'http://4932.YNL074C', 'http://4932.YNL075W', 'http://4932.YNL076W', 'http://4932.YNL077W', 'http://4932.YNL078W', 'http://4932.YNL079C', 'http://4932.YNL080C', 'http://4932.YNL081C', 'http://4932.YNL082W', 'http://4932.YNL083W', 'http://4932.YNL084C', 'http://4932.YNL085W', 'http://4932.YNL086W', 'http://4932.YNL087W', 'http://4932.YNL088W', 'http://4932.YNL089C', 'http://4932.YNL090W', 'http://4932.YNL091W', 'http://4932.YNL092W', 'http://4932.YNL093W', 'http://4932.YNL094W', 'http://4932.YNL095C', 'http://4932.YNL096C', 'http://4932.YNL097C', 'http://4932.YNL098C', 'http://4932.YNL099C', 'http://4932.YNL100W', 'http://4932.YNL101W', 'http://4932.YNL102W', 'http://4932.YNL103W', 'http://4932.YNL104C', 'http://4932.YNL105W', 'http://4932.YNL106C', 'http://4932.YNL107W', 'http://4932.YNL108C', 'http://4932.YNL110C', 'http://4932.YNL111C', 'http://4932.YNL112W', 'http://4932.YNL113W', 'http://4932.YNL115C', 'http://4932.YNL116W', 'http://4932.YNL117W', 'http://4932.YNL118C', 'http://4932.YNL119W', 'http://4932.YNL121C', 'http://4932.YNL122C', 'http://4932.YNL123W', 'http://4932.YNL124W', 'http://4932.YNL125C', 'http://4932.YNL126W', 'http://4932.YNL127W', 'http://4932.YNL128W', 'http://4932.YNL129W', 'http://4932.YNL130C', 'http://4932.YNL130C-A', 'http://4932.YNL131W', 'http://4932.YNL132W', 'http://4932.YNL133C', 'http://4932.YNL134C', 'http://4932.YNL135C', 'http://4932.YNL136W', 'http://4932.YNL137C', 'http://4932.YNL138W', 'http://4932.YNL138W-A', 'http://4932.YNL139C', 'http://4932.YNL140C', 'http://4932.YNL141W', 'http://4932.YNL142W', 'http://4932.YNL143C', 'http://4932.YNL144C', 'http://4932.YNL145W', 'http://4932.YNL146W', 'http://4932.YNL147W', 'http://4932.YNL148C', 'http://4932.YNL149C', 'http://4932.YNL150W', 'http://4932.YNL151C', 'http://4932.YNL152W', 'http://4932.YNL153C', 'http://4932.YNL154C', 'http://4932.YNL155W', 'http://4932.YNL156C', 'http://4932.YNL157W', 'http://4932.YNL158W', 'http://4932.YNL159C', 'http://4932.YNL160W', 'http://4932.YNL161W', 'http://4932.YNL162W', 'http://4932.YNL162W-A', 'http://4932.YNL163C', 'http://4932.YNL164C', 'http://4932.YNL166C', 'http://4932.YNL167C', 'http://4932.YNL168C', 'http://4932.YNL169C', 'http://4932.YNL170W', 'http://4932.YNL171C', 'http://4932.YNL172W', 'http://4932.YNL173C', 'http://4932.YNL175C', 'http://4932.YNL176C', 'http://4932.YNL177C', 'http://4932.YNL178W', 'http://4932.YNL179C', 'http://4932.YNL180C', 'http://4932.YNL181W', 'http://4932.YNL182C', 'http://4932.YNL183C', 'http://4932.YNL184C', 'http://4932.YNL185C', 'http://4932.YNL186W', 'http://4932.YNL187W', 'http://4932.YNL188W', 'http://4932.YNL189W', 'http://4932.YNL190W', 'http://4932.YNL191W', 'http://4932.YNL192W', 'http://4932.YNL194C', 'http://4932.YNL195C', 'http://4932.YNL196C', 'http://4932.YNL197C', 'http://4932.YNL198C', 'http://4932.YNL199C', 'http://4932.YNL200C', 'http://4932.YNL201C', 'http://4932.YNL202W', 'http://4932.YNL204C', 'http://4932.YNL206C', 'http://4932.YNL207W', 'http://4932.YNL208W', 'http://4932.YNL209W', 'http://4932.YNL210W', 'http://4932.YNL212W', 'http://4932.YNL213C', 'http://4932.YNL214W', 'http://4932.YNL215W', 'http://4932.YNL216W', 'http://4932.YNL217W', 'http://4932.YNL218W', 'http://4932.YNL219C', 'http://4932.YNL220W', 'http://4932.YNL221C', 'http://4932.YNL222W', 'http://4932.YNL223W', 'http://4932.YNL224C', 'http://4932.YNL225C', 'http://4932.YNL227C', 'http://4932.YNL228W', 'http://4932.YNL229C', 'http://4932.YNL230C', 'http://4932.YNL231C', 'http://4932.YNL232W', 'http://4932.YNL233W', 'http://4932.YNL234W', 'http://4932.YNL236W', 'http://4932.YNL238W', 'http://4932.YNL239W', 'http://4932.YNL240C', 'http://4932.YNL241C', 'http://4932.YNL242W', 'http://4932.YNL243W', 'http://4932.YNL244C', 'http://4932.YNL245C', 'http://4932.YNL246W', 'http://4932.YNL247W', 'http://4932.YNL248C', 'http://4932.YNL249C', 'http://4932.YNL250W', 'http://4932.YNL251C', 'http://4932.YNL252C', 'http://4932.YNL253W', 'http://4932.YNL254C', 'http://4932.YNL255C', 'http://4932.YNL256W', 'http://4932.YNL257C', 'http://4932.YNL258C', 'http://4932.YNL259C', 'http://4932.YNL260C', 'http://4932.YNL261W', 'http://4932.YNL262W', 'http://4932.YNL263C', 'http://4932.YNL264C', 'http://4932.YNL265C', 'http://4932.YNL267W', 'http://4932.YNL268W', 'http://4932.YNL269W', 'http://4932.YNL270C', 'http://4932.YNL271C', 'http://4932.YNL272C', 'http://4932.YNL273W', 'http://4932.YNL274C', 'http://4932.YNL275W', 'http://4932.YNL277W', 'http://4932.YNL278W', 'http://4932.YNL279W', 'http://4932.YNL280C', 'http://4932.YNL281W', 'http://4932.YNL282W', 'http://4932.YNL283C', 'http://4932.YNL284C', 'http://4932.YNL284C-B', 'http://4932.YNL286W', 'http://4932.YNL287W', 'http://4932.YNL288W', 'http://4932.YNL289W', 'http://4932.YNL290W', 'http://4932.YNL291C', 'http://4932.YNL292W', 'http://4932.YNL293W', 'http://4932.YNL294C', 'http://4932.YNL295W', 'http://4932.YNL296W', 'http://4932.YNL297C', 'http://4932.YNL298W', 'http://4932.YNL299W', 'http://4932.YNL300W', 'http://4932.YNL301C', 'http://4932.YNL302C', 'http://4932.YNL304W', 'http://4932.YNL305C', 'http://4932.YNL306W', 'http://4932.YNL307C', 'http://4932.YNL308C', 'http://4932.YNL309W', 'http://4932.YNL310C', 'http://4932.YNL311C', 'http://4932.YNL312W', 'http://4932.YNL313C', 'http://4932.YNL314W', 'http://4932.YNL315C', 'http://4932.YNL316C', 'http://4932.YNL317W', 'http://4932.YNL318C', 'http://4932.YNL319W', 'http://4932.YNL320W', 'http://4932.YNL321W', 'http://4932.YNL322C', 'http://4932.YNL323W', 'http://4932.YNL324W', 'http://4932.YNL325C', 'http://4932.YNL326C', 'http://4932.YNL327W', 'http://4932.YNL328C', 'http://4932.YNL329C', 'http://4932.YNL330C', 'http://4932.YNL331C', 'http://4932.YNL332W', 'http://4932.YNL333W', 'http://4932.YNL334C', 'http://4932.YNL335W', 'http://4932.YNL336W', 'http://4932.YNL337W', 'http://4932.YNL338W', 'http://4932.YNL339C', 'http://4932.YNL339W-A', 'http://4932.YNL339W-B', 'http://4932.YNR001C', 'http://4932.YNR002C', 'http://4932.YNR003C', 'http://4932.YNR004W', 'http://4932.YNR006W', 'http://4932.YNR007C', 'http://4932.YNR008W', 'http://4932.YNR009W', 'http://4932.YNR010W', 'http://4932.YNR011C', 'http://4932.YNR012W', 'http://4932.YNR013C', 'http://4932.YNR014W', 'http://4932.YNR015W', 'http://4932.YNR016C', 'http://4932.YNR017W', 'http://4932.YNR018W', 'http://4932.YNR019W', 'http://4932.YNR020C', 'http://4932.YNR021W', 'http://4932.YNR022C', 'http://4932.YNR023W', 'http://4932.YNR024W', 'http://4932.YNR026C', 'http://4932.YNR027W', 'http://4932.YNR028W', 'http://4932.YNR029C', 'http://4932.YNR030W', 'http://4932.YNR031C', 'http://4932.YNR032C-A', 'http://4932.YNR032W', 'http://4932.YNR033W', 'http://4932.YNR034W', 'http://4932.YNR034W-A', 'http://4932.YNR035C', 'http://4932.YNR036C', 'http://4932.YNR037C', 'http://4932.YNR038W', 'http://4932.YNR039C', 'http://4932.YNR040W', 'http://4932.YNR041C', 'http://4932.YNR043W', 'http://4932.YNR044W', 'http://4932.YNR045W', 'http://4932.YNR046W', 'http://4932.YNR047W', 'http://4932.YNR048W', 'http://4932.YNR049C', 'http://4932.YNR050C', 'http://4932.YNR051C', 'http://4932.YNR052C', 'http://4932.YNR053C', 'http://4932.YNR054C', 'http://4932.YNR055C', 'http://4932.YNR056C', 'http://4932.YNR057C', 'http://4932.YNR058W', 'http://4932.YNR059W', 'http://4932.YNR060W', 'http://4932.YNR061C', 'http://4932.YNR062C', 'http://4932.YNR063W', 'http://4932.YNR064C', 'http://4932.YNR065C', 'http://4932.YNR066C', 'http://4932.YNR067C', 'http://4932.YNR068C', 'http://4932.YNR069C', 'http://4932.YNR070W', 'http://4932.YNR071C', 'http://4932.YNR072W', 'http://4932.YNR073C', 'http://4932.YNR074C', 'http://4932.YNR075W', 'http://4932.YNR076W', 'http://4932.YNR077C', 'http://4932.YOL001W', 'http://4932.YOL002C', 'http://4932.YOL003C', 'http://4932.YOL004W', 'http://4932.YOL005C', 'http://4932.YOL006C', 'http://4932.YOL007C', 'http://4932.YOL008W', 'http://4932.YOL009C', 'http://4932.YOL010W', 'http://4932.YOL011W', 'http://4932.YOL012C', 'http://4932.YOL013C', 'http://4932.YOL014W', 'http://4932.YOL015W', 'http://4932.YOL016C', 'http://4932.YOL017W', 'http://4932.YOL018C', 'http://4932.YOL019W', 'http://4932.YOL020W', 'http://4932.YOL021C', 'http://4932.YOL022C', 'http://4932.YOL023W', 'http://4932.YOL025W', 'http://4932.YOL026C', 'http://4932.YOL027C', 'http://4932.YOL028C', 'http://4932.YOL030W', 'http://4932.YOL031C', 'http://4932.YOL032W', 'http://4932.YOL033W', 'http://4932.YOL034W', 'http://4932.YOL038W', 'http://4932.YOL039W', 'http://4932.YOL040C', 'http://4932.YOL041C', 'http://4932.YOL042W', 'http://4932.YOL043C', 'http://4932.YOL044W', 'http://4932.YOL045W', 'http://4932.YOL047C', 'http://4932.YOL048C', 'http://4932.YOL049W', 'http://4932.YOL051W', 'http://4932.YOL052C', 'http://4932.YOL052C-A', 'http://4932.YOL053W', 'http://4932.YOL054W', 'http://4932.YOL055C', 'http://4932.YOL056W', 'http://4932.YOL057W', 'http://4932.YOL058W', 'http://4932.YOL059W', 'http://4932.YOL060C', 'http://4932.YOL061W', 'http://4932.YOL062C', 'http://4932.YOL063C', 'http://4932.YOL064C', 'http://4932.YOL065C', 'http://4932.YOL066C', 'http://4932.YOL067C', 'http://4932.YOL068C', 'http://4932.YOL069W', 'http://4932.YOL070C', 'http://4932.YOL071W', 'http://4932.YOL072W', 'http://4932.YOL073C', 'http://4932.YOL075C', 'http://4932.YOL076W', 'http://4932.YOL077C', 'http://4932.YOL077W-A', 'http://4932.YOL078W', 'http://4932.YOL080C', 'http://4932.YOL081W', 'http://4932.YOL082W', 'http://4932.YOL083W', 'http://4932.YOL084W', 'http://4932.YOL086C', 'http://4932.YOL086W-A', 'http://4932.YOL087C', 'http://4932.YOL088C', 'http://4932.YOL089C', 'http://4932.YOL090W', 'http://4932.YOL091W', 'http://4932.YOL092W', 'http://4932.YOL093W', 'http://4932.YOL094C', 'http://4932.YOL095C', 'http://4932.YOL096C', 'http://4932.YOL097C', 'http://4932.YOL098C', 'http://4932.YOL100W', 'http://4932.YOL101C', 'http://4932.YOL102C', 'http://4932.YOL103W', 'http://4932.YOL103W-B', 'http://4932.YOL104C', 'http://4932.YOL105C', 'http://4932.YOL106W', 'http://4932.YOL107W', 'http://4932.YOL108C', 'http://4932.YOL109W', 'http://4932.YOL110W', 'http://4932.YOL111C', 'http://4932.YOL112W', 'http://4932.YOL113W', 'http://4932.YOL114C', 'http://4932.YOL115W', 'http://4932.YOL116W', 'http://4932.YOL117W', 'http://4932.YOL118C', 'http://4932.YOL119C', 'http://4932.YOL120C', 'http://4932.YOL121C', 'http://4932.YOL122C', 'http://4932.YOL123W', 'http://4932.YOL124C', 'http://4932.YOL125W', 'http://4932.YOL126C', 'http://4932.YOL127W', 'http://4932.YOL128C', 'http://4932.YOL129W', 'http://4932.YOL130W', 'http://4932.YOL131W', 'http://4932.YOL132W', 'http://4932.YOL133W', 'http://4932.YOL134C', 'http://4932.YOL135C', 'http://4932.YOL136C', 'http://4932.YOL137W', 'http://4932.YOL138C', 'http://4932.YOL139C', 'http://4932.YOL140W', 'http://4932.YOL141W', 'http://4932.YOL142W', 'http://4932.YOL143C', 'http://4932.YOL144W', 'http://4932.YOL145C', 'http://4932.YOL146W', 'http://4932.YOL147C', 'http://4932.YOL148C', 'http://4932.YOL149W', 'http://4932.YOL151W', 'http://4932.YOL152W', 'http://4932.YOL154W', 'http://4932.YOL155C', 'http://4932.YOL156W', 'http://4932.YOL157C', 'http://4932.YOL158C', 'http://4932.YOL159C', 'http://4932.YOL159C-A', 'http://4932.YOL160W', 'http://4932.YOL161C', 'http://4932.YOL162W', 'http://4932.YOL163W', 'http://4932.YOL164W', 'http://4932.YOL165C', 'http://4932.YOL166C', 'http://4932.YOL166W-A', 'http://4932.YOR001W', 'http://4932.YOR002W', 'http://4932.YOR003W', 'http://4932.YOR004W', 'http://4932.YOR005C', 'http://4932.YOR006C', 'http://4932.YOR007C', 'http://4932.YOR008C', 'http://4932.YOR009W', 'http://4932.YOR010C', 'http://4932.YOR011W', 'http://4932.YOR012W', 'http://4932.YOR013W', 'http://4932.YOR014W', 'http://4932.YOR016C', 'http://4932.YOR017W', 'http://4932.YOR018W', 'http://4932.YOR019W', 'http://4932.YOR020C', 'http://4932.YOR020W-A', 'http://4932.YOR021C', 'http://4932.YOR022C', 'http://4932.YOR023C', 'http://4932.YOR025W', 'http://4932.YOR026W', 'http://4932.YOR027W', 'http://4932.YOR028C', 'http://4932.YOR030W', 'http://4932.YOR031W', 'http://4932.YOR032C', 'http://4932.YOR033C', 'http://4932.YOR034C', 'http://4932.YOR034C-A', 'http://4932.YOR035C', 'http://4932.YOR036W', 'http://4932.YOR037W', 'http://4932.YOR038C', 'http://4932.YOR039W', 'http://4932.YOR040W', 'http://4932.YOR042W', 'http://4932.YOR043W', 'http://4932.YOR044W', 'http://4932.YOR045W', 'http://4932.YOR046C', 'http://4932.YOR047C', 'http://4932.YOR048C', 'http://4932.YOR049C', 'http://4932.YOR050C', 'http://4932.YOR051C', 'http://4932.YOR052C', 'http://4932.YOR053W', 'http://4932.YOR054C', 'http://4932.YOR055W', 'http://4932.YOR056C', 'http://4932.YOR057W', 'http://4932.YOR058C', 'http://4932.YOR059C', 'http://4932.YOR060C', 'http://4932.YOR061W', 'http://4932.YOR062C', 'http://4932.YOR063W', 'http://4932.YOR064C', 'http://4932.YOR065W', 'http://4932.YOR066W', 'http://4932.YOR067C', 'http://4932.YOR068C', 'http://4932.YOR069W', 'http://4932.YOR070C', 'http://4932.YOR071C', 'http://4932.YOR072W', 'http://4932.YOR073W', 'http://4932.YOR074C', 'http://4932.YOR075W', 'http://4932.YOR076C', 'http://4932.YOR077W', 'http://4932.YOR078W', 'http://4932.YOR079C', 'http://4932.YOR080W', 'http://4932.YOR081C', 'http://4932.YOR082C', 'http://4932.YOR083W', 'http://4932.YOR084W', 'http://4932.YOR085W', 'http://4932.YOR086C', 'http://4932.YOR087W', 'http://4932.YOR089C', 'http://4932.YOR090C', 'http://4932.YOR091W', 'http://4932.YOR092W', 'http://4932.YOR093C', 'http://4932.YOR094W', 'http://4932.YOR095C', 'http://4932.YOR096W', 'http://4932.YOR097C', 'http://4932.YOR098C', 'http://4932.YOR099W', 'http://4932.YOR100C', 'http://4932.YOR101W', 'http://4932.YOR103C', 'http://4932.YOR104W', 'http://4932.YOR105W', 'http://4932.YOR106W', 'http://4932.YOR107W', 'http://4932.YOR108W', 'http://4932.YOR109W', 'http://4932.YOR110W', 'http://4932.YOR111W', 'http://4932.YOR112W', 'http://4932.YOR113W', 'http://4932.YOR114W', 'http://4932.YOR115C', 'http://4932.YOR116C', 'http://4932.YOR117W', 'http://4932.YOR119C', 'http://4932.YOR120W', 'http://4932.YOR122C', 'http://4932.YOR123C', 'http://4932.YOR124C', 'http://4932.YOR125C', 'http://4932.YOR126C', 'http://4932.YOR127W', 'http://4932.YOR128C', 'http://4932.YOR129C', 'http://4932.YOR130C', 'http://4932.YOR131C', 'http://4932.YOR132W', 'http://4932.YOR133W', 'http://4932.YOR134W', 'http://4932.YOR135C', 'http://4932.YOR136W', 'http://4932.YOR137C', 'http://4932.YOR138C', 'http://4932.YOR140W', 'http://4932.YOR141C', 'http://4932.YOR142W', 'http://4932.YOR143C', 'http://4932.YOR144C', 'http://4932.YOR145C', 'http://4932.YOR147W', 'http://4932.YOR148C', 'http://4932.YOR149C', 'http://4932.YOR150W', 'http://4932.YOR151C', 'http://4932.YOR152C', 'http://4932.YOR153W', 'http://4932.YOR154W', 'http://4932.YOR155C', 'http://4932.YOR156C', 'http://4932.YOR157C', 'http://4932.YOR158W', 'http://4932.YOR159C', 'http://4932.YOR160W', 'http://4932.YOR161C', 'http://4932.YOR162C', 'http://4932.YOR163W', 'http://4932.YOR164C', 'http://4932.YOR165W', 'http://4932.YOR166C', 'http://4932.YOR167C', 'http://4932.YOR168W', 'http://4932.YOR169C', 'http://4932.YOR171C', 'http://4932.YOR172W', 'http://4932.YOR173W', 'http://4932.YOR174W', 'http://4932.YOR175C', 'http://4932.YOR176W', 'http://4932.YOR177C', 'http://4932.YOR178C', 'http://4932.YOR179C', 'http://4932.YOR180C', 'http://4932.YOR181W', 'http://4932.YOR182C', 'http://4932.YOR183W', 'http://4932.YOR184W', 'http://4932.YOR185C', 'http://4932.YOR187W', 'http://4932.YOR188W', 'http://4932.YOR189W', 'http://4932.YOR190W', 'http://4932.YOR191W', 'http://4932.YOR192C', 'http://4932.YOR193W', 'http://4932.YOR194C', 'http://4932.YOR195W', 'http://4932.YOR196C', 'http://4932.YOR197W', 'http://4932.YOR198C', 'http://4932.YOR200W', 'http://4932.YOR201C', 'http://4932.YOR202W', 'http://4932.YOR203W', 'http://4932.YOR204W', 'http://4932.YOR205C', 'http://4932.YOR206W', 'http://4932.YOR207C', 'http://4932.YOR208W', 'http://4932.YOR209C', 'http://4932.YOR210W', 'http://4932.YOR211C', 'http://4932.YOR212W', 'http://4932.YOR213C', 'http://4932.YOR214C', 'http://4932.YOR215C', 'http://4932.YOR216C', 'http://4932.YOR217W', 'http://4932.YOR219C', 'http://4932.YOR220W', 'http://4932.YOR221C', 'http://4932.YOR222W', 'http://4932.YOR223W', 'http://4932.YOR224C', 'http://4932.YOR226C', 'http://4932.YOR227W', 'http://4932.YOR228C', 'http://4932.YOR229W', 'http://4932.YOR230W', 'http://4932.YOR231W', 'http://4932.YOR232W', 'http://4932.YOR233W', 'http://4932.YOR234C', 'http://4932.YOR235W', 'http://4932.YOR236W', 'http://4932.YOR237W', 'http://4932.YOR238W', 'http://4932.YOR239W', 'http://4932.YOR241W', 'http://4932.YOR242C', 'http://4932.YOR243C', 'http://4932.YOR244W', 'http://4932.YOR245C', 'http://4932.YOR246C', 'http://4932.YOR247W', 'http://4932.YOR248W', 'http://4932.YOR249C', 'http://4932.YOR250C', 'http://4932.YOR251C', 'http://4932.YOR252W', 'http://4932.YOR253W', 'http://4932.YOR254C', 'http://4932.YOR255W', 'http://4932.YOR256C', 'http://4932.YOR257W', 'http://4932.YOR258W', 'http://4932.YOR259C', 'http://4932.YOR260W', 'http://4932.YOR261C', 'http://4932.YOR262W', 'http://4932.YOR264W', 'http://4932.YOR265W', 'http://4932.YOR266W', 'http://4932.YOR267C', 'http://4932.YOR268C', 'http://4932.YOR269W', 'http://4932.YOR270C', 'http://4932.YOR271C', 'http://4932.YOR272W', 'http://4932.YOR273C', 'http://4932.YOR274W', 'http://4932.YOR275C', 'http://4932.YOR276W', 'http://4932.YOR278W', 'http://4932.YOR279C', 'http://4932.YOR280C', 'http://4932.YOR281C', 'http://4932.YOR282W', 'http://4932.YOR283W', 'http://4932.YOR284W', 'http://4932.YOR285W', 'http://4932.YOR286W', 'http://4932.YOR287C', 'http://4932.YOR288C', 'http://4932.YOR289W', 'http://4932.YOR290C', 'http://4932.YOR291W', 'http://4932.YOR292C', 'http://4932.YOR293W', 'http://4932.YOR294W', 'http://4932.YOR295W', 'http://4932.YOR296W', 'http://4932.YOR297C', 'http://4932.YOR298C-A', 'http://4932.YOR298W', 'http://4932.YOR299W', 'http://4932.YOR300W', 'http://4932.YOR301W', 'http://4932.YOR302W', 'http://4932.YOR303W', 'http://4932.YOR304C-A', 'http://4932.YOR304W', 'http://4932.YOR305W', 'http://4932.YOR306C', 'http://4932.YOR307C', 'http://4932.YOR308C', 'http://4932.YOR309C', 'http://4932.YOR310C', 'http://4932.YOR311C', 'http://4932.YOR312C', 'http://4932.YOR313C', 'http://4932.YOR314W', 'http://4932.YOR315W', 'http://4932.YOR316C', 'http://4932.YOR317W', 'http://4932.YOR318C', 'http://4932.YOR319W', 'http://4932.YOR320C', 'http://4932.YOR321W', 'http://4932.YOR322C', 'http://4932.YOR323C', 'http://4932.YOR324C', 'http://4932.YOR326W', 'http://4932.YOR327C', 'http://4932.YOR328W', 'http://4932.YOR329C', 'http://4932.YOR330C', 'http://4932.YOR331C', 'http://4932.YOR332W', 'http://4932.YOR334W', 'http://4932.YOR335C', 'http://4932.YOR336W', 'http://4932.YOR337W', 'http://4932.YOR338W', 'http://4932.YOR339C', 'http://4932.YOR340C', 'http://4932.YOR341W', 'http://4932.YOR342C', 'http://4932.YOR343C', 'http://4932.YOR344C', 'http://4932.YOR345C', 'http://4932.YOR346W', 'http://4932.YOR347C', 'http://4932.YOR348C', 'http://4932.YOR349W', 'http://4932.YOR350C', 'http://4932.YOR351C', 'http://4932.YOR352W', 'http://4932.YOR353C', 'http://4932.YOR354C', 'http://4932.YOR355W', 'http://4932.YOR356W', 'http://4932.YOR357C', 'http://4932.YOR358W', 'http://4932.YOR359W', 'http://4932.YOR360C', 'http://4932.YOR361C', 'http://4932.YOR362C', 'http://4932.YOR363C', 'http://4932.YOR364W', 'http://4932.YOR365C', 'http://4932.YOR367W', 'http://4932.YOR368W', 'http://4932.YOR369C', 'http://4932.YOR370C', 'http://4932.YOR371C', 'http://4932.YOR372C', 'http://4932.YOR373W', 'http://4932.YOR374W', 'http://4932.YOR375C', 'http://4932.YOR376W-A', 'http://4932.YOR377W', 'http://4932.YOR378W', 'http://4932.YOR379C', 'http://4932.YOR380W', 'http://4932.YOR381W', 'http://4932.YOR381W-A', 'http://4932.YOR382W', 'http://4932.YOR383C', 'http://4932.YOR384W', 'http://4932.YOR385W', 'http://4932.YOR386W', 'http://4932.YOR387C', 'http://4932.YOR388C', 'http://4932.YOR389W', 'http://4932.YOR390W', 'http://4932.YOR391C', 'http://4932.YOR392W', 'http://4932.YOR393W', 'http://4932.YOR394C-A', 'http://4932.YOR394W', 'http://4932.YOR396C-A', 'http://4932.YOR396W', 'http://4932.YPL001W', 'http://4932.YPL002C', 'http://4932.YPL003W', 'http://4932.YPL004C', 'http://4932.YPL005W', 'http://4932.YPL006W', 'http://4932.YPL007C', 'http://4932.YPL008W', 'http://4932.YPL009C', 'http://4932.YPL010W', 'http://4932.YPL011C', 'http://4932.YPL012W', 'http://4932.YPL013C', 'http://4932.YPL014W', 'http://4932.YPL015C', 'http://4932.YPL016W', 'http://4932.YPL017C', 'http://4932.YPL018W', 'http://4932.YPL019C', 'http://4932.YPL020C', 'http://4932.YPL021W', 'http://4932.YPL022W', 'http://4932.YPL023C', 'http://4932.YPL024W', 'http://4932.YPL025C', 'http://4932.YPL026C', 'http://4932.YPL027W', 'http://4932.YPL028W', 'http://4932.YPL029W', 'http://4932.YPL030W', 'http://4932.YPL031C', 'http://4932.YPL032C', 'http://4932.YPL033C', 'http://4932.YPL034W', 'http://4932.YPL036W', 'http://4932.YPL037C', 'http://4932.YPL038W', 'http://4932.YPL040C', 'http://4932.YPL041C', 'http://4932.YPL042C', 'http://4932.YPL043W', 'http://4932.YPL045W', 'http://4932.YPL046C', 'http://4932.YPL047W', 'http://4932.YPL048W', 'http://4932.YPL049C', 'http://4932.YPL050C', 'http://4932.YPL051W', 'http://4932.YPL052W', 'http://4932.YPL053C', 'http://4932.YPL054W', 'http://4932.YPL055C', 'http://4932.YPL056C', 'http://4932.YPL057C', 'http://4932.YPL058C', 'http://4932.YPL059W', 'http://4932.YPL060W', 'http://4932.YPL061W', 'http://4932.YPL062W', 'http://4932.YPL063W', 'http://4932.YPL064C', 'http://4932.YPL065W', 'http://4932.YPL066W', 'http://4932.YPL067C', 'http://4932.YPL069C', 'http://4932.YPL070W', 'http://4932.YPL072W', 'http://4932.YPL074W', 'http://4932.YPL075W', 'http://4932.YPL076W', 'http://4932.YPL077C', 'http://4932.YPL078C', 'http://4932.YPL079W', 'http://4932.YPL081W', 'http://4932.YPL082C', 'http://4932.YPL083C', 'http://4932.YPL084W', 'http://4932.YPL085W', 'http://4932.YPL086C', 'http://4932.YPL087W', 'http://4932.YPL088W', 'http://4932.YPL089C', 'http://4932.YPL090C', 'http://4932.YPL091W', 'http://4932.YPL092W', 'http://4932.YPL093W', 'http://4932.YPL094C', 'http://4932.YPL095C', 'http://4932.YPL096C-A', 'http://4932.YPL096W', 'http://4932.YPL097W', 'http://4932.YPL098C', 'http://4932.YPL099C', 'http://4932.YPL100W', 'http://4932.YPL101W', 'http://4932.YPL102C', 'http://4932.YPL103C', 'http://4932.YPL104W', 'http://4932.YPL105C', 'http://4932.YPL106C', 'http://4932.YPL107W', 'http://4932.YPL108W', 'http://4932.YPL109C', 'http://4932.YPL110C', 'http://4932.YPL111W', 'http://4932.YPL112C', 'http://4932.YPL113C', 'http://4932.YPL115C', 'http://4932.YPL116W', 'http://4932.YPL117C', 'http://4932.YPL118W', 'http://4932.YPL119C', 'http://4932.YPL119C-A', 'http://4932.YPL120W', 'http://4932.YPL121C', 'http://4932.YPL122C', 'http://4932.YPL123C', 'http://4932.YPL124W', 'http://4932.YPL125W', 'http://4932.YPL126W', 'http://4932.YPL127C', 'http://4932.YPL128C', 'http://4932.YPL129W', 'http://4932.YPL130W', 'http://4932.YPL131W', 'http://4932.YPL132W', 'http://4932.YPL133C', 'http://4932.YPL134C', 'http://4932.YPL135W', 'http://4932.YPL137C', 'http://4932.YPL138C', 'http://4932.YPL139C', 'http://4932.YPL140C', 'http://4932.YPL141C', 'http://4932.YPL142C', 'http://4932.YPL143W', 'http://4932.YPL144W', 'http://4932.YPL145C', 'http://4932.YPL146C', 'http://4932.YPL147W', 'http://4932.YPL148C', 'http://4932.YPL149W', 'http://4932.YPL150W', 'http://4932.YPL151C', 'http://4932.YPL152W', 'http://4932.YPL153C', 'http://4932.YPL154C', 'http://4932.YPL155C', 'http://4932.YPL156C', 'http://4932.YPL157W', 'http://4932.YPL158C', 'http://4932.YPL159C', 'http://4932.YPL160W', 'http://4932.YPL161C', 'http://4932.YPL162C', 'http://4932.YPL163C', 'http://4932.YPL164C', 'http://4932.YPL165C', 'http://4932.YPL166W', 'http://4932.YPL167C', 'http://4932.YPL168W', 'http://4932.YPL169C', 'http://4932.YPL170W', 'http://4932.YPL171C', 'http://4932.YPL172C', 'http://4932.YPL173W', 'http://4932.YPL174C', 'http://4932.YPL175W', 'http://4932.YPL176C', 'http://4932.YPL177C', 'http://4932.YPL178W', 'http://4932.YPL179W', 'http://4932.YPL180W', 'http://4932.YPL181W', 'http://4932.YPL182C', 'http://4932.YPL183C', 'http://4932.YPL183W-A', 'http://4932.YPL184C', 'http://4932.YPL186C', 'http://4932.YPL187W', 'http://4932.YPL188W', 'http://4932.YPL189C-A', 'http://4932.YPL189W', 'http://4932.YPL190C', 'http://4932.YPL191C', 'http://4932.YPL192C', 'http://4932.YPL193W', 'http://4932.YPL194W', 'http://4932.YPL195W', 'http://4932.YPL196W', 'http://4932.YPL197C', 'http://4932.YPL198W', 'http://4932.YPL199C', 'http://4932.YPL200W', 'http://4932.YPL201C', 'http://4932.YPL202C', 'http://4932.YPL203W', 'http://4932.YPL204W', 'http://4932.YPL206C', 'http://4932.YPL207W', 'http://4932.YPL208W', 'http://4932.YPL209C', 'http://4932.YPL210C', 'http://4932.YPL211W', 'http://4932.YPL212C', 'http://4932.YPL213W', 'http://4932.YPL214C', 'http://4932.YPL215W', 'http://4932.YPL216W', 'http://4932.YPL217C', 'http://4932.YPL218W', 'http://4932.YPL219W', 'http://4932.YPL220W', 'http://4932.YPL221W', 'http://4932.YPL222C-A', 'http://4932.YPL222W', 'http://4932.YPL223C', 'http://4932.YPL224C', 'http://4932.YPL225W', 'http://4932.YPL226W', 'http://4932.YPL227C', 'http://4932.YPL228W', 'http://4932.YPL229W', 'http://4932.YPL230W', 'http://4932.YPL231W', 'http://4932.YPL232W', 'http://4932.YPL233W', 'http://4932.YPL234C', 'http://4932.YPL235W', 'http://4932.YPL236C', 'http://4932.YPL237W', 'http://4932.YPL238C', 'http://4932.YPL239W', 'http://4932.YPL240C', 'http://4932.YPL241C', 'http://4932.YPL242C', 'http://4932.YPL243W', 'http://4932.YPL244C', 'http://4932.YPL245W', 'http://4932.YPL246C', 'http://4932.YPL247C', 'http://4932.YPL248C', 'http://4932.YPL249C', 'http://4932.YPL249C-A', 'http://4932.YPL250C', 'http://4932.YPL252C', 'http://4932.YPL253C', 'http://4932.YPL254W', 'http://4932.YPL255W', 'http://4932.YPL256C', 'http://4932.YPL257W', 'http://4932.YPL257W-A', 'http://4932.YPL258C', 'http://4932.YPL259C', 'http://4932.YPL260W', 'http://4932.YPL261C', 'http://4932.YPL262W', 'http://4932.YPL263C', 'http://4932.YPL264C', 'http://4932.YPL265W', 'http://4932.YPL266W', 'http://4932.YPL267W', 'http://4932.YPL268W', 'http://4932.YPL269W', 'http://4932.YPL270W', 'http://4932.YPL271W', 'http://4932.YPL272C', 'http://4932.YPL273W', 'http://4932.YPL274W', 'http://4932.YPL277C', 'http://4932.YPL278C', 'http://4932.YPL279C', 'http://4932.YPL280W', 'http://4932.YPL281C', 'http://4932.YPL282C', 'http://4932.YPL283C', 'http://4932.YPL283W-A', 'http://4932.YPL283W-B', 'http://4932.YPR001W', 'http://4932.YPR002W', 'http://4932.YPR003C', 'http://4932.YPR004C', 'http://4932.YPR005C', 'http://4932.YPR006C', 'http://4932.YPR007C', 'http://4932.YPR008W', 'http://4932.YPR009W', 'http://4932.YPR010C', 'http://4932.YPR010C-A', 'http://4932.YPR011C', 'http://4932.YPR013C', 'http://4932.YPR016C', 'http://4932.YPR017C', 'http://4932.YPR018W', 'http://4932.YPR019W', 'http://4932.YPR020W', 'http://4932.YPR021C', 'http://4932.YPR022C', 'http://4932.YPR023C', 'http://4932.YPR024W', 'http://4932.YPR025C', 'http://4932.YPR026W', 'http://4932.YPR027C', 'http://4932.YPR028W', 'http://4932.YPR029C', 'http://4932.YPR030W', 'http://4932.YPR031W', 'http://4932.YPR032W', 'http://4932.YPR033C', 'http://4932.YPR034W', 'http://4932.YPR035W', 'http://4932.YPR036W', 'http://4932.YPR036W-A', 'http://4932.YPR037C', 'http://4932.YPR038W', 'http://4932.YPR040W', 'http://4932.YPR041W', 'http://4932.YPR042C', 'http://4932.YPR043W', 'http://4932.YPR044C', 'http://4932.YPR045C', 'http://4932.YPR046W', 'http://4932.YPR047W', 'http://4932.YPR048W', 'http://4932.YPR049C', 'http://4932.YPR050C', 'http://4932.YPR051W', 'http://4932.YPR052C', 'http://4932.YPR054W', 'http://4932.YPR055W', 'http://4932.YPR056W', 'http://4932.YPR057W', 'http://4932.YPR058W', 'http://4932.YPR060C', 'http://4932.YPR061C', 'http://4932.YPR062W', 'http://4932.YPR063C', 'http://4932.YPR064W', 'http://4932.YPR065W', 'http://4932.YPR066W', 'http://4932.YPR067W', 'http://4932.YPR068C', 'http://4932.YPR069C', 'http://4932.YPR070W', 'http://4932.YPR071W', 'http://4932.YPR072W', 'http://4932.YPR073C', 'http://4932.YPR074C', 'http://4932.YPR075C', 'http://4932.YPR078C', 'http://4932.YPR079W', 'http://4932.YPR080W', 'http://4932.YPR081C', 'http://4932.YPR082C', 'http://4932.YPR083W', 'http://4932.YPR085C', 'http://4932.YPR086W', 'http://4932.YPR087W', 'http://4932.YPR088C', 'http://4932.YPR089W', 'http://4932.YPR091C', 'http://4932.YPR093C', 'http://4932.YPR094W', 'http://4932.YPR095C', 'http://4932.YPR097W', 'http://4932.YPR099C', 'http://4932.YPR100W', 'http://4932.YPR101W', 'http://4932.YPR102C', 'http://4932.YPR103W', 'http://4932.YPR104C', 'http://4932.YPR105C', 'http://4932.YPR106W', 'http://4932.YPR107C', 'http://4932.YPR108W', 'http://4932.YPR109W', 'http://4932.YPR110C', 'http://4932.YPR111W', 'http://4932.YPR112C', 'http://4932.YPR113W', 'http://4932.YPR114W', 'http://4932.YPR115W', 'http://4932.YPR116W', 'http://4932.YPR117W', 'http://4932.YPR118W', 'http://4932.YPR119W', 'http://4932.YPR120C', 'http://4932.YPR121W', 'http://4932.YPR122W', 'http://4932.YPR123C', 'http://4932.YPR124W', 'http://4932.YPR125W', 'http://4932.YPR126C', 'http://4932.YPR127W', 'http://4932.YPR128C', 'http://4932.YPR129W', 'http://4932.YPR131C', 'http://4932.YPR132W', 'http://4932.YPR133C', 'http://4932.YPR133W-A', 'http://4932.YPR134W', 'http://4932.YPR135W', 'http://4932.YPR136C', 'http://4932.YPR137C-A', 'http://4932.YPR137C-B', 'http://4932.YPR137W', 'http://4932.YPR138C', 'http://4932.YPR139C', 'http://4932.YPR140W', 'http://4932.YPR141C', 'http://4932.YPR143W', 'http://4932.YPR144C', 'http://4932.YPR145C-A', 'http://4932.YPR145W', 'http://4932.YPR147C', 'http://4932.YPR149W', 'http://4932.YPR151C', 'http://4932.YPR152C', 'http://4932.YPR153W', 'http://4932.YPR154W', 'http://4932.YPR155C', 'http://4932.YPR156C', 'http://4932.YPR157W', 'http://4932.YPR158C-D', 'http://4932.YPR158W', 'http://4932.YPR158W-B', 'http://4932.YPR159W', 'http://4932.YPR160W', 'http://4932.YPR161C', 'http://4932.YPR162C', 'http://4932.YPR163C', 'http://4932.YPR164W', 'http://4932.YPR165W', 'http://4932.YPR166C', 'http://4932.YPR167C', 'http://4932.YPR168W', 'http://4932.YPR169W', 'http://4932.YPR170C', 'http://4932.YPR170W-B', 'http://4932.YPR171W', 'http://4932.YPR172W', 'http://4932.YPR173C', 'http://4932.YPR174C', 'http://4932.YPR175W', 'http://4932.YPR176C', 'http://4932.YPR178W', 'http://4932.YPR179C', 'http://4932.YPR180W', 'http://4932.YPR181C', 'http://4932.YPR182W', 'http://4932.YPR183W', 'http://4932.YPR184W', 'http://4932.YPR185W', 'http://4932.YPR186C', 'http://4932.YPR187W', 'http://4932.YPR188C', 'http://4932.YPR189W', 'http://4932.YPR190C', 'http://4932.YPR191W', 'http://4932.YPR192W', 'http://4932.YPR193C', 'http://4932.YPR194C', 'http://4932.YPR195C', 'http://4932.YPR196W', 'http://4932.YPR197C', 'http://4932.YPR198W', 'http://4932.YPR199C', 'http://4932.YPR200C', 'http://4932.YPR201W', 'http://4932.YPR202W', 'http://4932.YPR203W', 'http://4932.YPR204C-A', 'http://4932.YPR204W']

  0%|          | 0/12040 [00:00<?, ?it/s]
  0%|          | 10/12040 [00:00<02:00, 99.71it/s]
  0%|          | 28/12040 [00:00<01:22, 146.11it/s]
  0%|          | 49/12040 [00:00<01:09, 173.75it/s]
  1%|          | 71/12040 [00:00<01:36, 124.64it/s]
  1%|          | 93/12040 [00:00<01:19, 149.38it/s]
  1%|          | 116/12040 [00:00<01:10, 169.53it/s]
  1%|1         | 135/12040 [00:00<01:31, 130.37it/s]
  1%|1         | 157/12040 [00:01<01:18, 150.88it/s]
  1%|1         | 178/12040 [00:01<01:11, 165.19it/s]
  2%|1         | 197/12040 [00:01<01:31, 129.89it/s]
  2%|1         | 220/12040 [00:01<01:18, 150.64it/s]
  2%|2         | 243/12040 [00:01<01:10, 167.95it/s]
  2%|2         | 266/12040 [00:01<01:04, 181.91it/s]
  2%|2         | 286/12040 [00:01<01:04, 182.65it/s]
  3%|2         | 306/12040 [00:02<01:24, 139.44it/s]
  3%|2         | 328/12040 [00:02<01:14, 157.08it/s]
  3%|2         | 351/12040 [00:02<01:07, 172.99it/s]
  3%|3         | 371/12040 [00:02<01:26, 135.23it/s]
  3%|3         | 393/12040 [00:02<01:16, 153.04it/s]
  3%|3         | 415/12040 [00:02<01:09, 168.36it/s]
  4%|3         | 434/12040 [00:02<01:27, 132.39it/s]
  4%|3         | 456/12040 [00:03<01:16, 150.79it/s]
  4%|3         | 478/12040 [00:03<01:09, 166.42it/s]
  4%|4         | 497/12040 [00:03<01:28, 130.43it/s]
  4%|4         | 519/12040 [00:03<01:17, 149.41it/s]
  4%|4         | 541/12040 [00:03<01:09, 165.82it/s]
  5%|4         | 563/12040 [00:03<01:04, 179.31it/s]
  5%|4         | 586/12040 [00:03<01:00, 190.37it/s]
  5%|5         | 607/12040 [00:03<01:19, 143.31it/s]
  5%|5         | 629/12040 [00:04<01:11, 159.99it/s]
  5%|5         | 651/12040 [00:04<01:05, 173.16it/s]
  6%|5         | 671/12040 [00:04<01:24, 134.81it/s]
  6%|5         | 693/12040 [00:04<01:14, 152.53it/s]
  6%|5         | 715/12040 [00:04<01:07, 167.45it/s]
  6%|6         | 734/12040 [00:04<01:26, 131.37it/s]
  6%|6         | 756/12040 [00:04<01:15, 149.59it/s]
  6%|6         | 778/12040 [00:05<01:08, 165.30it/s]
  7%|6         | 797/12040 [00:05<01:26, 130.67it/s]
  7%|6         | 819/12040 [00:05<01:15, 149.38it/s]
  7%|6         | 841/12040 [00:05<01:07, 165.69it/s]
  7%|7         | 863/12040 [00:05<01:02, 179.04it/s]
  7%|7         | 885/12040 [00:05<00:58, 189.62it/s]
  8%|7         | 906/12040 [00:05<01:17, 142.75it/s]
  8%|7         | 928/12040 [00:06<01:09, 159.69it/s]
  8%|7         | 950/12040 [00:06<01:04, 173.24it/s]
  8%|8         | 970/12040 [00:06<01:21, 135.31it/s]
  8%|8         | 992/12040 [00:06<01:12, 153.05it/s]
  8%|8         | 1014/12040 [00:06<01:05, 168.16it/s]
  9%|8         | 1033/12040 [00:06<01:23, 132.25it/s]
  9%|8         | 1055/12040 [00:06<01:12, 150.53it/s]
  9%|8         | 1077/12040 [00:06<01:06, 166.06it/s]
  9%|9         | 1096/12040 [00:07<01:24, 130.05it/s]
  9%|9         | 1118/12040 [00:07<01:13, 148.96it/s]
  9%|9         | 1140/12040 [00:07<01:05, 165.20it/s]
 10%|9         | 1162/12040 [00:07<01:01, 178.31it/s]
 10%|9         | 1184/12040 [00:07<00:57, 188.25it/s]
 10%|#         | 1205/12040 [00:07<01:16, 142.02it/s]
 10%|#         | 1227/12040 [00:07<01:08, 158.85it/s]
 10%|#         | 1249/12040 [00:08<01:02, 172.92it/s]
 11%|#         | 1269/12040 [00:08<01:19, 135.04it/s]
 11%|#         | 1291/12040 [00:08<01:10, 152.64it/s]
 11%|#         | 1313/12040 [00:08<01:03, 167.74it/s]
 11%|#1        | 1332/12040 [00:08<01:21, 131.93it/s]
 11%|#1        | 1354/12040 [00:08<01:11, 150.05it/s]
 11%|#1        | 1376/12040 [00:08<01:04, 165.55it/s]
 12%|#1        | 1395/12040 [00:09<01:21, 130.99it/s]
 12%|#1        | 1417/12040 [00:09<01:11, 148.68it/s]
 12%|#1        | 1439/12040 [00:09<01:04, 165.03it/s]
 12%|#2        | 1461/12040 [00:09<00:59, 178.41it/s]
 12%|#2        | 1483/12040 [00:09<00:55, 189.12it/s]
 12%|#2        | 1504/12040 [00:09<01:14, 142.04it/s]
 13%|#2        | 1526/12040 [00:09<01:06, 158.96it/s]
 13%|#2        | 1548/12040 [00:09<01:00, 172.41it/s]
 13%|#3        | 1568/12040 [00:10<01:17, 134.91it/s]
 13%|#3        | 1590/12040 [00:10<01:08, 152.67it/s]
 13%|#3        | 1612/12040 [00:10<01:02, 167.82it/s]
 14%|#3        | 1631/12040 [00:10<01:18, 131.99it/s]
 14%|#3        | 1653/12040 [00:10<01:09, 149.93it/s]
 14%|#3        | 1675/12040 [00:10<01:02, 165.42it/s]
 14%|#4        | 1694/12040 [00:11<01:19, 130.91it/s]
 14%|#4        | 1716/12040 [00:11<01:09, 148.47it/s]
 14%|#4        | 1738/12040 [00:11<01:02, 164.82it/s]
 15%|#4        | 1760/12040 [00:11<00:57, 177.90it/s]
 15%|#4        | 1782/12040 [00:11<00:54, 188.48it/s]
 15%|#4        | 1803/12040 [00:11<01:12, 141.75it/s]
 15%|#5        | 1822/12040 [00:11<01:07, 151.88it/s]
 15%|#5        | 1844/12040 [00:11<01:00, 167.56it/s]
 15%|#5        | 1865/12040 [00:12<01:16, 133.04it/s]
 16%|#5        | 1887/12040 [00:12<01:07, 151.31it/s]
 16%|#5        | 1910/12040 [00:12<01:00, 168.32it/s]
 16%|#6        | 1929/12040 [00:12<01:16, 132.89it/s]
 16%|#6        | 1951/12040 [00:12<01:06, 151.02it/s]
 16%|#6        | 1973/12040 [00:12<01:00, 166.79it/s]
 17%|#6        | 1992/12040 [00:13<01:16, 131.62it/s]
 17%|#6        | 2015/12040 [00:13<01:06, 151.39it/s]
 17%|#6        | 2037/12040 [00:13<01:00, 165.67it/s]
 17%|#7        | 2059/12040 [00:13<00:55, 178.43it/s]
 17%|#7        | 2081/12040 [00:13<00:52, 188.81it/s]
 17%|#7        | 2102/12040 [00:13<01:09, 142.93it/s]
 18%|#7        | 2124/12040 [00:13<01:02, 159.79it/s]
 18%|#7        | 2146/12040 [00:13<00:56, 174.12it/s]
 18%|#7        | 2166/12040 [00:14<01:12, 135.57it/s]
 18%|#8        | 2187/12040 [00:14<01:05, 151.15it/s]
 18%|#8        | 2209/12040 [00:14<00:58, 166.83it/s]
 19%|#8        | 2228/12040 [00:14<01:14, 131.38it/s]
 19%|#8        | 2250/12040 [00:14<01:05, 149.82it/s]
 19%|#8        | 2272/12040 [00:14<00:58, 165.77it/s]
 19%|#9        | 2291/12040 [00:14<01:14, 131.09it/s]
 19%|#9        | 2314/12040 [00:15<01:04, 150.85it/s]
 19%|#9        | 2337/12040 [00:15<00:57, 167.71it/s]
 20%|#9        | 2356/12040 [00:15<00:56, 172.72it/s]
 20%|#9        | 2379/12040 [00:15<00:52, 185.54it/s]
 20%|#9        | 2399/12040 [00:15<01:08, 140.53it/s]
 20%|##        | 2418/12040 [00:15<01:03, 150.68it/s]
 20%|##        | 2440/12040 [00:15<00:57, 166.67it/s]
 20%|##        | 2462/12040 [00:15<00:53, 179.83it/s]
 21%|##        | 2482/12040 [00:16<01:11, 134.45it/s]
 21%|##        | 2502/12040 [00:16<01:04, 147.95it/s]
 21%|##        | 2523/12040 [00:16<00:58, 162.33it/s]
 21%|##1       | 2542/12040 [00:16<01:14, 127.17it/s]
 21%|##1       | 2561/12040 [00:16<01:08, 139.20it/s]
 21%|##1       | 2579/12040 [00:16<01:22, 115.05it/s]
 22%|##1       | 2601/12040 [00:16<01:09, 136.22it/s]
 22%|##1       | 2622/12040 [00:17<01:02, 151.59it/s]
 22%|##1       | 2640/12040 [00:17<01:00, 156.24it/s]
 22%|##2       | 2661/12040 [00:17<00:55, 168.66it/s]
 22%|##2       | 2682/12040 [00:17<01:11, 130.47it/s]
 22%|##2       | 2704/12040 [00:17<01:02, 149.19it/s]
 23%|##2       | 2724/12040 [00:17<00:58, 160.32it/s]
 23%|##2       | 2745/12040 [00:17<00:54, 170.93it/s]
 23%|##2       | 2764/12040 [00:18<01:13, 127.04it/s]
 23%|##3       | 2785/12040 [00:18<01:04, 143.68it/s]
 23%|##3       | 2806/12040 [00:18<00:58, 158.98it/s]
 23%|##3       | 2825/12040 [00:18<01:12, 127.24it/s]
 24%|##3       | 2846/12040 [00:18<01:03, 144.71it/s]
 24%|##3       | 2868/12040 [00:18<00:56, 161.83it/s]
 24%|##3       | 2887/12040 [00:18<01:11, 128.74it/s]
 24%|##4       | 2909/12040 [00:19<01:01, 148.20it/s]
 24%|##4       | 2931/12040 [00:19<00:55, 164.75it/s]
 25%|##4       | 2953/12040 [00:19<00:51, 177.25it/s]
 25%|##4       | 2975/12040 [00:19<00:48, 188.17it/s]
 25%|##4       | 2996/12040 [00:19<01:04, 139.95it/s]
 25%|##5       | 3015/12040 [00:19<01:00, 150.07it/s]
 25%|##5       | 3037/12040 [00:19<00:54, 165.70it/s]
 25%|##5       | 3059/12040 [00:19<00:50, 178.82it/s]
 26%|##5       | 3079/12040 [00:20<01:05, 136.65it/s]
 26%|##5       | 3101/12040 [00:20<00:57, 154.43it/s]
 26%|##5       | 3121/12040 [00:20<00:54, 165.02it/s]
 26%|##6       | 3140/12040 [00:20<01:08, 129.37it/s]
 26%|##6       | 3163/12040 [00:20<00:59, 149.50it/s]
 26%|##6       | 3181/12040 [00:20<01:12, 122.47it/s]
 27%|##6       | 3204/12040 [00:20<01:01, 143.39it/s]
 27%|##6       | 3226/12040 [00:21<00:54, 160.31it/s]
 27%|##6       | 3248/12040 [00:21<00:50, 174.18it/s]
 27%|##7       | 3271/12040 [00:21<00:46, 187.36it/s]
 27%|##7       | 3292/12040 [00:21<01:01, 142.44it/s]
 28%|##7       | 3315/12040 [00:21<00:54, 160.67it/s]
 28%|##7       | 3338/12040 [00:21<00:49, 174.17it/s]
 28%|##7       | 3358/12040 [00:21<00:48, 180.49it/s]
 28%|##8       | 3378/12040 [00:22<01:02, 138.84it/s]
 28%|##8       | 3401/12040 [00:22<00:54, 157.56it/s]
 28%|##8       | 3423/12040 [00:22<01:06, 130.17it/s]
 29%|##8       | 3445/12040 [00:22<00:58, 147.69it/s]
 29%|##8       | 3468/12040 [00:22<00:52, 164.83it/s]
 29%|##8       | 3487/12040 [00:22<01:05, 131.11it/s]
 29%|##9       | 3510/12040 [00:22<00:56, 150.43it/s]
 29%|##9       | 3533/12040 [00:23<00:50, 167.66it/s]
 30%|##9       | 3556/12040 [00:23<00:46, 181.22it/s]
 30%|##9       | 3578/12040 [00:23<00:44, 191.09it/s]
 30%|##9       | 3599/12040 [00:23<00:58, 144.41it/s]
 30%|###       | 3622/12040 [00:23<00:51, 162.06it/s]
 30%|###       | 3645/12040 [00:23<00:47, 176.67it/s]
 30%|###       | 3665/12040 [00:23<01:00, 137.67it/s]
 31%|###       | 3688/12040 [00:24<00:53, 156.36it/s]
 31%|###       | 3711/12040 [00:24<00:48, 172.32it/s]
 31%|###       | 3731/12040 [00:24<01:01, 135.97it/s]
 31%|###1      | 3754/12040 [00:24<00:53, 154.74it/s]
 31%|###1      | 3775/12040 [00:24<01:04, 127.90it/s]
 32%|###1      | 3796/12040 [00:24<00:57, 143.55it/s]
 32%|###1      | 3817/12040 [00:24<00:52, 156.68it/s]
 32%|###1      | 3837/12040 [00:25<00:49, 166.38it/s]
 32%|###2      | 3856/12040 [00:25<00:48, 169.88it/s]
 32%|###2      | 3875/12040 [00:25<00:49, 164.54it/s]
 32%|###2      | 3893/12040 [00:25<01:04, 126.46it/s]
 33%|###2      | 3914/12040 [00:25<00:56, 143.61it/s]
 33%|###2      | 3936/12040 [00:25<00:50, 161.02it/s]
 33%|###2      | 3958/12040 [00:25<01:01, 130.81it/s]
 33%|###3      | 3980/12040 [00:26<00:53, 149.60it/s]
 33%|###3      | 4001/12040 [00:26<00:49, 162.81it/s]
 33%|###3      | 4021/12040 [00:26<01:01, 129.76it/s]
 34%|###3      | 4042/12040 [00:26<00:54, 146.29it/s]
 34%|###3      | 4064/12040 [00:26<00:49, 161.83it/s]
 34%|###3      | 4083/12040 [00:26<01:03, 124.95it/s]
 34%|###4      | 4106/12040 [00:26<00:54, 145.92it/s]
 34%|###4      | 4129/12040 [00:26<00:48, 163.97it/s]
 34%|###4      | 4152/12040 [00:27<00:44, 178.94it/s]
 35%|###4      | 4174/12040 [00:27<00:41, 189.17it/s]
 35%|###4      | 4195/12040 [00:27<00:54, 143.15it/s]
 35%|###5      | 4218/12040 [00:27<00:48, 161.09it/s]
 35%|###5      | 4240/12040 [00:27<00:44, 175.06it/s]
 35%|###5      | 4260/12040 [00:27<00:56, 136.77it/s]
 36%|###5      | 4282/12040 [00:27<00:50, 154.61it/s]
 36%|###5      | 4305/12040 [00:28<00:45, 170.68it/s]
 36%|###5      | 4325/12040 [00:28<00:57, 134.89it/s]
 36%|###6      | 4347/12040 [00:28<00:50, 152.93it/s]
 36%|###6      | 4370/12040 [00:28<00:45, 169.28it/s]
 36%|###6      | 4390/12040 [00:28<00:56, 134.24it/s]
 37%|###6      | 4413/12040 [00:28<00:49, 153.61it/s]
 37%|###6      | 4436/12040 [00:28<00:44, 170.38it/s]
 37%|###7      | 4459/12040 [00:29<00:41, 184.21it/s]
 37%|###7      | 4480/12040 [00:29<00:53, 142.01it/s]
 37%|###7      | 4503/12040 [00:29<00:47, 160.02it/s]
 38%|###7      | 4526/12040 [00:29<00:42, 175.30it/s]
 38%|###7      | 4548/12040 [00:29<00:40, 185.02it/s]
 38%|###7      | 4569/12040 [00:29<00:52, 142.02it/s]
 38%|###8      | 4592/12040 [00:29<00:46, 159.95it/s]
 38%|###8      | 4615/12040 [00:30<00:42, 175.01it/s]
 38%|###8      | 4635/12040 [00:30<00:54, 137.01it/s]
 39%|###8      | 4658/12040 [00:30<00:47, 155.50it/s]
 39%|###8      | 4677/12040 [00:30<00:57, 127.17it/s]
 39%|###9      | 4700/12040 [00:30<00:49, 147.34it/s]
 39%|###9      | 4723/12040 [00:30<00:44, 164.92it/s]
 39%|###9      | 4746/12040 [00:30<00:40, 179.51it/s]
 40%|###9      | 4769/12040 [00:30<00:38, 191.00it/s]
 40%|###9      | 4790/12040 [00:31<00:50, 144.61it/s]
 40%|###9      | 4813/12040 [00:31<00:44, 161.94it/s]
 40%|####      | 4836/12040 [00:31<00:40, 176.37it/s]
 40%|####      | 4856/12040 [00:31<00:52, 137.03it/s]
 40%|####      | 4876/12040 [00:31<00:48, 147.46it/s]
 41%|####      | 4898/12040 [00:31<00:43, 163.94it/s]
 41%|####      | 4918/12040 [00:32<00:54, 131.33it/s]
 41%|####1     | 4940/12040 [00:32<00:47, 149.57it/s]
 41%|####1     | 4963/12040 [00:32<00:42, 166.51it/s]
 41%|####1     | 4982/12040 [00:32<00:53, 131.90it/s]
 42%|####1     | 5005/12040 [00:32<00:46, 151.46it/s]
 42%|####1     | 5028/12040 [00:32<00:41, 168.28it/s]
 42%|####1     | 5051/12040 [00:32<00:38, 180.79it/s]
 42%|####2     | 5073/12040 [00:32<00:36, 190.40it/s]
 42%|####2     | 5094/12040 [00:33<00:48, 142.60it/s]
 42%|####2     | 5117/12040 [00:33<00:43, 160.47it/s]
 43%|####2     | 5140/12040 [00:33<00:39, 175.16it/s]
 43%|####2     | 5160/12040 [00:33<00:50, 136.96it/s]
 43%|####3     | 5183/12040 [00:33<00:44, 155.35it/s]
 43%|####3     | 5206/12040 [00:33<00:40, 170.83it/s]
 43%|####3     | 5226/12040 [00:34<00:50, 135.02it/s]
 44%|####3     | 5249/12040 [00:34<00:44, 153.62it/s]
 44%|####3     | 5270/12040 [00:34<00:53, 126.85it/s]
 44%|####3     | 5293/12040 [00:34<00:46, 146.28it/s]
 44%|####4     | 5316/12040 [00:34<00:41, 163.58it/s]
 44%|####4     | 5339/12040 [00:34<00:37, 178.08it/s]
 45%|####4     | 5362/12040 [00:34<00:35, 189.64it/s]
 45%|####4     | 5383/12040 [00:35<00:46, 144.28it/s]
 45%|####4     | 5406/12040 [00:35<00:41, 161.65it/s]
 45%|####5     | 5427/12040 [00:35<00:38, 172.92it/s]
 45%|####5     | 5450/12040 [00:35<00:35, 185.62it/s]
 45%|####5     | 5471/12040 [00:35<00:46, 141.54it/s]
 46%|####5     | 5494/12040 [00:35<00:41, 159.25it/s]
 46%|####5     | 5516/12040 [00:35<00:49, 131.09it/s]
 46%|####5     | 5538/12040 [00:36<00:43, 148.54it/s]
 46%|####6     | 5561/12040 [00:36<00:39, 165.26it/s]
 46%|####6     | 5580/12040 [00:36<00:48, 132.05it/s]
 47%|####6     | 5603/12040 [00:36<00:42, 151.43it/s]
 47%|####6     | 5626/12040 [00:36<00:38, 168.34it/s]
 47%|####6     | 5649/12040 [00:36<00:35, 181.92it/s]
 47%|####7     | 5672/12040 [00:36<00:44, 142.76it/s]
 47%|####7     | 5694/12040 [00:37<00:39, 159.03it/s]
 47%|####7     | 5717/12040 [00:37<00:36, 174.12it/s]
 48%|####7     | 5739/12040 [00:37<00:34, 183.92it/s]
 48%|####7     | 5760/12040 [00:37<00:44, 141.64it/s]
 48%|####8     | 5783/12040 [00:37<00:39, 159.37it/s]
 48%|####8     | 5806/12040 [00:37<00:35, 174.25it/s]
 48%|####8     | 5826/12040 [00:37<00:45, 136.54it/s]
 49%|####8     | 5846/12040 [00:37<00:41, 148.65it/s]
 49%|####8     | 5868/12040 [00:38<00:49, 125.36it/s]
 49%|####8     | 5891/12040 [00:38<00:42, 145.16it/s]
 49%|####9     | 5914/12040 [00:38<00:37, 162.61it/s]
 49%|####9     | 5937/12040 [00:38<00:34, 177.47it/s]
 50%|####9     | 5960/12040 [00:38<00:32, 189.31it/s]
 50%|####9     | 5981/12040 [00:38<00:42, 144.21it/s]
 50%|####9     | 6004/12040 [00:38<00:37, 161.62it/s]
 50%|#####     | 6027/12040 [00:39<00:34, 176.21it/s]
 50%|#####     | 6050/12040 [00:39<00:31, 187.92it/s]
 50%|#####     | 6071/12040 [00:39<00:41, 143.54it/s]
 51%|#####     | 6094/12040 [00:39<00:36, 160.74it/s]
 51%|#####     | 6114/12040 [00:39<00:45, 130.27it/s]
 51%|#####     | 6136/12040 [00:39<00:39, 148.18it/s]
 51%|#####1    | 6159/12040 [00:39<00:35, 165.06it/s]
 51%|#####1    | 6178/12040 [00:40<00:44, 131.64it/s]
 52%|#####1    | 6201/12040 [00:40<00:38, 151.06it/s]
 52%|#####1    | 6224/12040 [00:40<00:34, 167.92it/s]
 52%|#####1    | 6247/12040 [00:40<00:31, 181.96it/s]
 52%|#####2    | 6270/12040 [00:40<00:40, 142.67it/s]
 52%|#####2    | 6292/12040 [00:40<00:36, 158.85it/s]
 52%|#####2    | 6315/12040 [00:40<00:32, 174.02it/s]
 53%|#####2    | 6337/12040 [00:41<00:30, 185.43it/s]
 53%|#####2    | 6358/12040 [00:41<00:39, 142.28it/s]
 53%|#####2    | 6381/12040 [00:41<00:35, 159.80it/s]
 53%|#####3    | 6403/12040 [00:41<00:32, 172.85it/s]
 53%|#####3    | 6423/12040 [00:41<00:41, 135.81it/s]
 53%|#####3    | 6441/12040 [00:41<00:38, 145.11it/s]
 54%|#####3    | 6464/12040 [00:41<00:34, 163.26it/s]
 54%|#####3    | 6483/12040 [00:42<00:42, 129.63it/s]
 54%|#####4    | 6506/12040 [00:42<00:36, 149.96it/s]
 54%|#####4    | 6529/12040 [00:42<00:33, 166.93it/s]
 54%|#####4    | 6552/12040 [00:42<00:30, 180.98it/s]
 55%|#####4    | 6572/12040 [00:42<00:39, 139.50it/s]
 55%|#####4    | 6595/12040 [00:42<00:34, 157.87it/s]
 55%|#####4    | 6618/12040 [00:42<00:31, 173.24it/s]
 55%|#####5    | 6641/12040 [00:42<00:29, 185.50it/s]
 55%|#####5    | 6662/12040 [00:43<00:37, 142.33it/s]
 56%|#####5    | 6685/12040 [00:43<00:33, 159.97it/s]
 56%|#####5    | 6707/12040 [00:43<00:30, 174.01it/s]
 56%|#####5    | 6727/12040 [00:43<00:39, 136.04it/s]
 56%|#####6    | 6749/12040 [00:43<00:34, 153.87it/s]
 56%|#####6    | 6767/12040 [00:43<00:42, 125.10it/s]
 56%|#####6    | 6790/12040 [00:44<00:36, 145.81it/s]
 57%|#####6    | 6813/12040 [00:44<00:32, 163.25it/s]
 57%|#####6    | 6836/12040 [00:44<00:29, 177.65it/s]
 57%|#####6    | 6859/12040 [00:44<00:27, 189.09it/s]
 57%|#####7    | 6880/12040 [00:44<00:35, 143.92it/s]
 57%|#####7    | 6903/12040 [00:44<00:31, 161.41it/s]
 58%|#####7    | 6926/12040 [00:44<00:29, 175.94it/s]
 58%|#####7    | 6948/12040 [00:45<00:36, 139.37it/s]
 58%|#####7    | 6969/12040 [00:45<00:33, 153.64it/s]
 58%|#####8    | 6991/12040 [00:45<00:29, 168.57it/s]
 58%|#####8    | 7011/12040 [00:45<00:37, 133.68it/s]
 58%|#####8    | 7033/12040 [00:45<00:33, 151.53it/s]
 59%|#####8    | 7054/12040 [00:45<00:30, 164.91it/s]
 59%|#####8    | 7073/12040 [00:45<00:37, 130.90it/s]
 59%|#####8    | 7095/12040 [00:46<00:33, 149.42it/s]
 59%|#####9    | 7117/12040 [00:46<00:29, 164.42it/s]
 59%|#####9    | 7140/12040 [00:46<00:27, 178.90it/s]
 59%|#####9    | 7163/12040 [00:46<00:25, 190.55it/s]
 60%|#####9    | 7184/12040 [00:46<00:33, 144.21it/s]
 60%|#####9    | 7207/12040 [00:46<00:29, 161.82it/s]
 60%|######    | 7230/12040 [00:46<00:27, 176.42it/s]
 60%|######    | 7250/12040 [00:47<00:34, 138.02it/s]
 60%|######    | 7273/12040 [00:47<00:30, 156.34it/s]
 61%|######    | 7295/12040 [00:47<00:27, 171.10it/s]
 61%|######    | 7315/12040 [00:47<00:35, 134.76it/s]
 61%|######    | 7338/12040 [00:47<00:30, 153.47it/s]
 61%|######1   | 7360/12040 [00:47<00:27, 168.64it/s]
 61%|######1   | 7380/12040 [00:47<00:34, 133.99it/s]
 61%|######1   | 7403/12040 [00:47<00:30, 153.18it/s]
 62%|######1   | 7426/12040 [00:48<00:27, 169.61it/s]
 62%|######1   | 7449/12040 [00:48<00:25, 182.96it/s]
 62%|######2   | 7470/12040 [00:48<00:32, 139.86it/s]
 62%|######2   | 7493/12040 [00:48<00:28, 157.83it/s]
 62%|######2   | 7516/12040 [00:48<00:26, 172.98it/s]
 63%|######2   | 7539/12040 [00:48<00:24, 185.32it/s]
 63%|######2   | 7560/12040 [00:48<00:31, 142.51it/s]
 63%|######2   | 7583/12040 [00:49<00:27, 159.87it/s]
 63%|######3   | 7605/12040 [00:49<00:25, 173.82it/s]
 63%|######3   | 7625/12040 [00:49<00:32, 135.90it/s]
 64%|######3   | 7648/12040 [00:49<00:28, 154.46it/s]
 64%|######3   | 7666/12040 [00:49<00:34, 125.45it/s]
 64%|######3   | 7689/12040 [00:49<00:29, 145.81it/s]
 64%|######4   | 7712/12040 [00:49<00:26, 163.43it/s]
 64%|######4   | 7735/12040 [00:50<00:24, 178.05it/s]
 64%|######4   | 7758/12040 [00:50<00:22, 189.27it/s]
 65%|######4   | 7779/12040 [00:50<00:29, 143.97it/s]
 65%|######4   | 7802/12040 [00:50<00:26, 161.38it/s]
 65%|######4   | 7825/12040 [00:50<00:23, 175.83it/s]
 65%|######5   | 7845/12040 [00:50<00:30, 137.95it/s]
 65%|######5   | 7867/12040 [00:50<00:26, 155.03it/s]
 66%|######5   | 7890/12040 [00:51<00:24, 170.87it/s]
 66%|######5   | 7910/12040 [00:51<00:30, 134.89it/s]
 66%|######5   | 7932/12040 [00:51<00:26, 152.81it/s]
 66%|######6   | 7954/12040 [00:51<00:24, 168.03it/s]
 66%|######6   | 7974/12040 [00:51<00:30, 133.41it/s]
 66%|######6   | 7992/12040 [00:51<00:28, 143.11it/s]
 67%|######6   | 8014/12040 [00:51<00:25, 160.52it/s]
 67%|######6   | 8034/12040 [00:51<00:23, 168.97it/s]
 67%|######6   | 8053/12040 [00:52<00:22, 173.74it/s]
 67%|######7   | 8072/12040 [00:52<00:29, 132.85it/s]
 67%|######7   | 8095/12040 [00:52<00:25, 153.11it/s]
 67%|######7   | 8117/12040 [00:52<00:23, 168.63it/s]
 68%|######7   | 8140/12040 [00:52<00:21, 182.21it/s]
 68%|######7   | 8160/12040 [00:52<00:27, 138.58it/s]
 68%|######7   | 8182/12040 [00:52<00:24, 156.29it/s]
 68%|######8   | 8204/12040 [00:53<00:22, 170.37it/s]
 68%|######8   | 8224/12040 [00:53<00:28, 133.01it/s]
 68%|######8   | 8246/12040 [00:53<00:25, 151.32it/s]
 69%|######8   | 8264/12040 [00:53<00:30, 123.43it/s]
 69%|######8   | 8287/12040 [00:53<00:26, 144.32it/s]
 69%|######9   | 8310/12040 [00:53<00:22, 162.32it/s]
 69%|######9   | 8333/12040 [00:53<00:20, 177.21it/s]
 69%|######9   | 8356/12040 [00:54<00:19, 188.99it/s]
 70%|######9   | 8377/12040 [00:54<00:25, 143.59it/s]
 70%|######9   | 8400/12040 [00:54<00:22, 161.01it/s]
 70%|######9   | 8423/12040 [00:54<00:20, 175.55it/s]
 70%|#######   | 8443/12040 [00:54<00:26, 137.78it/s]
 70%|#######   | 8465/12040 [00:54<00:23, 154.82it/s]
 70%|#######   | 8488/12040 [00:54<00:20, 170.70it/s]
 71%|#######   | 8508/12040 [00:55<00:26, 134.88it/s]
 71%|#######   | 8529/12040 [00:55<00:23, 150.67it/s]
 71%|#######1  | 8551/12040 [00:55<00:20, 166.70it/s]
 71%|#######1  | 8570/12040 [00:55<00:26, 131.92it/s]
 71%|#######1  | 8593/12040 [00:55<00:22, 151.70it/s]
 72%|#######1  | 8615/12040 [00:55<00:20, 166.31it/s]
 72%|#######1  | 8637/12040 [00:55<00:19, 178.18it/s]
 72%|#######1  | 8659/12040 [00:55<00:17, 188.17it/s]
 72%|#######2  | 8680/12040 [00:56<00:23, 142.55it/s]
 72%|#######2  | 8703/12040 [00:56<00:20, 160.40it/s]
 72%|#######2  | 8726/12040 [00:56<00:18, 175.25it/s]
 73%|#######2  | 8746/12040 [00:56<00:24, 137.09it/s]
 73%|#######2  | 8769/12040 [00:56<00:21, 155.42it/s]
 73%|#######3  | 8791/12040 [00:56<00:19, 170.06it/s]
 73%|#######3  | 8811/12040 [00:57<00:24, 134.51it/s]
 73%|#######3  | 8833/12040 [00:57<00:21, 152.59it/s]
 74%|#######3  | 8855/12040 [00:57<00:18, 168.05it/s]
 74%|#######3  | 8875/12040 [00:57<00:23, 133.29it/s]
 74%|#######3  | 8898/12040 [00:57<00:20, 152.65it/s]
 74%|#######4  | 8921/12040 [00:57<00:18, 169.09it/s]
 74%|#######4  | 8944/12040 [00:57<00:16, 182.53it/s]
 74%|#######4  | 8965/12040 [00:58<00:21, 140.43it/s]
 75%|#######4  | 8988/12040 [00:58<00:19, 158.13it/s]
 75%|#######4  | 9011/12040 [00:58<00:17, 173.16it/s]
 75%|#######5  | 9033/12040 [00:58<00:16, 184.75it/s]
 75%|#######5  | 9054/12040 [00:58<00:21, 141.88it/s]
 75%|#######5  | 9077/12040 [00:58<00:18, 159.52it/s]
 76%|#######5  | 9100/12040 [00:58<00:16, 174.28it/s]
 76%|#######5  | 9120/12040 [00:59<00:21, 136.66it/s]
 76%|#######5  | 9142/12040 [00:59<00:18, 154.31it/s]
 76%|#######6  | 9160/12040 [00:59<00:22, 125.35it/s]
 76%|#######6  | 9183/12040 [00:59<00:19, 145.69it/s]
 76%|#######6  | 9205/12040 [00:59<00:17, 161.50it/s]
 77%|#######6  | 9227/12040 [00:59<00:16, 175.03it/s]
 77%|#######6  | 9250/12040 [00:59<00:14, 187.35it/s]
 77%|#######7  | 9271/12040 [00:59<00:19, 142.67it/s]
 77%|#######7  | 9294/12040 [01:00<00:17, 160.27it/s]
 77%|#######7  | 9317/12040 [01:00<00:15, 173.91it/s]
 78%|#######7  | 9338/12040 [01:00<00:14, 182.72it/s]
 78%|#######7  | 9358/12040 [01:00<00:19, 139.95it/s]
 78%|#######7  | 9380/12040 [01:00<00:16, 157.45it/s]
 78%|#######8  | 9403/12040 [01:00<00:20, 130.67it/s]
 78%|#######8  | 9425/12040 [01:00<00:17, 148.23it/s]
 78%|#######8  | 9447/12040 [01:01<00:15, 164.13it/s]
 79%|#######8  | 9466/12040 [01:01<00:19, 131.06it/s]
 79%|#######8  | 9489/12040 [01:01<00:16, 150.63it/s]
 79%|#######9  | 9512/12040 [01:01<00:15, 167.30it/s]
 79%|#######9  | 9535/12040 [01:01<00:13, 181.01it/s]
 79%|#######9  | 9558/12040 [01:01<00:12, 191.99it/s]
 80%|#######9  | 9579/12040 [01:01<00:17, 142.40it/s]
 80%|#######9  | 9601/12040 [01:02<00:15, 158.60it/s]
 80%|#######9  | 9624/12040 [01:02<00:13, 173.62it/s]
 80%|########  | 9644/12040 [01:02<00:17, 136.20it/s]
 80%|########  | 9666/12040 [01:02<00:15, 153.93it/s]
 80%|########  | 9689/12040 [01:02<00:13, 169.88it/s]
 81%|########  | 9709/12040 [01:02<00:17, 133.21it/s]
 81%|########  | 9731/12040 [01:02<00:15, 151.39it/s]
 81%|########1 | 9753/12040 [01:03<00:13, 166.91it/s]
 81%|########1 | 9772/12040 [01:03<00:17, 129.21it/s]
 81%|########1 | 9794/12040 [01:03<00:15, 148.07it/s]
 82%|########1 | 9817/12040 [01:03<00:13, 165.24it/s]
 82%|########1 | 9840/12040 [01:03<00:12, 179.46it/s]
 82%|########1 | 9860/12040 [01:03<00:15, 138.81it/s]
 82%|########2 | 9882/12040 [01:03<00:13, 156.38it/s]
 82%|########2 | 9904/12040 [01:03<00:12, 171.36it/s]
 82%|########2 | 9927/12040 [01:04<00:11, 184.31it/s]
 83%|########2 | 9948/12040 [01:04<00:14, 140.18it/s]
 83%|########2 | 9970/12040 [01:04<00:13, 157.25it/s]
 83%|########2 | 9993/12040 [01:04<00:11, 172.52it/s]
 83%|########3 | 10013/12040 [01:04<00:14, 135.16it/s]
 83%|########3 | 10035/12040 [01:04<00:13, 153.05it/s]
 84%|########3 | 10054/12040 [01:05<00:15, 125.28it/s]
 84%|########3 | 10076/12040 [01:05<00:13, 144.30it/s]
 84%|########3 | 10099/12040 [01:05<00:11, 162.24it/s]
 84%|########4 | 10122/12040 [01:05<00:10, 176.84it/s]
 84%|########4 | 10145/12040 [01:05<00:10, 189.04it/s]
 84%|########4 | 10166/12040 [01:05<00:13, 144.09it/s]
 85%|########4 | 10189/12040 [01:05<00:11, 161.89it/s]
 85%|########4 | 10212/12040 [01:05<00:10, 176.88it/s]
 85%|########5 | 10235/12040 [01:06<00:09, 188.68it/s]
 85%|########5 | 10256/12040 [01:06<00:12, 143.74it/s]
 85%|########5 | 10279/12040 [01:06<00:10, 161.23it/s]
 86%|########5 | 10300/12040 [01:06<00:13, 131.96it/s]
 86%|########5 | 10322/12040 [01:06<00:11, 149.83it/s]
 86%|########5 | 10344/12040 [01:06<00:10, 164.58it/s]
 86%|########6 | 10363/12040 [01:07<00:12, 131.37it/s]
 86%|########6 | 10386/12040 [01:07<00:10, 150.89it/s]
 86%|########6 | 10408/12040 [01:07<00:09, 166.46it/s]
 87%|########6 | 10431/12040 [01:07<00:08, 180.90it/s]
 87%|########6 | 10454/12040 [01:07<00:08, 192.02it/s]
 87%|########7 | 10475/12040 [01:07<00:10, 145.50it/s]
 87%|########7 | 10498/12040 [01:07<00:09, 163.58it/s]
 87%|########7 | 10521/12040 [01:07<00:08, 178.78it/s]
 88%|########7 | 10541/12040 [01:08<00:10, 139.31it/s]
 88%|########7 | 10564/12040 [01:08<00:09, 157.84it/s]
 88%|########7 | 10587/12040 [01:08<00:08, 174.03it/s]
 88%|########8 | 10607/12040 [01:08<00:10, 137.01it/s]
 88%|########8 | 10630/12040 [01:08<00:09, 155.96it/s]
 88%|########8 | 10652/12040 [01:08<00:10, 130.17it/s]
 89%|########8 | 10675/12040 [01:08<00:09, 149.74it/s]
 89%|########8 | 10698/12040 [01:09<00:08, 167.27it/s]
 89%|########9 | 10721/12040 [01:09<00:07, 181.99it/s]
 89%|########9 | 10744/12040 [01:09<00:06, 193.64it/s]
 89%|########9 | 10765/12040 [01:09<00:08, 146.80it/s]
 90%|########9 | 10788/12040 [01:09<00:07, 164.58it/s]
 90%|########9 | 10809/12040 [01:09<00:07, 175.05it/s]
 90%|########9 | 10832/12040 [01:09<00:06, 187.91it/s]
 90%|######### | 10853/12040 [01:10<00:08, 143.77it/s]
 90%|######### | 10876/12040 [01:10<00:07, 161.52it/s]
 91%|######### | 10898/12040 [01:10<00:08, 132.92it/s]
 91%|######### | 10921/12040 [01:10<00:07, 151.73it/s]
 91%|######### | 10944/12040 [01:10<00:06, 168.55it/s]
 91%|#########1| 10964/12040 [01:10<00:07, 134.94it/s]
 91%|#########1| 10987/12040 [01:10<00:06, 154.60it/s]
 91%|#########1| 11010/12040 [01:11<00:06, 171.50it/s]
 92%|#########1| 11033/12040 [01:11<00:05, 185.53it/s]
 92%|#########1| 11054/12040 [01:11<00:06, 143.57it/s]
 92%|#########2| 11077/12040 [01:11<00:05, 161.11it/s]
 92%|#########2| 11100/12040 [01:11<00:05, 176.76it/s]
 92%|#########2| 11123/12040 [01:11<00:04, 189.46it/s]
 93%|#########2| 11144/12040 [01:11<00:06, 142.61it/s]
 93%|#########2| 11167/12040 [01:12<00:05, 160.22it/s]
 93%|#########2| 11190/12040 [01:12<00:04, 175.30it/s]
 93%|#########3| 11210/12040 [01:12<00:06, 137.73it/s]
 93%|#########3| 11233/12040 [01:12<00:05, 156.54it/s]
 93%|#########3| 11252/12040 [01:12<00:06, 126.73it/s]
 94%|#########3| 11268/12040 [01:12<00:06, 125.59it/s]
 94%|#########3| 11283/12040 [01:12<00:06, 125.74it/s]
 94%|#########3| 11297/12040 [01:13<00:05, 125.70it/s]
 94%|#########3| 11311/12040 [01:13<00:05, 126.22it/s]
 94%|#########4| 11325/12040 [01:13<00:05, 126.14it/s]
 94%|#########4| 11339/12040 [01:13<00:05, 128.87it/s]
 94%|#########4| 11353/12040 [01:13<00:06, 103.58it/s]
 94%|#########4| 11376/12040 [01:13<00:05, 132.01it/s]
 95%|#########4| 11399/12040 [01:13<00:04, 155.65it/s]
 95%|#########4| 11421/12040 [01:13<00:03, 171.80it/s]
 95%|#########5| 11440/12040 [01:14<00:04, 132.81it/s]
 95%|#########5| 11463/12040 [01:14<00:03, 153.78it/s]
 95%|#########5| 11486/12040 [01:14<00:03, 171.25it/s]
 96%|#########5| 11506/12040 [01:14<00:03, 134.71it/s]
 96%|#########5| 11529/12040 [01:14<00:03, 154.55it/s]
 96%|#########5| 11549/12040 [01:14<00:03, 127.40it/s]
 96%|#########6| 11567/12040 [01:14<00:03, 137.58it/s]
 96%|#########6| 11589/12040 [01:15<00:02, 156.20it/s]
 96%|#########6| 11611/12040 [01:15<00:02, 171.31it/s]
 97%|#########6| 11634/12040 [01:15<00:02, 185.30it/s]
 97%|#########6| 11654/12040 [01:15<00:02, 138.40it/s]
 97%|#########6| 11677/12040 [01:15<00:02, 157.41it/s]
 97%|#########7| 11699/12040 [01:15<00:01, 172.02it/s]
 97%|#########7| 11722/12040 [01:15<00:01, 185.25it/s]
 98%|#########7| 11743/12040 [01:16<00:02, 141.81it/s]
 98%|#########7| 11766/12040 [01:16<00:01, 160.24it/s]
 98%|#########7| 11789/12040 [01:16<00:01, 175.78it/s]
 98%|#########8| 11809/12040 [01:16<00:01, 136.99it/s]
 98%|#########8| 11832/12040 [01:16<00:01, 155.83it/s]
 98%|#########8| 11851/12040 [01:16<00:01, 127.29it/s]
 99%|#########8| 11874/12040 [01:16<00:01, 147.46it/s]
 99%|#########8| 11897/12040 [01:16<00:00, 165.50it/s]
 99%|#########9| 11920/12040 [01:17<00:00, 180.63it/s]
 99%|#########9| 11941/12040 [01:17<00:00, 186.03it/s]
 99%|#########9| 11962/12040 [01:17<00:00, 137.45it/s]
100%|#########9| 11984/12040 [01:17<00:00, 154.70it/s]
100%|#########9| 12006/12040 [01:17<00:00, 169.49it/s]
100%|#########9| 12029/12040 [01:17<00:00, 183.69it/s]
100%|##########| 12040/12040 [01:17<00:00, 154.47it/s]
Hits@1:   0.00 Filtered:   0.00
Hits@10:  0.00 Filtered:   0.00
Hits@100: 0.02 Filtered:   0.02
MR:       2820.77 Filtered: 2766.16
AUC:      0.53 Filtered:   0.54
Evaluation finished. Access the results using the "metrics" attribute.

Total running time of the script: ( 3 minutes 31.689 seconds)

Estimated memory usage: 3429 MB

Gallery generated by Sphinx-Gallery