Full Code of DeepGraphLearning/NBFNet for AI

master eb49ff2770d1 cached
23 files
620.1 KB
256.9k tokens
78 symbols
1 requests
Download .txt
Showing preview only (640K chars total). Download the full file or copy to clipboard to get everything.
Repository: DeepGraphLearning/NBFNet
Branch: master
Commit: eb49ff2770d1
Files: 23
Total size: 620.1 KB

Directory structure:
gitextract_671zkorr/

├── .gitignore
├── LICENSE
├── README.md
├── config/
│   ├── homogeneous_graph/
│   │   ├── citeseer.yaml
│   │   ├── cora.yaml
│   │   └── pubmed.yaml
│   ├── inductive/
│   │   ├── fb15k237.yaml
│   │   └── wn18rr.yaml
│   └── knowledge_graph/
│       ├── fb15k237.yaml
│       ├── fb15k237_visualize.yaml
│       ├── ogbl-biokg.yaml
│       ├── ogbl-biokg_test.yaml
│       └── wn18rr.yaml
├── data/
│   └── fb15k237_entity.txt
├── nbfnet/
│   ├── __init__.py
│   ├── dataset.py
│   ├── layer.py
│   ├── model.py
│   ├── task.py
│   └── util.py
├── requirements.txt
└── script/
    ├── run.py
    └── visualize.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# PyCharm
/.idea

# VS Code
/.vscode

# Python
__pycache__
*.pyc

# macOS
.DS_Store

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2021 MilaGraph

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

================================================
FILE: README.md
================================================
# NBFNet: Neural Bellman-Ford Networks #

This is the official codebase of the paper

[Neural Bellman-Ford Networks: A General Graph Neural Network Framework for Link Prediction][paper]

[Zhaocheng Zhu](https://kiddozhu.github.io),
[Zuobai Zhang](https://oxer11.github.io),
[Louis-Pascal Xhonneux](https://github.com/lpxhonneux),
[Jian Tang](https://jian-tang.com)

[paper]: https://arxiv.org/pdf/2106.06935.pdf

A PyG re-implementation of NBFNet can be found [here](https://github.com/KiddoZhu/NBFNet-PyG).

## Overview ##

NBFNet is a graph neural network framework inspired by traditional path-based
methods. It enjoys the advantages of both traditional path-based methods and modern
graph neural networks, including **generalization in the inductive setting**,
**interpretability**, **high model capacity** and **scalability**. NBFNet can be
applied to solve link prediction on both homogeneous graphs and knowledge graphs.

![NBFNet](asset/nbfnet.svg)

This codebase is based on PyTorch and [TorchDrug]. It supports training and inference
with multiple GPUs or multiple machines.

[TorchDrug]: https://github.com/DeepGraphLearning/torchdrug

## Installation ##

You may install the dependencies via either conda or pip. Generally, NBFNet works
with Python 3.7/3.8 and PyTorch version >= 1.8.0.

### From Conda ###

```bash
conda install torchdrug pytorch=1.8.2 cudatoolkit=11.1 -c milagraph -c pytorch-lts -c pyg -c conda-forge
conda install ogb easydict pyyaml -c conda-forge
```

### From Pip ###

```bash
pip install torch==1.8.2+cu111 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html
pip install torchdrug
pip install ogb easydict pyyaml
```

## Reproduction ##

To reproduce the results of NBFNet, use the following command. Alternatively, you
may use `--gpus null` to run NBFNet on a CPU. All the datasets will be automatically
downloaded in the code.

```bash
python script/run.py -c config/inductive/wn18rr.yaml --gpus [0] --version v1
```

We provide the hyperparameters for each experiment in configuration files.
All the configuration files can be found in `config/*/*.yaml`.

For experiments on inductive relation prediction, you need to additionally specify
the split version with `--version v1`.

To run NBFNet with multiple GPUs or multiple machines, use the following commands

```bash
python -m torch.distributed.launch --nproc_per_node=4 script/run.py -c config/inductive/wn18rr.yaml --gpus [0,1,2,3]
```

```bash
python -m torch.distributed.launch --nnodes=4 --nproc_per_node=4 script/run.py -c config/inductive/wn18rr.yaml --gpus [0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3]
```

### Visualize Interpretations on FB15k-237 ###

Once you have models trained on FB15k237, you can visualize the path interpretations
with the following line. Please replace the checkpoint with your own path.

```bash
python script/visualize.py -c config/knowledge_graph/fb15k237_visualize.yaml --checkpoint /path/to/nbfnet/experiment/model_epoch_20.pth
```

### Evaluate ogbl-biokg ###

Due to the large size of ogbl-biokg, we only evaluate on a small portion of the
validation set during training. The following line evaluates a model on the full
validation / test sets of ogbl-biokg. Please replace the checkpoint with your own
path.

```bash
python script/run.py -c config/knowledge_graph/ogbl-biokg_test.yaml --checkpoint /path/to/nbfnet/experiment/model_epoch_10.pth
```

## Results ##

Here are the results of NBFNet on standard benchmark datasets. All the results are
obtained with 4 V100 GPUs (32GB). Note results may be slightly different if the
model is trained with 1 GPU and/or a smaller batch size.

### Knowledge Graph Completion ###

<table>
    <tr>
        <th>Dataset</th>
        <th>MR</th>
        <th>MRR</th>
        <th>HITS@1</th>
        <th>HITS@3</th>
        <th>HITS@10</th>
    </tr>
    <tr>
        <th>FB15k-237</th>
        <td>114</td>
        <td>0.415</td>
        <td>0.321</td>
        <td>0.454</td>
        <td>0.599</td>
    </tr>
    <tr>
        <th>WN18RR</th>
        <td>636</td>
        <td>0.551</td>
        <td>0.497</td>
        <td>0.573</td>
        <td>0.666</td>
    </tr>
    <tr>
        <th>ogbl-biokg</th>
        <td>-</td>
        <td>0.829</td>
        <td>0.768</td>
        <td>0.870</td>
        <td>0.946</td>
    </tr>
</table>

### Homogeneous Graph Link Prediction ###

<table>
    <tr>
        <th>Dataset</th>
        <th>AUROC</th>
        <th>AP</th>
    </tr>
    <tr>
        <th>Cora</th>
        <td>0.956</td>
        <td>0.962</td>
    </tr>
    <tr>
        <th>CiteSeer</th>
        <td>0.923</td>
        <td>0.936</td>
    </tr>
    <tr>
        <th>PubMed</th>
        <td>0.983</td>
        <td>0.982</td>
    </tr>
</table>

### Inductive Relation Prediction ###

<table>
    <tr>
        <th rowspan="2">Dataset</th>
        <th colspan="4">HITS@10 (50 sample)</th>
    </tr>
    <tr>
        <th>v1</th>
        <th>v2</th>
        <th>v3</th>
        <th>v4</th>
    </tr>
    <tr>
        <th>FB15k-237</th>
        <td>0.834</td>
        <td>0.949</td>
        <td>0.951</td>
        <td>0.960</td>
    </tr>
    <tr>
        <th>WN18RR</th>
        <td>0.948</td>
        <td>0.905</td>
        <td>0.893</td>
        <td>0.890</td>
    </tr>
</table>

Frequently Asked Questions
--------------------------

1. **The code is stuck at the beginning of epoch 0.**

   This is probably because the JIT cache is broken.
   Try `rm -r ~/.cache/torch_extensions/*` and run the code again.

Citation
--------

If you find this codebase useful in your research, please cite the following paper.

```bibtex
@article{zhu2021neural,
  title={Neural bellman-ford networks: A general graph neural network framework for link prediction},
  author={Zhu, Zhaocheng and Zhang, Zuobai and Xhonneux, Louis-Pascal and Tang, Jian},
  journal={Advances in Neural Information Processing Systems},
  volume={34},
  year={2021}
}
```


================================================
FILE: config/homogeneous_graph/citeseer.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: CiteSeerLinkPrediction
  path: ~/datasets/homogeneous_graphs/

task:
  class: LinkPrediction
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: no
    remove_one_hop: yes
    symmetric: yes
  criterion: bce
  num_negative: 1
  strict_negative: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 64

train:
  num_epoch: 20

metric: auroc

================================================
FILE: config/homogeneous_graph/cora.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: CoraLinkPrediction
  path: ~/datasets/homogeneous_graphs/

task:
  class: LinkPrediction
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: no
    remove_one_hop: yes
    symmetric: yes
  criterion: bce
  num_negative: 1
  strict_negative: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 64

train:
  num_epoch: 20

metric: auroc

================================================
FILE: config/homogeneous_graph/pubmed.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: PubMedLinkPrediction
  path: ~/datasets/homogeneous_graphs/

task:
  class: LinkPrediction
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: no
    remove_one_hop: yes
    symmetric: yes
  criterion: bce
  num_negative: 1
  strict_negative: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 16

train:
  num_epoch: 10

metric: auroc

================================================
FILE: config/inductive/fb15k237.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: FB15k237Inductive
  path: ~/datasets/knowledge_graphs/
  version: {{ version }}

task:
  class: InductiveKnowledgeGraphCompletion
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: yes
    remove_one_hop: yes
  criterion: bce
  num_negative: 32
  strict_negative: yes
  adversarial_temperature: 0.5
  sample_weight: no
  full_batch_eval: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 64

train:
  num_epoch: 20

metric: mrr

================================================
FILE: config/inductive/wn18rr.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: WN18RRInductive
  path: ~/datasets/knowledge_graphs/
  version: {{ version }}

task:
  class: InductiveKnowledgeGraphCompletion
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: no
  criterion: bce
  num_negative: 32
  strict_negative: yes
  adversarial_temperature: 1
  sample_weight: no
  full_batch_eval: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 32

train:
  num_epoch: 20

metric: mrr

================================================
FILE: config/knowledge_graph/fb15k237.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: FB15k237
  path: ~/datasets/knowledge_graphs/

task:
  class: KnowledgeGraphCompletion
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: yes
    remove_one_hop: yes
  criterion: bce
  num_negative: 32
  strict_negative: yes
  adversarial_temperature: 0.5
  sample_weight: no
  full_batch_eval: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 64

train:
  num_epoch: 20

metric: mrr

================================================
FILE: config/knowledge_graph/fb15k237_visualize.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: FB15k237
  path: ~/datasets/knowledge_graphs/

task:
  class: KnowledgeGraphCompletion
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: yes
    remove_one_hop: yes
  criterion: bce
  num_negative: 32
  strict_negative: yes
  adversarial_temperature: 0.5
  sample_weight: no
  full_batch_eval: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: [0]
  batch_size: 64

checkpoint: {{ checkpoint }}

metric: mrr

================================================
FILE: config/knowledge_graph/ogbl-biokg.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: OGBLBioKG
  path: ~/datasets/knowledge_graphs/

task:
  class: KnowledgeGraphCompletionOGB
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: yes
    remove_one_hop: yes
  criterion: bce
  evaluator:
    class: Evaluator
    name: ogbl-biokg
  num_negative: 32
  strict_negative: yes
  heterogeneous_negative: yes
  adversarial_temperature: 0.5
  sample_weight: no

optimizer:
  class: Adam
  lr: 2.0e-4

engine:
  gpus: {{ gpus }}
  batch_size: 8
  log_interval: 10

train:
  num_epoch: 10
  batch_per_epoch: 200

metric: mrr
fast_test: 1000

================================================
FILE: config/knowledge_graph/ogbl-biokg_test.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: OGBLBioKG
  path: ~/datasets/knowledge_graphs/

task:
  class: KnowledgeGraphCompletionOGB
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: yes
    remove_one_hop: yes
  criterion: bce
  evaluator:
    class: Evaluator
    name: ogbl-biokg
  num_negative: 32
  strict_negative: yes
  heterogeneous_negative: yes
  adversarial_temperature: 0.5
  sample_weight: no

optimizer:
  class: Adam
  lr: 2.0e-4

engine:
  gpus: {{ gpus }}
  batch_size: 32
  log_interval: 10

train:
  num_epoch: 0
  batch_per_epoch: 200

checkpoint: {{ checkpoint }}
metric: mrr

================================================
FILE: config/knowledge_graph/wn18rr.yaml
================================================
output_dir: ~/experiments/

dataset:
  class: WN18RR
  path: ~/datasets/knowledge_graphs/

task:
  class: KnowledgeGraphCompletion
  model:
    class: NBFNet
    input_dim: 32
    hidden_dims: [32, 32, 32, 32, 32, 32]
    message_func: distmult
    aggregate_func: pna
    short_cut: yes
    layer_norm: yes
    dependent: no
  criterion: bce
  num_negative: 32
  strict_negative: yes
  adversarial_temperature: 1
  sample_weight: no
  full_batch_eval: yes

optimizer:
  class: Adam
  lr: 5.0e-3

engine:
  gpus: {{ gpus }}
  batch_size: 32

train:
  num_epoch: 20

metric: mrr

================================================
FILE: data/fb15k237_entity.txt
================================================
/m/027rn	languages of dominican republic (Q786)
/m/06cx9	republic (government) (Q7270)
/m/017dcd	rangers in reverse (Q513809)
/m/06v8s0	elyse floyd (Q2642437)
/m/07s9rl0	drama movie (Q130232)
/m/0170z3	danny vinyard (Q208572)
/m/01sl1q	michelle rodríguez (Q184219)
/m/044mz_	naveen andrews (Q208374)
/m/0cnk2q	australia national soccer team (Q268208)
/m/02nzb8	right winger (football) (Q193592)
/m/04nrcg	mdv (Q387312)
/m/02sdk9v	outside forward (Q280658)
/m/07nznf	bryan singer/comments (Q220751)
/m/014lc_	star trek 11 (cancelled film) (Q388319)
/m/02qyp19	bafta award for best original screenplay 1983–1999 (Q41375)
/m/02d413	philadelphia (film) (Q204057)
/m/0q9kd	daniel michael devito jr. (Q26806)
/m/0184jc	guy pearce (Q223745)
/m/03q5t	harpischord (Q81982)
/m/07y_7	violin tuning (Q8355)
/m/0gqng	academy award for best foreign language film (Q105304)
/m/073hkh	61th academy awards (Q924339)
/m/0b76d_m	anonymous (film) (Q313819)
/m/029j_	dual layer (Q5294)
/m/014_x2	city of angels (film) (Q168010)
/m/012ljv	gabriel yared (Q502957)
/m/0ds35l9	bridesmaids (2011 film) (Q837264)
/m/05r4w	republica portuguesa (Q45)
/m/015qsq	serpico (film) (Q657079)
/m/02bjrlw	history of the italian language (Q652)
/m/04bdxl	catherine keener (Q230378)
/m/02s2ft	chris cooper (actor) (Q273208)
/m/09c7w0	usofa (Q30)
/m/0rs6x	saint augustine (fl) (Q487988)
/m/079vf	stanley lee (Q181900)
/m/0d90m	x-men i (Q106182)
/m/015zyd	los angeles conservatory of music (Q1026827)
/m/05vsxz	chiwetel ejiofor (Q317343)
/m/06qgvf	carla gugino (Q228871)
/m/04ljl_l	golden raspberry award for worst supporting actor - motion picture (Q641316)
/m/03qcfvw	g.i. joe: rise of cobra (film) (Q288645)
/m/0grwj	oprah winfery (Q55800)
/m/05sxg2	theatre producer (Q1759246)
/m/0rh6k	district of columbia county, dc (Q61)
/m/01lp8	kristendom (Q5043)
/m/05d7rk	saeed jaffery (Q979990)
/m/027dtxw	bafta award for best supporting actor 2010-2034 (Q548389)
/m/05hs4r	heartland rock (Q747717)
/m/01pbxb	bob seger & the silver bullet band (Q364131)
/m/03qcq	hunter s thomson (Q219780)
/m/084w8	faulkner william (Q38392)
/m/01lxd4	avant-garde jazz (Q790188)
/m/0f0y8	jowcol music (Q7346)
/m/08815	yale model united nations (Q49112)
/m/05bnp0	james franco (Q306403)
/m/0g56t9t	frankenweenie (full-length) (Q1051023)
/m/0160w	greater bahamas (Q778)
/m/02vk52z	world bank publications (Q7164)
/m/0dbpyd	burnett, alan (Q360036)
/m/053y0s	boat drunks (Q862359)
/m/0dz3r	list of record producers (Q183945)
/m/016qtt	bill ray cyrus (Q231259)
/m/08mbj5d	/m/08mbj5d
/m/09sh8k	fantastic four (2007 film) (Q390063)
/m/09zzb8	make-up artist (Q935666)
/m/05pd94v	2010 grammies (Q1349100)
/m/01vvydl	dr.dre (Q6078)
/m/0gtsx8c	american pie 4 (Q303040)
/m/0jgd	argentinia (Q414)
/m/02r0csl	bafta award for best makeup (Q918617)
/m/0m313	viola de lesseps (Q182944)
/m/02y_lrp	love guru (Q656664)
/m/012d40	yuan-lou chen (Q36970)
/m/034qmv	around the world in 80 days (2004 film) (Q156519)
/m/07rlg	triathlon (Q10980)
/m/0b90_r	republica de méxico (Q96)
/m/0g22z	wall street 1 (Q332348)
/m/05b4l5x	golden raspberry award for worst supporting actress (Q977915)
/m/018js4	lieutenant pete mitchell (Q110138)
/m/07fq1y	rosemary ann harris (Q234195)
/m/02qgqt	phillip seymour hofman (Q180560)
/m/028q6	dave brubeck (Q108597)
/m/02581q	/m/02581q
/m/0sxg4	the dresser (1983 film) (Q620731)
/m/04xvlr	costume drama (Q7168625)
/m/0fvf9q	scott rudin productions (Q461529)
/m/0l6qt	saga louts (Q654730)
/m/0jz9f	miriam weinstein (Q465449)
/m/083shs	the cider house rules (film) (film) (Q648977)
/m/0njvn	berrien county, michigan (Q167656)
/m/09nqf	currency of the united states (Q4917)
/m/0d1tm	three-day event (Q838781)
/m/0154j	belgium (Q31)
/m/01br2w	making of the passion of the christ (Q51668)
/m/03rl1g	thirty-second congress (Q4635114)
/m/05kkh	geography of ohio (Q1397)
/m/0fbq2n	/m/0fbq2n
/m/01r3hr	scat back (Q912985)
/m/060bp	list of prime ministers and premiers (Q14212)
/m/027nb	iso 3166-1:dm (Q784)
/m/04qvl7	roger deakins (Q460277)
/m/02vxq9m	/m/02vxq9m
/m/04yywz	burt young (Q329700)
/m/0140g4	george washington duke (rocky v) (Q82949)
/m/01k7d9	h.r. walston (Q692800)
/m/0k049	history of beverly hills, california (Q127856)
/m/02p65p	donald frank "don" cheadle (Q272019)
/m/0337vz	larenz tate (Q1805906)
/m/06688p	john barrowman (Q24632)
/m/0b2v79	the untouchables (film) (Q108525)
/m/01c0cc	technische hochschule berlin-charlottenburg (Q51985)
/m/01jc6q	cabaret (1972 movie) (Q918363)
/m/040njc	bafta award for best film (Q139184)
/m/0520r2x	richard day (art director) (Q1247808)
/m/0cb77r	little, thomas (Q505353)
/m/06j0md	charles/burrows/charles productions (Q3050241)
/m/01453	a.c.f. fiorentina (Q2052)
/m/0dgrmp	/m/0dgrmp
/m/028_yv	c'era una volta in america (Q206388)
/m/03rjj	🇮🇹 (Q38)
/m/01914	parks in beijing (Q956)
/m/05_6_y	david healy's international goals and caps (Q313617)
/m/02b15h	doncaster rovers fc (Q19589)
/m/03c7ln	jay bennett (Q5570613)
/m/026t6	sound of a drum (Q11404)
/m/02pprs	alto sax (Q445275)
/m/07s3vqk	my world (ray charles album) (Q544387)
/m/05zjtn4	north texas state college (Q860527)
/m/0197tq	geetali norah jones shankar (Q549981)
/m/02_fm2	morph (disney character) (Q392530)
/m/0411q	1 bourbon, 1 scotch, 1 beer (Q44570)
/m/016z4k	singer songwriters (Q488205)
/m/06151l	freddy rodríguez (actor) (Q362697)
/m/06gp3f	justina machado (Q270382)
/m/01fq7	battle creek's field of flight entertainment festival (Q810998)
/m/06w99h3	rango the videogame (Q275432)
/m/02kdv5l	action comedy film (Q188473)
/m/05cljf	kieth urban (Q315547)
/m/0342h	guitar history (Q6607)
/m/0l14qv	envelope (music) (Q163829)
/m/02bfmn	brad claude dourif (Q329734)
/m/05zppz	/m/05zppz
/m/01rk91	unpaid internship (Q6500754)
/m/0kc6x	espn hd (Q217776)
/m/01xdf5	evelyn mcgee (Q212886)
/m/04t2l2	steve carrell (Q216221)
/m/027qgy	my big fat greek wedding 1 (Q525415)
/m/06cvj	comedy-romance (Q860626)
/m/02v8kmz	bulworth (Q576505)
/m/01j5ts	angellica huston (Q190998)
/m/06_kh	garfield elementary school (santa monica, california) (Q47164)
/m/0dwl2	valve co (Q193559)
/m/01mw1	/m/01mw1
/m/02wh75	grammy award for best rock song (Q282636)
/m/0lbj1	gordon matthew thomas sumner (Q483203)
/m/0c3ybss	insidious: chapter 1 (Q122713)
/m/01l1b90	tyrese gibson (Q311232)
/m/02vp1f_	quest for fire (film) (Q451196)
/m/03_3d	ja (Q17)
/m/09m6kg	a beautiful mind (movie) (Q164103)
/m/02h40lc	english vernacular (Q1860)
/m/05bp8g	shiozawa kaneto (Q2447488)
/m/047q2k1	viru sahastrabuddhe (Q229633)
/m/05p553	comedy movies (Q157443)
/m/01ypc	cincincatti reds (Q826751)
/m/02dwn9	starting pitcher (Q772148)
/m/06dv3	thirty odd foot of grunts (Q129817)
/m/01rtm4	sarah lawrence college: campus (Q1051840)
/m/02rchht	jon avnet (Q939079)
/m/0dq3c	executive vice-president (Q42178)
/m/02zs4	drive one (Q44294)
/m/0qcr0	cancer (medicine) (Q12078)
/m/0byfz	laurence, baron olivier of brighton olivier (Q55245)
/m/06wzvr	can't stop the music (Q1755578)
/m/01q03	so bad it's good (Q219557)
/m/01qn7n	ocnavigation (Q194427)
/m/0cnl80	phyllis smith (Q508280)
/m/083chw	rainn dietrich wilson (Q349548)
/m/0qf43	footer films danny boyle (Q134867)
/m/0f_nbyh	/m/0f_nbyh
/m/0c0yh4	sunshine (1999 film) (Q173804)
/m/0d060g	current events/canada/archive-box (Q16)
/m/03g90h	babylon 5: the gathering (Q3494438)
/m/02_n3z	/m/02_n3z
/m/06cqb	reggae (jamaican) (Q9794)
/m/0827d	world-music (Q205049)
/m/014zcr	george klooney (Q23844)
/m/05m63c	krista allen-moritt (Q240436)
/m/0yyg4	mississipi burning (Q918367)
/m/027c924	national board of review award for best director (Q696998)
/m/0h3y	ad-dīmuqrāṭīyah ash-sha’bīyah (Q262)
/m/0rtv	algiers, algeria (Q3561)
/m/090s_0	gulliver's travels (television) (Q1422237)
/m/0h0jz	peter o' toole (Q103876)
/m/01kyvx	japanese voice actress (Q622807)
/m/0ckr7s	pretty soldier sailor moon r the movie (Q636444)
/m/05ztjjw	mtv movie award for movie of the year (Q540977)
/m/01gc7	mad stephen (Q162729)
/m/01vw87c	john bongiovi junior (Q150916)
/m/01gbcf	math punk (Q1132152)
/m/016clz	alternativerock (Q11366)
/m/011yrp	la vita è bella (Q19355)
/m/0d0vqn	swedish climate (Q34)
/m/049tjg	charles van dell johnson (Q436638)
/m/05jf85	the purple rose of cairo(film-within-film) (Q912729)
/m/04t36	film musical (Q842256)
/m/011yxg	/m/011yxg
/m/0t015	history of iowa city, iowa (Q487977)
/m/0j1z8	united arabian emirates (Q878)
/m/07t65	un.int (Q1065)
/m/02sgy	solid body guitar (Q78987)
/m/0l14md	percussive music (Q133163)
/m/05r5c	piano keys (Q5994)
/m/0c9d9	jean michel jarre (Q104326)
/m/02g8h	dennis leary (Q310283)
/m/01d_h8	film producer (Q3282637)
/m/0n5j_	bergen county (Q112915)
/m/0fm9_	history of rockland county, new york (Q111098)
/m/04cy8rb	conrad buff iv (Q1126713)
/m/07gp9	sp33dyphil/my sandbox 4 (Q170564)
/m/081pw	books/world war ii (Q362)
/m/0gzy02	the guns of navarone (film) (Q756882)
/m/05g8ky	josh schwartz (Q728217)
/m/01jssp	pittsburgh university (Q235034)
/m/01l849	antique gold (Q208045)
/m/0f4y_	delaware county, ny (Q115289)
/m/059rby	ny (Q1384)
/m/03x3qv	josh malina (Q60422)
/m/0g60z	qumar (Q3577037)
/m/0d_84	val kilmer filmography (Q191084)
/m/01hr1	batman/batman forever (Q221345)
/m/042l3v	herbert ross (Q711415)
/m/026mg3	/m/026mg3
/m/01s695	grammy awards 2000 (Q1542319)
/m/0gx1bnj	seeking a friend (Q759448)
/m/04gzd	lietuva (Q37)
/m/060c4	presidential (Q30461)
/m/04wlz2	william r. harvey (Q1797817)
/m/01gxqf	silkmen (Q18521)
/m/09xbpt	oceans thirteen actress (Q635632)
/m/05f4m9q	golden raspberry award for worst director (2001-2020) (Q1238714)
/m/08lr6s	the scarlet letter (1995 film) (Q617942)
/m/0hl3d	pierre louis boulez (Q156193)
/m/0cbd2	wortschätzer (Q36180)
/m/0495ys	/m/0495ys
/m/05l2z4	/m/05l2z4
/m/018wrk	1904 st. louis olympics (Q8098)
/m/02bkg	diving (Q7735)
/m/0h5f5n	peter morgan's 'blair trilogy' (Q948122)
/m/04jpl	london, england, uk (Q84)
/m/047gn4y	the prince of persia: the sands of time movie (Q245172)
/m/05ty4m	jud appatow (Q325396)
/m/0bvn25	knocked up (film) (Q222800)
/m/01vrx3g	levon helm's rco all stars (Q356986)
/m/01lmj3q	ricky skagg (Q1347095)
/m/01wbg84	steve bushemi (Q104061)
/m/01r42_g	jamie-lynn sigler (Q234715)
/m/0ddfwj1	submarine (2011) (Q260509)
/m/02wkmx	palm d'or (Q179808)
/m/02vxn	wikiportal/film (Q11424)
/m/05cj4r	eileen june atkins (Q269835)
/m/0bfvw2	Q1276100
/m/023tp8	patricia t. arquette (Q215976)
/m/0dq626	holes (2003 film) (Q967018)
/m/07sbbz2	rock 'n roll (Q7749)
/m/089tm	lanier greig (Q136591)
/m/0m2wm	claudia shiffer (Q76717)
/m/02zq43	thomas brodie-sangster (Q312531)
/m/086k8	warnerbros (Q126399)
/m/0czyxs	watchmen (movie) (Q162182)
/m/03hkv_r	/m/03hkv_r
/m/0ds3t5x	'' the help '' (Q204374)
/m/02896	uniforms and logos of the dallas cowboys (Q204862)
/m/05krk	traditions of the ohio state university (Q309331)
/m/0chghy	australia (commonwealth) (Q408)
/m/0l6vl	1980 moscow olympics (Q8450)
/m/0dnvn3	the lady killers (2004 film) (Q83739)
/m/07zrf	iso 639:vi (Q9199)
/m/016fyc	fred fenster (Q132351)
/m/01qscs	benecio del toro (Q193668)
/m/01p7yb	frances macdormand (Q204299)
/m/0p_pd	bill murray (Q29250)
/m/0bl2g	dustin lee hoffman (Q42930)
/m/0prfz	schreiber, liev (Q298368)
/m/01q_ph	owen cunningham wilson (Q161916)
/m/05zr6wv	mtv movie award for best on-screen team (Q4220900)
/m/0cjk9	ukrainska mova (Q8798)
/m/047lj	kazakh eli (Q232)
/m/0s3y5	history of urbana, illinois (Q462184)
/m/09fb5	jack nicholson movies (Q39792)
/m/07xtqq	one flew over the cuckoo's nest (film) (Q171669)
/m/01k1k4	austin powers, the spy who shagged me (Q487978)
/m/0gtv7pk	resident evil: retribution 3d (Q83542)
/m/01ls2	united states of colombia (Q739)
/m/02rbdlq	/m/02rbdlq
/m/0l8v5	neve adrianne campbell (Q193482)
/m/095zlp	the hours (film) (Q157044)
/m/03ckxdg	/m/03ckxdg
/m/02_1q9	another world in american television listings (Q1030713)
/m/09n48	2002 olympics (Q9668)
/m/020qr4	metarex (Q428130)
/m/03_r3	jamica (Q766)
/m/02lq67	bronze medals (Q873364)
/m/0dtw1x	the aristocrats (film) (Q3281221)
/m/01yznp	penn gilette (Q4129653)
/m/01tvz5j	maria elana bello (Q229220)
/m/03rs8y	eriq ki la salle (Q532944)
/m/0h1cdwq	alvin and the chipmunks 3 (Q303678)
/m/03rt9	the twenty-six counties (Q27)
/m/0m2kd	teddy duchamp (Q494722)
/m/042v_gx	acoustic guitar amplification (Q31561)
/m/025cbm	clavinette (Q1099153)
/m/025h4z	judd hirsch (Q365023)
/m/0bp_b2	primetime emmy award for outstanding guest actor – drama series (Q2604800)
/m/032xhg	jason k. bateman (Q284636)
/m/034qrh	american dodgeball association of america (Q908473)
/m/050023	/m/050023
/m/026dcvf	/m/026dcvf
/m/023rwm	roadrunner records artists (Q18628)
/m/01t_xp_	rush abc: live from cleveland’s agora ballroom 1974 (Q203871)
/m/01dw4q	terihatcher (Q181490)
/m/02qjj7	angry dragon entertainment (Q313788)
/m/0436f4	vinnie pastore (Q512986)
/m/02lfcm	imperioli (Q317358)
/m/03v1s	transportation in indiana (Q1415)
/m/0plyy	terre-haute (Q492478)
/m/0z4s	anthony hopkins/comments (Q65932)
/m/099jhq	bfca critics' choice award for best supporting actor (Q922348)
/m/0sx7r	1992 albertville olympics (Q9660)
/m/03tmr	women's ice hockey (Q41466)
/m/02j9z	the old continent (Q46)
/m/05qhw	🇵🇱 (Q36)
/m/0h1_w	frederic march (Q181819)
/m/0789_m	tony award for best performance by a leading actor in a play (Q1445521)
/m/054_mz	lawrence bender (Q514913)
/m/0fp_v1x	klark kent singles discography (Q315711)
/m/09bjv	um el khatib (Q3820)
/m/05zkcn5	mtv movie award for best musical moment (Q820046)
/m/03mh94	loretta (robots) (Q756238)
/m/05vsb7	2005 national football league draft (Q3714948)
/m/01pl14	lsu (Q1521725)
/m/0dckvs	election ii (Q2255525)
/m/02r96rf	visual effects supervisor (Q8311)
/m/0223bl	crystal palace f.c. reserves (Q19467)
/m/02vx4	fútbol (Q2736)
/m/0clfdj	7th critics' choice awards (Q2818384)
/m/09fqtq	james wilby (Q652715)
/m/0m0jc	electronica (Q817138)
/m/01pfr3	garbage band (Q485673)
/m/07w21	ursual k. le guin (Q181659)
/m/041h0	john r.r. tolkien (Q892)
/m/01rrwf6	billy west (voice actor) (Q531624)
/m/02dtg	detroit (mi) (Q12439)
/m/052nd	mcgill athletics (Q201492)
/m/015pdg	southern rock (Q852767)
/m/0m2l9	niel young (Q633)
/m/0gq_v	best art direction-set decoration, black-and-white (Q277751)
/m/0ds11z	sweeney todd soundtrack (Q212041)
/m/02rjjll	2008 grammy (Q1518357)
/m/032nwy	michael brecker discography (Q347023)
/m/0159h6	ms. emma thompson (Q168724)
/m/0h5g_	neeson, liam (Q58444)
/m/04rs03	siyasat (Q2347152)
/m/0flw86	/m/0flw86
/m/080dwhx	boardwalk empire (Q585758)
/m/03w1v2	michael pitt (Q352540)
/m/0c4f4	hellen hunt (Q170574)
/m/0bxtg	thomas jeffrey "tom" hanks (Q2263)
/m/0fd3y	proto-ambient (Q193207)
/m/0m19t	numb (portishead song) (Q191352)
/m/04v8x9	ben hur (Q180098)
/m/0p9sw	best sound, recording (Q830079)
/m/087c7	newfield it (Q152433)
/m/01tlmw	norwalk (connecticut) (Q54217)
/m/0g5qs2k	snow white and the huntsman (Q624603)
/m/03_d0	jazz music (Q8341)
/m/026ps1	diana krall plaza (Q155879)
/m/02g3v6	saturn award for best costume design (Q971008)
/m/0ds33	armageddon (1998 film) (Q208344)
/m/04wqr	norma jean baker mortenson (Q4616)
/m/0chsq	charleston heston (Q80739)
/m/0dscrwf	the vow (2012 film) (Q522389)
/m/07ssc	uk of gb and ni (Q145)
/m/01rr9f	courtney cox-arquette (Q58912)
/m/02zsn	femaleness (Q43445)
/m/058ncz	jesse metcalfe (Q317740)
/m/03zqc1	felicity k huffman (Q190519)
/m/016z5x	chaplin (movie) (Q556967)
/m/07f8wg	mario kassar (Q1385214)
/m/01dys	skiskyting (Q166788)
/m/0147dk	will smif (Q40096)
/m/01h7bb	the last samurai (Q207130)
/m/06cv1	robert anthony rodríguez (Q47284)
/m/02jknp	movie direction (Q2526255)
/m/017149	edward allen harris (Q104791)
/m/05hj0n	kathleen quinlan (Q236696)
/m/04lgymt	/m/04lgymt
/m/02g3gj	best dance recording (Q740968)
/m/0lhp1	real saragossa (Q10308)
/m/02_j1w	leftwingback (Q336286)
/m/06cs95	into the west (mini-series) (Q1671533)
/m/02nb2s	mathew modine (Q318249)
/m/0gq6s3	goya award for best original screenplay (Q2634446)
/m/04nl83	sea inside (Q593615)
/m/02rgz4	hisaishi joe (Q275900)
/m/018jk2	jp-20 (Q127877)
/m/0gkvb7	individual performance in a variety or music program (Q4377021)
/m/03f2_rc	barbera striesand (Q4636)
/m/07lmxq	miguel sandoval (Q935122)
/m/06jzh	robin wright (Q272972)
/m/017s11	columbia pictures (Q186941)
/m/0djb3vw	restless (2011 film) (Q1782383)
/m/01ty7ll	elizabeth ruth grable (Q233852)
/m/033hqf	george raft (Q436187)
/m/04bs3j	sarah silverman (Q229013)
/m/01j_9c	university of iowa at iowa city (Q182973)
/m/02mslq	sanborn, david (Q178112)
/m/014x77	rachel weiss (Q134077)
/m/01ln5z	the mummy (1999 movie) (Q202508)
/m/05v8c	philippines republic (Q928)
/m/02j71	globe (earth) (Q2)
/m/0n4m5	buncombe county, nc (Q504360)
/m/0ydpd	norwood park, asheville, nc (Q648501)
/m/02211by	chief scientist (title) (Q5287861)
/m/01c6k4	avid (company) (Q385452)
/m/0c1pj	melvin gibson (Q42229)
/m/03h_yy	/m/03h_yy
/m/0151ns	mila jovović (Q170576)
/m/05p1tzf	the hangover (film) (Q219315)
/m/0f830f	robert clohessy (Q2126049)
/m/027dtv3	jack alexander huston (Q1190693)
/m/01nqfh_	tyler, brian (Q251144)
/m/01c8w0	orchestra conductors (Q6989196)
/m/01wl38s	nick edward cave (Q192668)
/m/04ztj	bonds of matrimony (Q8445)
/m/01d38g	/m/01d38g
/m/06cc_1	michael mcdonald (singer) (Q282002)
/m/07c6l	valve trombonist (Q8350)
/m/060v34	house of wax (2005 film) (Q679679)
/m/03npn	Q193606
/m/0bth54	dr. grace augustine (Q24871)
/m/016tt2	fox 2000 (Q434841)
/m/040vk98	locus award for best sf novel (Q2576795)
/m/01zkxv	on her majesty's occult service (Q345249)
/m/0cb4j	santa ana-anaheim-irvine, california (Q5925)
/m/01fpvz	articles for creation/yale banner (Q2599077)
/m/05m_8	athletics (Q504339)
/m/06pwq	faculty authoring development program and courseware authoring tools project (Q41506)
/m/01sxly	otto west (Q466186)
/m/015fr	barzil (Q155)
/m/0l98s	1972 summer olympics (Q8438)
/m/018dnt	colm meaney (Q313671)
/m/050r1z	last of the mohicans (Q144483)
/m/07g2b	t.s.eliot (Q37767)
/m/02p_7cr	/m/02p_7cr
/m/02_1rq	santa barbara (soap opera) (Q22272)
/m/02_1sj	edtv (Q386291)
/m/0f4x7	best actor academy award (Q103916)
/m/0n0bp	judgment at nuremberg (play) (Q309545)
/m/0lzb8	levardis robert martyn burton jr (Q312570)
/m/02grdc	/m/02grdc
/m/02lf0c	ivan reitman (Q380272)
/m/0b60sq	hauro no ugoku shiro (Q29011)
/m/0ggq0m	classical musicians (Q9730)
/m/01vvy	achille-claude (Q4700)
/m/04ddm4	jaws 3 (Q1199837)
/m/02n4kr	mystery (disambiguation) (Q13377795)
/m/0gr4k	best writing, screenplay based on material from another medium (Q107258)
/m/0bzk8w	46th academy awards nominees and winners (Q570921)
/m/03s6l2	coadm (Q770965)
/m/0lsxr	/m/0lsxr
/m/077g7n	113th us congress (Q71871)
/m/03ww_x	/m/03ww_x
/m/02x3lt7	hm movie (Q220591)
/m/02k54	egypt (name) (Q79)
/m/03xq0f	/m/03xq0f
/m/0p4wb	lh fleet (Q9325)
/m/01fc7p	gallipoli 1915 (Q164983)
/m/0bq0p9	british raja (Q129286)
/m/0mkg	accordionist (Q79838)
/m/0dwsp	marimbas (Q220971)
/m/011yph	full monty (Q775970)
/m/025jfl	fox searchlight (Q953040)
/m/09qwmm	screen actors guild award for best female actor in a leading role (Q1129487)
/m/07s6fsf	mba (Q191701)
/m/02w2bc	cmich (Q250205)
/m/0fq27fp	wuthering heights (2011 film) (Q1189728)
/m/03kq98	kizzy waller (Q1247168)
/m/01gvr1	cicely tyson/comments (Q238081)
/m/0cpllql	star wars episode ii.v: the clone wars (Q382289)
/m/02nxhr	blu-rays (Q47770)
/m/01kwld	dom monaghan (Q152165)
/m/09wj5	orlando jonathan bloom (Q44467)
/m/072kp	the show about nothing (Q23733)
/m/0ckd1	executive produced (Q1053574)
/m/0c40vxk	haywire (film) (Q249350)
/m/0gx9rvq	jack reacher (film) (Q590252)
/m/02pp_q_	jerry belson (Q651692)
/m/0d4fqn	jay kogan (Q43322)
/m/02r22gf	bafta award for best sound (Q739633)
/m/01cssf	romeo plus juliet (Q463313)
/m/014b4h	brunel university (Q932411)
/m/02hsq3m	bafat award for best special visual effects (Q787127)
/m/08720	wargames (Q504697)
/m/032t2z	richard william wright (Q190251)
/m/044rvb	j. k. simmons (Q150482)
/m/028tv0	lead guitarists (Q901192)
/m/04rcr	metalicca (Q15920)
/m/04r7jc	christopher hampton (Q515274)
/m/013x0b	/m/013x0b
/m/0c7ct	danni minogue (Q188461)
/m/026p_bs	the prize (1963 film) (Q751341)
/m/021sv1	sen. daniel inouye (Q312845)
/m/070m6c	111th united states congress (Q170375)
/m/0kzy0	brian wilson (Q313013)
/m/0gbbt	contrabassist (Q584301)
/m/025p38	preeti zinta (Q188671)
/m/04jwjq	aya tere dar par (Q106819)
/m/02cl1	/m/02cl1
/m/0jmdb	denver larks (Q162954)
/m/03lpp_	hall of fame ring of honor (washington, d.c.) (Q825838)
/m/083jv	whiter (Q23444)
/m/0401sg	resident evil (movie) (Q153484)
/m/02r_d4	jeffreytambor (Q320204)
/m/0284n42	kevin o'connell (sound engineer) (Q1378692)
/m/0pc62	pearl harbor (movie) (Q194413)
/m/07gyv	tae kwan do (Q36389)
/m/0146pg	john williams (Q131285)
/m/0dqytn	the witches of eastwick (film) (Q785087)
/m/064t9	pop song (Q37073)
/m/0168cl	james william buffett (Q726071)
/m/0jcgs	great salt lake county, utah territory (Q484556)
/m/0f2r6	grid plan (salt lake city) (Q23337)
/m/0170_p	hurricane (1999 film) (Q832732)
/m/033nzk	chile football team (Q172025)
/m/06y9c2	bronx wentz (Q310166)
/m/0cqhk0	screen actors guild award for outstanding performance by an ensemble in a comedy series (Q2529789)
/m/08wq0g	william charles schneider (Q2238008)
/m/01cv3n	avant garde (band) (Q343069)
/m/025vry	korngold (Q313371)
/m/0f2wj	hollywood, los angeles, ca (Q34006)
/m/01ct6	baltimore ratbirds (Q276539)
/m/0g3zpp	2007 national football league draft (Q434762)
/m/0bdw1g	Q1285517
/m/039fgy	nancy krieger weston (Q1247510)
/m/05b1610	golden raspberry award for worst screenplay 1980–2000 (Q1421666)
/m/0dj0m5	christopher columbus: the discovery (Q780197)
/m/06n7h7	natalie leticia morales (Q2617927)
/m/03ldxq	ann curry (Q966379)
/m/01n5309	james fallon (Q335680)
/m/09qvc0	primetime emmy award for outstanding guest actor – comedy series (Q530923)
/m/0fgpvf	'' girl with a pearl earring '' (Q392441)
/m/0209xj	lost on location (Q107270)
/m/0209hj	gandhi movie (Q202211)
/m/0kr5_	richard attenborough, baron attenborough (Q51506)
/m/06x68	st.louis cardinals (Q504309)
/m/05kcgsf	1965 major league baseball season (Q1649567)
/m/01vvycq	deliverance (ep) (Q7542)
/m/0187y5	burt reynolds (Q202148)
/m/09sb52	screen actors guild for outstanding cast - motion picture (Q518675)
/m/07k53y	/m/07k53y
/m/02vkdwz	halfback (american football) (Q589410)
/m/02qggqc	chris lebenzon (Q1077467)
/m/0fg04	lady van tassel (Q208592)
/m/05gml8	lauren holly (Q229560)
/m/03m8lq	amanda peet filmography (Q131332)
/m/07kb5	tomaes (Q9438)
/m/02jcc	/m/02jcc
/m/0hn10	gblt (Q17884)
/m/02py4c8	angels in america (tv miniseries) (Q937342)
/m/018vs	fretless bass guitar (Q46185)
/m/0150jk	nickelback greatest hits (Q483802)
/m/0hmr4	alvy singer (Q233464)
/m/01csvq	diane keaton filmography (Q102642)
/m/018wng	best documentary short subject (Q1425151)
/m/0fr63l	mighty joe young (1998 film) (film) (Q525128)
/m/01vlj1g	matthew broderick (Q28755)
/m/04fzfj	godzilla (1998) (Q24075)
/m/01bgqh	grammy award for record of the year (Q843219)
/m/01bx35	grammy awards of 2001 (Q777063)
/m/05kj_	geography of oregon (Q824)
/m/0mx4_	linn county, or (Q506015)
/m/059f4	us-nh (Q759)
/m/05g3b	bay state patriots (Q193390)
/m/09byk	all those moments (Q213574)
/m/04306rv	germanophone (Q188)
/m/05jx2d	montpellier hsc (Q19513)
/m/04zx3q1	/m/04zx3q1
/m/065y4w7	traditions and student activities at the university of southern california (Q4614)
/m/06w87	guitar/steel (Q2617520)
/m/041ly3	curtis armstrong (Q1145528)
/m/0c_j5d	marvel entertainment group (Q1200552)
/m/02_286	new york n.y. (Q60)
/m/01w3v	cornell university historic sites (Q49115)
/m/05qjt	physics/further reading (Q413)
/m/02w7gg	english/anglo-saxons (Q42406)
/m/08f3b1	sara palen (Q43144)
/m/01vj9c	bass (instrument) (Q810447)
/m/04dn09n	golden globe award for best screenplay (Q849124)
/m/09q_6t	1999 golden globes (Q577982)
/m/07lt7b	marion cotillard/comments (Q8927)
/m/094qd5	bafta award for best actress 1952–1959 (Q687123)
/m/026mfbr	step brothers (movie) (Q1345077)
/m/01hp5	smylex (Q116852)
/m/0338lq	polygram pictures (Q1983457)
/m/042rnl	wen jiang (Q716069)
/m/02z3r8t	new york, i love you (film) (Q44935)
/m/06npd	svk (Q214)
/m/09qj50	primetime emmy award for outstanding lead actress - comedy series (Q1287335)
/m/0kfpm	the mtm show (Q615944)
/m/043djx	31st u.s. congress (Q4634895)
/m/05fkf	from murphy to manteo (Q1454)
/m/03gwpw2	12th satellite awards (Q1716894)
/m/061681	sewell & marbury (Q107226)
/m/0274ck	hevydevy (Q335629)
/m/01hp22	qymnastics sports (Q326827)
/m/0jf1b	robert louis "bob" fosse (Q313256)
/m/0dzfdw	tony award for best choreography (Q639542)
/m/01r97z	striptease (movie) (Q1141460)
/m/02w0dc0	albert wolsky (Q726671)
/m/012cj0	terence steven mcqueen (Q159347)
/m/012c6x	jackie cooper (Q372073)
/m/06mzp	swissenergy (Q39)
/m/0l998	1968 mexico city olympic games (Q8429)
/m/0p_sc	midnight express (soundtrack) (Q174699)
/m/05kfs	stone's law (Q179497)
/m/0kbvb	the 2004 summer olympics (Q8558)
/m/096f8	articles for creation/british showjumping (Q211773)
/m/01qzyz	12-string acoustic guitar (Q678090)
/m/0gkz15s	the hunger games (2011 film) (Q212965)
/m/02k_4g	ellenor frutt (Q1132439)
/m/0fbvqf	primetime emmy award for outstanding supporting actor - drama series (Q1286639)
/m/018ctl	xxi olympic winter games 2010 (Q9674)
/m/03hjv97	merry widow (Q1219026)
/m/076lxv	edwin booth willis (Q462905)
/m/08gsvw	quantom of solace (Q181540)
/m/0g1rw	m-g-m (Q179200)
/m/0f8l9c	the french colonial empire (Q142)
/m/0lpp8	burgandy (Q1173)
/m/087wc7n	lorax (2012) (Q786594)
/m/0hzlz	rephaboliki ya afrika borwa (Q258)
/m/018db8	joaquin pheonix (Q185140)
/m/0mdqp	ben stiller (Q47100)
/m/035xwd	wilkinson home for boys (Q1145732)
/m/09p35z	starter for ten (film) (Q926238)
/m/0415svh	gary goetzman (Q3098559)
/m/0jm3v	manhattan knicks (Q131364)
/m/03_gd	james cameron (Q42574)
/m/07s467s	greenie (environmentalist) (Q3578589)
/m/0cwrr	sesamestreet (Q155629)
/m/01mvth	jerry nelson (Q468028)
/m/04yj5z	john lequizamo (Q295233)
/m/03ckwzc	miracle at st anna (Q1002100)
/m/03qd_	harry schearer (Q345325)
/m/07hpv3	nigger moment (Q2456777)
/m/0vgkd	dark-comedy (Q53094)
/m/0jzw	col. walter e. kurtz (Q182692)
/m/03k9fj	top 100 adventure films (Q319221)
/m/01jfsb	medical thrillers (Q182015)
/m/0dsvzh	gone, baby, gone (Q247182)
/m/084qpk	grindhouse film (Q679023)
/m/058kqy	eli roth filmography (Q358714)
/m/0288zy	center for contemporary music (Q638859)
/m/0785v8	john hawkes (ne perkins) (Q459384)
/m/05ml_s	timothy olyphant (Q309835)
/m/04bd8y	richard schiff (Q355209)
/m/02hxhz	big daddy (1999 film) (Q509025)
/m/05b__vr	iqbal theba (Q2411441)
/m/064nh4k	ushkowitz (Q233739)
/m/0b73_1d	true grit (2010 film) (Q326114)
/m/02kxbwx	/m/02kxbwx
/m/02l840	kanye west (Q15935)
/m/01wmxfs	jaime fox (Q171905)
/m/02773nt	robert carlock (Q7342763)
/m/02773m2	john riggi (Q6254937)
/m/02778pf	marci klein (Q6757069)
/m/0pv2t	goodbye girl (Q679746)
/m/027986c	los angeles film critics association award for best actor (Q503034)
/m/0164qt	renard (james bond) (Q212145)
/m/02sg5v	bond 14 (Q332368)
/m/016jhr	jambands (Q2095173)
/m/025xt8y	trey anastasio (Q466302)
/m/02lfl4	anthony sirico (Q726201)
/m/0521rl1	matt servitto (Q910854)
/m/01bh3l	kwazulu/natal (Q81725)
/m/01_vrh	zanele hlatshwayo (Q185591)
/m/01pcq3	anna paquin filmography (Q199884)
/m/03h_9lg	huge ackman (Q129591)
/m/07p__7	partisan mix of congressional delegations, 109th congress (Q168778)
/m/02q_cc	kathleen kennedy (producer) (Q237207)
/m/0kx4m	lfl (Q242446)
/m/034x61	dempsey racing (Q212518)
/m/066m4g	tr knight (Q40032)
/m/02z13jg	prix d'interprétation masculine du festival de cannes (Q586140)
/m/016khd	hurt, william (Q105825)
/m/05kjc6	deportivo cali (Q663400)
/m/0_3cs	geography of allentown, pennsylvania (Q142811)
/m/0mwl2	lehigh county, pa. (Q494117)
/m/02ndbd	garry marshall tv shows (Q315087)
/m/06_wqk4	valentine's day (2010 film) (Q244975)
/m/03ds3	william gary busey (Q312081)
/m/013kcv	tulsa (ok) (Q44989)
/m/019lwb	sociedade esportiva palmeiras (Q80964)
/m/05jzt3	walk the line (film) (Q154077)
/m/0hnlx	ארנולד שנברג (Q154770)
/m/0fhp9	w (Q1741)
/m/02h4rq6	bachelor of science in applied science and technology (Q787674)
/m/088tb	zoology (Q431)
/m/0l6ny	1984 los angeles olympic games (Q8456)
/m/0dwvl	celesta (Q320341)
/m/02z9hqn	evangelion: 2.0 you can (not) advance (2009) (Q614200)
/m/09qv3c	primetime emmy award for outstanding supporting actor - comedy series (Q1285970)
/m/02nf2c	arthur dietrich (Q808487)
/m/0152cw	a night without armor (Q229018)
/m/0hr3c8y	2012 screen actors guild awards (Q928329)
/m/08w7vj	graham, stephen (Q442547)
/m/032_jg	casey affleck (Q270730)
/m/06z8s_	oceans eleven (Q205447)
/m/0dky9n	ralph e. winters (Q376563)
/m/0147sh	quo vadis? (1951 film) (Q938137)
/m/01yk13	john lithgow (Q311271)
/m/0cqh46	screen actors guild award for outstanding performance by a male actor in a leading role in a miniseries or television movie (Q2665878)
/m/02lk1s	robert smigel (Q779151)
/m/047byns	primetime emmy award for outstanding writing for a variety series (Q1265782)
/m/01w61th	ricky martin the european experience (Q128799)
/m/02681vq	Q6496405
/m/0dwtp	bells-orchestra (Q626035)
/m/0kv2hv	norbit (Q1129534)
/m/04tc1g	adventures of pluto nash (Q655051)
/m/05lls	p:op (Q1344)
/m/0pcc0	рахманинов (Q131861)
/m/069ld1	desmond harrington (Q445146)
/m/01j5x6	jonathan lee miller (Q7516)
/m/07tgn	the university of oxford (Q34433)
/m/0ymbl	st. catherine's college, oxford (Q2706734)
/m/03m5k	bow harp (Q47369)
/m/018mxj	easyjet/comments (Q191551)
/m/03w5xm	Q10771800
/m/0344gc	coronji calhoun (Q1124875)
/m/02x1dht	satellite award for best original screenplay (Q765404)
/m/0fkvn	state governor (Q132050)
/m/07cfx	taswegian (Q34366)
/m/05qd_	paramount british (Q159846)
/m/04969y	phil towle (Q1321023)
/m/01v3s2_	fred armison (Q14535)
/m/0pz7h	damian francisco (Q14540)
/m/01vksx	pirates of the caribbean (movie) (Q46717)
/m/07fb8_	super 35 (Q2518956)
/m/019rg5	kenya-africa (Q114)
/m/0265v21	/m/0265v21
/m/026dg51	/m/026dg51
/m/065b6q	swedish-american (Q115026)
/m/0htlr	isabella rossilini (Q203840)
/m/03cvwkr	tough guys don't dance (film) (Q1617794)
/m/019z7q	andreas wilson (Q180962)
/m/01hxs4	matthew langford perry (Q171758)
/m/02cttt	buffalo suny (Q681025)
/m/04sx9_	riegert (Q1339019)
/m/04411	j. dewey (Q131805)
/m/0ddd9	nobel laureates in literature (1951-1975) (Q37922)
/m/050rj	janeen rae heller (Q1144761)
/m/04gknr	rules of engagement (film) (Q698033)
/m/07q1v4	isham, mark (Q528663)
/m/01sp81	richard grant esterhuysen (Q380856)
/m/0bn9sc	bradley scott jones (Q299228)
/m/02279c	rotherham united (Q48950)
/m/027rwmr	michael lantieri (Q1476230)
/m/03h26tm	ken ralston (Q8728)
/m/02qflgv	joanne froggatt (Q143223)
/m/01lbp	@carmenelectra (Q185122)
/m/01jv_6	british columbia lions (Q919062)
/m/06b1q	signal caller (Q622747)
/m/01qb5d	x2: x-men united (Q219776)
/m/0vmt	state of arizona (Q816)
/m/04n6k	library of congress catalog scheme (Q621080)
/m/03d_w3h	gilian anderson (Q485298)
/m/0fq9zdn	/m/0fq9zdn
/m/04jjy	gay woman (Q6649)
/m/0963mq	she hate me (Q519592)
/m/02wzl1d	65th golden globes (Q333006)
/m/0b6tzs	friendo (Q183081)
/m/01hhvg	university of riverside, riverside, ca, usa (Q1075148)
/m/036hv	geological feature (Q1069)
/m/05zbm4	joseph gordon leavitt (Q177311)
/m/03_vx9	rebel and a basketcase (Q229230)
/m/0cwy47	cleopatra (1963 film) (Q4430)
/m/06f0dc	partisan mix of congressional delegations (Q170018)
/m/0hjy	regions of alaska (Q797)
/m/01kwlwp	the family (choir) (Q1349627)
/m/0n1h	artiste (Q483501)
/m/0r62v	crane country day school (Q159288)
/m/0jbk9	department of housing and urban development (Q811595)
/m/03f5spx	remix & soundtrack collection (Q179257)
/m/04q7r	catlin (music) (Q180733)
/m/03s0w	ia (Q1546)
/m/05sfs	بروتستانتي (Q23540)
/m/04f525m	international distribution company (Q632323)
/m/0fh694	u north (Q694140)
/m/03gm48	andré braugher (Q463397)
/m/0d0vj4	rick cheney (Q48259)
/m/012t_z	american businessman (Q43845)
/m/015grj	alan arkin (Q108283)
/m/03pmty	tate donovan (Q302650)
/m/01q7cb_	frederick durst (Q44707)
/m/03knl	hallie berry (Q1033016)
/m/017gl1	the lord of the rings, the fellowship of the ring (Q127367)
/m/0yfp	miller, arthur (Q80596)
/m/04kkz8	patch adams (movie) (Q782822)
/m/04l3_z	oedekerk, steve (Q562063)
/m/06pk8	richard koufey (Q259913)
/m/03y_f8	/m/03y_f8
/m/075q_	lazio fc (Q2609)
/m/0134w7	emma c. d. watson (Q39476)
/m/0487c3	jason roberts (athlete) (Q356480)
/m/01bdxz	torquay utd (Q47965)
/m/0m_mm	giant (1956 film) (Q669592)
/m/0k6nt	daenemark (Q35)
/m/081lh	woody allen films (Q25089)
/m/0dxtg	scenario writer (Q28389)
/m/01tspc6	imaelda staunton (Q234798)
/m/0151w_	benjamin g. affleck (Q483118)
/m/0mw89	westmoreland county, pennsylvania (Q495645)
/m/0mw93	washington county, pa (Q497200)
/m/01cr28	kazan, russia (Q900)
/m/03mqj_	rubin (football club) (Q170040)
/m/0p9lw	still (alanis morissette song) (Q40187)
/m/099tbz	bfca critics' choice award for best acting ensemble (Q922396)
/m/0dn16	bubble gum pop (Q997481)
/m/07qnf	monkees, the (Q464036)
/m/067jsf	shree amma yanger ayyapan (Q270691)
/m/01jrz5j	seymour kaufman (Q1146861)
/m/0xhtw	1990s hard rock (Q83270)
/m/01gf5h	when bad does good (Q270935)
/m/0_b3d	in the name of the father (1993 film) (Q304074)
/m/03gj2	architecture of hungary (Q28)
/m/01vv7sc	uhf (Q14045)
/m/0f94t	harlem (manhattan) (Q189074)
/m/06krf3	mommie dearest (movie) (Q282827)
/m/03c7tr1	raspberry award for worst actress (Q602866)
/m/05zvq6g	european film award for best actress (Q1377738)
/m/01m13b	dancer in the dark (Q110365)
/m/01d5z	the red sox (Q213959)
/m/07w0v	plan ii honors (Q49213)
/m/0bwfwpj	kelvin gasoline (Q379877)
/m/06n90	science fiction literature (Q24925)
/m/0jtdp	documentory (Q93204)
/m/04dsnp	sicko (film) (Q382882)
/m/0456xp	sienna rose (Q193458)
/m/04shbh	daniel wroughton craig (Q4547)
/m/01fkv0	terrence stamp (Q77298)
/m/019_1h	omar al-sharif. (Q170515)
/m/0f0p0	alfred mullane (Q181774)
/m/0crfwmx	tinker bell and the mysterious winter woods (Q1702819)
/m/0ctw_b	new zealand at the 2015 commonwealth youth games (Q664)
/m/05fhy	nebraska constitution (Q1553)
/m/04ych	/m/04ych
/m/056xx8	1. fc dynamo dresden (Q141931)
/m/02bn_p	106th us congress (Q3596897)
/m/032ft5	/m/032ft5
/m/08433	william s burroughs (Q188176)
/m/012cph	dashiell hammett (Q186335)
/m/04hpck	richard williams (Q352730)
/m/02hrh1q	american actor (Q33999)
/m/02x73k6	national society of film critics award for best supporting actor (Q165313)
/m/02t__l	joel katz (Q316641)
/m/08hmch	wolverine movie (Q217552)
/m/080h2	un/locode:cavan (Q24639)
/m/09_bl	short-track speed skating (Q193654)
/m/05q96q6	'' robin hood '' (Q223559)
/m/04wvhz	brian grazer (Q320025)
/m/0bz5v2	john oliver (Q1701254)
/m/03gjzk	television producer (Q578109)
/m/0kz2w	student sexuality information services (Q49119)
/m/05pcjw	private university (india) (Q902104)
/m/08r4x3	bobby (2006 film) (Q679657)
/m/02qm_f	the incredibles (soundtrack) (Q213326)
/m/012t1	arthur laurent (Q710334)
/m/048scx	thirteen days (movie) (Q128730)
/m/02hxc3j	iso 639:ro (Q7913)
/m/041rx	yahood (Q7325)
/m/0jdhp	tim-blake nelson (Q515095)
/m/05_k56	andrew stanton (Q328723)
/m/0gqzz	academy awards/animated feature (Q106800)
/m/049yf	kyûshû (Q13987)
/m/05gqf	长崎 (Q38234)
/m/057d89	bell-phillip television productions inc. (Q3568752)
/m/01sxq9	bibi neuwirth (Q232985)
/m/086vfb	tony award for best performance by a featured actress in a musical (Q2005201)
/m/021_rm	robert michael iler (Q862039)
/m/02r3zy	foo fighters band members (Q483718)
/m/04v3q	republic of malta, g. c. (Q233)
/m/01rz1	europaradet (Q8908)
/m/02rdxsh	national society of film critics award for best film (Q1720784)
/m/092vkg	capote (film) (Q463615)
/m/049dyj	kevin nealon (Q449531)
/m/0bshwmp	just go with it (Q747496)
/m/01wtlq	21st century music (Q612024)
/m/01x66d	yiannis chrysomallis (Q234716)
/m/0jqp3	harley-davidson easy rider chopper (Q503638)
/m/0170vn	peter fonda (Q210148)
/m/02d44q	in america (film) (Q1536722)
/m/01_mdl	otis (superman) (Q213053)
/m/01pr_j6	himesh reshamiyya (Q1395430)
/m/03t97y	mummy returns (Q320461)
/m/0f3zf_	dean cundey (Q497036)
/m/0k2sk	the roger rabbit (Q379873)
/m/09q5w2	general quintus (Q128518)
/m/089fss	/m/089fss
/m/0l8z1	academy award for best original music score (Q488651)
/m/01c22t	monster's inc (Q187726)
/m/0l6m5	barcelona'92 (Q8488)
/m/0jm_	american rules football (Q41323)
/m/02yw5r	72nd academy awards (Q429319)
/m/02gys2	olympique marseille (Q132885)
/m/0dy68h	sco angers (Q845137)
/m/01b1mj	gonzaga u (Q1537303)
/m/03x3wf	grammy lifetime achievement award (Q935843)
/m/01vrncs	robert milkwood thomas (Q392)
/m/0g2c8	rock and roll hall of fame museum (Q179191)
/m/02whj	frank vincent zappa (Q127330)
/m/0lk90	/m/0lk90
/m/035gjq	nicollette sheridan (Q229440)
/m/01mc11	po'keepsie (Q178093)
/m/0gkkf	jesus college cambridge (Q1146700)
/m/01nv4h	uk pound (Q25224)
/m/03qx63	fc spartak-d moscow (Q29112)
/m/06fvc	red (color) (Q3142)
/m/01k2wn	college of social studies (Q49167)
/m/016tw3	universal films (Q168383)
/m/07bdd_	worst picture (Q1780634)
/m/0wh3	anarbour (Q485172)
/m/019f4v	golden globe award for best director - motion picture (Q586356)
/m/0jjy0	signs of anti-semitism (Q22432)
/m/01g4zr	walt lantz (Q703759)
/m/0yc84	new rochelle, n.y. (Q744948)
/m/0cqh6z	screen actors guild award for best actress - drama series (Q2414873)
/m/09qvms	12th screen actors guild awards (Q1753207)
/m/047g8h	kicker (Q1638113)
/m/01y3c	carolina panther (Q330120)
/m/06b0d2	mehcad (Q981809)
/m/03lt8g	eva longoria filmography (Q163263)
/m/0_92w	william munny (Q104137)
/m/039bp	eugene hackman (Q150943)
/m/03rtz1	north (1994 film) (Q1072666)
/m/0bynt	outdoor track and field (Q3312129)
/m/09pmkv	etymology of malaysia (Q833)
/m/05nmg_	raja c.a. (Q1051514)
/m/06wcbk7	universal motown records (Q4005789)
/m/016kjs	tha drought ii (Q15615)
/m/0h1mt	jane fonda foundation (Q41142)
/m/02x8m	retro-funk (Q164444)
/m/01wbgdv	chaka khan (Q229498)
/m/01nvmd_	mandy patinkin (Q267097)
/m/0jyx6	manhattan (1979 film) (Q731310)
/m/0cc56	manhattan (ny) (Q11299)
/m/0bdwft	Q1285983
/m/0c5dd	it happened one night (1934) (Q208632)
/m/030pr	frank robert capra (Q51492)
/m/04vr_f	departed (Q172975)
/m/07c0j	/m/07c0j
/m/02bqn1	one hundred-second congress (Q347346)
/m/059_c	navada (Q1227)
/m/01gjd0	first indochinese war (Q748780)
/m/0356lc	confederation of african football (Q168360)
/m/04b4yg	sierra leonean national football team (Q330148)
/m/0j3b	atlantic basic (Q97)
/m/014zfs	bill cosby, jr. (Q213512)
/m/018gz8	comedy performer (Q245068)
/m/07kc_	theramin (Q207691)
/m/02qjv	electronics (music) (Q1327500)
/m/0h1m9	arthur farnsworth. (Q71206)
/m/0h3xztt	the best exotic marigold hotel (Q830295)
/m/02g839	berklee school of music (Q248970)
/m/0lgsq	etheridge, melissa (Q270669)
/m/0ym8f	the queen's college (Q73094)
/m/02lp1	electrical engingeering (Q43035)
/m/0dhdp	ledeborg (Q83065)
/m/083p7	william mckinley,jr (Q35041)
/m/02y0js	signs and symptoms of stroke (Q12202)
/m/083q7	w. wilson (Q34296)
/m/049n7	royals roster (Q744530)
/m/02x2khw	2003 first-year player draft (Q4601563)
/m/099c8n	critics' choice movie award for best picture (Q922299)
/m/0c0nhgv	moneyball (film) (Q221820)
/m/018y2s	save me (dave matthews song) (Q380381)
/m/05148p4	keyboard instrument (Q52954)
/m/06gmr	rio de janeiro, rio de janeiro (Q8678)
/m/0473m9	california school of arts and crafts (Q1026804)
/m/02lfns	dominic chianese (Q460688)
/m/09gdm7q	democra security (Q701892)
/m/09vw2b7	sfx supervisor (Q8313)
/m/0207wx	dore schary (Q457497)
/m/0872p_c	transformers: the dark of the moon (Q232774)
/m/047yc	abdullah al-saleh (Q817)
/m/02_5h	iceskaters (Q38108)
/m/0g48m4	lebanese-americans (Q6510842)
/m/019y64	drop-kick doug (Q1251736)
/m/053rxgm	the expendables (2010 film) (Q206374)
/m/05m883	jim taylor (writer) (Q1335583)
/m/02n9nmz	bafta award for best adapted screenplay 1983–1999 (Q739694)
/m/0b68vs	jason rae (musician) (Q231472)
/m/04n7njg	dan povenmire (Q935609)
/m/09jwl	teenage musicians (Q639669)
/m/02v63m	scream iii (Q391784)
/m/033g4d	lw4 (Q429397)
/m/05h4t7	silver pictures (Q1188938)
/m/0y54	godenzonen (Q81888)
/m/02r34n	peter coyote (Q354873)
/m/0xkq4	englewood (nj) (Q986210)
/m/02w9895	siobhan margaret finneran (Q3485101)
/m/02pkpfs	allen leech (Q2152459)
/m/07sc6nw	kikkokalabud/sandbox/sp (Q621587)
/m/092c5f	10th screen actors guild awards (Q742625)
/m/02gvwz	sean been (Q191104)
/m/0pqc5	acting mayor (Q30185)
/m/05ksh	antrim, ontario (Q1930)
/m/02r5w9	bruce beresford (Q449220)
/m/02pqp12	bafta award for best direction 1968-1984 (Q787131)
/m/0pv3x	the english patient (1996 movie) (Q63026)
/m/016t_3	Q4000966
/m/01wdl3	university of alabama-tuscaloosa (Q492318)
/m/0gj8t_b	rock of ages (2012 movie) (Q651060)
/m/07ylj	/m/07ylj
/m/02sjf5	jerome bernard orbach (Q421707)
/m/04cf09	christopher david noth (Q336185)
/m/01vrt_c	p!nk (Q160009)
/m/02lnhv	ling bai (Q464612)
/m/0sz28	shawn penn (Q44221)
/m/0gjk1d	matthew poncelet (Q587891)
/m/018f8	hedley lamarr (Q957323)
/m/0k4gf	mendelsson bartholdy (Q46096)
/m/07xzm	u-bass (Q61285)
/m/01ztgm	dennis keith rodman (Q201608)
/m/0fvxz	history of trenton, new jersey (Q25330)
/m/0fm2_	hull jazz festival (Q128147)
/m/02prw4h	talk to me (2007 film) (Q2390402)
/m/03bx2lk	g-force (film) (Q784444)
/m/0277jc	basel university (Q372608)
/m/04jzj	lenhard euler (Q7604)
/m/03f1zdw	a foreign country (film) (Q162492)
/m/016gr2	derek jacobi (Q256164)
/m/020fcn	master and commander: the far side of the world (Q1125384)
/m/01qbl	/m/01qbl
/m/0r1yc	carmel by the sea, california (Q625458)
/m/01n7q	califronia (Q99)
/m/05z_kps	fish tank (film) (Q557596)
/m/059j2	/m/059j2
/m/026390q	thelma and louise (Q658041)
/m/01vrz41	elton john awards (Q2808)
/m/0c4z8	grammy award for song of the year 1960s (Q1027904)
/m/04zd4m	don heck (Q2548090)
/m/01sn04	jamaica ny (Q1320403)
/m/0m77m	doris may lessing ch, obe (Q40874)
/m/045bg	jacques guillemin (Q9364)
/m/02g8mp	/m/02g8mp
/m/05pdbs	/m/05pdbs
/m/01xvb	cleveland browns (Q223527)
/m/023wyl	shutdown corner (Q869161)
/m/05cgv	republik federaal bu niiseriya (Q1033)
/m/02lq5w	silver medalist (Q847956)
/m/0gr0m	best cinematography, color (Q131520)
/m/0h1nt	mary elizabeth spacek (Q190994)
/m/0gqwc	academy award for best actress (Q103618)
/m/02pxmgz	the green effect (Q681092)
/m/01k5t_3	chris thomas king (Q4382250)
/m/0fvvz	batton rouge (Q28218)
/m/07_kq	vilniaus (Q216)
/m/01tcf7	jason n. robards, jr. (Q296630)
/m/01yb09	jay's journal of anomalies (Q1516734)
/m/02c6d	dressed to kill (1980 movie) (Q980308)
/m/0gjvqm	la viola davis (Q229181)
/m/02z0dfh	national society of film critics award for best supporting actress (Q1967719)
/m/0hv1t	all that jazz (film) (Q1353441)
/m/09728	heel (bread) (Q7802)
/m/0h1wg	(2s)-2-amino-4-methylpentanoic acid (Q483745)
/m/04hwbq	toy story three (Q187278)
/m/07_3qd	graham gouldman (Q540655)
/m/02qrv7	007 the living daylights (Q272064)
/m/0g5pv3	lisl von schalf (Q332330)
/m/0dgst_d	my week with marilyn (Q581859)
/m/0345h	etymology of germany (Q183)
/m/05c1t6z	61st primetime emmy awards (Q1338932)
/m/0277470	don scardino (Q2745262)
/m/07brj	tamburino (Q193666)
/m/0bm02	bombo (music) (Q211028)
/m/0137n0	willy nelson (Q206112)
/m/01v0sx2	usa for africa (Q1165609)
/m/04wgh	maghrib al-aksa (Q1028)
/m/04ykg	religion in minnesota (Q1527)
/m/0pmq2	st. john brebeuf school (winnipeg) (Q2135)
/m/01bzw5	loyola university of los angeles (Q1786078)
/m/0swbd	nagano 1998 olympic bid (Q9664)
/m/016hvl	pier pasolini (Q25120)
/m/028p0	durante (Q1067)
/m/0358x_	general hospital (1963-1977) (Q1136370)
/m/04wtx1	/m/04wtx1
/m/01wdqrx	steve jordan (musician) (Q2353921)
/m/0cnztc4	the devil's double (Q2226293)
/m/0ch6mp2	location sound recordist (Q2961972)
/m/01t6b4	bruckheimer films (Q217037)
/m/07vc_9	daniel sallis "danny" huston (Q357762)
/m/09dt7	roger joseph christopher zelazny (Q295406)
/m/02662b	nebula award for best novelette (Q936683)
/m/01v42g	jason flemyng (Q472504)
/m/0blbxk	taraji p henson (Q235511)
/m/01kx_81	melanie hamrick (Q128121)
/m/03kwtb	dave a stewart (Q325389)
/m/07g_0c	the weather man (Q60296)
/m/0bg539	the humourbeasts (Q439315)
/m/03s5lz	analyse this (Q1141746)
/m/022_6	county palatine of cheshire (Q23064)
/m/03x746	lille losc (Q19516)
/m/032_wv	election (1999 film) (Q1206261)
/m/0n6f8	reese witherspoon filmography (Q44063)
/m/01b9ck	zanuck, darryl f. (Q364342)
/m/05k2s_	tom noonan (Q1339951)
/m/0m7fm	history of armstrong county, pennsylvania (Q494186)
/m/0fj52s	karrot (Q81)
/m/08lb68	hexadecenoic acid (Q412366)
/m/02mjs7	legal degree (Q4115013)
/m/02583l	community and legal aid services programme (Q3016196)
/m/0gq9h	academy award for outstanding picture (Q102427)
/m/04mzf8	rebecca (1940 film) (Q204212)
/m/05fg2	norman foster, baron foster of thames bank (Q104898)
/m/02jx1	england, u.k. (Q21)
/m/069q4f	stop! or my mom will shoot (Q254555)
/m/07cbcy	golden raspberry award for worst actor - motion picture musical or comedy (Q602299)
/m/0gs9p	academy award for directing (Q103360)
/m/05drq5	robert benton (Q59085)
/m/053tj7	inside deep throat (Q1664537)
/m/017fp	blpseealso (Q36279)
/m/07ww5	u. s. virgin islands (Q11703)
/m/0416y94	julie and julia (2009 film) (Q380848)
/m/0drsm	auburn, new york micropolitan area (Q115182)
/m/0xy28	history of auburn, new york (Q225519)
/m/01vs14j	larry mullen, jr (Q814065)
/m/01qvgl	aimee mann (Q239587)
/m/0gqz2	best song academy award (Q112243)
/m/04t7ts	philip baker hall (Q447669)
/m/0n5fl	hunterdon county, new jersey (Q502451)
/m/01lhy	classical scholars (Q841090)
/m/0kn4c	first premiership of william pitt the younger (Q128902)
/m/03m4mj	husbands and wives (Q740143)
/m/01vfqh	barton fink (Q237215)
/m/03qlv7	tenor saxophone (Q1414932)
/m/01l4zqz	joshua redman (Q361927)
/m/026q3s3	detective conan: captured in her eyes (Q2840937)
/m/0pz91	jackie titone (Q132952)
/m/05pcn59	mtv movie award for best kiss (Q257235)
/m/0ftf0f	/m/0ftf0f
/m/09qr6	williams, robbie (Q47875)
/m/017cjb	stoke pride (Q134902)
/m/03cs_z7	craig thomas (screenwriter) (Q3002075)
/m/07s6tbm	pamela fryman (Q460221)
/m/05lb87	mark moses (Q442300)
/m/030znt	alfre woodward (Q526620)
/m/049bmk	a.s. livorno calcio (Q6767)
/m/0pgjm	leonard kosnowski (Q1384181)
/m/0jmfv	vancouver grizzlies (Q165529)
/m/01pv51	power forward (basketball) (Q462471)
/m/01ngz1	u south dakota (Q1305521)
/m/06mz5	mt. rushmore state (Q1211)
/m/0w0d	bowmen (Q108429)
/m/035qy	griekenland (Q41)
/m/0h7x	etymology of austria (Q40)
/m/01lfvj	cremona violins (Q6231)
/m/02knnd	allen lad (Q346280)
/m/0284jb	north hollywood, ca (Q1319697)
/m/09lbv	drum player (Q386854)
/m/08pgl8	u.s. sassuolo (Q8603)
/m/01c9f2	grammy award for best country & western album (Q4994728)
/m/019bk0	45th annual grammy awards (Q1542326)
/m/058x5	mormonite (Q747802)
/m/047msdk	500 days of summer (Q154935)
/m/0bwh6	clinton "clint" eastwood, jr. (Q43203)
/m/07ng9k	gate keepers 21 (Q579962)
/m/0136g9	richard curtis (Q355300)
/m/014mlp	ba (Q1765120)
/m/07tl0	christs college, cambridge (Q714717)
/m/0gmcwlb	the artist (movie) (Q171861)
/m/0prjs	kenneth branagh (Q55294)
/m/01kff7	wild, wild west (Q740528)
/m/015rmq	george sholti (Q128085)
/m/095w_	transport in budapest (Q1781)
/m/0262zm	hugo award for best short fiction (Q1056251)
/m/01963w	c. j. cherry (Q234030)
/m/05cv94	ronald william miller (Q2165499)
/m/01wcp_g	john roger stephens (Q44857)
/m/0gcdzz	maulik pancholy (Q1338610)
/m/0dl5d	progressive rock'n'roll (Q49451)
/m/04dqdk	jean-jaques goldman (Q44709)
/m/01yh3y	corey gregg burton (Q965261)
/m/0np9r	voice artist (Q2405480)
/m/048lv	kevin spacy (Q25144)
/m/044g_k	superman returns/comments (Q328695)
/m/0dtfn	a new hope (film) (Q17738)
/m/0343h	george walton lucas, jr (Q38222)
/m/05mt_q	champagne papi (Q33240)
/m/01c427	grammy award for best new artist (Q1453643)
/m/0bjrnt	/m/0bjrnt
/m/05f7s1	university of allahabad (Q2005647)
/m/017gm7	the lord of the rings: the two towers (2002 film) (Q164963)
/m/0f721s	20th century fox tv (Q2717612)
/m/019nnl	family guy (pinball) (Q5930)
/m/0fr59	cecil county (Q385365)
/m/01k8rb	laura flynn boyle (Q486103)
/m/01j4ls	chris isaak (Q313009)
/m/011zf2	yo-yo ma, mǎ yǒuyǒu (Q234891)
/m/03xgm3	christopher stephen botti (Q714411)
/m/013cr	albert lawrence brooks (Q356303)
/m/0sxfd	terms of endearment (movie) (Q185071)
/m/02l7c8	romantic films (Q1054574)
/m/04mz10g	sam trammel (Q40124)
/m/04y79_n	nelsan ellis (Q40299)
/m/0r7fy	modesto metropolitan area (Q204561)
/m/0ftps	rick wakeman (Q312053)
/m/031zkw	lou diamond phillips (Q319725)
/m/0zc6f	dunfries, scotland (Q652035)
/m/01yhvv	elisha ann cuthbert (Q188500)
/m/01r32	cowtown (Q36312)
/m/067mj	mike's groove (Q921267)
/m/01p9hgt	gagged but not bound (Q577975)
/m/024rbz	focus features international (Q649649)
/m/09p0ct	the constant gardener (film) (Q645168)
/m/0162c8	brett rattner (Q319204)
/m/043q6n_	neal moritz (Q928022)
/m/03fghg	tomoyuki morikawa (Q460361)
/m/02vw1w2	bleach: the diamond dust rebellion (Q804429)
/m/02rqwhl	savages (Q1213010)
/m/07qg8v	huit femmes (film) (Q274895)
/m/0p_2r	lorne david lipowitz (Q521221)
/m/01qhm_	germans of usa (Q141817)
/m/01rh0w	liv tyler (Q168763)
/m/04m1bm	nuovo cinema paradiso (Q464032)
/m/07z1m	viriginia (Q1370)
/m/0mnzd	un/locode:usfxx (Q501785)
/m/01j_06	the hall (Q585828)
/m/02g3ft	saturn award for best directior (Q1265702)
/m/01f7gh	ellen ripley clone (Q458314)
/m/022_lg	vilijam friedkin (Q51582)
/m/0395lw	jaras (Q101401)
/m/0239kh	cowbell (instrument) (Q775570)
/m/0ddd0gc	downton abbey (Q83071)
/m/0clvcx	phyllis logan (Q117995)
/m/0xzly	maracas (Q39777)
/m/01vdm0	/m/01vdm0
/m/0512p	kansas city blues (western league) (Q604879)
/m/017zq0	ilstu (Q558922)
/m/099cng	critics' choice movie award for best actress (Q922226)
/m/0hr6lkl	17th critics' choice awards (Q798830)
/m/054krc	golden globe award for best original score 1947-1969 (Q1422140)
/m/0bscw	gataca (Q491800)
/m/0292l3	anupham kher (Q560163)
/m/033tf_	americans of irish descent (Q1075293)
/m/01wjrn	john christopher mcginley (Q316032)
/m/02pjc1h	in bruge (Q244931)
/m/059x66	67th oscars (Q857001)
/m/0pb33	speed (film) (Q108006)
/m/04zyhx	the rules of attraction (film) (Q1543439)
/m/0jqn5	e.t. ii: nocturnal fears (Q11621)
/m/06qd3	남한 (Q884)
/m/0qm98	ordinary people (1980 film) (Q503313)
/m/0cz8mkh	final destination 5 (Q661847)
/m/05ywg	capital of czech republic (Q1085)
/m/04w_7	month may (Q119)
/m/02g87m	jason matthew biggs (Q314421)
/m/03n08b	seann william scott (Q193212)
/m/06w2sn5	beliebers (Q34086)
/m/0gtvrv3	cosmopolis movie (Q737055)
/m/0fq8f	history of luxembourg city (Q1842)
/m/02vklm3	/m/02vklm3
/m/03bx0bm	frontman (Q1045845)
/m/01vsxdm	omega and the mechanical animals (Q485893)
/m/0cd25	chirurgery (Q40821)
/m/05sq84	richard thomas griffiths (Q314831)
/m/03twd6	operation blackbriar (Q105624)
/m/07t21	republic of ukraine (Q212)
/m/0319l	single horn (Q163759)
/m/0g2dz	pianica (Q512191)
/m/03fts	nsea protector (Q502067)
/m/05qx1	etymology of panama (Q804)
/m/06jk5_	golf company (nucc) (Q1681928)
/m/07y9w5	monster house (2006 film (Q725842)
/m/054lpb6	relativity international (Q2702789)
/m/01ckbq	grammy award for best female rock vocal performance (Q1542148)
/m/01c6qp	1999 grammy awards (Q990545)
/m/02r79_h	doctor parnassus (Q578344)
/m/02g9p4	plucked dulcimer (Q2145031)
/m/0284gcb	ron weiner (Q4354624)
/m/0d_q40	evian thonon gaillard football club (Q333838)
/m/02lgj6	dan grimaldi (Q634898)
/m/045c66	aidan quinn (Q403902)
/m/05sxzwc	jonah hex (film) (Q596085)
/m/01719t	ali (film) (Q913545)
/m/0244r8	lisa gerrard (Q40580)
/m/0fpkhkz	melancholia (2011 film) (Q165699)
/m/0krdk	finance director (Q623268)
/m/0cv9b	/m/0cv9b
/m/05j82v	/m/05j82v
/m/0_7z2	easton, pa (Q1056542)
/m/013y1f	/m/013y1f
/m/011yqc	rollo tomasi (Q339876)
/m/015qh	bulgary (Q219)
/m/04jkpgv	antichrist (trier) (Q574998)
/m/01znc_	turkia (Q43)
/m/03y1mlp	lindy hemming (Q291686)
/m/029sk	dislexyia (Q132971)
/m/01pw2f1	alissa milano (Q189067)
/m/02r4qs	glen ballard (Q920983)
/m/0wp9b	nachez, mississippi (Q944044)
/m/01t8sr	tennessee a & i state university (Q1782948)
/m/01_9fk	land grant colleges (Q615150)
/m/09z2b7	wings of the dove (Q559893)
/m/060__y	adapted for the screen (Q1257444)
/m/01hmnh	fantasy (fiction) (Q132311)
/m/0340hj	spider-man 3: editor’s cut (Q182212)
/m/044ntk	benjamin, richard (Q495813)
/m/017d77	marlene gerber fried (Q1706859)
/m/044mm6	malcolm david kelley (Q310553)
/m/07f3xb	akinnuoye-agbaje (Q294586)
/m/0ft5vs	/m/0ft5vs
/m/02g_6j	/m/02g_6j
/m/04w7rn	the golden compass (2007 film) (Q637021)
/m/013zdg	jd (Q1540185)
/m/07lx1s	/m/07lx1s
/m/01wp8w7	ivan morrison (Q272203)
/m/02lkcc	michael clarke duncan (Q483148)
/m/030qb3t	la la land (Q65)
/m/07z542	paquito d'rivera (Q527853)
/m/03qnvdl	bourne 4 (Q494048)
/m/0bkj86	m.a. (Q2091008)
/m/04_tv	corporate management (Q2920921)
/m/01_4z	jiǎng zhōngzhèng (Q16574)
/m/01c6nk	militia leader (Q220098)
/m/049g_xj	ellen paige (Q173399)
/m/02rv_dz	juno (movie) (Q79503)
/m/05183k	john david logan (Q384004)
/m/05prs8	walter parkes (Q1971768)
/m/01p45_v	mike nesmith (Q954997)
/m/02r1c18	serious man (Q300555)
/m/06c1y	romania (Q218)
/m/03jldb	alexandrea borstein (Q116219)
/m/02wcx8c	peter jacobson (Q313516)
/m/07y2s	unitedairlines.com (Q174769)
/m/0crx5w	steven levitan (Q542414)
/m/0124k9	list of the larry sanders show awards and nominations (Q1248938)
/m/01jv1z	chrysalis records (Q1088453)
/m/01r9fv	spyder giraldo (Q235252)
/m/04nw9	first lady of television, (Q209662)
/m/0d6b7	metropolis (1927 film) (Q151599)
/m/0168ls	i'm spartacus (Q108297)
/m/0j582	kurt douglas (Q104027)
/m/09y20	alan rickman filmography (Q106481)
/m/05tk7y	rodrigo santoro (Q294819)
/m/020lpx	ru-mos (Q1697)
/m/0gj9qxr	attack the block (Q757865)
/m/0g5b0q5	2011 golden globe awards (Q180813)
/m/06cgy	de nero (Q36949)
/m/061fhg	list of comedy bands (Q1391336)
/m/03qmj9	lw3 (Q437752)
/m/07bs0	lawn tennis (Q847)
/m/01mjq	czech republic (Q213)
/m/027f7dj	octavia lenora spencer (Q229254)
/m/05hqv	farmers and settlers association (Q946040)
/m/030_1m	tristar pictures inc (Q651454)
/m/026n4h6	i don't know who killed me (Q846088)
/m/0fpjd_g	/m/0fpjd_g
/m/01g257	marisa tomai (Q191828)
/m/01c4_6	grammy award for best alternative music album (Q1542129)
/m/0ggl02	/m/0ggl02
/m/0f2df	james david graham niven (Q181917)
/m/01pl9g	margarita carmen cansino (Q42745)
/m/0_ytw	un/locode:uscll (Q695511)
/m/071x0k	filipino male (Q4172847)
/m/06by7	rock (music) (Q11399)
/m/03g5jw	super soaker (song) (Q192486)
/m/0l15bq	clapping (Q1322478)
/m/03ttfc	spaniards (Q160894)
/m/05tfm	list of pittsburgh steelers players who have been mvp (Q191477)
/m/0169t	république du burundi (Q967)
/m/0jm2v	miamiheatcoach (Q169138)
/m/0ctt4z	forward-center (Q1439280)
/m/03cvfg	mike phelps (Q39562)
/m/01445t	/m/01445t
/m/01713c	bardem, javier (Q134895)
/m/01kvqc	branford marsalis (Q454819)
/m/02gx2k	grammy award for best album cover (Q1836411)
/m/021yc7p	minkler, michael (Q1516833)
/m/0qm8b	black hawk down (movie) (Q221384)
/m/02rdyk7	national society of film critics award for best director (Q1315008)
/m/0p_th	kramer v kramer (Q193577)
/m/0tyql	new bedford (ma) (Q49147)
/m/02c4s	arthur wellesley, 1st duke of wellington (Q131691)
/m/01xd9	region dublin (Q173500)
/m/05v10	art of paraguay (Q733)
/m/02p21g	kathi griffin (Q432437)
/m/01nczg	diary of a mad diva (Q240933)
/m/05pbl56	salt (2010 film) (Q628139)
/m/0dlglj	clifton gonzalez-gonzalez (Q935167)
/m/0dr_4	jack dawson (titanic) (Q44578)
/m/03yl2t	cameroon national football team kits (Q175309)
/m/025txtg	real club deportivo espanyol (Q8780)
/m/0203v	colin powell (Q150851)
/m/073hmq	60th academy awards (Q257443)
/m/0gxtknx	seven psychopaths (2012) (Q59610)
/m/06bnz	russia (Q159)
/m/0gztl	southwest airlines inc (Q503308)
/m/0vg8	airline companies (Q46970)
/m/01xcqc	oliver meredith (Q343633)
/m/01mqz0	lauren becall (Q104000)
/m/09x3r	olympic games in berlin (Q8150)
/m/02kth6	liu blackbirds women's basketball (Q1783603)
/m/025ndl	realm of scotland (Q230791)
/m/0g78xc	elector of saxony (Q156199)
/m/01sbf2	robert "bobby" mcferrin, jr (Q310894)
/m/01c72t	composer/comments (Q36834)
/m/033q4k	california state-rohnert park (Q624571)
/m/07s93v	steven zaillian (Q291141)
/m/01f1jy	xi olympic winter games (Q9646)
/m/02847m9	shine a light (film) (Q432102)
/m/0157m	clintonesque (Q1124)
/m/04l8xw	tv academy (Q427611)
/m/09rp4r_	mark berger (sound designer) (Q13553936)
/m/02lxj_	gloria fae finch (Q189407)
/m/051kv	methodist church (Q33203)
/m/01f8gz	/m/01f8gz
/m/03q4nz	worldcinema (Q1150666)
/m/03fn8k	homenetmen yerevan (Q244317)
/m/0436yk	dragon ball z movie 1 (Q475559)
/m/013jz2	downtown youngstown, ohio (Q216820)
/m/027cxsm	/m/027cxsm
/m/08jgk1	office, the (u.s.) (Q23831)
/m/0cqt41	new york yankees/doc (Q213417)
/m/02rl201	2004 major league baseball draft (Q4603026)
/m/01l2fn	kiera knightley (Q42581)
/m/024y8p	uncc (Q1783178)
/m/0pmpl	capital of saskatchewan (Q2123)
/m/02fqwt	u.s. central time (Q2086913)
/m/07l24	tampa bay bucaneers (Q320476)
/m/0cd2vh9	/m/0cd2vh9
/m/07s8r0	kathy baker (Q236250)
/m/0bq8tmw	21 jump street (2014 film) (Q214014)
/m/09pjnd	richard edlund (Q8586)
/m/09txzv	where the wild things are (film) (Q622742)
/m/017r2	brecht, bertolt eugen friedrich (Q38757)
/m/0156q	state of berlin (Q64)
/m/05ljv7	qchord (Q604813)
/m/01nzs7	sci fi pictures original movies (Q276542)
/m/01f62	barcelona city (Q1492)
/m/06vkl	september (month) (Q123)
/m/02lg9w	aida turturro (Q115134)
/m/01l1sq	little stephen (Q354181)
/m/0464pz	the wire footer (Q478360)
/m/01bpc9	earle, steve (Q781634)
/m/01hww_	chord zither (Q370915)
/m/0l12d	byrne, david (Q336640)
/m/07csf4	maury chaykin (Q951634)
/m/0h7h6	toronto municipality, ontario (Q172)
/m/015zxh	la jolla, san diego, california (Q840668)
/m/012x4t	kailand morris (Q714)
/m/0r2l7	un/locode:usjor (Q491350)
/m/02bxd	dijeredoo (Q189388)
/m/01w4dy	Q13219842
/m/02jgm0	noad advendo combinatie breda (Q332642)
/m/04rwx	discoveries and innovation by the massachusetts institute of technology (Q49108)
/m/028lc8	ben johnson (actor) (Q349166)
/m/03v6t	ames college (Q1136919)
/m/01mkq	/m/01mkq
/m/02tr7d	kelly macdonald (Q230383)
/m/0ck27z	screen actors guild award for outstanding performance by an ensemble in a drama series (Q2530270)
/m/0gp9mp	russell metty (Q1312577)
/m/02_hj4	rasario dawson (Q228692)
/m/031t2d	serleena (Q156597)
/m/01v_pj6	the mighty dub katz (Q272619)
/m/01j_cy	michigan state college (Q270222)
/m/05fnl9	bryan lee cranston (Q23547)
/m/021vwt	edward herrmann (Q536437)
/m/02zyy4	michael soren madsen (Q220584)
/m/017v_	freistaat bayre (Q980)
/m/05x30m	un/locode:decob (Q14821)
/m/07szy	michigan college (Q230492)
/m/02ky346	engeneering (Q11023)
/m/03ft8	eugene roddenberry (Q191716)
/m/01wv9xn	pink floyd filmography and videography (Q2306)
/m/072x7s	avner kaufman (Q152456)
/m/030_1_	amblin (Q457893)
/m/024l2y	the day after tomarrow (Q14320)
/m/032v0v	roland emmerich filmography (Q60100)
/m/01fwj8	amelia fiona "minnie" driver (Q229056)
/m/05zvj3m	mtv movie award for best comedic performance (Q905247)
/m/03lrht	stan sweet (Q824133)
/m/0gh4g0	caroline international (Q264137)
/m/01w923	jeremy webster frith (Q460325)
/m/06ms6	sociology/doc (Q21201)
/m/080dyk	warren feeney (Q2358684)
/m/0182r9	ozzie the owl (Q19498)
/m/010dft	logan, ut-id metropolitan statistical area (Q482657)
/m/01nkcn	utah state (Q1052614)
/m/02jt1k	angela bassett (Q232120)
/m/0bh8yn3	green lantern movie (Q903885)
/m/0c00zd0	larry crown (Q382864)
/m/0k611	academy award for film editing (Q281939)
/m/094jv	baltimore, us-md (Q5092)
/m/0km5c	panda shepherd (Q38280)
/m/04n52p6	sherlock holmes (2009 film) (Q200396)
/m/05cj_j	deceit (1976 film) (Q47296)
/m/06hhrs	richard john kind (Q449959)
/m/05p3738	centurion (film) (Q1322906)
/m/06v_gh	/m/06v_gh
/m/09gffmz	scheinman, andrew (Q507189)
/m/06h4y9	pirouzi (Q242260)
/m/0ksf29	don carmody productions (Q1239033)
/m/04bpm6	john brion (Q540389)
/m/02y_rq5	national society of film critics award for best actress (Q1268927)
/m/02g_6x	wide reciever (Q918224)
/m/0fgg8c	/m/0fgg8c
/m/0f2w0	san antonio, bexar county (Q975)
/m/01qkqwg	colon band (Q933904)
/m/075wx7_	twilight3 (Q217010)
/m/0fsm8c	paul dano (Q343616)
/m/09tqxt	bfca critics' choice award for best animated feature (Q922357)
/m/02r8hh_	persepolis (film) (Q477965)
/m/01n4f8	be more cynical (Q489)
/m/02pb53	robert klein (Q725931)
/m/0c3kw	/ (book) (Q317491)
/m/07h9gp	scary movie 4 (Q1055299)
/m/01hwc6	the absurd (philosophy) (Q333625)
/m/03v_5	ithaca (city), tompkins county, new york (Q217346)
/m/0fxgg9	sophisti-pop (Q264289)
/m/03t9sp	ebtg (Q313779)
/m/015pkc	toby maguire (Q165524)
/m/029zqn	brent hershman (Q729794)
/m/01l9p	charlise theron (Q80046)
/m/032w8h	paul stephen rudd (Q276525)
/m/01d494	richard mckay rorty (Q215258)
/m/0170pk	geoffrey roy rush (Q166272)
/m/015rkw	sir gambon (Q203545)
/m/0sx8l	1980 winter olympics games (Q9652)
/m/0b_c7	zefirelli (Q53040)
/m/0c8tkt	blues brothers (soundtrack) (Q109767)
/m/035yn8	your mother sucks cock in hell (Q274167)
/m/0bcndz	the king and i (1956 film) (Q27149)
/m/0k4kk	the ten commandments (1956 movie) (Q746733)
/m/0bzm81	54th academy awards nominees and winners (Q28969)
/m/01756d	hot rod rock (Q220830)
/m/01fl3	the beachboys (Q183048)
/m/02hnl	drum kits (Q128309)
/m/05crg7	food for thought (santana album) (Q873384)
/m/01dzz7	michael swanwick/comments (Q455510)
/m/02q5g1z	april wheeler (Q276299)
/m/01grnp	2nd us congress (Q210241)
/m/01x73	climate of connecticut (Q779)
/m/02khs	press freedom in eritrea (Q986)
/m/0crjn65	preston city council (Q385669)
/m/0dbdy	lancs (Q23077)
/m/01kkg5	columbus crew jrs. (Q457163)
/m/06w33f8	marilyn straker (Q6763645)
/m/0gsg7	american broadcasting company (Q169889)
/m/02bg8v	masada (miniseries) (Q1568835)
/m/0lp_cd3	/m/0lp_cd3
/m/02wrhj	maurice lamarche (Q847124)
/m/02zv4b	et (tv series) (Q3055086)
/m/04rrd	old line state (Q1391)
/m/09kvv	hopkins (Q193727)
/m/06rmdr	ford fairlane (movie) (Q977196)
/m/09cm54	new york film critics circle award for best actor (Q1790281)
/m/019v9k	Q2878144
/m/0bthb	lehigh university (Q622137)
/m/049k07	thomas ian nicholas (Q256884)
/m/01gzm2	nora ephron (Q214677)
/m/01c59k	robert mckimson (Q1063493)
/m/020xn5	black-and-white artist (Q644687)
/m/0845v	the war of the spanish succession (Q150701)
/m/03gk2	holy roman empire portal (Q12548)
/m/0ft7sr	tony walton (Q2803671)
/m/01z88t	yemens (Q805)
/m/01z215	the arabia of the sauds (Q851)
/m/0488g	culture of kansas (Q1558)
/m/049dk	kansas state u (Q31249)
/m/039g82	edward leonard o’neill (Q16758)
/m/0gj9tn5	ted (character) (Q641760)
/m/091z_p	pan's labrinth (Q216006)
/m/02jm0n	john lovitz (Q296524)
/m/0hkq4	county kilkenny, ireland (Q180231)
/m/0m_xy	kilkenny borough council (Q109092)
/m/01pj7	kroatien (Q224)
/m/0fhzy	zagreb, yu (Q1435)
/m/05zm34	punter (gridiron football) (Q525495)
/m/0dth6b	39th academy awards nominees and winners (Q167214)
/m/058s57	carrie underwood filmography (Q215546)
/m/03gr7w	brad douglas paisley (Q39639)
/m/07sgfvl	heather elizabeth morris (Q229349)
/m/050xxm	corpse emily bride (Q164417)
/m/0f1vrl	haim saban (Q559844)
/m/08hp53	dean devlin (Q119849)
/m/015_30	neil diamond (Q294531)
/m/01c92g	best pop vocal performance, male (Q947090)
/m/030h95	amy irving (Q235020)
/m/0g9wdmc	the iron lady (film) (Q269810)
/m/02q52q	lions and tigers and bears (Q193695)
/m/01g6gs	black-and-white movie (Q838368)
/m/064p92m	tinu anand (Q7808398)
/m/018nnz	matriculated (Q335340)
/m/01dyvs	battle of zion (Q207536)
/m/0lfgr	tuftscope (Q49120)
/m/02f6g5	50 first dates (Q241482)
/m/01pgp6	something about mary (Q177374)
/m/0fdv3	star wars: episode iii – revenge of the sith (Q42051)
/m/09gq0x5	king's speech (Q160060)
/m/034np8	jason lee (actor) (Q4960)
/m/030hcs	billy crudup (Q313650)
/m/09vc4s	english-american (Q1344183)
/m/015882	linda rondstadt (Q229375)
/m/0770cd	james poyser (Q4368975)
/m/02yv_b	73rd oscars (Q751924)
/m/09cr8	javier rodriquez (Q142292)
/m/0ftlkg	34th academy awards (Q917163)
/m/0283_zv	the hustler (movie) (Q1130084)
/m/01yhm	the tribe (Q642553)
/m/05ztm4r	josh sussman (Q23403)
/m/0806vbn	harry shum, jr. (Q348649)
/m/09mq4m	phones (Q515883)
/m/02nhxf	/m/02nhxf
/m/090q32	offenbacher kickers (Q159936)
/m/02bp37	105th congress (Q3596884)
/m/03z5xd	/m/03z5xd
/m/03t22m	soprano sax (Q1463985)
/m/01ky2h	newk (Q299208)
/m/07r78j	torino football club 1906 (Q2768)
/m/016_mj	cris rock (Q4109)
/m/06rq1k	happy madison (Q1584317)
/m/012zng	mike watt (Q924668)
/m/01c40n	san pedro harbor (Q290356)
/m/05l5n	oxford astrophysics (Q34217)
/m/015x74	the adventures of baron münchhausen (Q1210832)
/m/09kn9	stargate revolution (Q187462)
/m/01htzx	Q11272426
/m/02jyr8	university of alabama–birmingham (Q1472663)
/m/0241jw	andy circus (Q206922)
/m/02rb84n	the adventures of tintin (film) (Q980041)
/m/01k8q5	emmanuel street (Q797892)
/m/0kfv9	many saints of newark (Q23628)
/m/017jv5	united artists corporation (Q219400)
/m/01kf3_9	/m/01kf3_9
/m/02lz1s	edward chester babcock (Q33124)
/m/052gzr	taylor hackford (Q545573)
/m/025m8y	grammy award for best score soundtrack for visual media (Q4376972)
/m/01c58j	bob clampett (Q670417)
/m/0177s6	harold clayton lloyd (Q104340)
/m/026lj	on suicide (Q37160)
/m/05r79	philosophy of society (Q179805)
/m/0m491	edward rooney (Q498906)
/m/01_d4	chicago, ill. (Q1297)
/m/0b76t12	please give (Q1569216)
/m/0gr51	academy award for writing (original screenplay) (Q41417)
/m/04qw17	vera drake (Q916645)
/m/01t2h2	andy lau (Q16766)
/m/03k7bd	/m/03k7bd
/m/02rx2m5	into the wild (movie) (Q269912)
/m/016ywr	jeremy j. irons (Q171745)
/m/0cc7hmk	margin call (Q624614)
/m/04njml	tony award for best score (Q1478089)
/m/0hvb2	ramon antonio gerardo estevez (Q184572)
/m/02bkdn	allison brooks janney (Q229487)
/m/01t07j	louis malle's films (Q55392)
/m/01g63y	domestic partnerships (Q3449014)
/m/03mz9r	geoff johns (Q1376074)
/m/0584r4	sweet j presents (Q8822)
/m/0cz_ym	american gangster film (Q270351)
/m/05rgl	eastern pacific (Q98)
/m/06x58	salma hayek (Q125106)
/m/0261g5l	silvio horta (Q2975651)
/m/03k50	hindi (language) (Q1568)
/m/02qw1zx	2008 national football league draft (Q434766)
/m/0bx8pn	carolina quarterly (Q192334)
/m/016v46	chengu (Q30002)
/m/02k84w	pedal steel guitar (Q587027)
/m/0p5mw	mansfield, david (Q330438)
/m/03xmy1	brigitte nielsen (Q154519)
/m/028cg00	mummy: totde (Q240713)
/m/01gq0b	claire catherine danes (Q867813)
/m/0d2psv	supersport united u19 (Q1281608)
/m/02vzc	finn land (Q33)
/m/0jnwx	aladdin (disney film) (Q215518)
/m/02fgpf	alan menkin (Q317272)
/m/0j1yf	justin timberland (Q43432)
/m/0320jz	jessica clair timberlake (Q163249)
/m/02d9k	billy beckham (Q10520)
/m/01k2yr	l.a. galaxy oc psc (reserves) (Q204357)
/m/073bb	slyvia plath (Q133054)
/m/0c_n9	pulitzer prize in poetry (Q2117891)
/m/07s6prs	mark salling (Q314424)
/m/026gyn_	the lion in winter (1968 film) (Q1195311)
/m/09146g	kung fu panda 2: pandamonium (Q129193)
/m/05kr_	manitoulin country fest (Q1904)
/m/04rrx	water-winter wonderland (Q1166)
/m/01yc02	chief of operations (Q623279)
/m/0l8sx	warner media, llc (Q191715)
/m/0mj1l	debi mazar (Q238671)
/m/011yth	the man who knew too much (article) (Q463832)
/m/07wbk	republican party united states (Q29468)
/m/083pr	taft (president) (Q35648)
/m/03xsby	lion's gate entertainment (Q515869)
/m/0fq7dv_	saw movie (Q486239)
/m/0ch26b_	hugo (2011 film) (Q206576)
/m/01p1v	state of chile (Q298)
/m/08m4c8	justin willman chambers (Q40087)
/m/0_7w6	disney's beauty and the beast: belle's quest (Q179673)
/m/021p26	fk partizan beograd (Q188656)
/m/0bs0bh	tony award for best featured actor in a play (Q1474410)
/m/03mg35	frank langella filmography (Q310944)
/m/0bjqh	school of art institute of chicago (Q7432601)
/m/06s6l	san vicente y las granadinas (Q757)
/m/018wl5	parliamentarian democracy (Q166747)
/m/0by1wkq	looper (2012) (Q53719)
/m/0mhfr	music (country rock) (Q613408)
/m/04r1t	/m/04r1t
/m/0gt_k	phil spektor (Q213793)
/m/0kbws	2008 beijing olympics (Q8567)
/m/0btyf5z	virus 113 (Q243983)
/m/0c94fn	gary rydstrom (Q1174468)
/m/0b82vw	leigh adrian harline (Q1367518)
/m/0784v1	moses ashikodi (Q6915696)
/m/040wdl	bobby deol (Q48619)
/m/03r8tl	filmfare best actor award (Q1414533)
/m/0mxcf	deschutes county (oregon) (Q484420)
/m/0mx6c	klamath falls, or μsa (Q484388)
/m/04zwjd	lalo schifrin (Q247293)
/m/03sxd2	summer of sam (film) (Q1150713)
/m/07ymr5	andrew david "andy" samberg (Q314640)
/m/02krf9	tv director (Q2059704)
/m/03hj3b3	on the golden pond (Q451603)
/m/02_5x9	pigface (Q3174727)
/m/014dq7	truman persons (Q134180)
/m/06dl_	chandlerish (Q180377)
/m/0fy34l	a simple plan (movie) (Q564958)
/m/04myfb7	rutina wesley (Q40117)
/m/06t61y	sophie thompson (Q467362)
/m/065jlv	geraldine somerville (Q235572)
/m/021_z5	nu jack swing (Q840065)
/m/019g40	omarion grandberry (Q361683)
/m/0fb0v	geffen records (Q212699)
/m/0285c	freak baby (Q12006)
/m/05qbckf	ironman 2 (Q205028)
/m/0162v	wildlife of barbados (Q244)
/m/02wgln	alfred molina (Q296028)
/m/0f25w9	chikkin (Q864693)
/m/07hnp	c12h17n4os (Q83187)
/m/07w5rq	vice chancellors of dhaka university (Q1480421)
/m/01_srz	coeducation (Q541394)
/m/0nvrd	dupage county, illinois (Q109626)
/m/0s69k	aurora (il) (Q22595)
/m/050f0s	simpsons the movie (Q182254)
/m/015h31	animator (Q266569)
/m/01cgz	fist fighting (Q32112)
/m/050gkf	cinderalla man (Q647546)
/m/04rzd	mandolins (Q302497)
/m/0zjpz	r.s.o. (album) (Q295153)
/m/01nd2c	bavaria kaiserslautern (Q8466)
/m/0gqyl	best supporting actress oscar (Q106301)
/m/070fnm	gaslight (1944 film) (Q841781)
/m/0136p1	donna sommer (Q908933)
/m/04y9dk	john wood (english actor) (Q599439)
/m/0jcg8	derbyshire (Q23098)
/m/02hft3	pennsylvania college football (Q1520129)
/m/0yjf0	st. mary magdalen college, oxford (Q81162)
/m/01fh9	w. r. thornton (Q202735)
/m/037s9x	/m/037s9x
/m/03z19	wwwirs.gov (Q973587)
/m/04ktcgn	boyes, christopher (Q541621)
/m/063vn	pierre philippe yves elliott trudeau (Q8619)
/m/0c8wxp	catholic religion (Q1841)
/m/0gz5hs	seth green filmography (Q186757)
/m/06mfvc	ben foster (Q311804)
/m/09k56b7	black swan (film) (Q180214)
/m/04mn81	sk8brd (Q14313)
/m/0r540	oceanside (ca) (Q488924)
/m/02lf70	lorraine braco (Q229319)
/m/01wz3cx	joan chandos baez (Q131725)
/m/01vb403	dyck van dike (Q310295)
/m/0b76kw1	temple grandin (film) (Q2304429)
/m/0509bl	indican productions (Q229059)
/m/0g51l1	arthur rankin, jr. (Q1983712)
/m/01wsl7c	kt bullen (Q230601)
/m/073h1t	66th academy awards (Q944352)
/m/0gd0c7x	prometheus (movie) (Q192686)
/m/0d0kn	languages of georgia (Q230)
/m/03fvqg	edward heimberger (Q313046)
/m/0sg6b	rock island (il) (Q577878)
/m/0mtdx	history of hamilton county, tennessee (Q188376)
/m/0pzpz	un/locode:uscha (Q186702)
/m/05k79	be music (Q214990)
/m/031778	harry potter and the chamber of secrets (movie) (Q102244)
/m/0dq6p	extra long play (vcr format) (Q183976)
/m/07c52	t.v. (Q289)
/m/03d34x8	crew of breaking bad (Q1079)
/m/02lyr4	of (Q1142885)
/m/04913k	kamome (Q484151)
/m/03rl84	zooey deschenhal (Q191719)
/m/07vk2	sydneyuni (Q487556)
/m/04rjg	mathematics research (Q395)
/m/06brp0	mitch hurwitz (Q4992236)
/m/0cjyzs	primetime emmy award for outstanding comedy series (Q2110156)
/m/04f_d	cuisine of kansas city (Q41819)
/m/01sh2	sugar (chemistry) (Q11358)
/m/01gtbb	23rd u. s. congress (Q4631714)
/m/05k7sb	taxachusetts (Q771)
/m/0hpt3	hasbro inc. (Q501476)
/m/05p1dby	razzie award for worst prequel, remake, rip-off or sequel (Q1535133)
/m/04t53l	cooking vinyl (Q2996526)
/m/02vqhv0	christmas carol (Q86791)
/m/045bs6	donal logue (Q517137)
/m/04kzqz	gettysburg movie (Q123166)
/m/01vyp_	malcolm (Q313554)
/m/028knk	annette benning (Q190602)
/m/020bv3	love actually (album) (Q190588)
/m/02c8d7	black pop (Q2529400)
/m/01wbl_r	daddy yankee prestage (Q272591)
/m/0h_cssd	2012 baftas (Q918710)
/m/01ycbq	plummer, christopher (Q190523)
/m/022xml	furman academy and theological institution (Q1475020)
/m/0bj9k	alfredo james pacino (Q41163)
/m/047qxs	timeline (film) (Q1703608)
/m/0gvrws1	'' total recall '' (Q634810)
/m/031n8c	school of continuing education (new england conservatory) (Q1347162)
/m/02zn1b	abc records (Q287177)
/m/0dtd6	genesis band (Q151012)
/m/0bdx29	primetime emmy award for outstanding supporting actress – drama series (Q1285504)
/m/01xr2s	the sheild (Q265152)
/m/0lv1x	1928 amsterdam olympics (Q8138)
/m/06f41	physics of rowing (Q159354)
/m/02k6rq	jeremy philip northam (Q443961)
/m/02mhfy	terri garr (Q233873)
/m/0hmm7	the conversation (Q1009788)
/m/018j2	benjo (Q258896)
/m/050l8	montucky (Q1212)
/m/01fmys	home alone (film) (Q105031)
/m/035dk	iso 3166-1:gh (Q117)
/m/09tqkv2	the kids are all right (movie) (Q380841)
/m/012s5j	raquel welch (Q229545)
/m/0gpjbt	49th grammy awards (Q1542342)
/m/05d8vw	adams, yolanda (Q270869)
/m/02s62q	rhode island school of design (Q49208)
/m/0jym0	the last picture show (Q1218959)
/m/0clz1b	tranche de vie (Q2561438)
/m/0dwr4	shilimba (Q165666)
/m/054ky1	cecil b. demille award 1976–2000 (Q640353)
/m/09f0bj	chandra danette wilson (Q40090)
/m/09d5h	cbs eye (Q43380)
/m/02xhpl	alice (television) (Q1248019)
/m/01cyd5	soule hall (Q1426464)
/m/015npr	aamir khan (Q9557)
/m/02s7tr	firstbaseman (Q1326154)
/m/05g76	yo gotta belive! (Q692417)
/m/0gl88b	irene sharaff (Q450022)
/m/05x2t7	orry-kelly (Q922527)
/m/02fb1n	wagner, robert (Q310493)
/m/0bdw6t	Q1285545
/m/018lg0	stoner music (Q617240)
/m/01czx	blacksabbath (Q47670)
/m/0j2pg	brighton & hove albion f c (Q19453)
/m/09g8vhw	little fockers (Q921985)
/m/06lgq8	ryan kwanten (Q382257)
/m/01541z	michelle renee forbes guajardo (Q239075)
/m/03ln8b	bring on the girls (desperate housewives) (Q131758)
/m/01bvw5	snu (Q39913)
/m/03j43	henri l. bergson (Q42156)
/m/01j8wk	dont say a word (Q572437)
/m/0gmdkyy	2012 oscars (Q180675)
/m/02zmh5	martin karl "max martin" sandberg (Q318223)
/m/048qrd	music from the major motion picture crossroads (Q641786)
/m/0kvgxk	the ice storm (film) (Q1193138)
/m/0h1p	ang lee films (Q160726)
/m/099ty	boise, usa (Q35775)
/m/02hczc	mountain standard time zone (Q3134980)
/m/06lj1m	joanna cassidy (Q236702)
/m/01hqhm	magnolia (1999 film) (Q588420)
/m/02rh1dz	/m/02rh1dz
/m/02_j7t	walliams (Q359665)
/m/0gydcp7	great expectations (2012 film) (Q2079954)
/m/05z7c	psycho 1 (Q163038)
/m/0dxtw	special-effect (Q381243)
/m/0371rb	fv stuttgart (Q4512)
/m/023p33	cinderella (1950 film) (Q191753)
/m/064n1pz	män som hatar kvinnor (film) (Q276343)
/m/0735l	music streaming (Q220499)
/m/022769	jud nelson (Q445302)
/m/018grr	mediocre america man trilogy (Q218503)
/m/034qzw	veronica corningstone (Q467076)
/m/036c_0	tim matthieson (Q712457)
/m/0j_tw	national lampoon's animal house (soundtrack) (Q960125)
/m/02jxk	european+union (Q458)
/m/0260bz	amistad(movie) (Q472361)
/m/01wxyx1	collin farrell (Q172035)
/m/0c6g29	dorothy jeakins (Q436530)
/m/0dck27	gwen wakeling (Q517831)
/m/016z7s	the madness of king george (Q581501)
/m/0bm2g	fhte (Q207588)
/m/01y49	/m/01y49
/m/05zrvfd	mtv movie award for best frightened performance (Q425675)
/m/02c638	mystic river (film) (Q221586)
/m/09ntbc	leo bertos (Q443019)
/m/02q3n9c	wellington phoenix football club (Q815890)
/m/05qw5	the woolgatherers (Q557)
/m/047n8xt	bright star (film) (Q1190988)
/m/018swb	peter william postlethwaite (Q217137)
/m/0f6_dy	titus welliver (Q437693)
/m/01kv4mb	claude bridges (Q319374)
/m/0126rp	edward john izzard (Q254022)
/m/07z31v	56th primetime emmy awards (Q1338873)
/m/01j7rd	john leibowitz (Q211987)
/m/035s95	the newton boys (Q1215169)
/m/0443y3	marcia anne cross (Q189547)
/m/0lk8j	1932 summer olympic games (Q8143)
/m/02lpp7	🥇 (Q406039)
/m/02__34	legend of the falls (Q913324)
/m/0blg2	1948 london olympics (Q8403)
/m/06pj8	steven spielberg (Q8877)
/m/01pcmd	spelling, aaron (Q295080)
/m/0n2bh	beverly hills 90210 (Q117590)
/m/086qd	witney houston (Q34389)
/m/01by1l	grammy award for album of the year 2010s (Q904528)
/m/040fb	june (Q120)
/m/03_wj_	evangeline lilie (Q160392)
/m/0dplh	the warrior (ucl mascot) (Q193196)
/m/015pxr	ricky dene gervais (Q23517)
/m/0l9rg	aisne (département) (Q3093)
/m/02vmzp	shammi kapoor (Q334822)
/m/03rk0	india proper (Q668)
/m/04nfpk	eight-man football up lineman (Q903354)
/m/0fht9f	/m/0fht9f
/m/011k1h	the emi group (Q183412)
/m/07w3r	petroleum abstracts (Q1848657)
/m/0yzvw	my left foot (Q746574)
/m/06mkj	espagna (Q29)
/m/02qhqz4	astro boy (2009 film) (Q1061539)
/m/01vx2h	visual effects (Q8317)
/m/0407yfx	the bear and the bow: a brave tale (Q126796)
/m/01795t	disney cartoon studios (Q191224)
/m/011_6p	kazoo (Q483994)
/m/01dnws	bouz (Q322675)
/m/01y67v	kbs (korean broadcasting system) (Q498825)
/m/014kq6	bond 20 (Q30931)
/m/040db	horhe luis borhes (Q909)
/m/04xjp	cervantes saavedra (Q5682)
/m/0j6b5	千と千尋の神隠し (Q155653)
/m/03_9r	riwen (Q5287)
/m/06ybb1	rhinestone (movie) (Q1071169)
/m/01jtp7	wharton school of the university of pennsylvania (Q1329269)
/m/0b_fw	anthony quinn (Q83484)
/m/0bx0l	lawrence of arabia (movie) (Q228186)
/m/01w60_p	b.b. kings (Q188969)
/m/0144l1	aminta townshend (Q26933)
/m/01jq34	university of maryland, college park police department (Q503415)
/m/01jzxy	/m/01jzxy
/m/015gw6	bates, alan (Q309160)
/m/051vz	brew crew (Q848103)
/m/01ptt7	university of kentucky (Q1360303)
/m/02_2v2	agnes nixon (Q394607)
/m/0f4_l	zed's dead baby (Q104123)
/m/01pvkk	sound editor (filmmaking) (Q3180462)
/m/0c3ns	peter weir films (Q55424)
/m/02v1m7	best short form music video (Q2976730)
/m/0l56b	todd macfarlane (Q352460)
/m/01f7j9	leslie zemeckis (Q187364)
/m/02x4w6g	independent spirit award for best male lead (Q2544859)
/m/0fvr1	the philosophy of time travel (book) (Q426828)
/m/04jlgp	billie whitelaw (Q272613)
/m/056878	2005 grammies (Q1542327)
/m/01vsnff	dominic davis (Q272031)
/m/0163v	balarus (Q184)
/m/02yvct	bridget von hammersmark (Q153723)
/m/01cszh	arista austin (Q664167)
/m/0gfzgl	gossip girl (Q199853)
/m/0bfvd4	primetime emmy award for outstanding supporting actor - miniseries or a movie (Q945887)
/m/02jjdr	jazz alliance (Q1124061)
/m/0pyg6	vannessa williams (Q202801)
/m/07w4j	university of sussex (school) (Q1161297)
/m/09g7thr	times higher education world reputation rankings (Q1318318)
/m/05g3v	the new orleans saints (Q172435)
/m/0121c1	west sussex, england (Q23287)
/m/01tfck	ben bratt (Q73362)
/m/0c11mj	pinigol (Q1989585)
/m/0266sb_	celta de vigo (Q8749)
/m/07yk1xz	invictus (film) (Q689842)
/m/0g284	johannesgurg (Q34647)
/m/0dq630k	tic-tac bass (Q64038)
/m/07gql	trumpet (bach) (Q8338)
/m/07p62k	evan allmighty (Q195949)
/m/041mt	kerouac jean-louis lebris de (Q160534)
/m/0gr42	academy awards/visual effects (Q393686)
/m/0bvfqq	78th oscars (Q319132)
/m/07nt8p	the illusionist (2006 film) (Q645735)
/m/02nbqh	/m/02nbqh
/m/0gvstc3	2011 primetime emmy awards (Q259726)
/m/02cyfz	james roy horner (Q106221)
/m/011yd2	apollo 13 (film) (Q106428)
/m/08664q	martin donovan (Q726130)
/m/02lq10	york, michael (Q298777)
/m/013q07	austin powers in goldmember (Q498910)
/m/01364q	al green (Q313260)
/m/05zksls	2010 golden globe awards (Q249397)
/m/026c1	drew b. barrymore (Q676094)
/m/0gs96	academy award for costume design (Q277536)
/m/01_1pv	bedknobs an broomsticks (Q945138)
/m/02t_zq	louis gossett (Q329719)
/m/0kyk	authorship (Q482980)
/m/09k2t1	jorden sparks (Q215300)
/m/07ss8_	christopher maurice "chris" brown (Q155700)
/m/01s0_f	wayne state university (Q349055)
/m/05b4rcb	/m/05b4rcb
/m/03kxj2	pubert addams (Q204725)
/m/0l6mp	summer olympics of 1988 (Q8470)
/m/0ymc8	st hilda's hall (Q1465651)
/m/0jt5zcn	/m/0jt5zcn
/m/05sb1	mumlikat e khudad e pakistan (Q843)
/m/01vs_v8	lourdes leon ciccone (Q1744)
/m/025m8l	best song written for a motion picture, television or other visual media (Q428808)
/m/0453t	the masks of god (Q295516)
/m/0j3v	showpenhauer (Q38193)
/m/02p11jq	mca music entertainment group (Q2338889)
/m/09prnq	spark (alain johannes album) (Q984115)
/m/01y9pk	university of windsor (Q2065769)
/m/0ptk_	cdn$ (Q1104069)
/m/0fqpc7d	the 15th satellite awards (Q2095114)
/m/03jvmp	hbo documentary films (Q662081)
/m/01_9c1	defensive secondary coach (Q674953)
/m/01q415	mcmurtry, larry (Q611672)
/m/03lty	true metal (Q38848)
/m/0167_s	uriah heep (band) (Q108666)
/m/01qncf	drugstorecowboy (Q1261193)
/m/02x8n1n	independent spirit award for best supporting male 1987-1999 (Q2294693)
/m/01679d	toy piano (Q1300012)
/m/0dclg	philadelphi (Q1345)
/m/040fv	july (month) (Q121)
/m/07srw	history of mining in utah (Q829)
/m/09td7p	screen actors guild award for outstanding performance by a female actor in a supporting role (Q1320315)
/m/0f4vbz	angelina jolie (Q13909)
/m/01wyzyl	james belushi (Q107933)
/m/02rxj	east orthodox (Q35032)
/m/0z1cr	chillicothe ohio (Q988739)
/m/01b195	the rainmaker (1997 film) (Q785351)
/m/01y_px	the mildred snitzer orchestra (Q106706)
/m/025tdwc	/m/025tdwc
/m/0dgd_	freelance cinematographer (Q222344)
/m/01lb14	20 kilometres run (Q1934817)
/m/03rj0	ísland (Q189)
/m/047g6m	brescia calcio (Q6651)
/m/02jg92	gregory lenoir allman' (Q503264)
/m/0300cp	graham holdings company class b (Q3121014)
/m/03qh03g	medium (Q340169)
/m/01zmpg	germaine jackson (Q317784)
/m/013v5j	letoya jackson (Q217427)
/m/05dbf	nicole kidman (Q37459)
/m/04qhdf	/m/04qhdf
/m/013yq	terminus, ga (Q23556)
/m/06xj93	fk khazar lankaran (Q695939)
/m/07b2lv	olivia haigh williams (Q231163)
/m/0170qf	ralph fiennes filmography (Q28493)
/m/04smkr	erica christensen (Q234564)
/m/02vy5j	bauer, steven (Q705477)
/m/01wj9y9	julius henry marx (Q103846)
/m/07hbxm	joanna page (Q467749)
/m/0721cy	samuel simon (Q365090)
/m/018h2	bi-sexual (Q43200)
/m/02s4l6	velvet goldmine (Q1481540)
/m/0f40w	david aames (Q110278)
/m/02725hs	captain corelli's mandolin (soundtrack) (Q1424825)
/m/02wt0	republic of the fiji islands (Q712)
/m/07z5n	vanatua (Q686)
/m/0gx_st	2006 primetime emmy awards (Q1338916)
/m/01q_y0	will&grace (Q212135)
/m/050yyb	77th academy awards nominees and winners (Q504962)
/m/04gcd1	nicholas bird (Q310960)
/m/0311wg	gary robert durdin (Q355038)
/m/051hrr	electric drum (Q1327480)
/m/0mp3l	charolettesville, virginia (Q123766)
/m/033hn8	x-cell records (Q216364)
/m/01ww2fs	merle haggard & the strangers (Q183092)
/m/0b_77q	2003 march madness (Q3994979)
/m/02plv57	Q4268382
/m/05218gr	joseph charles wright (Q505498)
/m/06k02	sakamoto ryûichi (Q345494)
/m/011zd3	liu yuling (Q188375)
/m/01vhb0	ann heche (Q234610)
/m/06ncr	saxy (Q9798)
/m/0gghm	dobro (Q1056351)
/m/02qpbqj	fullback (gridiron football) (Q526960)
/m/07wrz	classics building (Q131252)
/m/0h5k	anthropology/testcases (Q23404)
/m/06wrt	/m/06wrt
/m/06t2t	capital of singapore (Q334)
/m/04fhxp	steve james zahn (Q491775)
/m/06v9_x	national security (film) (Q1503878)
/m/0lccn	leonard cohen (Q1276)
/m/01r216	the moff (Q461003)
/m/0136pk	clyde jackson browne (Q355009)
/m/01ck6h	best rock vocal performance – male (Q953746)
/m/05k2xy	/m/05k2xy
/m/02581c	grammy award for best classical album (Q3774289)
/m/05p09zm	razzie award for worst screen combo (Q1535145)
/m/020y73	vasily sarayev (Q271006)
/m/07wjk	u toronto (Q180865)
/m/021bk	christopher guest, 5th baron haden-guest (Q336074)
/m/0pdp8	this is spin̈al tap (Q7810384)
/m/024tsn	forfar athletic f. c. (Q589563)
/m/0g3zrd	public enemies (2009 movie) (Q329448)
/m/04y8r	enzo ferrari (film) (Q270097)
/m/01kckd	the shots (Q48862)
/m/047sxrj	/m/047sxrj
/m/0288fyj	/m/0288fyj
/m/016z9n	nixon (film) (Q839042)
/m/02g1px	cavalier generation (Q2284765)
/m/0j06n	cromwell's troops (Q1130553)
/m/0d_2fb	angus mcmarrow (Q1535251)
/m/0fpv_3_	life of pi (film) (Q152780)
/m/02x17s4	satellite award for best adapted screenplay (Q1634847)
/m/0ct5zc	carrie (film) (Q162672)
/m/0jt90f5	stephen e. king (Q39829)
/m/01_vfy	sidney arthur lumet (Q51559)
/m/0c_j9x	murder on the orient express (1974 film) (Q3241699)
/m/0d05w3	china (beijing) (Q148)
/m/0cg9y	tom jones (singer) (Q180850)
/m/0nbcg	song-writing (Q753110)
/m/01hvjx	south park: bigger, longer & uncut (Q656118)
/m/0661m4p	mib iii (Q327713)
/m/0q19t	polytechnische school te delft (Q752663)
/m/01pgzn_	lindsay dee joanne lohan (Q44903)
/m/02qgyv	john c reilly (Q223110)
/m/0kvrb	michael nyman/comments (Q313639)
/m/02b1mc	stevenage borough f.c. (Q9426)
/m/0bymv	john s mccain iii (Q10390)
/m/01gkgk	/m/01gkgk
/m/0783m_	morrison, matthew (Q294812)
/m/080knyg	amber patrice riley (Q230420)
/m/05c0jwl	head of college (Q635788)
/m/05p1qyh	welcome to zombieland (Q219810)
/m/01hw6wq	trevor rabin (Q364881)
/m/065zr	punjab (pakistani province) (Q4478)
/m/075mb	the sind (Q37211)
/m/0ddjy	star wars: episode vi – return of the jedi (Q181803)
/m/02fcs2	lawrence edward kasdan (Q240872)
/m/075cph	man who knew too much (Q486826)
/m/0lbbj	1964 tokyo olympics (Q8420)
/m/0yyts	'' driving miss daisy '' (Q211373)
/m/02xb2bt	brendan coyle (Q908668)
/m/0l6px	margaret natalie smith cross (Q172653)
/m/016z2j	robert downey, jr (Q165219)
/m/02d4ct	patricia davies clarkson (Q229268)
/m/04kxsb	bafta award for best actor 1980–1999 (Q400007)
/m/042y1c	amadeus (movie) (Q190956)
/m/01bns_	zither (Q76239)
/m/015rhv	roderick andrew anthony jude (Q283988)
/m/02qvyrt	anthony asquith award for film music (Q787098)
/m/02q6gfp	la mome (Q236217)
/m/04q00lw	my name is khan soundtrack (Q330663)
/m/03wpmd	karan johar/comments (Q468442)
/m/028d4v	catherine anne o'hara (Q233365)
/m/02stbw	best in show (movie) (Q830324)
/m/01n8_g	shashi kapoor (child actor) (Q379171)
/m/065z3_x	secretariat (film) (Q470665)
/m/0tc7	arnold schwartzeneggar (Q2685)
/m/02bjhv	university of dayton, ohio (Q2092392)
/m/0bgrsl	tollin, michael (Q1274453)
/m/01_x6v	randolph severn parker iii (Q44414)
/m/0d06vc	occupation of iraq (Q545449)
/m/01wwvt2	micheal balzary (Q202859)
/m/02x258x	satellite award for best cinematography (Q1638207)
/m/0661ql3	dom cobb (Q25188)
/m/0dvqq	¡uno! ¡dos! ¡tre! tour (Q47871)
/m/07xpm	rochester and rutherford (Q432475)
/m/02m7r	baron rutherford of nelson (Q9123)
/m/0jmfb	twin towers (houston rockets) (Q161345)
/m/01jsn5	university of connecticut-storrs (Q49206)
/m/071dcs	erik gunden (Q1369625)
/m/03jm6c	stephen ross gerber (Q2569995)
/m/05dy7p	kundun (film) (Q944291)
/m/02rb607	white ribbon (Q158023)
/m/0x2p	rustlers (Q461595)
/m/03c6sl9	2008 major league baseball playoffs (Q1231094)
/m/020ngt	horrorpunk (Q830325)
/m/01wg982	raised eyebrows (Q298255)
/m/010hn	amy grant (Q464213)
/m/01ktz1	gracewood, georgia (Q181962)
/m/01b7b	monarchic episcopate (Q29182)
/m/05xjb	priest (christianity) (Q42603)
/m/03n_7k	josh james brolin (Q41396)
/m/0170s4	woody harelson (Q201279)
/m/01mmslz	death of debbie reynolds (Q263696)
/m/01csrl	agnes moorhead (Q231221)
/m/04g9gd	domino (2005 film) (Q32910)
/m/026mfs	/m/026mfs
/m/0c4ys	grammy-awards (Q41254)
/m/0169dl	matt deamon (Q175535)
/m/0m9p3	a bridge too far (film) (Q467053)
/m/01xsbh	edward fox (actor) (Q309980)
/m/0k4d7	snow white and the seven dwarfs (1937 movie) (Q134430)
/m/081nh	walter elias "walt" disney (Q8704)
/m/01l3vx	french national football team (Q47774)
/m/0hvgt	/m/0hvgt
/m/0g7s1n	r.c.d. espanyol b (Q32537)
/m/01dpdh	grammy award for best male country vocal performance (Q5593832)
/m/0jzphpx	/m/0jzphpx
/m/0nbjq	summer olympic games of 1924 (Q8132)
/m/044l47	southern rhodesia national football team (Q327100)
/m/085ccd	the never ending story (Q316555)
/m/01wk7b7	john stamos/comments (Q356129)
/m/02hct1	arrested development: the movie (Q11598)
/m/0738b8	david cross (Q362332)
/m/015f47	bvc flamingo's (Q24904)
/m/07lnk	progressive trance (Q170435)
/m/01vvpjj	eyna (Q38257)
/m/0cc5mcj	cowboys and aliens (film) (Q725578)
/m/09pl3s	roberto orci (Q467500)
/m/0237fw	matilda williams (Q40572)
/m/0jfx1	john christopher depp ii (Q37175)
/m/0277990	john lutz (Q952419)
/m/020skc	geography, demography and climate of allahabad (Q162442)
/m/027tbrc	the tudors (television series) (Q326731)
/m/047sgz4	/m/047sgz4
/m/072twv	cedric gibbons (Q727904)
/m/02pjxr	/m/02pjxr
/m/0127m7	kevin kostner (Q11930)
/m/0d07j8	travilla (Q945402)
/m/0pmp2	quebec city, qc (Q2145)
/m/09nyf	/m/09nyf
/m/0c6g1l	chris pine (Q23466)
/m/063y_ky	mtv movie award for best breakthrough performance - female (Q1062019)
/m/02cllz	/m/02cllz
/m/021y7yw	notes on a scandal (film) (Q756849)
/m/021bmf	jews' harp (Q185003)
/m/01wy6	clarinets (Q8343)
/m/01cwhp	celene dion (Q5105)
/m/02qlg7s	/m/02qlg7s
/m/03lrqw	scrooged (Q535395)
/m/021lby	richard donner (Q262130)
/m/0j_c	master of suspense (Q7374)
/m/079hvk	nautical/february/06/selected article (Q1379980)
/m/0dg3n1	biodiversity in africa (Q15)
/m/01n6c	federal islamic republic of the comores (Q970)
/m/01f7kl	back to the future 3 (Q230552)
/m/08052t3	roy miller (fictional character) (Q679918)
/m/01xy5l_	graphic artist (Q627325)
/m/05wjnt	jay baruchel (Q316756)
/m/052p7	montréal, québec (Q340)
/m/0jdgr	dune film (Q114819)
/m/0275_pj	/m/0275_pj
/m/0265vcb	/m/0265vcb
/m/02x4x18	independent spirit award for best female lead (Q2544851)
/m/0c_mvb	jules bass (Q1442364)
/m/01z4y	/m/01z4y
/m/05fgt1	intolerable cruelty (Q750117)
/m/01mtqf	stomach (cancer) (Q189588)
/m/05pq9	oscar ii hammerstein (Q319693)
/m/01k7xz	harvard-radcliffe college (Q49124)
/m/0gd5z	novels by margaret atwood (Q183492)
/m/015nl4	vanbrugh theatre (Q523926)
/m/04rsd2	lincoln, andrew (Q296843)
/m/02qr69m	changeling (2008 film) (Q275553)
/m/02x2gy0	satellite award for best costume design (Q1647268)
/m/026p4q7	the curious case of benjamin button (film) (Q183239)
/m/011j5x	post punk (Q598929)
/m/01tp5bj	fat bob (Q491252)
/m/01hkhq	helen miren (Q349391)
/m/065zlr	the klumps (Q599432)
/m/0k_q_	los angeles township, california (Q485716)
/m/0sxrz	1920 olympic games (Q8128)
/m/0f1nl	gt (Q864855)
/m/0p3_y	die hard (film) (Q105598)
/m/0c6qh	brad jolie-pitt (Q35332)
/m/0418wg	the night fox (Q504053)
/m/040rmy	la mala educación (Q844819)
/m/06nm1	spanyol nyelv (Q1321)
/m/04jbyg	de graafschap (Q221927)
/m/029cr	ohio dayton (Q34739)
/m/01kf4tt	bond 7 (Q107914)
/m/04kj2v	adam, ken (Q63997)
/m/02pb2bp	metropolis (2001 film) (Q640695)
/m/026ny	anti utopia (Q180774)
/m/0x67	political views of african-americans (Q49085)
/m/01jqr_5	paul leroy bustill robeson sr (Q273233)
/m/07x4qr	the smurf movie (Q454398)
/m/05b4w	norwegen‏ (Q20)
/m/0hwd8	basil rathbone (Q336865)
/m/0hndn2q	69th golden globe awards (Q8671)
/m/043kzcr	gian luca passi de preposulo (Q229313)
/m/03pn9	republic of poland (1918-1939) (Q207272)
/m/016sp_	yoakam (Q713099)
/m/09p7fh	the french lieutenant's woman (film) (Q1212928)
/m/02_cq0	crawley town football club (Q19584)
/m/0frsw	the police (Q178095)
/m/022lly	bsu.edu (Q805122)
/m/03nqnk3	bafta academy fellowship award (Q787148)
/m/0bmh4	dame elizabeth rosemond taylor, dbe (Q34851)
/m/02qmsr	yards (Q137800)
/m/03hfx6c	/m/03hfx6c
/m/0d68qy	30 rock season four (Q189350)
/m/03m8y5	celebrity (film) (Q1052826)
/m/05dppk	sven nykvist (Q312290)
/m/0kszw	helena bonham carter (Q170428)
/m/02x4wr9	independent spirit award for best director (Q2295041)
/m/0184dt	christopher nolan filmography (Q25191)
/m/0lx2l	carrey (Q40504)
/m/0279c15	chicago film critics association award for best actor (Q1071903)
/m/06wvj	sergei sergeyevich (Q49481)
/m/03gvsvn	play it again sam records (Q1973834)
/m/01x1cn2	jones, grace (Q450429)
/m/01pv91	chicken run (film) (Q156401)
/m/0hcr	animation industry (Q11425)
/m/036k0s	/m/036k0s
/m/03xnwz	indie pop (Q842324)
/m/05qsxy	/m/05qsxy
/m/02rghbp	/m/02rghbp
/m/03mcwq3	anna gunn (Q271050)
/m/05hdf	nastassia kinski (Q76711)
/m/06g77c	inland empire (film) (Q862058)
/m/046b0s	village roadshow pictures (Q622668)
/m/024rgt	new line cinemas (Q79202)
/m/07j8r	crying game (Q182727)
/m/0h0wc	mary louise streep (Q873)
/m/0dc95	oakland, ca (Q17042)
/m/016r9z	1900 olympic games (Q8088)
/m/0cjdk	fox broadcast (Q166419)
/m/01h72l	future rama (Q73622)
/m/0171cm	tom wilkinson (Q211322)
/m/01s7zw	paxton, bill (Q110374)
/m/0bby9p5	soul surfer 2 (Q1156089)
/m/06mmb	animal avengers (charity) (Q228882)
/m/0c01c	alyson hannigan filmography (Q199927)
/m/02hgm4	grammy award for best jazz performance solo or small group (Q1335973)
/m/01trhmt	/m/01trhmt
/m/01cw51	/m/01cw51
/m/02lf1j	kevinpollakschatshow (Q351812)
/m/0pvms	oneders (Q642410)
/m/03j0br4	sheila escovedo (Q250905)
/m/02r1tx7	/m/02r1tx7
/m/0jmcb	toronto rapters (Q132880)
/m/038c0q	2003 nba draft (Q1352101)
/m/048htn	unfaithful (2002 film) (Q970089)
/m/027pdrh	anne coates (Q31294)
/m/05b3ts	safety position (Q24994)
/m/01y3v	monsters of the midway. (Q205033)
/m/018pj3	emily robison (Q585575)
/m/01dk00	/m/01dk00
/m/099t8j	broadcast film critics association award for best supporting actress (Q922273)
/m/038g2x	doug savant (Q204303)
/m/026zvx7	lyndsy marie fonseca (Q229914)
/m/0227tr	brendan fraser filmography (Q193555)
/m/012_53	hartbreak films (Q429777)
/m/06hwzy	dancing with the stars:juniors (Q2674710)
/m/02b25y	bocelli (Q42402)
/m/054ks3	golden globe award for best original song (Q1472235)
/m/05h43ls	sex and the city 2 (Q739502)
/m/02t_tp	forster, robert (Q367155)
/m/08cn4_	judy greer (Q236189)
/m/019f2f	ellen macrae (Q211144)
/m/0bsb4j	grant heslov (Q710180)
/m/0631_	cumberland presbyterian church of hong kong (Q178169)
/m/0j871	baripsaltes (Q31687)
/m/02cw8s	paris conservatoire national de musique et de declamation (Q463055)
/m/01tszq	tara strong (Q4029)
/m/05whq_9	from one second to the next (Q44131)
/m/0pmhf	denz l. washington (Q42101)
/m/0c422z4	mtv movie award for best wtf moment (Q1161102)
/m/07f_7h	christabella (Q637842)
/m/02qwdhq	genie award for best achievement in sound (Q4376974)
/m/0qf3p	bryan ferry (Q216179)
/m/04x_3	machine engineer (Q101333)
/m/072bb1	jenna gunn (Q238877)
/m/09qs08	Q1285949
/m/03g3w	hist. (Q309)
/m/062z7	polisci (Q36442)
/m/01xdn1	government sachs (Q193326)
/m/01hb6v	christopher hitchins (Q49081)
/m/01w8sf	ian russell mcewan, cbe, frsa, frsl (Q190379)
/m/03pm9	ibsen, henrik johan (Q36661)
/m/02h6_6p	münchen (Q1726)
/m/083skw	gone with the wind 1939 (Q2875)
/m/02q56mk	wonder boys (film) (Q168862)
/m/04xrx	mariah carrey (Q41076)
/m/0306ds	lisagay hamilton (Q439053)
/m/05th8t	molly parker (Q435312)
/m/01p3ty	dilwale dulhania le jayenge (1995 film) (Q849343)
/m/04b19t	yrf music (Q357608)
/m/02rytm	sweden fc (Q160826)
/m/01kcd	throw (music) (Q180744)
/m/07vht	california–davis (Q129421)
/m/0d234	history of corvallis, oregon (Q748474)
/m/02xry	marion county, florida/box-header (Q812)
/m/0ftvz	tallahassee (Q37043)
/m/03f70xs	w. blake (Q41513)
/m/02js6_	jacob gyllenhaal (Q133313)
/m/0gz6b6g	end of watch (Q497262)
/m/06wbm8q	the guardians (film) (Q136625)
/m/06f32	/m/06f32
/m/0swff	1994 winter olympics (Q9663)
/m/01z27	cross-country ski race (Q179687)
/m/06pvr	sfba (Q213205)
/m/0r1jr	history of san rafael, california (Q631915)
/m/02f72n	mtv video music award for best visual effects (Q372123)
/m/03fbc	gorilla bites (Q189991)
/m/027f2w	medic title (Q913404)
/m/0dy04	university of vienna (Q165980)
/m/02fn5r	vince gill (Q924232)
/m/03yf3z	tricia yearwood (Q464251)
/m/0kcn7	mary poppins (film) (Q209170)
/m/03n0q5	self portrait (painting) (Q2419093)
/m/03h3x5	looney tunes - back in action (Q834165)
/m/01gp_x	fencewalker (Q437267)
/m/01shy7	orange mocha frappacino (Q220192)
/m/03h64	climate of hong kong (Q8646)
/m/02f2dn	katherine mathilda swinton (Q200534)
/m/01pnn3	arun nayar (Q75622)
/m/034bgm	chris weitz/doc (Q238638)
/m/05zy2cy	tron 3 (Q18954)
/m/0d7hg4	edward kitsis (Q713912)
/m/0g3bw	main island japan (Q13989)
/m/017t44	kinai region (Q164256)
/m/03t0k1	sher, sir antony (Q432362)
/m/0m31m	joseph fiennes (Q223790)
/m/0fpmrm3	take shelter (Q762877)
/m/03qnc6q	tree of life (film) (Q244257)
/m/043js	james spader (Q296928)
/m/01vv126	benji combs (Q792976)
/m/039v1	rolling stone's 100 greatest guitarists of all time (Q855091)
/m/01j67j	arrowhead county (Q301345)
/m/0d1mp3	gary david goldberg (Q932508)
/m/045zr	joni mitchel (Q205721)
/m/028rk	/m/028rk
/m/01lyv	new country (Q83440)
/m/03l7rh	queen of the south football club (Q854890)
/m/083qy7	giovanni dos santos (Q562337)
/m/0266shh	racing club de santander (Q12236)
/m/02mjmr	forty-fourth president of the united states (Q76)
/m/0blq0z	@renner4real (Q23365)
/m/04k25	lars trier (Q133730)
/m/01y0s9	nondenominational protestantism (Q7049261)
/m/0mn0v	virginia beach county, virginia (Q49259)
/m/02hcv8	clevland time zone (Q941023)
/m/020w2	cornet (Q202027)
/m/0f4m2z	il nome della rosa (film) (Q155018)
/m/0g701n	sc olhanense (Q621259)
/m/0ml25	dane county (Q502200)
/m/0fw2y	madison (city), wisconsin (Q43788)
/m/06w6_	sara geller (Q180665)
/m/0f102	university of idaho-moscow (Q1854488)
/m/01dw9z	the divine miss m (Q190631)
/m/0g5879y	lay your head down (Q426631)
/m/0gg7gsl	2011 toronto film festival (Q3950969)
/m/09ftwr	/m/09ftwr
/m/017_1x	molde fk (Q208552)
/m/03qmx_f	andy harries (Q2849121)
/m/0892sx	mark ronson & the business intl. (Q425821)
/m/067pl7	/m/067pl7
/m/0408np	thomas jane (Q18938)
/m/02ck1	schostakowitsch (Q80135)
/m/0kpl	atheism (Q7066)
/m/047svrl	funny people (film) (Q1137899)
/m/033wx9	ashlie simpson (Q213521)
/m/09hnb	herbie hancock (Q105875)
/m/04t6fk	1941 (movie) (Q207482)
/m/06nbt	satirical comedy (Q128758)
/m/0hkxq	broccholi (Q47722)
/m/0838f	states of water (Q6478447)
/m/0257w4	grammy award for best instrumental soloist(s) performance (with orchestra) (Q3857162)
/m/01mhwk	1996 grammys (Q1542306)
/m/02ld6x	wes anderson (Q223687)
/m/02qyxs5	bafta award for best animated film (Q240201)
/m/02hn5v	75th academy awards (Q740425)
/m/059t6d	aiden gillen (Q358032)
/m/06ztvyx	kung fu panda 2 (soundtrack) (Q487447)
/m/01bv8b	michael barone (character) (Q208568)
/m/01jswq	virginia tech hampton roads center (Q65379)
/m/01gst_	17th us congress (Q4553695)
/m/06btq	rhode island (Q1387)
/m/0kv238	the wolf man (2008 film) (Q205532)
/m/01fwk3	gena davis (Q280098)
/m/07h1tr	sam m. comer (Q507122)
/m/0k5g9	scottie ferguson (Q202548)
/m/02mxw0	ned beatty (Q4212)
/m/0j_t1	nashville (1975 film) (Q1424258)
/m/02q1tc5	/m/02q1tc5
/m/0gxfz	philadelphia story (Q498822)
/m/01g888	skunk rock (Q460674)
/m/016fmf	return of saturn tour (Q43259)
/m/081_zm	menahem golan (Q542003)
/m/0l1589	voice coder (Q908562)
/m/03q1vd	one more time (2014 film) (Q447892)
/m/024n3z	karl-heinz urban (Q132430)
/m/01v9l67	beecake (Q276425)
/m/02rjv2w	love story (1970 film) (Q729991)
/m/02301	cuny city college (Q1093910)
/m/01wwvc5	kenneth edmonds (Q344983)
/m/01wgxtl	chemo (album) (Q59185)
/m/0hskw	mikhail igor peschkowsky (Q51537)
/m/05cvgl	the remains of the day (movie) (Q1625242)
/m/034g2b	rory cochrane (Q446227)
/m/0f7h2v	chris messina (Q1077549)
/m/0126y2	ja-rule (Q309843)
/m/0h1v19	midsummer night's dream (Q1305191)
/m/02dh86	dianne sawyer (Q236402)
/m/0f__1	da ville (Q43668)
/m/05c46y6	precious (2009) (Q269331)
/m/0mwh1	northampton county, pa (Q495658)
/m/038rzr	gerrard butler (Q169982)
/m/04f52jw	httyd (film) (Q373096)
/m/01qdjm	wayne shorter (Q317161)
/m/0c_tl	1896 summer olympics (Q8080)
/m/01771z	cobra (video game) (Q637290)
/m/02vm9nd	/m/02vm9nd
/m/0jt3qpk	39th annual daytime emmy awards (Q2816448)
/m/09_94	nordic combination (Q201965)
/m/0219x_	indie hit (Q459290)
/m/04yc76	wedding crashers (Q238866)
/m/08rr3p	mirror has two faces (Q1538804)
/m/0hg5	principaute d'andorre (Q228)
/m/0170th	the people v flynt (Q750077)
/m/0gcf2r	primetime emmy award (Q1044427)
/m/071tyz	m.phil (Q1527520)
/m/07wlf	john c. conboy (Q168515)
/m/04g865	peter hyams (Q458766)
/m/015t56	hannah wood (actress) (Q483771)
/m/019pm_	demi moore (Q43044)
/m/01s0ps	e-piano (Q1136507)
/m/01w724	billy preston (Q311450)
/m/0cc846d	captain america: first avenger (Q275120)
/m/04sylm	manhattan school of music (Q1702106)
/m/03s5t	idaho state constitution (Q1221)
/m/019cr	baptist churches (Q93191)
/m/07cz2	what is the matrix (Q83495)
/m/03m73lj	screen actors guild award for best stunt ensemble - motion picture (Q2665874)
/m/0gfsq9	i am legend (2007 film) (Q212689)
/m/02pzz3p	daytime emmy award for outstanding younger actress in a drama series (Q5243457)
/m/0m32_	johnathan frakes (Q346595)
/m/078bz	syracuse university libraries (Q617433)
/m/0g5lhl7	bbc sponsor (Q9531)
/m/01cjhz	only fools and horses... (Q1247858)
/m/05728w1	edward haworth (Q1754756)
/m/0k4f3	some like it hot (Q190086)
/m/07sgfsl	naya rivera (Q229364)
/m/02v4vl	hansa rostock ii (Q142005)
/m/014q2g	keith richards and the x-pensive winos (Q189599)
/m/0879bpq	arthur christmas (Q711918)
/m/0137g1	steve threw up (Q11901)
/m/0jtg0	zitare (Q229205)
/m/0259r0	noel rivera (Q192515)
/m/026b33f	/m/026b33f
/m/05q4y12	away we go (Q791651)
/m/01zfmm	jay roach (Q524278)
/m/0c9c0	sacha cohen (Q29055)
/m/0hzc9wc	/m/0hzc9wc
/m/0b_7k	squirrel to the nuts (film) (Q158250)
/m/027l0b	what is this thing called love? (book) (Q191966)
/m/085bd1	alicia en el país de las maravillas (Q660237)
/m/0gdh5	alanis moriset (Q130742)
/m/04q24zv	agora (2009 film) (Q395411)
/m/03qjg	armonica a bocca (Q51290)
/m/01vsl3_	god save oz (Q1203)
/m/0p51w	fred zinneman (Q55420)
/m/04gmp_z	william horning (Q642196)
/m/0h53p1	leonard dick (Q6525237)
/m/06chf	ridley scott films (Q56005)
/m/088xp	/m/088xp
/m/0lpjn	dame judy dench (Q28054)
/m/01wj92r	rick nelson (Q303207)
/m/03h_fk5	johnny cash family (Q42775)
/m/0190_q	space rocks (Q236913)
/m/05w3f	psychedelia (rock) (Q206159)
/m/026n998	/m/026n998
/m/070w7s	/m/070w7s
/m/0cw3yd	away from her (Q482652)
/m/015c2f	cynthia mixon (Q228725)
/m/078sj4	syriana (film) (Q687040)
/m/059rc	natural born killers (Q748986)
/m/04tz52	popeye (1980 film) (Q941944)
/m/0q5hw	columbus 81 productions (Q215506)
/m/01kj0p	carrie-anne moss filmography (Q206890)
/m/0bczgm	schur, michael (Q1929297)
/m/0jmj7	dubs (Q157376)
/m/0cchk3	southern miss (Q624090)
/m/0bzkgg	45th academy awards nominees and winners (Q918125)
/m/02qdgx	blue eyed soul musicians (Q885561)
/m/02w4fkq	colbie marie caillat (Q228860)
/m/0309jm	dave foley (Q607793)
/m/082scv	bolero (1984 film) (Q1754755)
/m/036gdw	olivia dabo (Q266361)
/m/026n6cs	/m/026n6cs
/m/01b64v	y&r (soap opera) (Q849627)
/m/01wdj_	aum (Q540672)
/m/0gyh	twenty-second state (Q173)
/m/0m2lt	newcastle county (Q156156)
/m/04jwly	far from heaven (Q1130664)
/m/053yx	miles davis/comments (Q93341)
/m/0lgm5	thelonious monk (Q109612)
/m/047hpm	rachel bilson (Q220949)
/m/065r8g	columbia college chicago (Q5149662)
/m/0gkydb	scott adsit (Q3952813)
/m/0f4vx	yuri butso (Q280918)
/m/03xpsrx	leave nothin' behind (Q178010)
/m/02g3mn	andrea martin (Q442309)
/m/016wzw	lower peru (Q419)
/m/08swgx	joy bryant (Q267422)
/m/0lrh	ginsbergian (Q6711)
/m/076tq0z	it's complicated (film) (Q843950)
/m/05fcbk7	guardians of ga'hoole (film) (Q622763)
/m/094hwz	animation supervisor (Q779815)
/m/0klh7	articles for creation/stella keitel (Q191132)
/m/0cr3d	brooklyn, new york, new york (Q18419)
/m/08wr3kg	/m/08wr3kg
/m/019vhk	amsterdam vallon (Q154581)
/m/09qv_s	screen actors guild award for best actor - motion picture (Q654620)
/m/0dm5l	pet shop boy (Q485625)
/m/02f705	mtv video music award for artist to watch (Q595693)
/m/078lk	sardinia (italy) (Q1462)
/m/0bbf1f	kate noelle holmes (Q174346)
/m/025n3p	vin diesel (Q178166)
/m/0b3wk	united states house of representatives (Q11701)
/m/03tcbx	/m/03tcbx
/m/06x4l_	love without fear (Q3013247)
/m/0qb1z	kalrsruhe (Q1040)
/m/02llzg	paris time (Q25989)
/m/016h9b	maurice ernest gibb (Q296876)
/m/0rnmy	miami beach, florida (Q201516)
/m/02y8z	fencing (sport) (Q12100)
/m/0dr3sl	shrek: the series (season 3) (Q483815)
/m/03177r	harry potter and the prisoner of azkaban (movie) (Q102448)
/m/06rnl9	dennis muren (Q1189377)
/m/03r1pr	stan winston (Q320211)
/m/02pz3j5	daytime emmy award for outstanding lead actress in a drama series (Q3019357)
/m/06pwf6	/m/06pwf6
/m/04mqgr	tony award for best book (Q1784838)
/m/02645b	joshua lockwood logan iii (Q505141)
/m/01vn35l	stephen laurence "steve" winwood (Q314397)
/m/02f5qb	mtv best video of the year (Q1065651)
/m/0hx4y	/m/0hx4y
/m/0ftxw	indianapolis, indiana, u.s.a. (Q6346)
/m/02ppm4q	bafta for best supporting actress (Q787123)
/m/0bpx1k	marcus brewer (Q1129227)
/m/03rz2b	aditi verma (Q945586)
/m/09pgj2	aep paphos (Q291559)
/m/09wz9	bob sled (Q177275)
/m/07jjt	track cycling(sport) (Q221635)
/m/02ryz24	satan's alley (Q380981)
/m/0b79gfg	/m/0b79gfg
/m/02fsn	double-basses (Q80019)
/m/040b5k	house of flying daggers (Q369388)
/m/0653m	/m/0653m
/m/01xcfy	naomi ellen watts (Q132616)
/m/05q54f5	fair game (2010 film) (Q917254)
/m/01jrbb	nemo (finding nemo) (Q132863)
/m/01gbbz	ellen degeneris (Q483325)
/m/0l2tk	gamelan bintang wahyu (Q332498)
/m/0645k5	/m/0645k5
/m/014hr0	lso live (Q155805)
/m/0p4v_	tom jones (1963 film) (Q313315)
/m/0ddt_	the phantom menance (Q165713)
/m/02j9lm	rachel griffiths (Q181140)
/m/01vrwfv	chicago transit authority (band) (Q371938)
/m/02x4sn8	independent spirit award for best screenplay (Q1170507)
/m/02rcdc2	diving bell butterfly (Q472600)
/m/03_vpw	backing vocal (Q798487)
/m/0264v8r	1. fc union berlin (Q141971)
/m/0249kn	dirt band (Q542367)
/m/03z20c	nicky (little nicky) (Q267866)
/m/0161sp	lenny kravitz (Q180224)
/m/017z88	new york institute of musical art (Q503246)
/m/03pmzt	keith david (Q370918)
/m/01ly5m	autonomous city of buenos aires (Q1486)
/m/0bt4r4	paul lieberstein (Q2671438)
/m/0cj2t3	/m/0cj2t3
/m/012mrr	close encounters of the third kind (40th anniversary) (Q320588)
/m/027c95y	national board of review award for best lead actor (Q1790292)
/m/0gr36	alec guinness de cuffe (Q103894)
/m/03kg2v	count of monte cristo (Q839596)
/m/02qvl7	defensemen (Q2304909)
/m/0c41y70	albany devils (Q1972217)
/m/0b1y_2	dreamgirls movie (Q329056)
/m/06n6p	s&e (Q34749)
/m/016ypb	hugo weaving filmography (Q42204)
/m/02k856	hawaiin guitar (Q644440)
/m/0p7qm	sand pebbles (Q916287)
/m/01vx5w7	dumb (kelly rowland song) (Q184249)
/m/016pns	nelly (rapper) (Q218992)
/m/03jqw5	adam goldberg (actor) (Q281964)
/m/07024	ramelle, france (Q165817)
/m/01x15dc	/m/01x15dc
/m/0pkyh	robert anthony plant (Q428223)
/m/03rhqg	warner bros. nashville (Q843402)
/m/0gyy53	other boleyn girl (Q470073)
/m/0407yj_	cars 2 (film) (Q192212)
/m/04cbtrw	rushdiean (Q44306)
/m/0f04c	palo alto, california (Q47265)
/m/029h7y	electro (music) (Q217597)
/m/0glt670	list of hip hop mcs (Q11401)
/m/01nwwl	james "jim" broadbent (Q185079)
/m/08k40m	danny butterman (Q729788)
/m/06449	phil glass (Q189729)
/m/0fvzg	oklahoma city, oklahoma (Q34863)
/m/046lt	big dog productions (Q218718)
/m/0c9k8	reds (1981 movie) (Q597239)
/m/0l14j_	/m/0l14j_
/m/01271h	treznor (Q282722)
/m/03xl77	jayson fox (Q220140)
/m/0dnqr	/m/0dnqr
/m/0j_sncb	univ of fla (Q501758)
/m/0kpys	los angeles county (ca) (Q104994)
/m/02lcqs	heure normale du pacifique (Q847142)
/m/03xpf_7	al jean (Q2829373)
/m/07_s4b	john frink (Q2741850)
/m/09tlh	nottingham, england (Q41262)
/m/0crh5_f	elite squad 2: the enemy within (Q142695)
/m/01bb9r	three kings (film) (Q1357016)
/m/0myk8	'ud (Q191000)
/m/01v8y9	arco bass (Q424017)
/m/0b_5d	the apartment (Q270510)
/m/01swxv	delaware university (Q1068072)
/m/04sntd	the jackal (1997 film) (Q167437)
/m/047p7fr	i love you, philip morris (Q1128867)
/m/02ddqh	/m/02ddqh
/m/0gcs9	bruce springsteen and the e street band (Q1225)
/m/0565cz	el rayo x (Q1175266)
/m/01dy7j	edith falco (Q229034)
/m/06sks6	2012 olympic games logo (Q8577)
/m/02l5rm	michael cimino films (Q59129)
/m/025n07	harry o'connor (Q283799)
/m/02tqkf	patrick john warburton (Q343564)
/m/04344j	centre colonels men's basketball (Q1804942)
/m/04112r	rojiblancos (Q642433)
/m/05d6kv	magnet releasing (Q3843364)
/m/0cfhfz	nine lives (2005 film) (Q1992938)
/m/0gvbw	the warner-lambert company (Q206921)
/m/03rtmz	/m/03rtmz
/m/081mh	w v (Q1371)
/m/03_8r	juhdoh (Q11420)
/m/056vv	montenengro (Q236)
/m/02q636	saint lawrence university (Q1411093)
/m/02j62	œconomics (Q8134)
/m/01n4w	colorado military facilities (Q1261)
/m/0d1qn	aspen, co (Q205842)
/m/082fr	w. germany (Q713750)
/m/03hrz	free city of hamburg (Q1055)
/m/013cz2	un/locode:usmhk (Q856841)
/m/01vw20_	rap monkey (Q158175)
/m/04n2r9h	13th satellite awards (Q2061948)
/m/02vqsll	frost/nixon (film) (Q691672)
/m/05bxwh	anatole litvak (Q213581)
/m/01rnxn	bruce macleish dern (Q357001)
/m/01qx13	leander paes (Q296282)
/m/0p8jf	chabon (Q313466)
/m/0379s	chü-ssu-tʻa fu fu-lou-pai (Q43444)
/m/01cbwl	easy core (Q487914)
/m/01243b	indie landfill (Q183504)
/m/06y9v	county of suffolk (Q23111)
/m/021q0l	oxford fellow (Q1404101)
/m/07tg4	university cambridge (Q35794)
/m/045j3w	the grudge (2004) (Q310204)
/m/026kq4q	37th golden globe awards (Q2539193)
/m/0cj8x	henry jaynes fonda (Q19155)
/m/0bmpm	going my way (Q468877)
/m/05glt	us national film registry (Q823422)
/m/043ljr	rounder records europe (Q2164531)
/m/01qh7	newtowne (Q49111)
/m/05wp1p	wallace and gromit the curse of the were-rabbit (Q318428)
/m/0kb57	the pride of the yankees (Q1198860)
/m/06klyh	makeerere university (Q261506)
/m/071ywj	tobey jones (Q342419)
/m/0ggbhy7	tinker tailor soldier spy (movie) (Q681962)
/m/0c7lcx	kevin fitzgerald corrigan (Q1334725)
/m/01531	bronx, new york city (Q18426)
/m/071t0	/m/071t0
/m/0697s	dawlat qaṭar (Q846)
/m/02_fj	francis sinatra (Q40912)
/m/078jt5	greg hoblit (Q267524)
/m/057xs89	mtv movie award for best villain (Q1062026)
/m/015z4j	serena williams (Q11459)
/m/027xx3	scu (Q992830)
/m/03tf_h	lewis gilbert (Q303891)
/m/04n1hqz	sporting club vaslui (Q453925)
/m/0gkg6	dave s. mustaine (Q187165)
/m/01j5ws	michael keaton (Q138005)
/m/0cv3w	las vegas (Q23768)
/m/09yhzs	emma stone (Q147077)
/m/0f0kz	birgit kroencke (Q180338)
/m/0fy6bh	29th academy awards (Q787207)
/m/0k7pf	sir george martin (Q191819)
/m/071pf2	scott douglas mcdonald (Q454205)
/m/01j95f	huddersfield town f.c. (Q19473)
/m/0257yf	/m/0257yf
/m/0993r	deniserichards (Q206833)
/m/0j43swk	zero dark 30 (Q152531)
/m/01f8ld	katheryn bigelow (Q34816)
/m/019k6n	athens ga (Q203263)
/m/0d0x8	peach state (Q1428)
/m/01y665	victor joseph garber (Q270664)
/m/04j53	lichenstein (Q347)
/m/04w4s	country mda (Q217)
/m/0bs1yy	john ottman (Q956822)
/m/05h72z	john sturges (Q361670)
/m/01c333	bowdoin polar bears track and field (Q895401)
/m/02sp_v	grammy award for best long form music video (Q4992254)
/m/0pc7r	worcester, mass (Q49179)
/m/0fv6dr	marc joseph (Q6755655)
/m/01dvbd	lsatsb (Q851095)
/m/041xyk	real salt lake (Q391353)
/m/0229rs	rhino (wmg) (Q627091)
/m/0gd_b_	john m. slattery, jr. (Q374346)
/m/01cx_	city of boston (Q100)
/m/0dyb1	to infinity and beyond (catchphrase) (Q171048)
/m/02xbw2	gabrielle union (Q231648)
/m/0x25q	the matrix: reloaded (Q189600)
/m/01vvb4m	dan edmunds (Q42869)
/m/06v9sf	/m/06v9sf
/m/03m_k0	alan e. ball (Q1752144)
/m/032016	arnold braunschweiger (Q858840)
/m/048_lz	syria national football team (Q272097)
/m/05bt6j	pop rock (Q484641)
/m/03bxwtd	ryan tedder (Q351061)
/m/07sp4l	in the name of the king: a dungeon siege tale (Q166031)
/m/05q5t0b	golden raspberry award for worst new star (Q385186)
/m/015mrk	l boogie (Q214226)
/m/0gqy2	list of best supporting actor nominees (Q106291)
/m/0d22f	washington county (oregon) (Q484538)
/m/013ksx	bethlehem, pennsylvania (Q164380)
/m/0150t6	hans zimmer (Q76364)
/m/0dn3n	margaret mary emily anne hyra (Q167498)
/m/014zwb	you've got mail (Q284229)
/m/01snvb	lineman (gridiron football) (Q1060160)
/m/0j8sq	als (Q576837)
/m/06jvj7	les holt (Q3236790)
/m/01h1bf	nbc today show (Q130838)
/m/0g5838s	lo imposible (Q277038)
/m/09v5bdn	puerto rican society (Q893594)
/m/01438g	richard gere (Q48410)
/m/0686zv	dominic west (Q313020)
/m/0bytkq	dante ferretti (Q939842)
/m/023gxx	remember the titans (Q117696)
/m/02778qt	/m/02778qt
/m/01pcrw	naomi campbell (Q199369)
/m/03mh_tp	management (film) (Q468565)
/m/08wjc1	rlj entertainment (Q10301418)
/m/0846v	wyoming, united states (Q1214)
/m/0mk7z	riverton, wy µsa (Q484142)
/m/06w839_	ice age (2002 film) (Q305250)
/m/03nt7j	rivers-manning trade (Q3246876)
/m/01r3y2	miami university men's glee club (Q590643)
/m/01y8zd	mcmaster university marauders (Q632891)
/m/05jxkf	public university (Q875538)
/m/04tqtl	frank miller's sin city (Q192115)
/m/026mff	/m/026mff
/m/01_gx_	scottish broken-haired terrier (Q39330)
/m/02s5v5	sarah polley (Q234212)
/m/0n6bs	huntington wv (Q241808)
/m/01swmr	parti conservateur du canada (Q488523)
/m/01k165	prime minister stephen harper (Q206)
/m/02g0mx	juliette lewis (Q230523)
/m/0dvmd	/m/0dvmd
/m/03y3bp7	cleveland (tv series) (Q34397)
/m/03tcnt	best rock album (Q691892)
/m/01b66d	cally & brooke tarleton (Q1145764)
/m/01l29r	tony award for best musical (Q1780176)
/m/049d1	吉隆坡 (Q1865)
/m/05lf_	ocotber (Q124)
/m/02w4v	folk music (Q43343)
/m/018ndc	dixie chicks boycott (Q142636)
/m/0kbvv	the 2006 winter olympics (Q9672)
/m/0g68zt	equus (film) (Q496734)
/m/0mbct	chinese gong (Q208320)
/m/0b13yt	dime back (Q3707715)
/m/070xg	logos and uniforms of the seattle seahawks (Q221878)
/m/0tz1x	un/locode:uslzn (Q49188)
/m/0qmd5	the elephant man (film) (Q272860)
/m/0693l	quintin tarantino (Q3772)
/m/01w02sy	courtney michelle harrison (Q222071)
/m/04syw	monarchs (Q116)
/m/05qkp	png (Q691)
/m/09n4nb	48th annual grammy awards (Q1542334)
/m/01wmgrf	audrey f. perry (Q464241)
/m/01hb1t	visual arts journal (Q1279835)
/m/03hkch7	milk (2008 film) (Q201687)
/m/0d6lp	san fransisco (Q62)
/m/0161c2	warrior (avril lavigne song) (Q30449)
/m/03hr1p	/m/03hr1p
/m/0241wg	kajol (Q147395)
/m/07_jd	vegitarianism (Q83364)
/m/021q1c	Q14437399
/m/0820xz	college of education and external studies (Q649998)
/m/07w8fz	good night and good luck. (Q319061)
/m/01l9v7n	bill conti/comments (Q367084)
/m/0bmc4cm	13 assassins (2010 film) (Q186810)
/m/086xm	williams college (Q49166)
/m/0htww	/m/0htww
/m/015v3r	ethan hawke filmography (Q484615)
/m/0b_dy	albert finney (Q219546)
/m/0ybkj	glens falls (ny) (Q1379621)
/m/03bxbql	carstvo bulgaria (Q147909)
/m/03b79	united germany (Q43287)
/m/015w8_	acme loonerversity (Q387943)
/m/09b0xs	tom ruegger (Q3530867)
/m/0ggjt	eugene scruggs (Q74032)
/m/01t7jy	akklaim (Q339228)
/m/0y2dl	un/locode:usgln (Q1006668)
/m/02fy0z	solomon howard (Q1075339)
/m/049_zz	matt lauer (Q1100609)
/m/0gtsxr4	paranorman (Q198028)
/m/018mm4	westwood memorial park (Q1358639)
/m/02p_ycc	arthur j. nascarella (Q710766)
/m/0djd22	Q2091526
/m/085jw	longest note on a woodwind/brass instrument (Q181247)
/m/0ywrc	last emperor (Q212775)
/m/0xbm	arsenal gunners (Q9617)
/m/016srn	live at the nashville palace (Q467519)
/m/01w806h	danger mouse (music producer) (Q322915)
/m/01v1d8	sampling keyboard (Q320002)
/m/027pwl	bradford city a.f.c (Q48879)
/m/01m1_t	history of new britain, connecticut (Q49172)
/m/0m2gk	hartford county, ct (Q54236)
/m/04mpbk	istres (Q797530)
/m/0qdyf	geoffrey beck (Q192474)
/m/0xjl2	gothic punk (Q485395)
/m/016ntp	pjh (Q219772)
/m/030k94	fleet street (television) (Q308984)
/m/04cw0j	/m/04cw0j
/m/0p3sf	heliocentric worlds of sun ra (Q354508)
/m/02zccd	university of louisiana–lafayette (Q116485)
/m/0bzk2h	47th academy awards (Q369706)
/m/0ckrgs	hearts in ice (Q1066446)
/m/01w7nwm	common sense (rapper) (Q286022)
/m/01w7nww	erika wright (Q223875)
/m/01q4qv	costa gavras (Q296698)
/m/01vc5m	beets college (Q810771)
/m/030x48	lauren tom (Q236569)
/m/07c72	the simpsons (tv series) (Q886)
/m/01846t	john rhys-davies (Q16455)
/m/02ccqg	union college (new york) (Q1567748)
/m/0fb1q	book (autobiography) (Q49001)
/m/0gkts9	primetime emmy award for outstanding guest actress in a drama series (Q3062632)
/m/02q1hz	falkirk f.c. (Q219241)
/m/055c8	morgan porterfield freeman, jr. (Q48337)
/m/0840vq	david guetta (Q8298)
/m/04k3r_	philippines men's national football team (Q219854)
/m/01g5v	dark blue (color) (Q1088)
/m/03hj5vf	broadcast film critics association award for best comedy film (Q3002936)
/m/0crc2cp	three musketeers (2011 film) (Q309248)
/m/02rmfm	marge helgenberger (Q229577)
/m/0b9dmk	carrie preston (Q238855)
/m/0jrny	christopher and dana reeve paralysis resource center (Q174311)
/m/056rgc	campbell scott (Q528527)
/m/084302	alfred borden (Q46551)
/m/02ynfr	digital director (Q706364)
/m/0clz7	cork (city in ireland) (Q36647)
/m/0373qg	national university of ireland, cork (Q1574185)
/m/01wj18h	shakira (band) (Q34424)
/m/01ffx4	red violin (Q376144)
/m/0bhvtc	jerry douglas (musician) (Q705743)
/m/04kl74p	dl-alpha-tocopheryl acetate (Q158348)
/m/01dq5z	northfield college (Q1041671)
/m/01rs41	non-state school (Q423208)
/m/01m65sp	tarō ono (Q311238)
/m/01qqwp9	plastic ono band (Q731721)
/m/01y17m	university of illinois at chicago honors college (Q955764)
/m/02w9sd7	national society of film critics award for best actor (Q1967731)
/m/01vwllw	susan sarandon/comments (Q133050)
/m/02ctc6	prince of egypt (Q245227)
/m/02bb47	stanford university graduate school of business (Q1413558)
/m/0g4gr	prospect (marketing) (Q39809)
/m/02snj9	drum programming (Q2289786)
/m/0bxl5	fender-rhodes (Q743659)
/m/0hvjr	tottenham hotspurs f.c. (Q18741)
/m/0gffmn8	the expendables 2 videogame (Q210812)
/m/0ds2n	independence day (soundtrack) (Q105387)
/m/011ydl	that'll do, pig (Q720724)
/m/014l6_	pretty woman (soundtrack) (Q207954)
/m/014nq4	st-i (Q673198)
/m/0g54xkt	j. edgar (Q1137236)
/m/04q5zw	michael de luca productions (Q920273)
/m/0fx0mw	michael k. williams (Q921518)
/m/071ynp	shirley henderson (Q232889)
/m/0gyfp9c	the surrogate (2012 film) (Q514416)
/m/0bjv6	former yugoslavian republic of macedonia (Q221)
/m/02rff2	georgetown journal of law and public policy (Q846101)
/m/03vgp7	miguel ferrar (Q463497)
/m/03mnk	hewlet-packard (Q80978)
/m/014dgf	/m/014dgf
/m/01ym9b	chillout (Q251192)
/m/02qt02v	japan academy prize for outstanding foreign language film (Q499789)
/m/01k98nm	christopher charles geppert (Q445438)
/m/02v3yy	carol bayer sager (Q292399)
/m/03jjzf	jennifer tilly (Q495549)
/m/0dqzkv	leo shamroy (Q1346696)
/m/0j210	dessus (Q30903)
/m/03qmg1	baritone sax (Q808218)
/m/017l96	capitol records inc. (Q193023)
/m/0pj9t	robert cassotto (Q311267)
/m/0glmv	dan castellanetta (Q44442)
/m/0y3_8	1970s synthpop (Q1298934)
/m/02wb6yq	demetria devonne "demi" lovato (Q41173)
/m/07h0cl	aacta award for best actress in a leading role (Q4649800)
/m/02tqm5	a cry in the dark (film) (Q1249239)
/m/0bdwqv	primetime emmy award for outstanding lead actor in a miniseries or a movie (Q989453)
/m/04chyn	the university of the west indies (Q746153)
/m/09b8m	new kingston, jamaica (Q34692)
/m/0glj9q	erotic thriller (Q2439025)
/m/0571m	club silencio (Q272608)
/m/0gh8zks	shame (2011 film) (Q909445)
/m/01n073	electronic arts (game studio) (Q173941)
/m/073h9x	64th academy awards (Q857047)
/m/0_816	bugsy (Q241085)
/m/01vwyqp	teamwork productions inc. (Q131814)
/m/0192hw	baraka (movie) (Q514170)
/m/02qx69	parker posey (Q204586)
/m/0rp46	allenton, florida (Q485186)
/m/05ldnp	paul haggis (Q314935)
/m/01nrq5	jesse knotts (Q555236)
/m/0l2l_	napa, ca msa (Q108137)
/m/0cc8l6d	daytime emmy award for outstanding children's animated program (Q3019369)
/m/0dcfv	d-sucrose (Q4027534)
/m/015_1q	columbia music video (Q183387)
/m/01nn6c	nicholas berkeley mason (Q192936)
/m/011_3s	edith ann (Q229271)
/m/02x6dqb	annie (1982 film) (Q566890)
/m/0vzm	paragon prep (Q16559)
/m/05cw8	nov (Q125)
/m/012w70	yue (language) (Q7033959)
/m/07z1_q	kathryn rausch (Q232511)
/m/0f4dx2	garret dillahunt (Q712437)
/m/01chc7	paul bethany (Q242707)
/m/0djlxb	i`m not there (Q816772)
/m/0gjc4d3	superman: the man of steel(2009 movie) (Q622769)
/m/06t8v	slovenia (Q215)
/m/0dl4z	france and flanders 1916–17 (Q152989)
/m/0d4jl	john anthony burgess wilson (Q217619)
/m/0psss	charlotte gainsbourg (Q276005)
/m/0154qm	catherine elise blanchett (Q80966)
/m/02j8nx	mark gatiss (Q560286)
/m/06gjk9	match point film (Q733677)
/m/059gkk	frank vincent gattuso (Q463407)
/m/0jp26	guadalajara city (Q9022)
/m/026njb5	red road (film) (Q63366)
/m/07751	1955 sundance film festival (Q189887)
/m/0347xl	amy brenneman (Q232520)
/m/01vsykc	sean henry samuel (Q218091)
/m/01jbx1	tyra banks (Q172303)
/m/0gvs1kt	extremely loud and incredibly close (film) (Q918769)
/m/0gy6z9	mark wahlberg (Q164119)
/m/0jvt9	how the west was won (film) (Q162518)
/m/06mnps	jim mcavoy (Q193659)
/m/07_l6	alto viola (Q80284)
/m/0jnmj	oilerscoach (Q205973)
/m/02qvgy	forward (ice hockey) (Q543457)
/m/013m43	garland, tex. (Q49274)
/m/0978r	cambridge (england) (Q350)
/m/01w0v	shire of cambridge (Q23112)
/m/039c26	deadwood tv series (Q1050603)
/m/08gg47	the world's fastest indian (Q128924)
/m/04pyp5	/m/04pyp5
/m/03f7xg	elliot and beverly mantle (Q635569)
/m/01ksr1	ryan phillippe (Q273136)
/m/0794g	sandra bulock (Q40791)
/m/09w1n	ski slope (Q186222)
/m/02rzdcp	madmen (Q223977)
/m/0c8qq	anne of 1000 days (Q910226)
/m/02p0szs	historical fiction film (Q1196408)
/m/02flpc	/m/02flpc
/m/02qvvv	state normal college for colored students (Q1430048)
/m/0jc_p	ff7f00 (Q39338)
/m/0407f	james brown & the famous flames (Q5950)
/m/03l6q0	scary movie 3.5 (Q635937)
/m/02rgz97	mark irwin (Q1551917)
/m/06j6l	runub (Q45981)
/m/030155	anita baker (Q255697)
/m/03bnv	hari georgeson (Q2643)
/m/03n785	alien vs. predator(film) (Q155163)
/m/05nn2c	davis entertainment (Q2579492)
/m/014488	harold george bellanfanti, jr. (Q214959)
/m/073v6	mosby's memoirs (Q83059)
/m/01b_lz	l&o:special victims unit (Q218567)
/m/03bxsw	brenda blethyn (Q229952)
/m/016622	chimes (Q178812)
/m/02f8lw	she was nice to mice (Q253513)
/m/0946bb	assassins (film) (Q739498)
/m/02slt7	canal+ (Q1032540)
/m/0bz6l9	42nd academy awards nominees and winners (Q221467)
/m/01yjl	the cubbies (Q246782)
/m/02pq_rp	2006 mlb draft (Q4606568)
/m/0jcx	chasing a light beam (Q937)
/m/032l1	fyodor dostoievski (Q991)
/m/01yz0x	retro hugo award for best novel (Q255032)
/m/01dhmw	gay haldeman (Q347461)
/m/0d9_96	david a goodman (Q5230469)
/m/027xbpw	danny smith (writer) (Q5220838)
/m/05wh0sh	/m/05wh0sh
/m/04gc2	/m/04gc2
/m/05np4c	ellen pompoe (Q215849)
/m/02rrfzf	spy kids (film) (Q550581)
/m/09qgm	/m/09qgm
/m/02g_7z	tight end (Q1153176)
/m/03gqb0k	/m/03gqb0k
/m/07xr3w	joseph ruttenberg (Q657828)
/m/0m7d0	rodfield, pennsylvania (Q156291)
/m/01q2sk	carnegie institute of technology (Q558977)
/m/0jdd	afghanistan, i.s. of (Q889)
/m/0494n	kabul city (Q5838)
/m/01q460	university of singapore (Q738236)
/m/06cs1	research methods (Q42240)
/m/04w8f	republic of mongolia (Q711)
/m/01n8gr	through the years tour (Q217160)
/m/0g1x2_	childlove (Q8388)
/m/0fnmz	california state university system (Q815352)
/m/01yd8v	bridget jane fonda (Q913872)
/m/0p5wz	parkes institute (Q76473)
/m/01fjz9	motherwell fc (Q216523)
/m/036k5h	gray (colour) (Q42519)
/m/02f716	best direction (Q915665)
/m/01rzqj	kiefer sutherland (Q103946)
/m/02r5dz	harrah's entertainment inc. (Q892498)
/m/02jjt	live entertainment (Q173799)
/m/0jswp	high noon (1952 film) (Q245208)
/m/059kh	new wave/rock (Q187760)
/m/07qy0b	david newman (composer) (Q952428)
/m/0m2rv	downtown flint (Q490584)
/m/0ply0	the city beautiful (Q49233)
/m/01vsy95	tap (album) (Q213887)
/m/02pzc4	roy haines (Q448235)
/m/05g8pg	kung fu hustle 2 (Q470759)
/m/0gj8nq2	abraham lincoln, vampire hunter (film) (Q587707)
/m/01lcxbb	frederick dewayne hubbard (Q346762)
/m/02y7t7	nasdaq:sbgi (Q2288792)
/m/03mdt	hbo plus (Q23633)
/m/01l_vgt	amanda lear (Q454010)
/m/03m10r	fc dynamo kyiv reserves (Q179075)
/m/01w272y	raph saadiq (Q1337779)
/m/016kz1	flashdance (Q611043)
/m/03mkk4	m.f.a. (Q4175466)
/m/02fgdx	southern methodist (Q1536258)
/m/01rwyq	malcolm x (1992 movie) (Q923925)
/m/0mkz	artificial intelligence/theory (Q11660)
/m/017j6	don't mosh in the ramen shop (Q214039)
/m/02f76h	mtv video music award for best hip hop video (Q263702)
/m/0jwmp	27b stroke 6 (Q25057)
/m/02607j	hofstrau (Q1623314)
/m/01_rh4	george hosato takei altman (Q110154)
/m/02xp18	brian henson (Q2284236)
/m/015f7	sam lutfi (Q11975)
/m/02n9bh	strictly ballroom (1992 movie) (Q1346439)
/m/01gx5f	m. patton (Q316878)
/m/0pf2	applied math (Q33521)
/m/01wz_ml	books/chuck berry (Q5921)
/m/01pcbg	frederick charles willard (Q449521)
/m/02qwg	eric clapton & his band (Q48187)
/m/01jrbv	the birdcage (Q1160005)
/m/01wyy_	john milius (Q83859)
/m/07ym6ss	/m/07ym6ss
/m/0fqyc	north-holland (Q701)
/m/0h095	waarderpolder (Q9920)
/m/0680x0	strings (instrument) (Q326426)
/m/02bh9	dan elfman (Q193338)
/m/0f1_p	gugarat (Q1061)
/m/01d88c	phss (Q1070)
/m/01f3p_	dark priest (Q162371)
/m/0b6yp2	marco beltrami (Q465754)
/m/04n3l	queens island (Q18438)
/m/02183k	uga navbox (Q761534)
/m/0p8r1	john ratzenberger (Q374093)
/m/02w4b	flugelhornist (Q382616)
/m/03cfjg	marty stuart (Q706332)
/m/0134s5	ac⚡dc (Q27593)
/m/05r5w	pam anderson (Q83325)
/m/07g2v	thomas lee bass (Q331748)
/m/09g7vfw	dark shadows 2 (Q323318)
/m/01w5m	king's college (new york) (Q49088)
/m/0qm9n	coal miner's daughter soundtrack (Q1285467)
/m/017xm3	loretta lynn/doc (Q272931)
/m/0dzkq	jacques derrida (Q130631)
/m/01jdpf	interviewer (Q178651)
/m/0ctb4g	atonement (2007 film) (Q1626186)
/m/025ygqm	2004 mlb season (Q2606383)
/m/088q4	rhodesia (Q954)
/m/0299hs	robocop (1987 film) (Q372514)
/m/02bfxb	frances walsh (Q116861)
/m/03hl6lc	/m/03hl6lc
/m/03_r_5	tunisia national football team (Q27971)
/m/02_xgp2	/m/02_xgp2
/m/0glnm	the gay divorcee (Q947098)
/m/03ksy	harvard university concord field station (Q13371)
/m/0jjw	art (Q735)
/m/07yvsn	marie-antoinette (2006 film) (Q829695)
/m/0m_v0	t. bone burnett (Q1225141)
/m/0m2gz	litchfield county, connecticut (Q54235)
/m/0d1_f	queen elizabeth ii of new zealand (Q9682)
/m/0d06m5	rodham-clinton (Q6294)
/m/01_j71	doris may roberts (Q232959)
/m/02_n5d	pat heaton (Q231004)
/m/029jpy	new england population (Q18389)
/m/03_9hm	msndi (Q207337)
/m/0rd5k	fairfield (connecticut) (Q754635)
/m/040t74	janel wallace moloney (Q114447)
/m/0dgpwnk	this must be the place (film) (Q511347)
/m/0123_x	barcelona province (disambiguation) (Q81949)
/m/02rn00y	up (2009) (Q174811)
/m/05jcn8	pete docter (Q357627)
/m/03x7hd	emile (ratatouille) (Q170035)
/m/0gqxm	academy award for makeup (Q487136)
/m/0g_w	the academy awards (Q19020)
/m/092t4b	screen actors guild awards 2001 (Q1605791)
/m/02l4pj	emily margaret watson (Q229535)
/m/061dn_	twc-dimension (Q1138789)
/m/02bqmq	one hundred-third united states congress (Q3556780)
/m/04n1q6	provost (academic) (Q2114175)
/m/04264n	keenan wynn (Q946859)
/m/03_6y	josh jackson (actor) (Q219653)
/m/02h3d1	grammy award for best musical theater album (Q3113385)
/m/0cxn2	ice creme (Q13233)
/m/0h1zw	threonine metabolism (Q186521)
/m/02_4fn	kim ki-duk (born 1960) (Q212990)
/m/07cyl	fava beans and a nice chianti (Q133654)
/m/01vv6_6	saul hudson aka slash (Q34166)
/m/04lgybj	40th canadian parliament (Q2816734)
/m/05j49	terre-neuve (province) (Q2003)
/m/02krdz	daddy would you like some sausage? (Q1452656)
/m/0n00	turing (Q7251)
/m/01fwpt	what about joan (Q272946)
/m/03mp54	elfsborg i.f. (Q211753)
/m/043q4d	contestants (Q5165152)
/m/01wyz92	hard core 2k13 (Q229379)
/m/017z49	memento (movie) (Q190525)
/m/01jpmpv	dmitri tiomkin (Q317033)
/m/05k17c	vice-president (education) (Q723682)
/m/01mpwj	harvard college (Q49123)
/m/0m7yy	peabodys (Q838121)
/m/01w92	channel four international (Q501070)
/m/02f71y	mtv video music award for best choreography (Q849435)
/m/0193x	biochemical phenomena (Q7094)
/m/05qfh	phsycology (Q9418)
/m/0gtvpkw	to rome with love (film) (Q29658)
/m/01lvcs1	marcus miller (Q323467)
/m/044gyq	jill scott (Q232592)
/m/01vw26l	no vaseline ep (Q173637)
/m/016h4r	chris christopherson (Q208681)
/m/011ysn	thin red line (Q221491)
/m/01h320	james a. michener (Q361653)
/m/02fqrf	batman begins (novelisation) (Q166262)
/m/03qgjwc	independent spirit award for best supporting actress (Q2294705)
/m/0221zw	sex, lies & videotapes (Q1367548)
/m/0f2v0	miami (afl) (Q8652)
/m/01z0rcq	mk olsen (Q1151944)
/m/024dgj	chris martin (musician) (Q712860)
/m/012gq6	george robert "bob" newhart (Q718078)
/m/0p_qr	coming home (1978 film) (Q1114683)
/m/03mqtr	political drama (Q7210294)
/m/03459x	terri flores (Q464042)
/m/05ztrmj	mtv movie award for best fight (Q734036)
/m/03fmfs	lincoln university (pennsylvania) (Q4570781)
/m/07cdz	benjamin braddock (Q217627)
/m/01rgcg	james e. reilly (Q1874622)
/m/04grkmd	taking woodstock (Q696652)
/m/0pspl	communication, culture & technology (Q333886)
/m/04vh83	laurence olivier's richard iii (Q1968853)
/m/082gq	military drama (Q369747)
/m/05563d	the mothers (Q530362)
/m/09rsjpv	redtails (Q1506057)
/m/0fz20l	16th academy awards (Q148609)
/m/02sj1x	alfred newman (composer) (Q367032)
/m/03gkn5	rob gates (Q212979)
/m/0tbql	wichita kansas (Q49266)
/m/03np3w	tony plana (Q544692)
/m/016kv6	salvador (movie) (Q1348423)
/m/06r2_	star trek ⅱ: the wrath of khan (Q465478)
/m/01v3bn	spangler arlington taylor (Q145132)
/m/0z843	muskogee, ok (Q524233)
/m/085pr	s morgenstern (Q506885)
/m/02pq9yv	graham king (Q653159)
/m/0212mp	clarets (Q19458)
/m/0bq3x	serial killers still at large (Q484188)
/m/0c34mt	from hell (film) (Q470771)
/m/04ydr95	the book of eli (Q274529)
/m/01fdc0	lynn redgrave (Q156552)
/m/051zy_b	a few good men (film) (Q108946)
/m/0f4yh	indiana jones: raiders of the lost ark (Q174284)
/m/07cjqy	the mac guy (Q298672)
/m/09lcsj	seraphim falls (Q1354162)
/m/0jdk0	lymph node cancer (Q208414)
/m/01kstn9	john cowan hartford (Q704700)
/m/024tcq	one hundred-eighth united states congress (Q168504)
/m/040_9	jozef teodor nalecz konrad korzeniowski (Q82925)
/m/03hnd	hg wells (Q42511)
/m/0778p	lemieux library and mcgoldrick learning commons (Q615873)
/m/0phrl	dool (Q185059)
/m/02pzxlw	/m/02pzxlw
/m/04gycf	joseph anthony fatone, jr. (Q1640877)
/m/039bpc	nicholas scott lachey (Q356109)
/m/03gyh_z	robert f. boyle (Q521400)
/m/017kct	oh! what a lovely war! (Q2545565)
/m/07bxhl	bhutan (Q917)
/m/07nv3_	mark bresciano (Q312510)
/m/0gxkm	associazione calcio parma (Q2693)
/m/0bq2g	gwennyth paltrow (Q34460)
/m/035d1m	whitewater slalom/comments (Q31874)
/m/098n5	larry gelbart (Q1806065)
/m/01qr1_	jane krakowski (Q230268)
/m/09_gdc	unseen footage (Q5253643)
/m/02xtxw	cady heron (Q631103)
/m/0391jz	rachel anne mcadams (Q190386)
/m/09xq9d	types of logic (Q8078)
/m/025sc50	modern r&b (Q850412)
/m/09bg4l	thirty-fourth vice president of the united states (Q11613)
/m/026gvfj	the lee strasberg institute (Q1542213)
/m/0cp0ph6	bad teacher 2 (Q798797)
/m/04jpk2	tommy (1975 film) (Q1419797)
/m/02_kd	four weddings and a funeral (film) (Q901213)
/m/0b13g7	tim bevan (Q1473065)
/m/011hdn	calico cooper (Q332032)
/m/0b05xm	glen morgan (Q954319)
/m/07lwsz	howard gordon (Q2410088)
/m/02kxbx3	/m/02kxbx3
/m/011yl_	shine (movie) (Q826494)
/m/094wz7q	/m/094wz7q
/m/02fx3c	damian lewis filmography (Q342533)
/m/012fvq	swarthmore university (Q1378320)
/m/08z129	sbc communications incorporated (Q35476)
/m/0bc773	59th academy awards (Q917235)
/m/0k269	ewan mcgregor (Q165518)
/m/01l1hr	rocked with gina gershon (Q229325)
/m/03fhm5	bohemian fc (Q212708)
/m/0blt6	david william duchovny (Q484365)
/m/07hwkr	white americans (Q49078)
/m/01k5zk	mary debra winger (Q229009)
/m/07h1h5	casper schmeichel (Q295797)
/m/02s2lg	denmark national soccer team (Q131785)
/m/0900j5	the texas chainsaw massacre (2003) (Q392696)
/m/0ntpv	allen county, in (Q493443)
/m/0xnvg	italian-american (Q974693)
/m/0t_2	engvara spelling (Q7976)
/m/0jw67	michael moore controversies (Q174908)
/m/03yj_0n	franklin shea whigham, jr. (Q3959303)
/m/0bv8h2	the bicentennial man (film) (Q170250)
/m/0cc5qkt	war horse film (Q218589)
/m/021dvj	ballet composers (Q4851628)
/m/03rbzn	walking (sport) (Q202391)
/m/0kxf1	battleground (film) (Q1620831)
/m/0gc_c_	land of the lost (film) (Q780981)
/m/0830vk	the holiday (soundtrack) (Q478748)
/m/04psyp	brent and shane kinsman (Q14638639)
/m/09gkx35	the guard (2011 film) (Q964909)
/m/03v3xp	clive owen (Q183178)
/m/04cj79	closer (2004 film) (Q212098)
/m/0gh65c5	cloud atlas sextet (Q28936)
/m/0412f5y	kuk harrell (Q1653721)
/m/02lbrd	faith hendricksen (Q985460)
/m/058m5m4	15th sag awards (Q1463450)
/m/0d66j2	brothers and sisters (tv series) (Q390076)
/m/01n7qlf	e.g. dailey (Q258255)
/m/04z257	the brothers grimm (movie) (Q707880)
/m/09blyk	psychological thriller film (Q590103)
/m/0fy66	manchurian candidate (Q521387)
/m/03kdl	hoover, herbert clark (Q35236)
/m/025t7ly	quaker testimonies (Q170208)
/m/0gvx_	oscar for best documentary (Q111332)
/m/0bzn6_	57th academy awards nominees and winners (Q427425)
/m/0fphgb	lucky numbers (Q1569923)
/m/01w_d6	die borussen (Q41420)
/m/088fh	yellow (colour) (Q943)
/m/03pbf	hannover unrra displaced persons camp (Q1715)
/m/04p0c	low saxony (Q1197)
/m/027hjff	13th screen actors guild awards (Q683394)
/m/02xs0q	/m/02xs0q
/m/01j7mr	daily show (Q824192)
/m/09qh1	film career of cary grant (Q83410)
/m/08b8vd	laraine day (Q466063)
/m/07fvf1	mike scully productions (Q655207)
/m/0557yqh	mouse rat (Q218035)
/m/02f73p	mtv video music award for best cinematography (Q615682)
/m/01309x	taylor, james (Q310300)
/m/01ft2l	edward danson (Q381203)
/m/07b_l	religion in texas (Q1439)
/m/019pcs	ethiopia (Q115)
/m/03pmfw	coolpix s6 (Q1218180)
/m/09p06	otto ludwig preminger (Q52997)
/m/04vvh9	the cardinal (1963 film) (Q737065)
/m/02ny6g	john spartan (Q470891)
/m/07b1gq	judge dredd (1995 film) (Q645597)
/m/03fyrh	greco-roman wrestler (Q389654)
/m/0dls3	grunge lyrics (Q11365)
/m/0d1qmz	bond 5 (Q107761)
/m/057hz	mary tyler moore (Q41342)
/m/0253b6	tia carrere (Q286570)
/m/0hnf5vm	mtv movie award for best dance sequence (Q4220897)
/m/01c9jp	best pop performance by a duo or group (Q747902)
/m/03m6t5	rich little (Q1341644)
/m/0zygc	finlandia, pennsylvania (Q368045)
/m/0f6_x	james earl jones (Q203960)
/m/015w9s	made for tv movie (Q506240)
/m/06yszk	tsv braunschweig (Q154053)
/m/0gfq9	causes of the boxer rebellion (Q150229)
/m/06b9n	manchu ch'ing (Q8733)
/m/02lx0	republica democratica de timor-leste (Q574)
/m/01w8n89	gorgone (album) (Q265252)
/m/03b3j	2019 green bay packers season (Q213837)
/m/0dwxr	modern pentathalon (Q32485)
/m/02p7_k	powers booth (Q503027)
/m/01pcql	jennifer ann agutter (Q234883)
/m/02vyw	ford coppola (Q56094)
/m/02yl42	jonathan lethem (Q440100)
/m/059xvg	garry chalk (actor) (Q267772)
/m/04d5v9	college of physicians and surgeons of new york (Q2154182)
/m/02681xs	/m/02681xs
/m/0phx4	damond albarn (Q272069)
/m/08n9ng	ian corlett (Q3090795)
/m/01gtcc	26th u.s. congress (Q4632497)
/m/05tbn	the coal state (Q1400)
/m/018m5q	fitzwilliam college (Q797897)
/m/024mxd	superman four (Q1123006)
/m/021yw7	the new adeventures of the flintstones (Q188492)
/m/05tg3	philadelphia eagles hall of fame (Q219714)
/m/07d370	time to say "please"! (Q4354658)
/m/01cdjp	caldecott honor (Q1026417)
/m/0l2hf	county of marin, california (Q108117)
/m/02tfl8	stomachache (Q183425)
/m/025hl8	ovary neoplasm (Q172341)
/m/01sxdy	/m/01sxdy
/m/04qmr	xero (demo album) (Q261)
/m/0161c	iso 3166-1:bh (Q398)
/m/06q8qh	a prairie home companion (film) (Q785709)
/m/0bytfv	ann roth (Q508660)
/m/0fx02	ian fleming (Q82104)
/m/026_w57	lois smith (Q258246)
/m/03zyvw	nancy marchand (Q257065)
/m/019fh	buffalonian (Q40435)
/m/03h4mp	georges delerue (Q435034)
/m/018mmj	forest lawn memorial park, glendale (Q1437214)
/m/03kpvp	michael gregg wilson (Q460578)
/m/03r0g9	casino royale (2006 film) (Q151904)
/m/016tb7	lisa diane marie kudrow (Q179041)
/m/02t4yc	wku (Q1474105)
/m/0325pb	/m/0325pb
/m/026_dcw	christopher lloyd (screenwriter) (Q983238)
/m/012wgb	irlande (Q22890)
/m/024lff	the fast and the furious 2 (Q222867)
/m/016fjj	christopher wlaken (Q185051)
/m/01kwhf	norwich city f. c. (Q18721)
/m/02dlh2	conga drums (Q270200)
/m/03fb3t	city and county of honolulu (hawaii) (Q487704)
/m/02114t	scarlet johanssen (Q34436)
/m/01jzyf	the man who wasnt there (Q913440)
/m/016ksk	young v (Q722042)
/m/013knm	zeta jones (Q47664)
/m/031296	julie bowen (Q40248)
/m/03pvt	hefner, hugh m. (Q194280)
/m/052h3	murray rothbard (Q297079)
/m/0gz_	aristotole (Q868)
/m/03czrpj	/m/03czrpj
/m/093dqjy	winters bone (Q301049)
/m/03lmx1	/m/03lmx1
/m/03gvt	hammond elegante (Q105891)
/m/07fpm3	ian glen (Q371430)
/m/0bd2n4	daniel jonathan stevens (Q958385)
/m/044crp	estudiantes lp (Q214940)
/m/03h2c	name of honduras (Q783)
/m/05hd32	runaway locomon (Q696346)
/m/0cqgl9	screen actors guild award for outstanding female actor - miniseries or television film (Q2462064)
/m/0hn6d	2009 stanley cup champions pittsburgh penguins (Q193643)
/m/02qvzf	stood on his head (Q1317534)
/m/05jyb2	backstairs at the white house (mini-series) (Q2557171)
/m/02q5xsx	kim manners (Q463617)
/m/03y9ccy	vince gilligan (Q4500)
/m/087vz	yugo. (Q36704)
/m/0jdk_	2000 olympics (Q8544)
/m/03shp	iran (islamic republic of) (Q794)
/m/01n_2f	iranian national team (Q184602)
/m/02cx72	stephen schwartz (composer) (Q542484)
/m/01y9xg	clea duvall (Q233347)
/m/07v64s	baroque rock (Q46046)
/m/0lzkm	jim orourke (Q547373)
/m/0hw1j	robert towne (Q721922)
/m/01q32bd	julian fuego thicke (Q467423)
/m/0h8d	american samoa/geography (Q16641)
/m/01y0y6	paul reiser (Q430922)
/m/0fpj4lx	tom morello's guitar technique (Q297552)
/m/01chg	hindi movie industry (Q93196)
/m/02w86hz	enthiran (Q283490)
/m/047d21r	the fighter (2010 film) (Q323472)
/m/0gg9_5q	ryan kavanaugh (Q202945)
/m/03cw411	reader (Q159063)
/m/05z96	poetess (Q49757)
/m/027r8p	maura tierney (Q233027)
/m/05zlld0	transformers live action movie (Q171453)
/m/03ryn	ri (Q252)
/m/0_2v	asdb (Q188822)
/m/01d8yn	aaron benjamin sorkin (Q299194)
/m/0cn_b8	phunometer (Q1286387)
/m/01_bkd	alternative metal music (Q20378)
/m/0p3r8	kelly osbourne: live at the electric ballroom (Q231182)
/m/04954r	around the world in eighty days (1956 movie) (Q696057)
/m/01wgcvn	latifah (Q1112005)
/m/02vr3gz	the orphanage (film) (Q923911)
/m/02_p5w	jim cummings (Q310292)
/m/023p7l	pocahontas (1995 movie) (Q218894)
/m/03zg2x	hope davis (Q236399)
/m/0dzz6g	american splendor (movie) (Q466961)
/m/04x4s2	david chase/comments (Q381982)
/m/0c7t58	terence winter (Q591945)
/m/0mzvm	springfield (massachussets) (Q49158)
/m/04gp1d	/m/04gp1d
/m/02gkzs	/m/02gkzs
/m/01wbz9	robert palmer (british singer) (Q325412)
/m/01n1gc	ben stine (Q816605)
/m/02yj7w	peter krause (Q433513)
/m/01r6jt2	jules styne (Q587741)
/m/01vvdm	samuel cohen (Q470040)
/m/03q5db	legend (1985 film) (Q509913)
/m/01rm8b	the frantic elevators (Q339430)
/m/04k15	ludwig van beethoven's religious views (Q255)
/m/02k13d	stand-up (news) (Q1155838)
/m/01_8w2	nelson benton (Q861764)
/m/012vwb	the university of clemson (Q631066)
/m/07h34	art of tennessee (Q1509)
/m/01pq4w	vanderbuilt university (Q29052)
/m/015wnl	sir john vincent hurt (Q200405)
/m/0kvgtf	even cowgirls get the blues (film) (Q1422017)
/m/092ys_y	tom johnson (sound engineer) (Q7816353)
/m/01wb95	the greatest story ever told (Q1218601)
/m/0bmhvpr	the descendants (Q273686)
/m/01lly5	thomas james kenny (Q299282)
/m/071cn	syracuse, n.y. (Q128069)
/m/063ykwt	zach florrick (Q19570)
/m/0chrwb	o'brien, liam (Q908941)
/m/09r9dp	jonathan d. hamm (Q313107)
/m/07kh6f3	the town (2010 film) (Q725539)
/m/02mplj	hamburger sport-verein (Q51974)
/m/063472	euterpe (production company) (Q1691552)
/m/0k8z	aapl (nasdaq) (Q312)
/m/0r679	cupertino, ca (Q189471)
/m/0178g	the boeing co. (Q66)
/m/0kh6b	david frederick attenborough (Q183337)
/m/0b_6zk	1996 ncaa division i men's basketball tournament (Q3994972)
/m/02ptzz0	/m/02ptzz0
/m/04psf	leukaemia (Q29496)
/m/0ly5n	fred mcmurray (Q356309)
/m/0h9c	astroboffin (Q11063)
/m/06q2q	scientists (Q901)
/m/08vd2q	sunday bloody sunday (film) (Q1360124)
/m/02b1cn	dunfermline athletic f.c. (Q390256)
/m/05_pkf	uptown uptempo woman (Q954231)
/m/0br1w	straczynski (Q126941)
/m/0xrzh	downtown paterson, new jersey (Q138391)
/m/03xkps	beau bridges (Q309640)
/m/063lqs	hogan sheffer (Q5877090)
/m/02b2np	hull city a f c (Q19477)
/m/01pr6q7	max steiner (Q350704)
/m/0c3xw46	friends with benefits (film) (Q629596)
/m/07vfj	rochester yellowjackets track and field (Q149990)
/m/01xbpn	orlando pirates (Q607939)
/m/02g5h5	peter macnicol (Q299309)
/m/05mkhs	emile hirsch (Q244678)
/m/0164nb	david hasselhoff (Q201927)
/m/03v0t	illinoid (Q1204)
/m/0xddr	political organization of bloomington, mn (Q490737)
/m/02qzmz6	sliver (film) (Q581642)
/m/0kw4j	american.edu (Q168000)
/m/02pqs8l	bloodcopy (Q186219)
/m/0ytc	a.s.rome (Q2739)
/m/04s7y	mb (Q1948)
/m/01kxnd	brandon, manitoba (Q61432)
/m/0yx7h	i won't be ignored, dan (Q504157)
/m/01vqrm	אטום אגוין (Q212167)
/m/0fqyzz	robert lantos (Q847366)
/m/0dgshf6	hundred flowers award for best actress (Q5942219)
/m/0gjcrrw	'''''i don't know how she does it''''' (Q723026)
/m/059_y8d	2009 berlin festival (Q572335)
/m/0qr4n	prescott, az (Q79931)
/m/02ht1k	a mighty wind (Q1754773)
/m/01wzlxj	d'angelo (Q933598)
/m/01cky2	/m/01cky2
/m/01gv_f	anne margaret (Q232059)
/m/01f08r	dubai emirate (Q613)
/m/05c26ss	dreamworks madagascar 3: the video game (Q244247)
/m/0mlyw	mount vernon-anacortes, wa metropolitan statistical area (Q113892)
/m/07s8hms	stuhlbarg, michael (Q438445)
/m/0cjsxp	michael shannon (actor) (Q41449)
/m/080nwsb	footloose (2011) (Q1197869)
/m/02_qt	final fantasy:the spirits within (Q752541)
/m/0639bg	the chronicles of narnia: the lion, the witch, and the wardrobe (Q485803)
/m/05qck	presidential medal (Q17144)
/m/0d_wms	superman ii: director's cut (Q1292541)
/m/05sy2k_	mystic falls (the vampire diaries) (Q28537)
/m/0f8pz	baron lloyd-webber (Q180975)
/m/047fjjr	shanghai (2010 film) (Q582284)
/m/088_9g	bellator frusino (Q845043)
/m/0bt7ws	angela kinsey (Q2669971)
/m/019vgs	timothy a. dick (Q208408)
/m/03q0r1	cars (2006 film) (Q182153)
/m/0jgx	iso 3166-1:am (Q399)
/m/017vkx	trevor horn (Q313092)
/m/03z106	we were soldiers (Q623502)
/m/05jm7	neil gayman (Q210059)
/m/0c57yj	mumford (film) (Q137595)
/m/062dn7	pattinson, robert (Q36767)
/m/013_vh	daniel radcliffe filmography (Q38119)
/m/076_74	james schamus (Q1354081)
/m/0dx8gj	lust, caution (film) (Q718524)
/m/03f5vvx	miss thatcher (Q7416)
/m/01_xtx	bradley cooper (Q205707)
/m/02jtjz	julia o'hara stiles (Q210120)
/m/0bkg4	brian h. may (Q15873)
/m/01fs_4	bea arthur (Q138576)
/m/06gd4	the road to graceland tour (Q203185)
/m/0btyl	ava gardner/comments (Q164487)
/m/02b0xq	f.c. bournemouth (Q19568)
/m/025t9b	jason issacs (Q214223)
/m/0jrqq	manōj nelliyaṭṭu śiyāmaḷan (Q51489)
/m/015kg1	epitaph records (Q726153)
/m/0mgcr	theoffspring (Q157041)
/m/02xv8m	oliver platt (Q343510)
/m/0843m	windsor ontario (Q182625)
/m/03nfmq	architecturally (Q12271)
/m/0bbxx9b	randy thom (Q2130828)
/m/0b1f49	brad grey (Q633631)
/m/04lqvlr	divo (Q115385)
/m/0mcl0	out of africa (film) (Q208266)
/m/0r4xt	coronado, california (Q828753)
/m/0cqt90	p:djt (Q22686)
/m/019w9j	men's rhythmic gymnastics (Q61465)
/m/0198b6	happy together (1997 film) (Q1204213)
/m/02bh8z	the warner music group (Q21077)
/m/01gfq4	rykodisk (Q656752)
/m/0fhpv4	critics' choice movie award for best score (Q922326)
/m/01gg59	list of songs performed by a. r. rahman (Q108560)
/m/04n_g	marvin, lee (Q76895)
/m/0rj0z	downtown fort lauderdale, fl (Q165972)
/m/01v40wd	nasir bin olu dara (Q194220)
/m/01vxlbm	kelis rogers (Q294979)
/m/06jnvs	greg daniels (Q1544904)
/m/0cj2nl	/m/0cj2nl
/m/02dpl9	city of lost children (Q749988)
/m/0ymdn	trinity college, oxford (Q73079)
/m/01n1pp	università di bologna (Q131262)
/m/061_f	Q13099586
/m/0466p20	tocopherols (Q155753)
/m/02z1nbg	national board of review award for best lead actress (Q1419495)
/m/024vjd	/m/024vjd
/m/02rq8k8	shining through (Q538438)
/m/0cpz4k	america's got talent(season 11) (Q467561)
/m/03ccq3s	primetime emmy award for outstanding writing for a comedy series (Q3045762)
/m/07yp0f	vera ann farmiga (Q264840)
/m/04ly1	luisianna (Q1588)
/m/0gcrg	/m/0gcrg
/m/01tc9r	howard shore (Q207773)
/m/02x1z2s	satellite award for best animated or mixed media feature (Q2620855)
/m/04w58	monacco (Q235)
/m/01b1pf	up college of arts and letters (Q746592)
/m/0cf_h9	patrick o'neal (actor) (Q543762)
/m/07gxw	experimental techno (Q170611)
/m/08cyft	/m/08cyft
/m/0p_47	steve martin (Q16473)
/m/02psqkz	kingdom of italy (1861-1946) (Q172579)
/m/05_5rjx	midnight in the garden of good and evil (film) (Q1470767)
/m/09b3v	the walt disney studio (Q7414)
/m/05m_jsg	5 killers (Q1165208)
/m/023znp	wecb (emerson college) (Q1335573)
/m/0288crq	/m/0288crq
/m/0h3mrc	mindy chokalingam (Q539917)
/m/0435vm	the island (2005) (Q224069)
/m/02f6xy	male artist of the year (Q1064978)
/m/08vr94	kristen carroll wiig (Q231382)
/m/0gywn	soul (musical genre) (Q131272)
/m/01vvyfh	georgios panayiotou (Q130311)
/m/01svw8n	strawberry girl (fergie album) (Q180004)
/m/01qq_lp	sophia scicoloni (Q43252)
/m/050t68	philip finkel (Q1277484)
/m/01vtqml	waller v. osbourne (Q133151)
/m/01ttg5	anthony kiedis/comments (Q204751)
/m/09lk2	nord (departements) (Q12661)
/m/0d8r8	history of lille (Q648)
/m/031b3h	/m/031b3h
/m/024mpp	hulk (film) (Q696042)
/m/0dlw0	umbria, italy (Q1280)
/m/062ftr	paul feig (Q2031292)
/m/0mj0c	james, william (Q125249)
/m/01zmqw	ridgebury, connecticut (Q753930)
/m/015whm	being there (1979 film) (Q945074)
/m/01p5yn	lorimar film entertainment (Q1152955)
/m/0kk9v	picksar (Q127552)
/m/027s39y	wall-e (Q104905)
/m/0q59y	george abbott (Q1506831)
/m/025v3k	umn.edu (Q238101)
/m/01ymvk	virginia mourning her dead (Q785357)
/m/02_2kg	oberlin conservatory (Q750950)
/m/03__y	kingdom of jordan (Q810)
/m/04fhn_	james robert rebhorn (Q726140)
/m/065dc4	the da vinci code (movie) (Q160560)
/m/02h761	ruth prawer (Q235759)
/m/01wb8bs	roger bart (Q634684)
/m/05dxl5	andrea bowen (Q40473)
/m/09r8l	waylon jennings i (Q251287)
/m/0gyh2wm	hpoh (Q2604581)
/m/0f6c3	atty. gen. (Q1501926)
/m/0bzyh	robert altman (Q55163)
/m/06m6z6	david owen russell (Q314342)
/m/01vrkdt	wendy melvoin (Q460852)
/m/02g75	phases of gravity (Q297538)
/m/0sf9_	un/locode:uspia (Q233129)
/m/04lqvly	vals im bashir (Q160793)
/m/03hkp	history of hebrew (Q9288)
/m/01p970	dagga (tabla) (Q213100)
/m/047kn_	lyngby bk (Q635654)
/m/014635	marc twain (Q7245)
/m/01___w	lecturers (Q1569495)
/m/0jhn7	centennial olympic games (Q8531)
/m/02cm2m	kyle mcculloch (Q4275753)
/m/01gssm	13th u.s. congress (Q4549554)
/m/047q2wc	/m/047q2wc
/m/02v0ff	al roker (Q3240869)
/m/01jr6	city of berkeley (Q484678)
/m/01wn718	skulls (lupe fiasco album) (Q310116)
/m/03t5b6	grammy award for best rap solo performance (Q2709112)
/m/01vw8k	troy (film) (Q186587)
/m/016yzz	the late henry moss (Q294583)
/m/047tsx3	the notebook (Q223374)
/m/0sb1r	lake forest, il (Q575355)
/m/0fr0t	tucson, usa (Q18575)
/m/0h9dj	skin malignancy (Q192102)
/m/0bxfmk	mali finn (Q529470)
/m/0jymd	laura (1944 movie) (Q976149)
/m/0ncj8	boulder co (Q192517)
/m/0blpg	everyone says i love you (Q1334572)
/m/0bsjcw	tony award for best performance by a featured actress in a play (Q627778)
/m/033srr	national treasure (film) (Q309366)
/m/05842k	percussion (medicine) (Q1501797)
/m/0pd6l	nicholas and alexandra (Q512475)
/m/099bk	heidegger (Q48301)
/m/0372p	von leibniz (Q9047)
/m/0fdys	early modern english literature (Q186579)
/m/02lnbg	dancepop (Q211756)
/m/0gbwp	janet damita jo jackson (Q131324)
/m/0184tc	labrynth (film) (Q278053)
/m/04w391	shia saide labeouf (Q180942)
/m/011yfd	postino: the postman (Q258647)
/m/038bht	william petersen (Q311892)
/m/05t7c1	universitaet hamburg (Q156725)
/m/01dvtx	straussianism (Q77144)
/m/01nm3s	john goodman/comments (Q215072)
/m/01g23m	kate g. hudson (Q169946)
/m/0425c5	lucky goldstar fc (Q482406)
/m/03hmt9b	/m/03hmt9b
/m/07h07	tomas straussler (Q294773)
/m/0320fn	'' short cuts '' (Q605226)
/m/0163m1	earth wind & fire (Q28974)
/m/0gj50	pine valley (all my children) (Q205474)
/m/025mb9	/m/025mb9
/m/037lyl	johnny mandel (Q975609)
/m/06gh0t	jason momoa (Q315271)
/m/06mnbn	lena heady (Q228789)
/m/09r4xx	/m/09r4xx
/m/02dk5q	public school (u.s.) (Q1080794)
/m/03qbh5	grammy award for best pop collaboration with vocals (Q691203)
/m/04pf4r	harry gregson williams (Q314623)
/m/06fxnf	john powell (composer) (Q313540)
/m/0btbyn	3:10 to yuma (2007 film) (Q746029)
/m/0884hk	/m/0884hk
/m/09hd16	arthur carlton cuse (Q443440)
/m/0n04r	anatomy of a murder (Q488376)
/m/0v9qg	/m/0v9qg
/m/02wxvtv	sharat saxena (Q7489431)
/m/01w8g3	calendar girls (Q83789)
/m/0lcx	camus, albert (Q34670)
/m/01c8v0	mark knofler (Q185343)
/m/0hyxv	glasgow’s west end (Q4093)
/m/01y888	university of genf (Q503473)
/m/0g9yrw	howard the duck (movie) (Q1146570)
/m/043s3	lockean (Q9353)
/m/0h584v	elizabeth sarnoff (Q1134799)
/m/01xndd	/m/01xndd
/m/04m_zp	graham yost (Q2712978)
/m/015g28	lieutenant thomas peacock (Q208048)
/m/02_sr1	rush hour ii (Q830208)
/m/035rnz	sunrise coigney (Q41422)
/m/02mt51	eternal sunshine of the spotless minds (Q208269)
/m/0gy2y8r	hope springs (2012 film) (Q327214)
/m/03lq43	jennifer esposito (Q233922)
/m/06t74h	william fichtner (Q220335)
/m/01m15br	christhile (Q596779)
/m/06z6r	swimming (sport) (Q31920)
/m/07swvb	k-stew (Q126599)
/m/07s846j	social network (Q185888)
/m/0ddcbd5	johnny english returns (Q967478)
/m/0nccd	enfield (Q210531)
/m/0kv9d3	painted veil (Q128854)
/m/02t_v1	calogero lorenzo palminteri (Q338812)
/m/050z2	mikeoldfield (Q3008)
/m/01pkhw	michael sheen (Q298276)
/m/074w86	deuce bigalo: european gigolo (Q1201654)
/m/034bs	john freeman (Q3335)
/m/01ycck	sir alan william parker (Q271284)
/m/0c2ry	carole lombard/comments (Q207739)
/m/03n93	hughes, howard (Q189081)
/m/077qn	iso 3166-1:rs (Q403)
/m/05hj_k	harvey winesteen (Q531599)
/m/0498y	us-ky (Q1603)
/m/0bqsy	furtado, nelly (Q80424)
/m/08cx5g	torchwood (tv series) (Q390120)
/m/03bx_5q	/m/03bx_5q
/m/029_3	lettermanesque (Q217298)
/m/0ph2w	john william carson (Q310819)
/m/02d478	21 grammes (Q214013)
/m/0fbw6	culture of cabbage (Q35051)
/m/0hqw8p_	phytylmenadione (Q186093)
/m/0yl27	history of county down (Q190684)
/m/05bcl	northern ireland (uk) (Q26)
/m/02lt8	edgar allan poe and the stories he has written (Q16867)
/m/07dvs	p:tjk (Q863)
/m/01m1zk	stamford, conn. (Q49169)
/m/01n9d9	a stanley kramer company production (Q73136)
/m/031q3w	/m/031q3w
/m/02vyh	associated first national theatres, inc. (Q1188369)
/m/011k_j	kettle-drum (Q189737)
/m/081g_l	avex trax (Q1988428)
/m/0dl567	tailor swift (Q26876)
/m/096ysw	anti- (epitaph) (Q295794)
/m/016dsy	no exit (marianne faithfull album) (Q48280)
/m/0gmblvq	game change (film) (Q655980)
/m/01rf57	alias (tv series) (Q212807)
/m/02wycg2	danny r mcbride (Q336400)
/m/06_x996	up in the air (2009) (Q211429)
/m/01hw5kk	madmartigan (Q515931)
/m/04xvh5	period drama (Q542475)
/m/02kfzz	ghost and the darkness (Q728488)
/m/01sn3	sister cities of cleveland, ohio (Q37320)
/m/09sdmz	screen actors guild award for best male actor in a supporting role - motion picture (Q1260789)
/m/0d05q4	republic of iraq (Q796)
/m/0h6r5	goodfellas (film) (Q42047)
/m/01gjlw	association sportive de monaco football club (Q180305)
/m/0hm4q	rector magnificus (Q212071)
/m/0pmcz	rupert charles university (Q151510)
/m/03zw80	dallas theological seminary, dts (Q3269488)
/m/0bpbhm	cookie's fortune (Q662838)
/m/01f1r4	uc-santa barbara university (Q263064)
/m/01lj9	pure chemistry (Q2329)
/m/01vd7hn	stuart duncan (Q3307638)
/m/01m1dzc	norman blake (american musician) (Q1514469)
/m/02jsgf	joan allen (Q229305)
/m/0143hl	ctv (bath) (Q1422458)
/m/0824r	us-wi (Q1537)
/m/04fzk	kristen dunst (Q76478)
/m/073749	jennifer audrey coolidge (Q230278)
/m/02648p	atlåntis (Q215287)
/m/01v3vp	david ogden stiers (Q202449)
/m/07tw_b	the producers (2005 film) (Q2119348)
/m/0cmc26r	dangerous method (Q188159)
/m/014z8v	george dennis carlin (Q150651)
/m/01b65l	forrester originals boutiques (Q82729)
/m/027qq9b	outstanding daytime drama series (Q3019365)
/m/04mnts	ac ajaccio (Q270051)
/m/0m9_5	old gold and royal purple (Q1277776)
/m/07jxpf	jarhead (film) (Q848785)
/m/01tj34	candice bergen (Q106942)
/m/04gqr	al jumahiriyah al arabiyah al libiyah ash shabiyah al ishtirakiyah al uzma (Q1016)
/m/01p1b	jumhūriyyat tshād (Q657)
/m/02xjb	freestyle music (Q655514)
/m/01wv9p	magnus media (Q26625)
/m/02r5qtm	big bang theory theme (Q8539)
/m/05slvm	kate nelligan (Q266467)
/m/086sj	winona laura horowitz la mas linda (Q101797)
/m/049mql	alexander (2004 film) (Q162277)
/m/015vq_	hoskins, bob (Q211283)
/m/031rx9	fine line features (Q1416899)
/m/06lpmt	deconstructing harry (Q551762)
/m/07kb7vh	'' zookeeper '' (Q477070)
/m/05c9zr	eragon the movie (Q239296)
/m/0dz8b	swords and sorcery (Q1999690)
/m/07cn2c	stephanie grace morgenstern (Q3502206)
/m/027cyf7	national board of review award for best cast (Q697007)
/m/02jr6k	frenzy (1972 film) (Q221587)
/m/0410cp	annabeth gish (Q230779)
/m/027pfb2	scarlett (tv miniseries) (Q1520271)
/m/012ky3	legrand jazz (Q313281)
/m/01sb5r	/m/01sb5r
/m/0h_9252	2012 tony awards (Q2818024)
/m/017yfz	angel dust (gil scott-heron song) (Q378858)
/m/0jxgx	pinellas public library cooperative (Q494556)
/m/0lhql	saint petersburg, us (Q49236)
/m/035wtd	oklahoma city university school of drama (Q3443498)
/m/0g28b1	victor b. miller (Q7926158)
/m/026n3rs	/m/026n3rs
/m/017znw	hibernian f.c. (Q192597)
/m/0308kx	steven bradford culp (Q465914)
/m/06qm3	screwball comedy (Q248583)
/m/0r0m6	malibu california (Q387047)
/m/032zq6	what dreams may come (1998) (Q839434)
/m/0294fd	miranda otto (Q294975)
/m/014g22	steenburgen (Q108935)
/m/027_tg	fx hd (us) (Q651228)
/m/0gv10	nantucket island, massachusetts (Q49149)
/m/01kh2m1	robert cray band (Q455723)
/m/0g83dv	breaking and entering (film) (Q241391)
/m/011yr9	elizabeth (movie) (Q499656)
/m/02qzh2	jersey girl (2004 film) (Q127897)
/m/03x33n	southern university baton rouge campus (Q627271)
/m/01wy61y	sheena ringo (Q234591)
/m/0gqkd	fukuoka (city) (Q26600)
/m/047t_	languages of kiribati (Q710)
/m/02mqc4	susan antonia williams stockard (Q1117390)
/m/04y5j64	six degrees of separation (film) (Q1169609)
/m/08fn5b	flags of our fathers (film) (Q464951)
/m/0dh73w	henry bumstead (Q714747)
/m/01f7v_	kar-wai wong (Q55431)
/m/05l71	lv raiders (Q324523)
/m/092j54	2003 national football league draft (Q3714946)
/m/09lhln	kevin betsy (Q3195661)
/m/01wz01	kier dullea (Q692979)
/m/07nxvj	the good shepard (Q786562)
/m/0d61px	the man in the iron mask (1998 film) (Q1123463)
/m/03nx8mj	old dogs (film) (Q1229857)
/m/0263ycg	/m/0263ycg
/m/0bmssv	the night at the museum (film) (Q387601)
/m/0pd57	"airport" (Q409022)
/m/0171lb	george stenius (Q288337)
/m/0l380	cities of tulare county, california (Q109686)
/m/07yg2	the velvet underground (Q103550)
/m/024fz9	grammy award for best spoken word album for children (Q3113382)
/m/01m3x5p	wynton marsalis quartet (Q273076)
/m/04gtdnh	/m/04gtdnh
/m/0f0qfz	alan parsons (Q212089)
/m/05mv4	oberlin college (Q616591)
/m/02qhlwd	valkyrie (movie) (Q159054)
/m/026lg0s	/m/026lg0s
/m/02pqgt8	milena canonero (Q440313)
/m/036px	garth vader (Q216288)
/m/02wrrm	george kennedy, jr. (Q298818)
/m/026bt_h	/m/026bt_h
/m/04cv9m	all the king's men (2005 movie) (Q581964)
/m/02ctzb	/m/02ctzb
/m/09b6zr	g.w. bush (Q207)
/m/01242_	mrs. brown (Q1516164)
/m/05fky	the flickertail state (Q1207)
/m/016ndm	western university (Q1144262)
/m/025ldg	kellly clarkson (Q483507)
/m/0_75d	noristown, pennsylvania (Q1010236)
/m/0fxyd	county of montgomery, pennsylvania (Q378527)
/m/070g7	/m/070g7
/m/02dth1	peter boyle (Q315123)
/m/0c3351	suspense (Q9503)
/m/028qdb	roy bittan (Q464238)
/m/03k0yw	rick nowels (Q3431589)
/m/061xq	pittsburg pirates (Q653772)
/m/02gr81	uh health sciences center (Q1472358)
/m/02t1cp	william forsythe (actor) (Q350255)
/m/0221g_	texas christian (Q2302280)
/m/0nr_q	johnson county, ia (Q485746)
/m/0nryt	linn county, iowa (Q485741)
/m/0219q	cary elwes (Q311093)
/m/03q8ch	michael kahn (film editor) (Q692550)
/m/0hfzr	/m/0hfzr
/m/02v406	dolph lundgren filmography (Q181678)
/m/03hbzj	john romita, jr. (Q2570)
/m/06wkj0	/m/06wkj0
/m/01v3ht	uni of wales (Q1072029)
/m/0j5g9	cymru (Q25)
/m/051q5	mn vikings (Q221150)
/m/02md2d	st eligius hospital (Q1068952)
/m/05qb8vx	82nd academy awards (Q189836)
/m/09qvf4	primetime emmy award for outstanding guest actress – comedy series (Q2981152)
/m/027b9k6	london film critics circle award for best actress (Q1868921)
/m/020923	boalt hall (Q846183)
/m/01gy7r	william james pullman (Q315763)
/m/01x72k	claire forlani (Q40228)
/m/04k4l	leagueofnations (Q38130)
/m/04j4tx	/m/04j4tx
/m/07mb57	chris menges (Q1077553)
/m/01trf3	martin hayter short (Q329744)
/m/01kp66	holly hunter (Q105660)
/m/03176f	/m/03176f
/m/06hgbk	škoda xanthi (Q750437)
/m/01w524f	steven patrick morrissey (Q202246)
/m/04snp2	jeph loeb iii (Q1372513)
/m/0x3b7	sjones23/emmylou harris (Q231286)
/m/044qx	jimmy stuart (Q102462)
/m/0gcpc	its a wonderful life (Q204191)
/m/01vy_v8	frank richard oznowicz (Q311319)
/m/0713r	s.f.giants (Q308966)
/m/028c_8	personal catcher (Q1050571)
/m/0m8_v	jean claude van dam (Q308840)
/m/08jbxf	jade bronson north (Q496065)
/m/02vntj	adam shulman (Q36301)
/m/01zg98	james brolin (Q315051)
/m/07vf5c	evita (1996 movie) (Q245271)
/m/057dxsg	joseph kish (Q1707407)
/m/05v1sb	lyle reynolds wheeler (Q586320)
/m/05qg6g	zoë saldaña (Q190162)
/m/0ccvx	government of queens (Q18424)
/m/0fbx6	juliette binoche (Q106275)
/m/0lgxj	the 1952 summer olympics (Q8407)
/m/03lsq	2019 houston texans season (Q223514)
/m/01q0kg	sdsu open air theater (Q913861)
/m/0dzc16	emilio estefan (Q838508)
/m/01xcr4	babwa wawa (Q231417)
/m/0h53c_5	/m/0h53c_5
/m/0d193h	mookie blaylock (Q142701)
/m/017y26	penn law (Q7896088)
/m/02yplc	molly shannon (Q239145)
/m/0c2dl	edward albee (Q219420)
/m/06whf	samuel becket (Q37327)
/m/015qt5	art carney (Q182431)
/m/08t9df	backbone entertainment (Q389261)
/m/02822	/m/02822
/m/05sns6	mr and ms smith (Q191040)
/m/06wjf	un/locode:cnsha (Q8686)
/m/07jdr	train (Q870)
/m/062zjtt	thor film (Q217020)
/m/0g4c1t	five (television) (Q1062280)
/m/01hn_t	thomas' christmas wonderland & other thomas adventures (Q501663)
/m/0bs5k8r	mao's last dancer (film) (Q622877)
/m/046qq	jon vincent voight (Q167520)
/m/0kqj1	hbs (Q49126)
/m/01y8cr	mona greenberg (Q94992)
/m/097zcz	a streetcar named desire (1951 film) (Q212129)
/m/035qlx	cyprus national football team (Q188791)
/m/02yxwd	ray winston (Q310932)
/m/031ydm	cynthia watros (Q230109)
/m/02fn5	dennis hopper (Q102711)
/m/0k8y7	wood, natalie (Q180919)
/m/03h2d4	strong, mark (Q312712)
/m/05f4_n0	damon macready (Q2201)
/m/018dyl	klaus voormann (Q366700)
/m/02cbvn	faculty of agricultural sciences, aligarh muslim university (Q196544)
/m/0gtxj2q	step up 4ever (Q81044)
/m/07jwr	extrapulmonary (Q12204)
/m/0zm1	a. p. chekhov (Q5685)
/m/02rg_4	lafayette coll (Q1592074)
/m/01r93l	jude law filmography (Q160432)
/m/09l3p	natalie hershlag (Q37876)
/m/07vyf	u of a (Q503419)
/m/04yt7	palin, michael edward (Q223985)
/m/0l0mk	santa cruz pacific avenue (Q159232)
/m/04511f	brannon braga (Q540510)
/m/02q_4ph	south pacific (1958 film) (Q2610975)
/m/0d5_f	johan august strindberg (Q7724)
/m/06vbd	syrien (Q858)
/m/08qvhv	gene reynolds (Q540613)
/m/08952r	ballad of ricky bobby (Q1421593)
/m/0215hd	fisher boom (Q373709)
/m/037mp6	turkey national soccer team (Q483856)
/m/012rng	norman frederick jewison (Q309214)
/m/0b78hw	noam chomskey (Q9049)
/m/01bpn	lord bertrand russell (Q33760)
/m/064vjs	canoe race (Q1141850)
/m/01xqw	'cello (Q8371)
/m/06929s	enron: the smartest guys in the room (Q1344190)
/m/0243cq	the nightmare before christmas trading card game (Q322328)
/m/07rd7	tim burton films (Q56008)
/m/0sxkh	kiss of the spider woman (film) (Q1215865)
/m/01j8yr	waukesha (city), wisconsin (Q94919)
/m/05q8pss	razzie award for worst original song (Q1420891)
/m/018009	eric banadinović (Q4440)
/m/0884fm	harry bernard cross (Q708256)
/m/022wxh	assassins: a film concerning rimbaud (Q446580)
/m/0g26h	Q5283295
/m/0gk4g	ami (Q12152)
/m/07_grx	roy webb (Q1367973)
/m/0flw6	jeff bridges (2011 album) (Q174843)
/m/0fby2t	jonah feldstein (Q313388)
/m/0fz3b1	period blood girl (Q679611)
/m/016yr0	eddie olmos (Q211415)
/m/01z7_f	james joseph gandolfini jr. (Q308722)
/m/05c5z8j	in the loop (Q770741)
/m/0kvqv	the spearhead effect (Q215478)
/m/01hqk	batsled (Q276523)
/m/0cnl1c	brian bruce baumgartner (Q2924850)
/m/0cnl09	leslie david baker (Q1050211)
/m/02xfrd	chiranjeevi konidala (Q313243)
/m/0c8tk	chennai schools (Q1352)
/m/0bpm4yw	batman 7 (Q189330)
/m/01cj6y	adrien brody (Q104514)
/m/0bqxw	emory university (Q621043)
/m/0jwl2	list of house of mouse characters (Q693268)
/m/021l5s	terre haute state normal (Q666128)
/m/02fjzt	university of rhode island historic district (Q1641788)
/m/01k3s2	university of alberta faculty of science (Q640694)
/m/02cx90	ak&us (Q371782)
/m/03x83_	/m/03x83_
/m/073w14	elias koteas (Q379808)
/m/0jmj	allan alda (Q310394)
/m/04smdd	crimes and misdeamoners (1989 film) (Q181555)
/m/035tlh	horace spangler weiser (Q4412277)
/m/01dvms	patsy louise neal (Q191027)
/m/0_vn7	knoxville, tennessee (Q185582)
/m/03lv4x	'breaker' morant (Q1195774)
/m/09v71cj	the beaver (film) (Q847940)
/m/06mn7	stanley kubrick's (Q2001)
/m/0lgw7	freelance photography (Q33231)
/m/08tq4x	ulysses' gaze (Q668280)
/m/06wxw	saint louis, missouri (Q38022)
/m/0mw7h	york-hanover-gettysburg, pa csa (Q490914)
/m/0mwsh	rockville, pa (Q488690)
/m/0g9lm2	the queen (soundtrack) (Q223367)
/m/0f502	jet travolta (Q80938)
/m/03wbqc4	the taking of pelham 1 2 3 (2009 film) (Q869719)
/m/02j3w	redhead park of des moines iowa (Q39709)
/m/033x5p	university of pacific (Q630226)
/m/065zf3p	rasenballsport leipzig (Q702455)
/m/0c_zj	downing college, cambridge (Q181461)
/m/01vxxb	billy zane (Q205435)
/m/02kxwk	bobo bates (Q544465)
/m/0b_6x2	1993 ncaa men's division i basketball tournament (Q3994969)
/m/02pqcfz	southern branch grizzlies men's basketball (Q3615392)
/m/015wfg	roy scheider (Q216569)
/m/05txrz	rogen, seth (Q220308)
/m/02rmd_2	zack & miri (Q139927)
/m/03c3jzx	mongol invasion of middle east (Q2092093)
/m/02bwc7	burnett, mark (Q3294019)
/m/01rxyb	kill bill, volume i (Q165325)
/m/062hgx	gideon adlon (Q271426)
/m/02pt6k_	/m/02pt6k_
/m/057lbk	fantastic 4 (2005 film) (Q224130)
/m/01vsps	john houseman (Q315734)
/m/03z509	amanda plummer (Q238483)
/m/0qf11	roderick stewart (Q182655)
/m/03tk6z	/m/03tk6z
/m/07b3r9	tony thomas (producer) (Q3531913)
/m/01b9w3	soap tv show (Q1247292)
/m/03xp8d5	james l brooks (Q95125)
/m/0fc9js	/m/0fc9js
/m/0kvnn	list of songs recorded by elliott smith (Q210428)
/m/0fz2y7	31st academy awards (Q178975)
/m/03l3jy	left of zed (Q312705)
/m/0h6rm	edinburgh university conservative and unionist association (Q160302)
/m/08yx9q	eric dane (Q299421)
/m/06gb1w	x3 (film) (Q221168)
/m/0b6mgp_	gary summers (Q1494959)
/m/049qx	kylie discography (Q11998)
/m/01mt1fy	donnie wayne johnson (Q309788)
/m/06nr2h	life and death of peter sellers (Q581733)
/m/0gyx4	henry w. beatty (Q95030)
/m/0h32q	vanessa redgrave cbe (Q347879)
/m/055td_	the crucible (1996 film) (Q596984)
/m/02mjf2	matthew david mcconaughey (Q188955)
/m/02lg3y	andrea donna de matteo (Q232965)
/m/06ryl	sports in saint kitts and nevis (Q763)
/m/0j7v_	plan g (Q7785)
/m/0cq7tx	sound of music sing-along (Q60072)
/m/03thw4	ernest lehman (Q1356427)
/m/02ltg3	elftal (Q47050)
/m/039crh	shannen doherty (Q207598)
/m/04yqlk	teri polo (Q236300)
/m/03tps5	martha focker (Q740489)
/m/017j69	north-western university (Q309350)
/m/033jkj	the greatest love story ever told: an oral history (Q234137)
/m/0l34j	cities of solano county, california (Q108083)
/m/0gjcy	north vallejo (Q208445)
/m/018z_c	marly matlin (Q213287)
/m/06msq2	/m/06msq2
/m/099vwn	critics' choice movie award for best song (Q904344)
/m/04mhl	laurence van cott niven (Q316610)
/m/02664f	nebula award for best short story (Q610903)
/m/0d35y	arizona military museum (Q16556)
/m/01pfkw	e&s music (Q162629)
/m/0166v	khama's country (Q963)
/m/06zn2v2	don't be afraid of the dark (2011 film) (Q2299378)
/m/076psv	walter m. scott (Q506302)
/m/0blfl	bids for the 1948 winter olympics (Q9615)
/m/0979zs	wurlitzer ep-200a (Q1759986)
/m/0c1gj5	hc salavat yulaev ufa (Q1142030)
/m/07k8rt4	green hornet (2011 film) (Q738152)
/m/02jxmr	james newton-howard (Q213869)
/m/0g33q	rub-board (Q1123029)
/m/043sct5	the good, the bad and the weird (Q488947)
/m/0pd4f	patton (movie) (Q217220)
/m/02xwq9	robert guillaume (Q465442)
/m/01k70_	jenna welch bush (Q153481)
/m/0674cw	hrishikesh mukherji (Q55408)
/m/0bvqq	collegiate church of st peter, westminster (Q5933)
/m/015c4g	bob duvall (Q171736)
/m/01gsrl	tenth united states congress (Q4547180)
/m/033tln	eric stoltz (Q318267)
/m/04g4n	lesliecaron (Q230023)
/m/01y64_	lena maria jonna olin (Q228862)
/m/0125xq	floston paradise (Q106506)
/m/06mp7	swedophone (Q9027)
/m/0b6k___	filmfare best director awards (Q1113428)
/m/09fn1w	akbar-jodha (Q573112)
/m/0c53zb	26th academy awards (Q516479)
/m/0db94w	괴물 (Q488222)
/m/03nqbvz	sam o'steen (Q2216597)
/m/01k60v	silkwood (Q1412037)
/m/0d5wn3	stuart craig (Q979511)
/m/0d1w9	segregation unit (Q40357)
/m/04pxcx	heather mitts feeley (Q240714)
/m/034r25	king arthur (2004) (Q337090)
/m/0dr_9t7	bernie (2011 film) (Q1029212)
/m/016y_f	'' cape fear '' (Q501995)
/m/0h778	wilksbarre, pennsylvania (Q745594)
/m/0m_q0	sayonara (Q614864)
/m/03cfkrw	the end of the affair (1999 film) (Q1167725)
/m/03fykz	david x cohen (Q455743)
/m/0yxm1	moonstruck (movie) (Q1336107)
/m/0fcsd	asia(band) (Q726891)
/m/01900g	chris tucker (Q219717)
/m/016ks_	woods, james (Q193105)
/m/05pdh86	twilight: new moon (Q116928)
/m/086nl7	bill hader (Q14537)
/m/01_x6d	matthew richard "matt" stone (Q44410)
/m/01wwvd2	antonio "la reid" reid (Q604575)
/m/03hzl42	noah taylor (Q563177)
/m/043vc	jacksonville jaguars (Q272223)
/m/02y_2y	spirit dance entertainment (Q182763)
/m/026g73	bongocero (Q243998)
/m/03nk3t	stephen frears (Q55258)
/m/0m_31	arthel lane watson (Q465636)
/m/01vvyvk	mary jane blige (Q228909)
/m/01ws9n6	steve garrett (Q1511182)
/m/01vw20h	shawn knowles-carter (Q62766)
/m/0gv5c	ben hecht (Q267441)
/m/028k57	the dad from american pie (Q312129)
/m/04gv3db	battle of the smithsonian (Q476726)
/m/0d05fv	albert arnold gore jr. (Q19673)
/m/02x17c2	satellite award for best original song (Q919999)
/m/03q95r	e g marshall (Q706165)
/m/0mzkr	island (universal) (Q190585)
/m/03xhj6	sparks band (Q1344131)
/m/01_lhg	azzuri (Q676899)
/m/02md_2	interim head coach (Q3246315)
/m/01ync	colorado rockies (sports) (Q388858)
/m/02gdjb	/m/02gdjb
/m/01qxc7	beetle juice (Q320384)
/m/02k21g	mya rudolph (Q236527)
/m/04h07s	lyle kane (Q1319744)
/m/0cdbq	all-russian empire (Q34266)
/m/01k6y1	royal prussian states (Q27306)
/m/057xkj_	/m/057xkj_
/m/04t38b	irwin winkler (Q950428)
/m/075wq	maewyn (Q165479)
/m/03ckvj9	/m/03ckvj9
/m/043tz0c	informant! (Q604083)
/m/068p2	geography of pittsburgh (Q1342)
/m/01pj_5	scary movie (soundtrack) (Q219424)
/m/0272_vz	mamma mia! the movie (Q188850)
/m/02wgk1	spider man 2 (Q190145)
/m/06z68	swimming (synchronized) (Q180692)
/m/0cq7kw	my fair lady (film) (Q201215)
/m/012wg	alan jay lerner (Q961893)
/m/08036w	harrogate a.f.c. (Q2219286)
/m/08pth9	elisabeth moss (Q233466)
/m/09btt1	christina rene hendricks (Q210462)
/m/0bqdvt	/m/0bqdvt
/m/04p3c	leodis (Q39121)
/m/01xn7x1	oriol rey erenas (Q1128631)
/m/036jb	gene kelly (Q73089)
/m/05dmmc	american in paris (Q747570)
/m/06tpmy	16 blocks (Q169000)
/m/04hzfz	start fc (Q737947)
/m/0p0cw	boulder, co msa (Q113029)
/m/01s81	cheers chars (Q732063)
/m/0hgnl3t	flight (2013 film) (Q564298)
/m/084l5	washington redskins/doc (Q212654)
/m/01swck	john michael turturro (Q244234)
/m/07fj_	republique tunisienne (Q948)
/m/01xpg	carthaginia (Q6343)
/m/0f5hyg	granada club de fútbol (Q8812)
/m/03j722	waxtap (Q172969)
/m/06sfk6	the siege (Q779658)
/m/04vzv4	walter plunkett (Q711664)
/m/033w9g	terry o’quinn (Q271637)
/m/02x8z_	brucehornsby (Q918502)
/m/0gbtbm	the path to 9/11 (Q1140309)
/m/07j94	the sixth sense (Q183063)
/m/071_8	simon frasier university (Q201603)
/m/02f764	/m/02f764
/m/0fqy4p	paramount classics (Q1148711)
/m/02phtzk	the kite runner (film) (Q1057045)
/m/030cx	friends (tv series) (Q79784)
/m/09yrh	jennifer anniston (Q32522)
/m/01817f	carly simmon (Q181683)
/m/0q9sg	rocky iv (Q387638)
/m/04yf_	misisipi river (Q1497)
/m/08nvyr	babel (movie, 2006) (Q191074)
/m/01r3kd	girl scouts of the us (Q2576280)
/m/07m9cm	til schweiger (Q57391)
/m/01q6bg	rodney sturt taylor (Q308459)
/m/05p09dd	oscar et lucinda (Q2033052)
/m/05gg4	ny giants (Q190618)
/m/03_hd	js mill (Q50020)
/m/03f4xvm	terrell smith (Q38875)
/m/03sc8	ibm business continuity and resiliency services (Q37156)
/m/0180w8	acoustic rarities (Q539955)
/m/04mcw4	ij4 (Q182373)
/m/030_3z	frank marshall (film producer) (Q549570)
/m/01vyv9	larry hagman (Q100440)
/m/01gn36	winters, jonathan (Q4538)
/m/02zcnq	california state-sacramento hornets (Q1026941)
/m/01lnyf	national institute for aviation research (Q429561)
/m/019sc	/m/019sc
/m/02wr2r	wanda sikes (Q237194)
/m/0ccd3x	west side story(film) (Q273704)
/m/02lk95	stylesonic records (Q356487)
/m/06nz46	frederick a young (Q965659)
/m/0grrq8	robert greenhut (Q2157353)
/m/0dzf_	valerie velardi (Q83338)
/m/01gb54	dreamworks studios (Q192557)
/m/011wtv	minority report (2002 film) (Q244604)
/m/0pmw9	paul schaeffer (Q963626)
/m/0d3qd0	john kerry (Q22316)
/m/02j3d4	americana classical fusion (Q731734)
/m/09lxtg	trinidadian and tobagonian (Q754)
/m/03558l	two guard (Q273199)
/m/0jm6n	new orleans/oklahoma city hornets (Q172339)
/m/0h005	frederick quimby (Q555910)
/m/0gq_d	best animated short film (Q917808)
/m/02dbp7	david walter foster (Q77112)
/m/05xzcz	saba battery f.c. (Q613931)
/m/012z8_	marvin gaye (Q189758)
/m/0l2vz	san mateo county (Q108101)
/m/0r5wt	redwood city, california (Q505549)
/m/021pqy	lagaan: once upon a time in india (2001 film) (Q843949)
/m/026l37	joe mantegna (Q276269)
/m/02ppg1r	/m/02ppg1r
/m/02897w	willamette university (Q930291)
/m/0bmnm	tin flageolet (Q615403)
/m/025l5	chet atkins (Q72096)
/m/02hvd	dc national comics (Q2924461)
/m/04bcb1	john spencer (actor) (Q352748)
/m/015d3h	borgnine (Q102551)
/m/0l76z	sex and the city (Q35791)
/m/03fg0r	darren bennett star (Q452063)
/m/0fgj2	bucks (Q23229)
/m/04x4vj	civil action (Q206886)
/m/05vxdh	bridget jones's diary (soundtrack) (Q752313)
/m/0478__m	little monsters (social networking site) (Q19848)
/m/05vzw3	mark "spike" stent (producer) (Q4355977)
/m/023l9y	bill nelson musician (Q3272899)
/m/02d49z	13 (Q1141912)
/m/03bpn6	edmond o'brien/comments (Q119935)
/m/0fzrtf	30th academy awards (Q684095)
/m/07t90	asuw experimental college (Q219563)
/m/081yw	washington (u.s. state) (Q1223)
/m/0sv6n	un/locode:usbrl (Q580182)
/m/09gb_4p	127 hours: the aron ralston story (Q174371)
/m/0hd7j	university of mississippi at oxford (Q1138384)
/m/0432_5	黑鬼 (Q767751)
/m/0c_v2	thai pronouns (Q9217)
/m/042xrr	anderson, anthony (Q313918)
/m/0h03fhx	argo (2012 movie) (Q59653)
/m/044k8	janis joplin discography (Q1514)
/m/0p7h7	jerry lee louis (Q202729)
/m/017jd9	the lord of the rings: the return of the king (film) (Q131074)
/m/02v60l	david arquette (Q294185)
/m/0mmzt	city of winchester, virginia (Q492355)
/m/03ttn0	/m/03ttn0
/m/0mwzv	greater reading area (Q490920)
/m/0dlngsd	shagos (Q243643)
/m/01rhl	classical guitars (Q719120)
/m/03gt46z	/m/03gt46z
/m/04gnbv1	/m/04gnbv1
/m/03d6fyn	actiblizzion (Q344341)
/m/01vsy7t	david jones (Q5383)
/m/02vrgnr	hancock (film) (Q220376)
/m/04tgp	miſsiſsippi river (Q1494)
/m/01msrb	robin hood prince of thieves (Q486822)
/m/024swd	goodson-todman productions (Q6767774)
/m/01s3kv	eye for an eye(fran drescher) (Q230632)
/m/038bh3	runaway jury (Q151870)
/m/05qtj	paris (Q90)
/m/016fnb	carousel (gwen stefani song) (Q483379)
/m/05bnq3j	/m/05bnq3j
/m/05typm	swoosie kurtz (Q238052)
/m/0315q3	the risk agent (Q107730)
/m/06_6j3	vic joseph mignogna (Q843552)
/m/0c38gj	blood diamond (film) (Q74958)
/m/04g3p5	ed zwick (Q314142)
/m/01l03w2	ralph edmond stanley (Q3302436)
/m/045w_4	/m/045w_4
/m/02sqkh	criminal intent (Q1055728)
/m/02t_99	amy mccarthy (Q230993)
/m/030p35	picket fences (Q1247248)
/m/018n6m	missy 'misdemeanor' elliott (Q155079)
/m/0n2g	/m/0n2g
/m/0394y	the grateful dead (Q212533)
/m/080lkt7	howl (2010 film) (Q1632040)
/m/03h610	carter burwell (Q374754)
/m/084z0w	mathavan (Q729982)
/m/0fhxv	peter gabriel (Q175195)
/m/043gj	john wayne/comments (Q40531)
/m/04v8h1	the alamo (1960) (Q1621909)
/m/03dpqd	miriam margolis (Q234128)
/m/0fgrm	mulan (1998 film) (Q537407)
/m/043t8t	alistair hennessey (Q1151947)
/m/0gv40	wyler, william (Q51495)
/m/0jsqk	heiress (Q1141493)
/m/029bkp	chef d’harmonie (Q806349)
/m/02gyl0	theodore bikel (Q215721)
/m/02lk60	far far away idol (Q485983)
/m/0f7hc	edward murphy (Q43874)
/m/018gm9	pete comita (Q1068713)
/m/04p3w	lung cancer/comments (Q47912)
/m/05nn4k	john davis (american producer) (Q931181)
/m/0frm7n	/m/0frm7n
/m/016vg8	heather gram (Q224026)
/m/02v5_g	mickey altieri (scream series) (Q270599)
/m/0fqt1ns	spiderman (2012 film) (Q229808)
/m/07t58	u s senate (Q66096)
/m/0499lc	prodigal son (shanley play) (Q1349456)
/m/032zg9	irving rameses "ving" rhames (Q310315)
/m/0bh8x1y	coriolanus (film) (Q1132978)
/m/019kyn	pinocchio (disney) (Q4341553)
/m/02cpb7	tandy newton (Q229029)
/m/027hnjh	frank spotnitz (Q2558191)
/m/07tds	leges sine moribus vanae (Q49117)
/m/07jbh	gossima (Q3930)
/m/013f9v	saint cloud, mn (Q736834)
/m/026spg	natalie cole (Q231942)
/m/04cl1	kayte walsh (Q196560)
/m/0q8s4	the river city (Q79750)
/m/0prhz	hamlet (1990 film) (Q1422824)
/m/0gct_	henry mattisse (Q5589)
/m/01f8hf	aliens (1986 movie) (Q104814)
/m/024bbl	james oliver cromwell (Q299483)
/m/0dq_5	managing directors (Q484876)
/m/04vgq5	iggle pop (Q1064703)
/m/03nm_fh	gregory tyree boyce (Q160071)
/m/0b478	luc besson films (Q484779)
/m/07yw6t	paresh rawal (Q3123705)
/m/03rbj2	filmfareawardbestsupportingactor (Q966068)
/m/09jcj6	scoop (2006 film) (Q682002)
/m/0cm03	albert edward, duke of cornwall (Q20875)
/m/0gkz3nz	moonlight kingdom (Q217112)
/m/02h1rt	richard taylor (makeup artist) (Q630767)
/m/0345gh	birkbeck college, london (Q375606)
/m/01vwbts	dido florian cloud de bounevialle o'malley armstrong (Q202550)
/m/02j69w	dazed & confused (film) (Q39975)
/m/0fm3b5	goya award for best film (Q1467554)
/m/04nnpw	the others (2001 film) (Q332515)
/m/06_vpyq	aaron staton (Q302794)
/m/056_y	madrid (spain) (Q2807)
/m/08ct6	how the solar system was won (Q103474)
/m/0bz6sb	43rd academy awards nominees and winners (Q937162)
/m/03j24kf	paul ramone (Q2599)
/m/01kwsg	tommy lee jones (Q170587)
/m/026dx	david lynch/comments (Q2071)
/m/0266r6h	katie bowden (Q236472)
/m/0863x_	judah friedlander (Q71130)
/m/0bl1_	midnight cowboy (Q61696)
/m/02xbyr	rapunzel (2010 film) (Q188439)
/m/09mfvx	think films (Q1163074)
/m/01qvz8	gigli (film) (Q260533)
/m/01cw13	kallon f c (Q2019317)
/m/0m0fw	noise music (Q726239)
/m/03f0fnk	lewis a. reed (Q189080)
/m/0czkbt	is it scary (album) (Q58735)
/m/03gyl	haiti/selected picture/2007/march (Q790)
/m/0khth	wilco (Q637771)
/m/01yxbw	exeter united f c (Q48939)
/m/013q0p	austin powers: international man of mystery (Q501703)
/m/016z1t	billie campbell (Q162667)
/m/08hsww	bj novac (Q459925)
/m/02kmx6	mary-ellis bunim (Q3296123)
/m/01b66t	james lowell (as the world turns) (Q1261578)
/m/047951	national universities (Q265662)
/m/043tz8m	/m/043tz8m
/m/019r_1	max fleischer (Q93788)
/m/015cjr	television presenter (Q947873)
/m/041n28	união desportiva de leiria (Q211401)
/m/04ls53	giacchino, michael (Q155124)
/m/04ldyx1	/m/04ldyx1
/m/0c1sgd3	water for elephants (movie) (Q432582)
/m/02cg7g	/m/02cg7g
/m/01twdk	jon favreau (Q295964)
/m/09qc1	michelangelo antonioni (Q55433)
/m/03l2n	houston, texas, united states (Q16555)
/m/0sxmx	sgt. elias (Q190643)
/m/02hsgn	keach (Q315090)
/m/07_m9_	adolph hiter (Q352)
/m/07twz	uraguay (Q77)
/m/0hnjt	eugene o neill (Q93157)
/m/0145rs	/m/0145rs
/m/03y82t6	minds amaze (Q42493)
/m/01s21dg	lofi masters (Q215215)
/m/0_b9f	the piano (film) (Q117315)
/m/03spz	יִשְׂרָאֵל (Q801)
/m/03f0r5w	david wain (Q561133)
/m/03b_fm5	role models (film) (Q706858)
/m/0210hf	anthony edwards (Q314924)
/m/02sf_r	point guard (basketball) (Q212413)
/m/01ry0f	kurtwood smith (Q317228)
/m/07sgdw	oscar (1991 movie) (Q302682)
/m/04hgpt	center for medieval studies (pennsylvania state university) (Q739627)
/m/0k2cb	dangerous liaisons (Q830553)
/m/04tr1	republic of malawi (Q1020)
/m/0gkjy	afrozone (Q7159)
/m/0g0syc	united states house of representatives, pennsylvania district 12 (Q7163534)
/m/03p7gb	the hechinger report (Q7691246)
/m/0462hhb	an education (Q482436)
/m/06l3bl	list of epic movies (Q652256)
/m/0vbk	arkansaws (Q1612)
/m/037hgm	opium drivel (Q346801)
/m/02q690_	59th emmys (Q1338927)
/m/06mr2s	/m/06mr2s
/m/05f7snc	/m/05f7snc
/m/01fpfn	unitary states (Q179164)
/m/021yzs	tim roth (Q203804)
/m/0tct_	danville, kentucky (Q988923)
/m/05sw5b	disney's recess: school's out (Q969270)
/m/0205dx	toussaint (film) (Q192165)
/m/01gkp1	royal tenebaums (Q935105)
/m/0dwt5	vibraharp (Q206987)
/m/08fbnx	mystical great adventure (Q2581981)
/m/0h96g	susan weaver (Q102124)
/m/06kl78	crash (1996 film) (Q839133)
/m/0d1pc	mannequin (Q4610556)
/m/0b80__	jean louis (Q1685654)
/m/01pcdn	kristen davis (Q229176)
/m/06yxd	healthcare in south carolina (Q1456)
/m/02lymt	wesley trent snipes (Q189694)
/m/09ps01	virgin suicides (Q1423971)
/m/02z6872	2002 first-year player draft (Q4600249)
/m/017cy9	universtiy of british columbia (Q391028)
/m/0drtv8	2007 golden globe awards (Q761309)
/m/0bksh	cameron m. diaz (Q44380)
/m/047cx	live in orlando, fl (Q189382)
/m/05zh9c	leonard goldberg (Q722519)
/m/0hqcy	david o selznick (Q72291)
/m/0bbw2z6	/m/0bbw2z6
/m/01grpq	5th u.s. congress (Q2573610)
/m/06t6dz	whoop that trick (Q1474263)
/m/0cymp	westchester county (Q54066)
/m/01kph_c	warren william zevon (Q375792)
/m/02t3ln	curse of fallen soul (Q938630)
/m/05_wyz	chief counsel (Q564612)
/m/0168nq	orapharma (Q333718)
/m/027kp3	the fordham observer (Q130965)
/m/0n6kf	coming sun.mon.tues. (Q310048)
/m/01c99j	best pop vocal performance – female (Q935283)
/m/02p3cr5	emi svenska (Q3629023)
/m/03f0vvr	vance arnold (Q190076)
/m/0315w4	cell (Q221104)
/m/06jntd	columbia-tristar home video (Q734401)
/m/0r04p	culver city, ca (Q493378)
/m/019lty	mengo (Q17479)
/m/0b_6jz	1983 ncaa division i men's basketball tournament (Q949568)
/m/03d555l	/m/03d555l
/m/02rqxc	seleccao das quinas (Q267245)
/m/02bvt	lynn angell (Q2295429)
/m/01jrvr6	cole porter (Q215120)
/m/04107	ishtāynʹbik (Q39212)
/m/02dbn2	jack thompson: favourite australian poems (Q356383)
/m/026qnh6	australia film (Q275180)
/m/0f4k49	and starring pancho villa as himself (Q2049232)
/m/01grpc	4th us congress (Q230796)
/m/015njf	ken russel (Q55249)
/m/0cmc2	cremean war (Q254106)
/m/05kyr	ottoman sultanate (Q12560)
/m/0pyww	julia louis-dreyfus (Q232072)
/m/0fwy0h	savanna guthrie (Q2227969)
/m/0152x_	msnbcs (Q13973)
/m/0c7xjb	jessie a. simpson (Q168992)
/m/033f8n	dukes of hazzard (film) (Q2306995)
/m/02bqm0	one hundred-fourth united states congress (Q3596857)
/m/0dlhg	washington county, ny (Q56149)
/m/0f6_4	rensselaer county, ny (Q156566)
/m/0204jh	bronx science high school (Q751612)
/m/0mpfn	windsor county, vt (Q513994)
/m/0177z	/m/0177z
/m/03_ly	1. month (Q108)
/m/02fttd	the king of comedy (1983 film) (Q1122281)
/m/03xzxb	septemvri pri tsdv (Q136433)
/m/0638kv	william cameron menzies (Q261997)
/m/0hgqq	john cage (Q180727)
/m/01pb34	cameo apperance (Q191796)
/m/018w8	shoot hoops (Q5372)
/m/03lh3v	walter ray allen (Q208623)
/m/01wy5m	list of awards and award nominations received by christian bale (Q45772)
/m/0837ql	t-pain presents: nappy boy mixtape vol. 1 (Q221155)
/m/03t5kl	best rap/sung collaboration (Q1542172)
/m/04g2jz2	/m/04g2jz2
/m/0dqcs3	the wicker man (2006 movie) (Q200827)
/m/06m61	wesley orbison (Q188426)
/m/0k4fz	betty schaefer (Q193570)
/m/0hvbj	nsync (Q154454)
/m/02hfk5	the barbarian invasions (Q549012)
/m/01rr31	colleges of de la salle university-manila (Q1815710)
/m/037njl	creighton university students and alumni (Q770544)
/m/0dln8jk	the hangover 2(film) (Q274748)
/m/03f7nt	collateral (film) (Q110203)
/m/01l9vr	charlestown, boston, ma (Q1756813)
/m/016szr	randy newman (Q318475)
/m/01vw8mh	snoopadelic (Q6096)
/m/0_xdd	franklin, tennesee (Q984264)
/m/09p4w8	time to kill (Q498867)
/m/04pqqb	arnon milchan (Q697131)
/m/01l4g5	lorena mackennit (Q274562)
/m/0289q	broncos ring of fame (Q223507)
/m/02z6l5f	/m/02z6l5f
/m/0dsb_yy	laura carmichael (Q3218669)
/m/05y5kf	hugh bonneville (Q155775)
/m/0bmch_x	unknown (2011 film) (Q158759)
/m/0cpyv	un/locode:dewmr (Q3955)
/m/070m12	/m/070m12
/m/06g60w	robert surtees (cinematographer) (Q178115)
/m/0qf2t	trainspotting (movie) (Q109135)
/m/027rpym	oklahoma! (1955 film) (Q2017333)
/m/07hgkd	david shire (Q719035)
/m/01gw4f	talia rose coppola (Q108622)
/m/01w40h	mercury music group (Q165745)
/m/02xx5	/m/02xx5
/m/015qqg	julia (1977 film) (Q1166180)
/m/02mt4k	frank or francis (Q312751)
/m/02d42t	samantha jane morton (Q230190)
/m/01vsy3q	electric church (Q5928)
/m/0prh7	hamlet (1996) (Q898721)
/m/01lvzbl	sam bush (Q539156)
/m/0d1t3	equestrian dressage (Q216033)
/m/03sww	iced tea (musician) (Q309941)
/m/01jx9	shane dabiri (Q178824)
/m/047xyn	world fantasy award-life achievement (Q3625727)
/m/029k4p	from dusk till dawn (Q196004)
/m/02kk_c	from the earth to the moon (miniseries) (Q1467607)
/m/037gjc	mark harmon (Q296774)
/m/01pctb	heidi klum productions (Q60036)
/m/03ct7jd	eagle eye (Q158474)
/m/0ymgk	worcester college chapel (Q780745)
/m/02ntb8	starsky & hutch (movie) (Q847646)
/m/02dq8f	university of new york state teachers college (Q1780816)
/m/0dq16	albany, new york (state) (Q24861)
/m/0304nh	the view (american tv series) (Q1197928)
/m/02f72_	mtv video music award for best art direction (Q917698)
/m/04qdj	olympic capital (Q807)
/m/027b9j5	london film critics' circle award for actor of the year (Q1868950)
/m/0klw	clarke, arthur c. (Q47087)
/m/07hhnl	hal pereira (Q1229499)
/m/0584j4n	frank mckelvy (Q2386182)
/m/017f3m	doink-doink (Q321423)
/m/05b_7n	jeremy merton sisto (Q449863)
/m/0cm89v	sean mcnamara (director) (Q3476760)
/m/04h6mm	stevens, andrew (Q507640)
/m/0dfw0	stass allie (Q181069)
/m/0j63cyr	2012 toronto film festival (Q3950963)
/m/0lyjf	richter library (Q738258)
/m/01j6t0	lethargic (Q9690)
/m/0hg11	hypothyreosis (Q16501)
/m/01vqc7	rcd mallorca (Q8835)
/m/031x2	falkland islands war (Q48249)
/m/01cblr	the counting crows (Q178549)
/m/017_qw	score composer (Q492264)
/m/08c9b0	patrick doyle (Q363241)
/m/01ckrr	grammy award for best rock instrumental performance (Q1542186)
/m/03ndd	hammered dulcimer (Q1588017)
/m/03vrp	italo calvino (Q154756)
/m/03f0324	kafkasque (Q905)
/m/019dwp	west virginia university at morgantown (Q115376)
/m/06w7v	slide guitar (Q428152)
/m/01mwsnc	ron wood (Q211094)
/m/01bcq	blythe danner (Q40064)
/m/033fqh	meet the parents (film) (Q623724)
/m/0fbtbt	Q1268432
/m/01j2xj	samuel alexander "sam" mendes (Q223233)
/m/0svqs	sean aston (Q189351)
/m/025_64l	/m/025_64l
/m/0ll3	aug. (Q122)
/m/01pp3p	john ford/comments (Q51114)
/m/0j80w	quiet man (Q470560)
/m/051wwp	robert elmer balaban (Q621490)
/m/02qfhb	jason schwartzmann (Q313705)
/m/01d0fp	kim bassinger (Q131380)
/m/04w1j9	edward r. pressman (Q357726)
/m/0hz55	24 (television) (Q56194)
/m/03_1pg	rajskub (Q230510)
/m/013bqg	wycombe (Q64116)
/m/03xb2w	kevin james iii (Q44561)
/m/03lgg	henry rollin (Q318509)
/m/0br1xn	2007 men's division i ncaa tournament (Q2081786)
/m/027yf83	/m/027yf83
/m/05hjnw	brokeback mountain (Q160618)
/m/09swkk	gustavo santaolalla (Q312434)
/m/034487	noise-pop (Q2545135)
/m/05xq9	pixies (band) (Q188464)
/m/022p06	sam goldwyn (Q72579)
/m/02h8hr	isida akira (Q418736)
/m/0yshw	lima high school (Q983974)
/m/03h304l	roger birnbaum productions (Q945551)
/m/0641g8	milt franklyn (Q3090628)
/m/02d6cy	frank romer pierson (Q1336850)
/m/0fgg4	jennifer connolly (Q103343)
/m/07k2mq	requiem for a dream (Q487181)
/m/02lfp4	leslie bricusse (Q1305608)
/m/0df_c	grasanòbol (Q1289)
/m/07_fj54	marmaduke (film) (Q48734)
/m/0345_	guatelmala (Q774)
/m/09f2j	university of california, los angeles (Q174710)
/m/023v4_	scott moore (sergeant) (Q37628)
/m/0g_g2	bon jovi songs (Q259254)
/m/03qbnj	grammy award for best pop album (Q1027891)
/m/01dcqj	colorectal cancer (Q188874)
/m/09889g	history of michael jackson (Q2831)
/m/022g44	/m/022g44
/m/096gm	bucharest (Q19660)
/m/0194zl	iris (2001 movie) (Q1364697)
/m/07ldhs	taylor daniel lautner (Q23359)
/m/044mrh	kim dae-hyeon (Q299700)
/m/06lht1	jenkins, richard (Q313043)
/m/0fb7sd	the kingdom film (Q467582)
/m/04205z	emily blunt (Q193517)
/m/016k6x	sir ben kingsley (Q173158)
/m/0cqnss	the music man (film) (Q762649)
/m/01jwxx	battle of britain (movie) (Q714989)
/m/03d8m4	2015 paraguay national football team results (Q172020)
/m/082wbh	club libertad (Q848642)
/m/0280mv7	john bailey (cinematographer) (Q367813)
/m/0859_	wind instrument (Q173453)
/m/05683p	jamie denton (Q317516)
/m/03f6fl0	ben folds (Q435681)
/m/05jbn	west nashville (Q23197)
/m/0f4vx0	2007 nba draft lottery (Q959860)
/m/01n6r0	u of oregon (Q766145)
/m/03bwzr4	m.s. degree (Q950900)
/m/0zlgm	reading, berks county, pennsylvania (Q237896)
/m/03f1d47	macy grey (Q232456)
/m/01t21q	chelsea, london, england (Q743535)
/m/03j7cf	trabzonspor a.ş. (Q192641)
/m/04ls81	/m/04ls81
/m/0dpqk	eric idle (Q210741)
/m/041c4	john cleese (Q25014)
/m/0t_gg	un/locode:usmqi (Q49143)
/m/0k3kg	norfolk county, massachusetts (Q54079)
/m/02xs6_	hannibal (movie) (Q722682)
/m/0lkr7	brawley nolte (Q188018)
/m/046488	hotel riwanda (Q223884)
/m/07tf8	/m/07tf8
/m/01fmz6	k.c. & the sunshine band (Q1130581)
/m/01fwf1	susanna york (Q225509)
/m/03cx282	philippe rousselot (Q750718)
/m/0dzlbx	iron man (2008 movie) (Q192724)
/m/015t7v	bernard hill (Q310515)
/m/0c3jz	thora birch (Q236875)
/m/09q23x	charlie wilson's war (film) (Q273568)
/m/03tn80	congo (movie) (Q598860)
/m/071fb	mgao dialect (Q7838)
/m/081k8	william shake-speare (Q692)
/m/01gstn	16th united states congress (Q4552253)
/m/01gtc0	25th united states congress (Q4632330)
/m/05xbx	pbs radio (Q215616)
/m/035w2k	mission impossible (film) (Q1741232)
/m/0fjfh	capsicum (Q201959)
/m/0h1vz	amino acid k (Q178430)
/m/01vq3	chirstmas (Q19809)
/m/091rc5	the santa clause 3 (Q1325828)
/m/011ycb	quiz show (movie) (Q651722)
/m/0bqytm	ballhaus, michael (Q62547)
/m/0tln7	history of natchitoches, louisiana (Q2278195)
/m/062zm5h	the avengers (2012 movie) (Q182218)
/m/04nm0n0	good (film) (Q2601102)
/m/0b6jkkg	filmfareawardbestfilm 2011-2030 (Q1414525)
/m/04fcx7	adam mckay (Q350405)
/m/0421ng	bullets over broadway (Q1004531)
/m/04fcjt	universal records (defunct record label) (Q2482872)
/m/0278x6s	geraghty, brian (Q460563)
/m/03359d	ali larter (Q201994)
/m/0prrm	jsbsb (Q832190)
/m/0dryh9k	indian (Q862086)
/m/0fr7nt	sayaji shinde (Q7429093)
/m/048xg8	ssc napoli (Q2641)
/m/02ll45	the mission (1986 film) (Q302490)
/m/0191n	blue velvet in popular culture (Q660950)
/m/069nzr	kyle chandler (Q359604)
/m/0dc_v	astronomic (Q333)
/m/04088s0	/m/04088s0
/m/05y5fw	benioff, david (Q503997)
/m/03772	g r r martin (Q181677)
/m/01bcwk	queensland university (Q866012)
/m/06y57	sydneian (Q3130)
/m/0s5cg	oak park, ill. (Q331397)
/m/043n0v_	yip man (film) (Q573743)
/m/09v0wy2	/m/09v0wy2
/m/06kb_	rudyard kipling (Q34743)
/m/048q6x	robert xavier morse (Q218122)
/m/0d7wh	/m/0d7wh
/m/015q43	julie frances christie (Q181413)
/m/0413cff	/m/0413cff
/m/02x8fs	ghostbusters ii trivia (Q492214)
Download .txt
gitextract_671zkorr/

├── .gitignore
├── LICENSE
├── README.md
├── config/
│   ├── homogeneous_graph/
│   │   ├── citeseer.yaml
│   │   ├── cora.yaml
│   │   └── pubmed.yaml
│   ├── inductive/
│   │   ├── fb15k237.yaml
│   │   └── wn18rr.yaml
│   └── knowledge_graph/
│       ├── fb15k237.yaml
│       ├── fb15k237_visualize.yaml
│       ├── ogbl-biokg.yaml
│       ├── ogbl-biokg_test.yaml
│       └── wn18rr.yaml
├── data/
│   └── fb15k237_entity.txt
├── nbfnet/
│   ├── __init__.py
│   ├── dataset.py
│   ├── layer.py
│   ├── model.py
│   ├── task.py
│   └── util.py
├── requirements.txt
└── script/
    ├── run.py
    └── visualize.py
Download .txt
SYMBOL INDEX (78 symbols across 7 files)

FILE: nbfnet/dataset.py
  class InductiveKnowledgeGraphDataset (line 14) | class InductiveKnowledgeGraphDataset(data.KnowledgeGraphDataset):
    method load_inductive_tsvs (line 16) | def load_inductive_tsvs(self, train_files, test_files, verbose=0):
    method __getitem__ (line 86) | def __getitem__(self, index):
    method split (line 89) | def split(self):
  class CoraLinkPrediction (line 100) | class CoraLinkPrediction(datasets.Cora):
    method __init__ (line 102) | def __init__(self, **kwargs):
    method __getitem__ (line 106) | def __getitem__(self, index):
    method __len__ (line 109) | def __len__(self):
    method split (line 112) | def split(self, ratios=(85, 5, 10)):
  class CiteSeerLinkPrediction (line 124) | class CiteSeerLinkPrediction(datasets.CiteSeer):
    method __init__ (line 126) | def __init__(self, **kwargs):
    method __getitem__ (line 130) | def __getitem__(self, index):
    method __len__ (line 133) | def __len__(self):
    method split (line 136) | def split(self, ratios=(85, 5, 10)):
  class PubMedLinkPrediction (line 148) | class PubMedLinkPrediction(datasets.PubMed):
    method __init__ (line 150) | def __init__(self, **kwargs):
    method __getitem__ (line 154) | def __getitem__(self, index):
    method __len__ (line 157) | def __len__(self):
    method split (line 160) | def split(self, ratios=(85, 5, 10)):
  class FB15k237Inductive (line 172) | class FB15k237Inductive(InductiveKnowledgeGraphDataset):
    method __init__ (line 184) | def __init__(self, path, version="v1", verbose=1):
  class WN18RRInductive (line 211) | class WN18RRInductive(InductiveKnowledgeGraphDataset):
    method __init__ (line 223) | def __init__(self, path, version="v1", verbose=1):
  class OGBLBioKG (line 250) | class OGBLBioKG(data.KnowledgeGraphDataset):
    method __init__ (line 252) | def __init__(self, path, verbose=1):
    method load_ogb (line 259) | def load_ogb(self, dataset, verbose=1):
    method split (line 333) | def split(self, test_negative=True):

FILE: nbfnet/layer.py
  class GeneralizedRelationalConv (line 11) | class GeneralizedRelationalConv(layers.MessagePassingBase):
    method __init__ (line 20) | def __init__(self, input_dim, output_dim, num_relation, query_input_di...
    method message (line 49) | def message(self, graph, input):
    method aggregate (line 78) | def aggregate(self, graph, message):
    method message_and_aggregate (line 108) | def message_and_aggregate(self, graph, input):
    method combine (line 160) | def combine(self, input, update):

FILE: nbfnet/model.py
  class NeuralBellmanFordNetwork (line 17) | class NeuralBellmanFordNetwork(nn.Module, core.Configurable):
    method __init__ (line 19) | def __init__(self, input_dim, hidden_dims, num_relation=None, symmetri...
    method remove_easy_edges (line 51) | def remove_easy_edges(self, graph, h_index, t_index, r_index=None):
    method negative_sample_to_tail (line 70) | def negative_sample_to_tail(self, h_index, t_index, r_index):
    method as_relational_graph (line 79) | def as_relational_graph(self, graph, self_loop=True):
    method bellmanford (line 95) | def bellmanford(self, graph, h_index, r_index, separate_grad=False):
    method forward (line 132) | def forward(self, graph, h_index, t_index, r_index=None, all_loss=None...
    method visualize (line 164) | def visualize(self, graph, h_index, t_index, r_index):
    method beam_search_distance (line 187) | def beam_search_distance(self, graphs, h_index, t_index, num_beam=10):
    method topk_average_length (line 242) | def topk_average_length(self, distances, back_edges, t_index, k=10):

FILE: nbfnet/task.py
  class KnowledgeGraphCompletionExt (line 20) | class KnowledgeGraphCompletionExt(tasks.KnowledgeGraphCompletion, core.C...
    method __init__ (line 22) | def __init__(self, model, criterion="bce",
    method preprocess (line 30) | def preprocess(self, train_set, valid_set, test_set):
    method target (line 54) | def target(self, batch):
    method evaluate (line 60) | def evaluate(self, pred, target):
  class LinkPrediction (line 104) | class LinkPrediction(tasks.Task, core.Configurable):
    method __init__ (line 108) | def __init__(self, model, criterion="bce", metric=("auroc", "ap"), num...
    method preprocess (line 116) | def preprocess(self, train_set, valid_set, test_set):
    method forward (line 130) | def forward(self, batch):
    method _strict_negative (line 154) | def _strict_negative(self, count, split="train"):
    method predict_and_target (line 176) | def predict_and_target(self, batch, all_loss=None, metric=None):
    method evaluate (line 200) | def evaluate(self, pred, target):
  class InductiveKnowledgeGraphCompletion (line 220) | class InductiveKnowledgeGraphCompletion(tasks.KnowledgeGraphCompletion, ...
    method __init__ (line 222) | def __init__(self, model, criterion="bce", metric=("mr", "mrr", "hits@...
    method preprocess (line 229) | def preprocess(self, train_set, valid_set, test_set):
    method predict (line 253) | def predict(self, batch, all_loss=None, metric=None):
    method target (line 294) | def target(self, batch):
    method evaluate (line 321) | def evaluate(self, pred, target):
  class KnowledgeGraphCompletionOGB (line 358) | class KnowledgeGraphCompletionOGB(tasks.KnowledgeGraphCompletion, core.C...
    method __init__ (line 360) | def __init__(self, model, criterion="bce", evaluator=None, num_negativ...
    method preprocess (line 369) | def preprocess(self, train_set, valid_set, test_set):
    method _strict_negative (line 399) | def _strict_negative(self, pos_h_index, pos_t_index, pos_r_index):
    method predict (line 438) | def predict(self, batch, all_loss=None, metric=None):
    method target (line 466) | def target(self, batch):
    method evaluate (line 473) | def evaluate(self, pred, target):

FILE: nbfnet/util.py
  function get_root_logger (line 22) | def get_root_logger(file=True):
  function create_working_directory (line 35) | def create_working_directory(cfg):
  function detect_variables (line 62) | def detect_variables(cfg_file):
  function load_config (line 71) | def load_config(cfg_file, context=None):
  function parse_args (line 81) | def parse_args():
  function build_solver (line 98) | def build_solver(cfg, dataset):

FILE: script/run.py
  function train_and_validate (line 15) | def train_and_validate(cfg, solver):
  function test (line 40) | def test(cfg, solver):

FILE: script/visualize.py
  function load_vocab (line 18) | def load_vocab(dataset):
  function visualize_path (line 31) | def visualize_path(solver, triplet, entity_vocab, relation_vocab):
Condensed preview — 23 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (669K chars).
[
  {
    "path": ".gitignore",
    "chars": 83,
    "preview": "# PyCharm\n/.idea\n\n# VS Code\n/.vscode\n\n# Python\n__pycache__\n*.pyc\n\n# macOS\n.DS_Store"
  },
  {
    "path": "LICENSE",
    "chars": 1065,
    "preview": "MIT License\n\nCopyright (c) 2021 MilaGraph\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\n"
  },
  {
    "path": "README.md",
    "chars": 5907,
    "preview": "# NBFNet: Neural Bellman-Ford Networks #\n\nThis is the official codebase of the paper\n\n[Neural Bellman-Ford Networks: A G"
  },
  {
    "path": "config/homogeneous_graph/citeseer.yaml",
    "chars": 557,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: CiteSeerLinkPrediction\n  path: ~/datasets/homogeneous_graphs/\n\ntask:\n  cla"
  },
  {
    "path": "config/homogeneous_graph/cora.yaml",
    "chars": 553,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: CoraLinkPrediction\n  path: ~/datasets/homogeneous_graphs/\n\ntask:\n  class: "
  },
  {
    "path": "config/homogeneous_graph/pubmed.yaml",
    "chars": 555,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: PubMedLinkPrediction\n  path: ~/datasets/homogeneous_graphs/\n\ntask:\n  class"
  },
  {
    "path": "config/inductive/fb15k237.yaml",
    "chars": 649,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: FB15k237Inductive\n  path: ~/datasets/knowledge_graphs/\n  version: {{ versi"
  },
  {
    "path": "config/inductive/wn18rr.yaml",
    "chars": 620,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: WN18RRInductive\n  path: ~/datasets/knowledge_graphs/\n  version: {{ version"
  },
  {
    "path": "config/knowledge_graph/fb15k237.yaml",
    "chars": 606,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: FB15k237\n  path: ~/datasets/knowledge_graphs/\n\ntask:\n  class: KnowledgeGra"
  },
  {
    "path": "config/knowledge_graph/fb15k237_visualize.yaml",
    "chars": 605,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: FB15k237\n  path: ~/datasets/knowledge_graphs/\n\ntask:\n  class: KnowledgeGra"
  },
  {
    "path": "config/knowledge_graph/ogbl-biokg.yaml",
    "chars": 729,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: OGBLBioKG\n  path: ~/datasets/knowledge_graphs/\n\ntask:\n  class: KnowledgeGr"
  },
  {
    "path": "config/knowledge_graph/ogbl-biokg_test.yaml",
    "chars": 742,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: OGBLBioKG\n  path: ~/datasets/knowledge_graphs/\n\ntask:\n  class: KnowledgeGr"
  },
  {
    "path": "config/knowledge_graph/wn18rr.yaml",
    "chars": 577,
    "preview": "output_dir: ~/experiments/\n\ndataset:\n  class: WN18RR\n  path: ~/datasets/knowledge_graphs/\n\ntask:\n  class: KnowledgeGraph"
  },
  {
    "path": "data/fb15k237_entity.txt",
    "chars": 556731,
    "preview": "/m/027rn\tlanguages of dominican republic (Q786)\n/m/06cx9\trepublic (government) (Q7270)\n/m/017dcd\trangers in reverse (Q51"
  },
  {
    "path": "nbfnet/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "nbfnet/dataset.py",
    "chars": 14201,
    "preview": "import os\nimport csv\nimport glob\nfrom tqdm import tqdm\nfrom ogb import linkproppred\n\nimport torch\nfrom torch.utils impor"
  },
  {
    "path": "nbfnet/layer.py",
    "chars": 7872,
    "preview": "import torch\nfrom torch import nn\nfrom torch.nn import functional as F\n\nfrom torch_scatter import scatter_add, scatter_m"
  },
  {
    "path": "nbfnet/model.py",
    "chars": 11923,
    "preview": "from collections.abc import Sequence\n\nimport torch\nfrom torch import nn\nfrom torch import autograd\n\nfrom torch_scatter i"
  },
  {
    "path": "nbfnet/task.py",
    "chars": 22335,
    "preview": "import math\n\nimport torch\nfrom torch.nn import functional as F\nfrom torch.utils import data as torch_data\n\nfrom ogb impo"
  },
  {
    "path": "nbfnet/util.py",
    "chars": 3838,
    "preview": "import os\nimport time\nimport logging\nimport argparse\n\nimport yaml\nimport jinja2\nfrom jinja2 import meta\nimport easydict\n"
  },
  {
    "path": "requirements.txt",
    "chars": 77,
    "preview": "torch>=1.8.0\ntorch-scatter>=2.0.8\ntorchdrug>=0.1.2\nogb>=1.3.0\neasydict\npyyaml"
  },
  {
    "path": "script/run.py",
    "chars": 1690,
    "preview": "import os\nimport sys\nimport math\nimport pprint\n\nimport torch\n\nfrom torchdrug import core\nfrom torchdrug.utils import com"
  },
  {
    "path": "script/visualize.py",
    "chars": 3106,
    "preview": "import os\nimport sys\nimport pprint\n\nimport torch\n\nfrom torchdrug import core\nfrom torchdrug.utils import comm\n\nsys.path."
  }
]

About this extraction

This page contains the full source code of the DeepGraphLearning/NBFNet GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 23 files (620.1 KB), approximately 256.9k tokens, and a symbol index with 78 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!