baixintech_zhangyiming_prod commited on
Commit
cbb13b8
·
1 Parent(s): 871f0de
app.py ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import gradio.components as grc
3
+ import onnxruntime
4
+ import numpy as np
5
+ from torchvision.transforms import Normalize, Compose, Resize, ToTensor
6
+
7
+ batch_size = 1
8
+
9
+ def convert_to_rgb(image):
10
+ return image.convert("RGB")
11
+
12
+
13
+ def get_transform(image_size=384):
14
+ return Compose([
15
+ convert_to_rgb,
16
+ Resize((image_size, image_size)),
17
+ ToTensor(),
18
+ Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])
19
+ ])
20
+
21
+
22
+ def load_tag_list(tag_list_file):
23
+ with open(tag_list_file, 'r', encoding="utf-8") as f:
24
+ tag_list = f.read().splitlines()
25
+ tag_list = np.array(tag_list)
26
+ return tag_list
27
+
28
+ def load_word_vocabulary(word_vocabulary_file):
29
+ with open(word_vocabulary_file, 'r', encoding="utf-8") as f:
30
+ word_vocabulary = f.read().splitlines()
31
+ words = [word.split(',') for word in word_vocabulary]
32
+ word2idx = {}
33
+ for i in range(len(words)):
34
+ for j in range(len(words[i])):
35
+ word2idx[words[i][j]] = i
36
+ return word2idx
37
+
38
+ from huggingface_hub import hf_hub_download
39
+ hf_hub_download(repo_id="Inf009/ram-tagger", repo_type="model", local_dir="resources", filename="ram_swin_large_14m_b1.onnx", local_dir_use_symlinks=False)
40
+ ort_session = onnxruntime.InferenceSession("resources/ram_swin_large_14m_b1.onnx", providers=["CUDAExecutionProvider"])
41
+ transform = get_transform()
42
+ tag_list = load_tag_list("resources/ram_tag_list.txt")
43
+ word_index = load_word_vocabulary("resources/word_vocabulary_english.txt")
44
+
45
+
46
+ def inference_by_image_pil(image):
47
+ image_arrays = transform(image).unsqueeze(0).numpy()
48
+ # compute ONNX Runtime output prediction
49
+ ort_inputs = {ort_session.get_inputs()[0].name: image_arrays}
50
+ ort_outs = ort_session.run(None, ort_inputs)
51
+ index = np.argwhere(ort_outs[0][0] == 1)
52
+ token = tag_list[index].squeeze(axis=1).tolist()
53
+ token = rerank_tags(token)
54
+ return ",".join(token)
55
+
56
+ def rerank_tags(tags):
57
+ indexed_tags = [[] for _ in range(max(word_index.values()) + 1)]
58
+ for tag in tags:
59
+ indexed_tags[word_index[tag]].append(tag)
60
+ reranked_tags = []
61
+ for indexed_tag in indexed_tags:
62
+ reranked_tags += indexed_tag
63
+ return reranked_tags
64
+
65
+
66
+ app = gr.Interface(fn=inference_by_image_pil, inputs=grc.Image(type='pil'),
67
+ outputs=grc.Text(), title="RAM Tagger",
68
+ description="A tagger for images.")
69
+ app.launch()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ torchvision
2
+ onnxruntime
resources/ram_tag_list.txt ADDED
@@ -0,0 +1,4585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 3D CG rendering
2
+ 3D glasses
3
+ abacus
4
+ abalone
5
+ monastery
6
+ belly
7
+ academy
8
+ accessory
9
+ accident
10
+ accordion
11
+ acorn
12
+ acrylic paint
13
+ act
14
+ action
15
+ action film
16
+ activity
17
+ actor
18
+ adaptation
19
+ add
20
+ adhesive tape
21
+ adjust
22
+ adult
23
+ adventure
24
+ advertisement
25
+ antenna
26
+ aerobics
27
+ spray can
28
+ afro
29
+ agriculture
30
+ aid
31
+ air conditioner
32
+ air conditioning
33
+ air sock
34
+ aircraft cabin
35
+ aircraft model
36
+ air field
37
+ air line
38
+ airliner
39
+ airman
40
+ plane
41
+ airplane window
42
+ airport
43
+ airport runway
44
+ airport terminal
45
+ airship
46
+ airshow
47
+ aisle
48
+ alarm
49
+ alarm clock
50
+ mollymawk
51
+ album
52
+ album cover
53
+ alcohol
54
+ alcove
55
+ algae
56
+ alley
57
+ almond
58
+ aloe vera
59
+ alp
60
+ alpaca
61
+ alphabet
62
+ german shepherd
63
+ altar
64
+ amber
65
+ ambulance
66
+ bald eagle
67
+ American shorthair
68
+ amethyst
69
+ amphitheater
70
+ amplifier
71
+ amusement park
72
+ amusement ride
73
+ anchor
74
+ ancient
75
+ anemone
76
+ angel
77
+ angle
78
+ animal
79
+ animal sculpture
80
+ animal shelter
81
+ animation
82
+ animation film
83
+ animator
84
+ anime
85
+ ankle
86
+ anklet
87
+ anniversary
88
+ trench coat
89
+ ant
90
+ antelope
91
+ antique
92
+ antler
93
+ anvil
94
+ apartment
95
+ ape
96
+ app
97
+ app icon
98
+ appear
99
+ appearance
100
+ appetizer
101
+ applause
102
+ apple
103
+ apple juice
104
+ apple pie
105
+ apple tree
106
+ applesauce
107
+ appliance
108
+ appointment
109
+ approach
110
+ apricot
111
+ apron
112
+ aqua
113
+ aquarium
114
+ aquarium fish
115
+ aqueduct
116
+ arcade
117
+ arcade machine
118
+ arch
119
+ arch bridge
120
+ archaelogical excavation
121
+ archery
122
+ archipelago
123
+ architect
124
+ architecture
125
+ archive
126
+ archway
127
+ area
128
+ arena
129
+ argument
130
+ arm
131
+ armadillo
132
+ armband
133
+ armchair
134
+ armoire
135
+ armor
136
+ army
137
+ army base
138
+ army tank
139
+ array
140
+ arrest
141
+ arrow
142
+ art
143
+ art exhibition
144
+ art gallery
145
+ art print
146
+ art school
147
+ art studio
148
+ art vector illustration
149
+ artichoke
150
+ article
151
+ artifact
152
+ artist
153
+ artists loft
154
+ ash
155
+ ashtray
156
+ asia temple
157
+ asparagus
158
+ asphalt road
159
+ assemble
160
+ assembly
161
+ assembly line
162
+ association
163
+ astronaut
164
+ astronomer
165
+ athlete
166
+ athletic
167
+ atlas
168
+ atm
169
+ atmosphere
170
+ atrium
171
+ attach
172
+ fighter jet
173
+ attend
174
+ attraction
175
+ atv
176
+ eggplant
177
+ auction
178
+ audi
179
+ audio
180
+ auditorium
181
+ aurora
182
+ author
183
+ auto factory
184
+ auto mechanic
185
+ auto part
186
+ auto show
187
+ auto showroom
188
+ car battery
189
+ automobile make
190
+ automobile model
191
+ motor vehicle
192
+ autumn
193
+ autumn forest
194
+ autumn leave
195
+ autumn park
196
+ autumn tree
197
+ avatar
198
+ avenue
199
+ aviator sunglasses
200
+ avocado
201
+ award
202
+ award ceremony
203
+ award winner
204
+ shed
205
+ ax
206
+ azalea
207
+ baboon
208
+ baby
209
+ baby bottle
210
+ baby carriage
211
+ baby clothe
212
+ baby elephant
213
+ baby food
214
+ baby seat
215
+ baby shower
216
+ back
217
+ backdrop
218
+ backlight
219
+ backpack
220
+ backyard
221
+ bacon
222
+ badge
223
+ badger
224
+ badlands
225
+ badminton
226
+ badminton racket
227
+ bag
228
+ bagel
229
+ bagpipe
230
+ baguette
231
+ bait
232
+ baked goods
233
+ baker
234
+ bakery
235
+ baking
236
+ baking sheet
237
+ balance
238
+ balance car
239
+ balcony
240
+ ball
241
+ ball pit
242
+ ballerina
243
+ ballet
244
+ ballet dancer
245
+ ballet skirt
246
+ balloon
247
+ balloon arch
248
+ baseball player
249
+ ballroom
250
+ bamboo
251
+ bamboo forest
252
+ banana
253
+ banana bread
254
+ banana leaf
255
+ banana tree
256
+ band
257
+ band aid
258
+ bandage
259
+ headscarf
260
+ bandeau
261
+ bangs
262
+ bracelet
263
+ balustrade
264
+ banjo
265
+ bank
266
+ bank card
267
+ bank vault
268
+ banknote
269
+ banner
270
+ banquet
271
+ banquet hall
272
+ banyan tree
273
+ baozi
274
+ baptism
275
+ bar
276
+ bar code
277
+ bar stool
278
+ barbecue
279
+ barbecue grill
280
+ barbell
281
+ barber
282
+ barber shop
283
+ barbie
284
+ barge
285
+ barista
286
+ bark
287
+ barley
288
+ barn
289
+ barn owl
290
+ barn door
291
+ barrel
292
+ barricade
293
+ barrier
294
+ handcart
295
+ bartender
296
+ baseball
297
+ baseball base
298
+ baseball bat
299
+ baseball hat
300
+ baseball stadium
301
+ baseball game
302
+ baseball glove
303
+ baseball pitcher
304
+ baseball team
305
+ baseball uniform
306
+ basement
307
+ basil
308
+ basin
309
+ basket
310
+ basket container
311
+ basketball
312
+ basketball backboard
313
+ basketball coach
314
+ basketball court
315
+ basketball game
316
+ basketball hoop
317
+ basketball player
318
+ basketball stadium
319
+ basketball team
320
+ bass
321
+ bass guitar
322
+ bass horn
323
+ bassist
324
+ bat
325
+ bath
326
+ bath heater
327
+ bath mat
328
+ bath towel
329
+ swimwear
330
+ bathrobe
331
+ bathroom
332
+ bathroom accessory
333
+ bathroom cabinet
334
+ bathroom door
335
+ bathroom mirror
336
+ bathroom sink
337
+ toilet paper
338
+ bathroom window
339
+ batman
340
+ wand
341
+ batter
342
+ battery
343
+ battle
344
+ battle rope
345
+ battleship
346
+ bay
347
+ bay bridge
348
+ bay window
349
+ bayberry
350
+ bazaar
351
+ beach
352
+ beach ball
353
+ beach chair
354
+ beach house
355
+ beach hut
356
+ beach towel
357
+ beach volleyball
358
+ lighthouse
359
+ bead
360
+ beagle
361
+ beak
362
+ beaker
363
+ beam
364
+ bean
365
+ bean bag chair
366
+ beanbag
367
+ bear
368
+ bear cub
369
+ beard
370
+ beast
371
+ beat
372
+ beautiful
373
+ beauty
374
+ beauty salon
375
+ beaver
376
+ bed
377
+ bedcover
378
+ bed frame
379
+ bedroom
380
+ bedding
381
+ bedpan
382
+ bedroom window
383
+ bedside lamp
384
+ bee
385
+ beech tree
386
+ beef
387
+ beekeeper
388
+ beeper
389
+ beer
390
+ beer bottle
391
+ beer can
392
+ beer garden
393
+ beer glass
394
+ beer hall
395
+ beet
396
+ beetle
397
+ beige
398
+ clock
399
+ bell pepper
400
+ bell tower
401
+ belt
402
+ belt buckle
403
+ bench
404
+ bend
405
+ bengal tiger
406
+ bento
407
+ beret
408
+ berry
409
+ berth
410
+ beverage
411
+ bib
412
+ bibimbap
413
+ bible
414
+ bichon
415
+ bicycle
416
+ bicycle helmet
417
+ bicycle wheel
418
+ biker
419
+ bidet
420
+ big ben
421
+ bike lane
422
+ bike path
423
+ bike racing
424
+ bike ride
425
+ bikini
426
+ bikini top
427
+ bill
428
+ billard
429
+ billboard
430
+ billiard table
431
+ bin
432
+ binder
433
+ binocular
434
+ biology laboratory
435
+ biplane
436
+ birch
437
+ birch tree
438
+ bird
439
+ bird bath
440
+ bird feeder
441
+ bird house
442
+ bird nest
443
+ birdbath
444
+ bird cage
445
+ birth
446
+ birthday
447
+ birthday cake
448
+ birthday candle
449
+ birthday card
450
+ birthday party
451
+ biscuit
452
+ bishop
453
+ bison
454
+ bit
455
+ bite
456
+ black
457
+ black sheep
458
+ blackberry
459
+ blackbird
460
+ blackboard
461
+ blacksmith
462
+ blade
463
+ blanket
464
+ sports coat
465
+ bleacher
466
+ blender
467
+ blessing
468
+ blind
469
+ eye mask
470
+ flasher
471
+ snowstorm
472
+ block
473
+ blog
474
+ blood
475
+ bloom
476
+ blossom
477
+ blouse
478
+ blow
479
+ hair drier
480
+ blowfish
481
+ blue
482
+ blue artist
483
+ blue jay
484
+ blue sky
485
+ blueberry
486
+ bluebird
487
+ pig
488
+ board
489
+ board eraser
490
+ board game
491
+ boardwalk
492
+ boat
493
+ boat deck
494
+ boat house
495
+ paddle
496
+ boat ride
497
+ bobfloat
498
+ bobcat
499
+ body
500
+ bodyboard
501
+ bodybuilder
502
+ boiled egg
503
+ boiler
504
+ bolo tie
505
+ bolt
506
+ bomb
507
+ bomber
508
+ bonasa umbellu
509
+ bone
510
+ bonfire
511
+ bonnet
512
+ bonsai
513
+ book
514
+ book cover
515
+ bookcase
516
+ folder
517
+ bookmark
518
+ bookshelf
519
+ bookstore
520
+ boom microphone
521
+ boost
522
+ boot
523
+ border
524
+ Border collie
525
+ botanical garden
526
+ bottle
527
+ bottle cap
528
+ bottle opener
529
+ bottle screw
530
+ bougainvillea
531
+ boulder
532
+ bouquet
533
+ boutique
534
+ boutique hotel
535
+ bow
536
+ bow tie
537
+ bow window
538
+ bowl
539
+ bowling
540
+ bowling alley
541
+ bowling ball
542
+ bowling equipment
543
+ box
544
+ box girder bridge
545
+ box turtle
546
+ boxer
547
+ underdrawers
548
+ boxing
549
+ boxing glove
550
+ boxing ring
551
+ boy
552
+ brace
553
+ bracket
554
+ braid
555
+ brain
556
+ brake
557
+ brake light
558
+ branch
559
+ brand
560
+ brandy
561
+ brass
562
+ brass plaque
563
+ bread
564
+ breadbox
565
+ break
566
+ breakfast
567
+ seawall
568
+ chest
569
+ brewery
570
+ brick
571
+ brick building
572
+ wall
573
+ brickwork
574
+ wedding dress
575
+ bride
576
+ groom
577
+ bridesmaid
578
+ bridge
579
+ bridle
580
+ briefcase
581
+ bright
582
+ brim
583
+ broach
584
+ broadcasting
585
+ broccoli
586
+ bronze
587
+ bronze medal
588
+ bronze sculpture
589
+ bronze statue
590
+ brooch
591
+ creek
592
+ broom
593
+ broth
594
+ brown
595
+ brown bear
596
+ brownie
597
+ brunch
598
+ brunette
599
+ brush
600
+ coyote
601
+ brussels sprout
602
+ bubble
603
+ bubble gum
604
+ bubble tea
605
+ bucket cabinet
606
+ shield
607
+ bud
608
+ buddha
609
+ buffalo
610
+ buffet
611
+ bug
612
+ build
613
+ builder
614
+ building
615
+ building block
616
+ building facade
617
+ building material
618
+ lamp
619
+ bull
620
+ bulldog
621
+ bullet
622
+ bullet train
623
+ bulletin board
624
+ bulletproof vest
625
+ bullfighting
626
+ megaphone
627
+ bullring
628
+ bumblebee
629
+ bumper
630
+ roll
631
+ bundle
632
+ bungee
633
+ bunk bed
634
+ bunker
635
+ bunny
636
+ buoy
637
+ bureau
638
+ burial chamber
639
+ burn
640
+ burrito
641
+ bus
642
+ bus driver
643
+ bus interior
644
+ bus station
645
+ bus stop
646
+ bus window
647
+ bush
648
+ business
649
+ business card
650
+ business executive
651
+ business suit
652
+ business team
653
+ business woman
654
+ businessman
655
+ bust
656
+ butcher
657
+ butchers shop
658
+ butte
659
+ butter
660
+ cream
661
+ butterfly
662
+ butterfly house
663
+ button
664
+ buttonwood
665
+ buy
666
+ taxi
667
+ cabana
668
+ cabbage
669
+ cabin
670
+ cabin car
671
+ cabinet
672
+ cabinetry
673
+ cable
674
+ cable car
675
+ cactus
676
+ cafe
677
+ canteen
678
+ cage
679
+ cake
680
+ cake stand
681
+ calculator
682
+ caldron
683
+ calendar
684
+ calf
685
+ call
686
+ phone box
687
+ calligraphy
688
+ calm
689
+ camcorder
690
+ camel
691
+ camera
692
+ camera lens
693
+ camouflage
694
+ camp
695
+ camper
696
+ campfire
697
+ camping
698
+ campsite
699
+ campus
700
+ can
701
+ can opener
702
+ canal
703
+ canary
704
+ cancer
705
+ candle
706
+ candle holder
707
+ candy
708
+ candy bar
709
+ candy cane
710
+ candy store
711
+ cane
712
+ jar
713
+ cannon
714
+ canopy
715
+ canopy bed
716
+ cantaloupe
717
+ cantilever bridge
718
+ canvas
719
+ canyon
720
+ cap
721
+ cape
722
+ cape cod
723
+ cappuccino
724
+ capsule
725
+ captain
726
+ capture
727
+ car
728
+ car dealership
729
+ car door
730
+ car interior
731
+ car logo
732
+ car mirror
733
+ parking lot
734
+ car seat
735
+ car show
736
+ car wash
737
+ car window
738
+ caramel
739
+ card
740
+ card game
741
+ cardboard
742
+ cardboard box
743
+ cardigan
744
+ cardinal
745
+ cargo
746
+ cargo aircraft
747
+ cargo ship
748
+ caribbean
749
+ carnation
750
+ carnival
751
+ carnivore
752
+ carousel
753
+ carp
754
+ carpenter
755
+ carpet
756
+ slipper
757
+ house finch
758
+ coach
759
+ dalmatian
760
+ aircraft carrier
761
+ carrot
762
+ carrot cake
763
+ carry
764
+ cart
765
+ carton
766
+ cartoon
767
+ cartoon character
768
+ cartoon illustration
769
+ cartoon style
770
+ carve
771
+ case
772
+ cash
773
+ cashew
774
+ casino
775
+ casserole
776
+ cassette
777
+ cassette deck
778
+ plaster bandage
779
+ casting
780
+ castle
781
+ cat
782
+ cat bed
783
+ cat food
784
+ cat furniture
785
+ cat tree
786
+ catacomb
787
+ catamaran
788
+ catamount
789
+ catch
790
+ catcher
791
+ caterpillar
792
+ catfish
793
+ cathedral
794
+ cattle
795
+ catwalk
796
+ catwalk show
797
+ cauliflower
798
+ cave
799
+ caviar
800
+ CD
801
+ CD player
802
+ cedar
803
+ ceiling
804
+ ceiling fan
805
+ celebrate
806
+ celebration
807
+ celebrity
808
+ celery
809
+ cello
810
+ smartphone
811
+ cement
812
+ graveyard
813
+ centerpiece
814
+ centipede
815
+ ceramic
816
+ ceramic tile
817
+ cereal
818
+ ceremony
819
+ certificate
820
+ chain
821
+ chain saw
822
+ chair
823
+ chairlift
824
+ daybed
825
+ chalet
826
+ chalice
827
+ chalk
828
+ chamber
829
+ chameleon
830
+ champagne
831
+ champagne flute
832
+ champion
833
+ championship
834
+ chandelier
835
+ changing table
836
+ channel
837
+ chap
838
+ chapel
839
+ character sculpture
840
+ charcoal
841
+ charge
842
+ charger
843
+ chariot
844
+ charity
845
+ charity event
846
+ charm
847
+ graph
848
+ chase
849
+ chassis
850
+ check
851
+ checkbook
852
+ chessboard
853
+ checklist
854
+ cheer
855
+ cheerlead
856
+ cheese
857
+ cheeseburger
858
+ cheesecake
859
+ cheetah
860
+ chef
861
+ chemical compound
862
+ chemist
863
+ chemistry
864
+ chemistry lab
865
+ cheongsam
866
+ cherry
867
+ cherry blossom
868
+ cherry tomato
869
+ cherry tree
870
+ chess
871
+ chestnut
872
+ chicken
873
+ chicken breast
874
+ chicken coop
875
+ chicken salad
876
+ chicken wing
877
+ garbanzo
878
+ chiffonier
879
+ chihuahua
880
+ child
881
+ child actor
882
+ childs room
883
+ chile
884
+ chili dog
885
+ chimney
886
+ chimpanzee
887
+ chinaware
888
+ chinese cabbage
889
+ chinese garden
890
+ chinese knot
891
+ chinese rose
892
+ chinese tower
893
+ chip
894
+ chipmunk
895
+ chisel
896
+ chocolate
897
+ chocolate bar
898
+ chocolate cake
899
+ chocolate chip
900
+ chocolate chip cookie
901
+ chocolate milk
902
+ chocolate mousse
903
+ truffle
904
+ choir
905
+ kitchen knife
906
+ cutting board
907
+ chopstick
908
+ christmas
909
+ christmas ball
910
+ christmas card
911
+ christmas decoration
912
+ christmas dinner
913
+ christmas eve
914
+ christmas hat
915
+ christmas light
916
+ christmas market
917
+ christmas ornament
918
+ christmas tree
919
+ chrysanthemum
920
+ church
921
+ church tower
922
+ cider
923
+ cigar
924
+ cigar box
925
+ cigarette
926
+ cigarette case
927
+ waistband
928
+ cinema
929
+ photographer
930
+ cinnamon
931
+ circle
932
+ circuit
933
+ circuit board
934
+ circus
935
+ water tank
936
+ citrus fruit
937
+ city
938
+ city bus
939
+ city hall
940
+ city nightview
941
+ city park
942
+ city skyline
943
+ city square
944
+ city street
945
+ city wall
946
+ city view
947
+ clam
948
+ clarinet
949
+ clasp
950
+ class
951
+ classic
952
+ classroom
953
+ clavicle
954
+ claw
955
+ clay
956
+ pottery
957
+ clean
958
+ clean room
959
+ cleaner
960
+ cleaning product
961
+ clear
962
+ cleat
963
+ clementine
964
+ client
965
+ cliff
966
+ climb
967
+ climb mountain
968
+ climber
969
+ clinic
970
+ clip
971
+ clip art
972
+ clipboard
973
+ clipper
974
+ clivia
975
+ cloak
976
+ clogs
977
+ close-up
978
+ closet
979
+ cloth
980
+ clothe
981
+ clothing
982
+ clothespin
983
+ clothesline
984
+ clothing store
985
+ cloud
986
+ cloud forest
987
+ cloudy
988
+ clover
989
+ joker
990
+ clown fish
991
+ club
992
+ clutch
993
+ clutch bag
994
+ coal
995
+ coast
996
+ coat
997
+ coatrack
998
+ cob
999
+ cock
1000
+ cockatoo
1001
+ cocker
1002
+ cockpit
1003
+ roach
1004
+ cocktail
1005
+ cocktail dress
1006
+ cocktail shaker
1007
+ cocktail table
1008
+ cocoa
1009
+ coconut
1010
+ coconut tree
1011
+ coffee
1012
+ coffee bean
1013
+ coffee cup
1014
+ coffee machine
1015
+ coffee shop
1016
+ coffeepot
1017
+ coffin
1018
+ cognac
1019
+ spiral
1020
+ coin
1021
+ coke
1022
+ colander
1023
+ cold
1024
+ slaw
1025
+ collaboration
1026
+ collage
1027
+ collection
1028
+ college student
1029
+ sheepdog
1030
+ crash
1031
+ color
1032
+ coloring book
1033
+ coloring material
1034
+ pony
1035
+ pillar
1036
+ comb
1037
+ combination lock
1038
+ comic
1039
+ comedy
1040
+ comedy film
1041
+ comet
1042
+ comfort
1043
+ comfort food
1044
+ comic book
1045
+ comic book character
1046
+ comic strip
1047
+ commander
1048
+ commentator
1049
+ community
1050
+ commuter
1051
+ company
1052
+ compass
1053
+ compete
1054
+ contest
1055
+ competitor
1056
+ composer
1057
+ composition
1058
+ compost
1059
+ computer
1060
+ computer box
1061
+ computer chair
1062
+ computer desk
1063
+ keyboard
1064
+ computer monitor
1065
+ computer room
1066
+ computer screen
1067
+ computer tower
1068
+ concept car
1069
+ concert
1070
+ concert hall
1071
+ conch
1072
+ concrete
1073
+ condiment
1074
+ condom
1075
+ condominium
1076
+ conductor
1077
+ cone
1078
+ meeting
1079
+ conference center
1080
+ conference hall
1081
+ meeting room
1082
+ confetti
1083
+ conflict
1084
+ confluence
1085
+ connect
1086
+ connector
1087
+ conservatory
1088
+ constellation
1089
+ construction site
1090
+ construction worker
1091
+ contain
1092
+ container
1093
+ container ship
1094
+ continent
1095
+ profile
1096
+ contract
1097
+ control
1098
+ control tower
1099
+ convenience store
1100
+ convention
1101
+ conversation
1102
+ converter
1103
+ convertible
1104
+ transporter
1105
+ cook
1106
+ cooking
1107
+ cooking spray
1108
+ cooker
1109
+ cool
1110
+ cooler
1111
+ copper
1112
+ copy
1113
+ coral
1114
+ coral reef
1115
+ rope
1116
+ corded phone
1117
+ liquor
1118
+ corgi
1119
+ cork
1120
+ corkboard
1121
+ cormorant
1122
+ corn
1123
+ corn field
1124
+ cornbread
1125
+ corner
1126
+ trumpet
1127
+ cornice
1128
+ cornmeal
1129
+ corral
1130
+ corridor
1131
+ corset
1132
+ cosmetic
1133
+ cosmetics brush
1134
+ cosmetics mirror
1135
+ cosplay
1136
+ costume
1137
+ costumer film designer
1138
+ infant bed
1139
+ cottage
1140
+ cotton
1141
+ cotton candy
1142
+ couch
1143
+ countdown
1144
+ counter
1145
+ counter top
1146
+ country artist
1147
+ country house
1148
+ country lane
1149
+ country pop artist
1150
+ countryside
1151
+ coupe
1152
+ couple
1153
+ couple photo
1154
+ courgette
1155
+ course
1156
+ court
1157
+ courthouse
1158
+ courtyard
1159
+ cousin
1160
+ coverall
1161
+ cow
1162
+ cowbell
1163
+ cowboy
1164
+ cowboy boot
1165
+ cowboy hat
1166
+ crab
1167
+ crabmeat
1168
+ crack
1169
+ cradle
1170
+ craft
1171
+ craftsman
1172
+ cranberry
1173
+ crane
1174
+ crape
1175
+ crapper
1176
+ crate
1177
+ crater lake
1178
+ lobster
1179
+ crayon
1180
+ cream cheese
1181
+ cream pitcher
1182
+ create
1183
+ creature
1184
+ credit card
1185
+ crescent
1186
+ croissant
1187
+ crest
1188
+ crew
1189
+ cricket
1190
+ cricket ball
1191
+ cricket team
1192
+ cricketer
1193
+ crochet
1194
+ crock pot
1195
+ crocodile
1196
+ crop
1197
+ crop top
1198
+ cross
1199
+ crossbar
1200
+ crossroad
1201
+ crosstalk
1202
+ crosswalk
1203
+ crouton
1204
+ crow
1205
+ crowbar
1206
+ crowd
1207
+ crowded
1208
+ crown
1209
+ crt screen
1210
+ crucifix
1211
+ cruise
1212
+ cruise ship
1213
+ cruiser
1214
+ crumb
1215
+ crush
1216
+ crutch
1217
+ crystal
1218
+ cub
1219
+ cube
1220
+ cucumber
1221
+ cue
1222
+ cuff
1223
+ cufflink
1224
+ cuisine
1225
+ farmland
1226
+ cup
1227
+ cupcake
1228
+ cupid
1229
+ curb
1230
+ curl
1231
+ hair roller
1232
+ currant
1233
+ currency
1234
+ curry
1235
+ curtain
1236
+ curve
1237
+ pad
1238
+ customer
1239
+ cut
1240
+ cutlery
1241
+ cycle
1242
+ cycling
1243
+ cyclone
1244
+ cylinder
1245
+ cymbal
1246
+ cypress
1247
+ cypress tree
1248
+ dachshund
1249
+ daffodil
1250
+ dagger
1251
+ dahlia
1252
+ daikon
1253
+ dairy
1254
+ daisy
1255
+ dam
1256
+ damage
1257
+ damp
1258
+ dance
1259
+ dance floor
1260
+ dance room
1261
+ dancer
1262
+ dandelion
1263
+ dark
1264
+ darkness
1265
+ dart
1266
+ dartboard
1267
+ dashboard
1268
+ date
1269
+ daughter
1270
+ dawn
1271
+ day bed
1272
+ daylight
1273
+ deadbolt
1274
+ death
1275
+ debate
1276
+ debris
1277
+ decanter
1278
+ deck
1279
+ decker bus
1280
+ decor
1281
+ decorate
1282
+ decorative picture
1283
+ deer
1284
+ defender
1285
+ deity
1286
+ delicatessen
1287
+ deliver
1288
+ demolition
1289
+ monster
1290
+ demonstration
1291
+ den
1292
+ denim jacket
1293
+ dentist
1294
+ department store
1295
+ depression
1296
+ derby
1297
+ dermopathy
1298
+ desert
1299
+ desert road
1300
+ design
1301
+ designer
1302
+ table
1303
+ table lamp
1304
+ desktop
1305
+ desktop computer
1306
+ dessert
1307
+ destruction
1308
+ detective
1309
+ detergent
1310
+ dew
1311
+ dial
1312
+ diamond
1313
+ diaper
1314
+ diaper bag
1315
+ journal
1316
+ die
1317
+ diet
1318
+ excavator
1319
+ number
1320
+ digital clock
1321
+ dill
1322
+ dinner
1323
+ rowboat
1324
+ dining room
1325
+ dinner party
1326
+ dinning table
1327
+ dinosaur
1328
+ dip
1329
+ diploma
1330
+ direct
1331
+ director
1332
+ dirt
1333
+ dirt bike
1334
+ dirt field
1335
+ dirt road
1336
+ dirt track
1337
+ disaster
1338
+ disciple
1339
+ disco
1340
+ disco ball
1341
+ discotheque
1342
+ disease
1343
+ plate
1344
+ dish antenna
1345
+ dish washer
1346
+ dishrag
1347
+ dishes
1348
+ dishsoap
1349
+ Disneyland
1350
+ dispenser
1351
+ display
1352
+ display window
1353
+ trench
1354
+ dive
1355
+ diver
1356
+ diving board
1357
+ paper cup
1358
+ dj
1359
+ doberman
1360
+ dock
1361
+ doctor
1362
+ document
1363
+ documentary
1364
+ dog
1365
+ dog bed
1366
+ dog breed
1367
+ dog collar
1368
+ dog food
1369
+ dog house
1370
+ doll
1371
+ dollar
1372
+ dollhouse
1373
+ dolly
1374
+ dolphin
1375
+ dome
1376
+ domicile
1377
+ domino
1378
+ donkey
1379
+ donut
1380
+ doodle
1381
+ door
1382
+ door handle
1383
+ doormat
1384
+ doorplate
1385
+ doorway
1386
+ dormitory
1387
+ dough
1388
+ downtown
1389
+ dozer
1390
+ drag
1391
+ dragon
1392
+ dragonfly
1393
+ drain
1394
+ drama
1395
+ drama film
1396
+ draw
1397
+ drawer
1398
+ drawing
1399
+ drawing pin
1400
+ pigtail
1401
+ dress
1402
+ dress hat
1403
+ dress shirt
1404
+ dress shoe
1405
+ dress suit
1406
+ dresser
1407
+ dressing room
1408
+ dribble
1409
+ drift
1410
+ driftwood
1411
+ drill
1412
+ drink
1413
+ drinking water
1414
+ drive
1415
+ driver
1416
+ driveway
1417
+ drone
1418
+ drop
1419
+ droplight
1420
+ dropper
1421
+ drought
1422
+ medicine
1423
+ pharmacy
1424
+ drum
1425
+ drummer
1426
+ drumstick
1427
+ dry
1428
+ duchess
1429
+ duck
1430
+ duckbill
1431
+ duckling
1432
+ duct tape
1433
+ dude
1434
+ duet
1435
+ duffel
1436
+ canoe
1437
+ dumbbell
1438
+ dumpling
1439
+ dune
1440
+ dunk
1441
+ durian
1442
+ dusk
1443
+ dust
1444
+ garbage truck
1445
+ dustpan
1446
+ duvet
1447
+ DVD
1448
+ dye
1449
+ eagle
1450
+ ear
1451
+ earmuff
1452
+ earphone
1453
+ earplug
1454
+ earring
1455
+ earthquake
1456
+ easel
1457
+ easter
1458
+ easter bunny
1459
+ easter egg
1460
+ eat
1461
+ restaurant
1462
+ eclair
1463
+ eclipse
1464
+ ecosystem
1465
+ edit
1466
+ education
1467
+ educator
1468
+ eel
1469
+ egg
1470
+ egg roll
1471
+ egg tart
1472
+ eggbeater
1473
+ egret
1474
+ Eiffel tower
1475
+ elastic band
1476
+ senior
1477
+ electric chair
1478
+ electric drill
1479
+ electrician
1480
+ electricity
1481
+ electron
1482
+ electronic
1483
+ elephant
1484
+ elevation map
1485
+ elevator
1486
+ elevator car
1487
+ elevator door
1488
+ elevator lobby
1489
+ elevator shaft
1490
+ embankment
1491
+ embassy
1492
+ embellishment
1493
+ ember
1494
+ emblem
1495
+ embroidery
1496
+ emerald
1497
+ emergency
1498
+ emergency service
1499
+ emergency vehicle
1500
+ emotion
1501
+ Empire State Building
1502
+ enamel
1503
+ enclosure
1504
+ side table
1505
+ energy
1506
+ engagement
1507
+ engagement ring
1508
+ engine
1509
+ engine room
1510
+ engineer
1511
+ engineering
1512
+ english shorthair
1513
+ ensemble
1514
+ enter
1515
+ entertainer
1516
+ entertainment
1517
+ entertainment center
1518
+ entrance
1519
+ entrance hall
1520
+ envelope
1521
+ equestrian
1522
+ equipment
1523
+ eraser
1524
+ erhu
1525
+ erosion
1526
+ escalator
1527
+ escargot
1528
+ espresso
1529
+ estate
1530
+ estuary
1531
+ eucalyptus tree
1532
+ evening
1533
+ evening dress
1534
+ evening light
1535
+ evening sky
1536
+ evening sun
1537
+ event
1538
+ evergreen
1539
+ ewe
1540
+ excavation
1541
+ exercise
1542
+ exhaust hood
1543
+ exhibition
1544
+ exit
1545
+ explorer
1546
+ explosion
1547
+ extension cord
1548
+ extinguisher
1549
+ extractor
1550
+ extrude
1551
+ eye
1552
+ eye shadow
1553
+ eyebrow
1554
+ eyeliner
1555
+ fabric
1556
+ fabric store
1557
+ facade
1558
+ face
1559
+ face close-up
1560
+ face powder
1561
+ face towel
1562
+ facial tissue holder
1563
+ facility
1564
+ factory
1565
+ factory workshop
1566
+ fair
1567
+ fairground
1568
+ fairy
1569
+ falcon
1570
+ fall
1571
+ family
1572
+ family car
1573
+ family photo
1574
+ family room
1575
+ fan
1576
+ fang
1577
+ farm
1578
+ farmer
1579
+ farmer market
1580
+ farmhouse
1581
+ fashion
1582
+ fashion accessory
1583
+ fashion designer
1584
+ fashion girl
1585
+ fashion illustration
1586
+ fashion look
1587
+ fashion model
1588
+ fashion show
1589
+ fast food
1590
+ fastfood restaurant
1591
+ father
1592
+ faucet
1593
+ fault
1594
+ fauna
1595
+ fawn
1596
+ fax
1597
+ feast
1598
+ feather
1599
+ fedora
1600
+ feed
1601
+ feedbag
1602
+ feeding
1603
+ feeding chair
1604
+ feline
1605
+ mountain lion
1606
+ fence
1607
+ fender
1608
+ fern
1609
+ ferret
1610
+ ferris wheel
1611
+ ferry
1612
+ fertilizer
1613
+ festival
1614
+ fiber
1615
+ fiction
1616
+ fiction book
1617
+ field
1618
+ field road
1619
+ fig
1620
+ fight
1621
+ figure skater
1622
+ figurine
1623
+ file
1624
+ file photo
1625
+ file cabinet
1626
+ fill
1627
+ film camera
1628
+ film director
1629
+ film format
1630
+ film premiere
1631
+ film producer
1632
+ filming
1633
+ filter
1634
+ fin
1635
+ hand
1636
+ finish line
1637
+ fir
1638
+ fir tree
1639
+ fire
1640
+ fire alarm
1641
+ fire department
1642
+ fire truck
1643
+ fire escape
1644
+ fire hose
1645
+ fire pit
1646
+ fire station
1647
+ firecracker
1648
+ fireman
1649
+ fireplace
1650
+ firework
1651
+ firework display
1652
+ first-aid kit
1653
+ fish
1654
+ fish boat
1655
+ fish market
1656
+ fish pond
1657
+ fishbowl
1658
+ fisherman
1659
+ fishing
1660
+ fishing boat
1661
+ fishing net
1662
+ fishing pole
1663
+ fishing village
1664
+ fitness
1665
+ fitness course
1666
+ five
1667
+ fixture
1668
+ fjord
1669
+ flag
1670
+ flag pole
1671
+ flake
1672
+ flame
1673
+ flamingo
1674
+ flannel
1675
+ flap
1676
+ flare
1677
+ flash
1678
+ flask
1679
+ flat
1680
+ flatfish
1681
+ flavor
1682
+ flea
1683
+ flea market
1684
+ fleet
1685
+ flight
1686
+ flight attendant
1687
+ flip
1688
+ flip-flop
1689
+ flipchart
1690
+ float
1691
+ flock
1692
+ flood
1693
+ floor
1694
+ floor fan
1695
+ floor mat
1696
+ floor plan
1697
+ floor window
1698
+ floral arrangement
1699
+ florist
1700
+ floss
1701
+ flour
1702
+ flow
1703
+ flower
1704
+ flower basket
1705
+ flower bed
1706
+ flower box
1707
+ flower field
1708
+ flower girl
1709
+ flower market
1710
+ fluid
1711
+ flush
1712
+ flute
1713
+ fly
1714
+ fly fishing
1715
+ flyer
1716
+ horse
1717
+ foam
1718
+ fog
1719
+ foggy
1720
+ foie gra
1721
+ foil
1722
+ folding chair
1723
+ leaf
1724
+ folk artist
1725
+ folk dance
1726
+ folk rock artist
1727
+ fondant
1728
+ hotpot
1729
+ font
1730
+ food
1731
+ food coloring
1732
+ food court
1733
+ food processor
1734
+ food stand
1735
+ food truck
1736
+ foosball
1737
+ foot
1738
+ foot bridge
1739
+ football
1740
+ football coach
1741
+ football college game
1742
+ football match
1743
+ football field
1744
+ football game
1745
+ football helmet
1746
+ football player
1747
+ football stadium
1748
+ football team
1749
+ path
1750
+ footprint
1751
+ footrest
1752
+ footstall
1753
+ footwear
1754
+ forbidden city
1755
+ ford
1756
+ forehead
1757
+ forest
1758
+ forest fire
1759
+ forest floor
1760
+ forest path
1761
+ forest road
1762
+ forge
1763
+ fork
1764
+ forklift
1765
+ form
1766
+ formal garden
1767
+ formation
1768
+ formula 1
1769
+ fort
1770
+ fortification
1771
+ forward
1772
+ fossil
1773
+ foundation
1774
+ fountain
1775
+ fountain pen
1776
+ fox
1777
+ frame
1778
+ freckle
1779
+ highway
1780
+ lorry
1781
+ French
1782
+ French bulldog
1783
+ French fries
1784
+ French toast
1785
+ freshener
1786
+ fridge
1787
+ fried chicken
1788
+ fried egg
1789
+ fried rice
1790
+ friendship
1791
+ frisbee
1792
+ frog
1793
+ frost
1794
+ frosting
1795
+ frosty
1796
+ frozen
1797
+ fruit
1798
+ fruit cake
1799
+ fruit dish
1800
+ fruit market
1801
+ fruit salad
1802
+ fruit stand
1803
+ fruit tree
1804
+ fruits shop
1805
+ fry
1806
+ frying pan
1807
+ fudge
1808
+ fuel
1809
+ fume hood
1810
+ fun
1811
+ funeral
1812
+ fungi
1813
+ funnel
1814
+ fur
1815
+ fur coat
1816
+ furniture
1817
+ futon
1818
+ gadget
1819
+ muzzle
1820
+ galaxy
1821
+ gallery
1822
+ game
1823
+ game board
1824
+ game controller
1825
+ ham
1826
+ gang
1827
+ garage
1828
+ garage door
1829
+ garage kit
1830
+ garbage
1831
+ garden
1832
+ garden asparagus
1833
+ garden hose
1834
+ garden spider
1835
+ gardener
1836
+ gardening
1837
+ garfield
1838
+ gargoyle
1839
+ wreath
1840
+ garlic
1841
+ garment
1842
+ gas
1843
+ gas station
1844
+ gas stove
1845
+ gasmask
1846
+ collect
1847
+ gathering
1848
+ gauge
1849
+ gazebo
1850
+ gear
1851
+ gecko
1852
+ geisha
1853
+ gel
1854
+ general store
1855
+ generator
1856
+ geranium
1857
+ ghost
1858
+ gift
1859
+ gift bag
1860
+ gift basket
1861
+ gift box
1862
+ gift card
1863
+ gift shop
1864
+ gift wrap
1865
+ gig
1866
+ gin
1867
+ ginger
1868
+ gingerbread
1869
+ gingerbread house
1870
+ ginkgo tree
1871
+ giraffe
1872
+ girl
1873
+ give
1874
+ glacier
1875
+ gladiator
1876
+ glass bead
1877
+ glass bottle
1878
+ glass bowl
1879
+ glass box
1880
+ glass building
1881
+ glass door
1882
+ glass floor
1883
+ glass house
1884
+ glass jar
1885
+ glass plate
1886
+ glass table
1887
+ glass vase
1888
+ glass wall
1889
+ glass window
1890
+ glasses
1891
+ glaze
1892
+ glider
1893
+ earth
1894
+ glove
1895
+ glow
1896
+ glue pudding
1897
+ go
1898
+ go for
1899
+ goal
1900
+ goalkeeper
1901
+ goat
1902
+ goat cheese
1903
+ gobi
1904
+ goggles
1905
+ gold
1906
+ gold medal
1907
+ Golden Gate Bridge
1908
+ golden retriever
1909
+ goldfish
1910
+ golf
1911
+ golf cap
1912
+ golf cart
1913
+ golf club
1914
+ golf course
1915
+ golfer
1916
+ goose
1917
+ gorilla
1918
+ gothic
1919
+ gourd
1920
+ government
1921
+ government agency
1922
+ gown
1923
+ graduate
1924
+ graduation
1925
+ grain
1926
+ grampus
1927
+ grand prix
1928
+ grandfather
1929
+ grandmother
1930
+ grandparent
1931
+ granite
1932
+ granola
1933
+ grape
1934
+ grapefruit
1935
+ wine
1936
+ grass
1937
+ grasshopper
1938
+ grassland
1939
+ grassy
1940
+ grater
1941
+ grave
1942
+ gravel
1943
+ gravestone
1944
+ gravy
1945
+ gravy boat
1946
+ gray
1947
+ graze
1948
+ grazing
1949
+ green
1950
+ greenery
1951
+ greet
1952
+ greeting
1953
+ greeting card
1954
+ greyhound
1955
+ grid
1956
+ griddle
1957
+ grill
1958
+ grille
1959
+ grilled eel
1960
+ grind
1961
+ grinder
1962
+ grits
1963
+ grocery bag
1964
+ grotto
1965
+ ground squirrel
1966
+ group
1967
+ group photo
1968
+ grove
1969
+ grow
1970
+ guacamole
1971
+ guard
1972
+ guard dog
1973
+ guest house
1974
+ guest room
1975
+ guide
1976
+ guinea pig
1977
+ guitar
1978
+ guitarist
1979
+ gulf
1980
+ gull
1981
+ gun
1982
+ gundam
1983
+ gurdwara
1984
+ guzheng
1985
+ gym
1986
+ gymnast
1987
+ habitat
1988
+ hacker
1989
+ hail
1990
+ hair
1991
+ hair color
1992
+ hair spray
1993
+ hairbrush
1994
+ haircut
1995
+ hairgrip
1996
+ hairnet
1997
+ hairpin
1998
+ hairstyle
1999
+ half
2000
+ hall
2001
+ halloween
2002
+ halloween costume
2003
+ halloween pumpkin
2004
+ halter top
2005
+ hamburg
2006
+ hamburger
2007
+ hami melon
2008
+ hammer
2009
+ hammock
2010
+ hamper
2011
+ hamster
2012
+ hand dryer
2013
+ hand glass
2014
+ hand towel
2015
+ handbag
2016
+ handball
2017
+ handcuff
2018
+ handgun
2019
+ handkerchief
2020
+ handle
2021
+ handsaw
2022
+ handshake
2023
+ handstand
2024
+ handwriting
2025
+ hanfu
2026
+ hang
2027
+ hangar
2028
+ hanger
2029
+ happiness
2030
+ harbor
2031
+ harbor seal
2032
+ hard rock artist
2033
+ hardback book
2034
+ safety helmet
2035
+ hardware
2036
+ hardware store
2037
+ hardwood
2038
+ hardwood floor
2039
+ mouth organ
2040
+ pipe organ
2041
+ harpsichord
2042
+ harvest
2043
+ harvester
2044
+ hassock
2045
+ hat
2046
+ hatbox
2047
+ hautboy
2048
+ hawthorn
2049
+ hay
2050
+ hayfield
2051
+ hazelnut
2052
+ head
2053
+ head coach
2054
+ headlight
2055
+ headboard
2056
+ headdress
2057
+ headland
2058
+ headquarter
2059
+ hearing
2060
+ heart
2061
+ heart shape
2062
+ heat
2063
+ heater
2064
+ heather
2065
+ hedge
2066
+ hedgehog
2067
+ heel
2068
+ helicopter
2069
+ heliport
2070
+ helmet
2071
+ help
2072
+ hen
2073
+ henna
2074
+ herb
2075
+ herd
2076
+ hermit crab
2077
+ hero
2078
+ heron
2079
+ hibiscus
2080
+ hibiscus flower
2081
+ hide
2082
+ high bar
2083
+ high heel
2084
+ highland
2085
+ highlight
2086
+ hike
2087
+ hiker
2088
+ hiking boot
2089
+ hiking equipment
2090
+ hill
2091
+ hill country
2092
+ hill station
2093
+ hillside
2094
+ hindu temple
2095
+ hinge
2096
+ hip
2097
+ hip hop artist
2098
+ hippo
2099
+ historian
2100
+ historic
2101
+ history
2102
+ hockey
2103
+ hockey arena
2104
+ hockey game
2105
+ hockey player
2106
+ hockey stick
2107
+ hoe
2108
+ hole
2109
+ vacation
2110
+ holly
2111
+ holothurian
2112
+ home
2113
+ home appliance
2114
+ home base
2115
+ home decor
2116
+ home interior
2117
+ home office
2118
+ home theater
2119
+ homework
2120
+ hummus
2121
+ honey
2122
+ beehive
2123
+ honeymoon
2124
+ hood
2125
+ hoodie
2126
+ hook
2127
+ jump
2128
+ horizon
2129
+ hornbill
2130
+ horned cow
2131
+ hornet
2132
+ horror
2133
+ horror film
2134
+ horse blanket
2135
+ horse cart
2136
+ horse farm
2137
+ horse ride
2138
+ horseback
2139
+ horseshoe
2140
+ hose
2141
+ hospital
2142
+ hospital bed
2143
+ hospital room
2144
+ host
2145
+ inn
2146
+ hot
2147
+ hot air balloon
2148
+ hot dog
2149
+ hot sauce
2150
+ hot spring
2151
+ hotel
2152
+ hotel lobby
2153
+ hotel room
2154
+ hotplate
2155
+ hourglass
2156
+ house
2157
+ house exterior
2158
+ houseplant
2159
+ hoverboard
2160
+ howler
2161
+ huddle
2162
+ hug
2163
+ hula hoop
2164
+ person
2165
+ humidifier
2166
+ hummingbird
2167
+ humpback whale
2168
+ hunt
2169
+ hunting lodge
2170
+ hurdle
2171
+ hurricane
2172
+ husky
2173
+ hut
2174
+ hyaena
2175
+ hybrid
2176
+ hydrangea
2177
+ hydrant
2178
+ seaplane
2179
+ ice
2180
+ ice bag
2181
+ polar bear
2182
+ ice cave
2183
+ icecream
2184
+ ice cream cone
2185
+ ice cream parlor
2186
+ ice cube
2187
+ ice floe
2188
+ ice hockey player
2189
+ ice hockey team
2190
+ lollipop
2191
+ ice maker
2192
+ rink
2193
+ ice sculpture
2194
+ ice shelf
2195
+ skate
2196
+ ice skating
2197
+ iceberg
2198
+ icicle
2199
+ icing
2200
+ icon
2201
+ id photo
2202
+ identity card
2203
+ igloo
2204
+ light
2205
+ iguana
2206
+ illuminate
2207
+ illustration
2208
+ image
2209
+ impala
2210
+ incense
2211
+ independence day
2212
+ individual
2213
+ indoor
2214
+ indoor rower
2215
+ induction cooker
2216
+ industrial area
2217
+ industry
2218
+ infantry
2219
+ inflatable boat
2220
+ information desk
2221
+ infrastructure
2222
+ ingredient
2223
+ inhalator
2224
+ injection
2225
+ injury
2226
+ ink
2227
+ inking pad
2228
+ inlet
2229
+ inscription
2230
+ insect
2231
+ install
2232
+ instrument
2233
+ insulated cup
2234
+ interaction
2235
+ interior design
2236
+ website
2237
+ intersection
2238
+ interview
2239
+ invertebrate
2240
+ invitation
2241
+ ipad
2242
+ iphone
2243
+ ipod
2244
+ iris
2245
+ iron
2246
+ ironing board
2247
+ irrigation system
2248
+ island
2249
+ islet
2250
+ isopod
2251
+ ivory
2252
+ ivy
2253
+ izakaya
2254
+ jack
2255
+ jackcrab
2256
+ jacket
2257
+ jacuzzi
2258
+ jade
2259
+ jaguar
2260
+ jail cell
2261
+ jam
2262
+ japanese garden
2263
+ jasmine
2264
+ jaw
2265
+ jay
2266
+ jazz
2267
+ jazz artist
2268
+ jazz fusion artist
2269
+ jeans
2270
+ jeep
2271
+ jelly
2272
+ jelly bean
2273
+ jellyfish
2274
+ jet
2275
+ motorboat
2276
+ jewel
2277
+ jewellery
2278
+ jewelry shop
2279
+ jigsaw puzzle
2280
+ rickshaw
2281
+ jockey
2282
+ jockey cap
2283
+ jog
2284
+ joint
2285
+ journalist
2286
+ joystick
2287
+ judge
2288
+ jug
2289
+ juggle
2290
+ juice
2291
+ juicer
2292
+ jujube
2293
+ jump rope
2294
+ jumpsuit
2295
+ jungle
2296
+ junkyard
2297
+ kale
2298
+ kaleidoscope
2299
+ kangaroo
2300
+ karaoke
2301
+ karate
2302
+ karting
2303
+ kasbah
2304
+ kayak
2305
+ kebab
2306
+ key
2307
+ keycard
2308
+ khaki
2309
+ kick
2310
+ kilt
2311
+ kimono
2312
+ kindergarden classroom
2313
+ kindergarten
2314
+ king
2315
+ king crab
2316
+ kiss
2317
+ kit
2318
+ kitchen
2319
+ kitchen cabinet
2320
+ kitchen counter
2321
+ kitchen floor
2322
+ kitchen hood
2323
+ kitchen island
2324
+ kitchen sink
2325
+ kitchen table
2326
+ kitchen utensil
2327
+ kitchen window
2328
+ kitchenware
2329
+ kite
2330
+ kiwi
2331
+ knee pad
2332
+ kneel
2333
+ knife
2334
+ rider
2335
+ knit
2336
+ knitting needle
2337
+ knob
2338
+ knocker
2339
+ knot
2340
+ koala
2341
+ koi
2342
+ ktv
2343
+ laboratory
2344
+ lab coat
2345
+ label
2346
+ labrador
2347
+ maze
2348
+ lace
2349
+ lace dress
2350
+ ladder
2351
+ ladle
2352
+ ladybird
2353
+ lagoon
2354
+ lake
2355
+ lake district
2356
+ lake house
2357
+ lakeshore
2358
+ lamb
2359
+ lamb chop
2360
+ lamp post
2361
+ lamp shade
2362
+ spear
2363
+ land
2364
+ land vehicle
2365
+ landfill
2366
+ landing
2367
+ landing deck
2368
+ landmark
2369
+ landscape
2370
+ landslide
2371
+ lanyard
2372
+ lantern
2373
+ lap
2374
+ laptop
2375
+ laptop keyboard
2376
+ larva
2377
+ lasagne
2378
+ laser
2379
+ lash
2380
+ lasso
2381
+ latch
2382
+ latex
2383
+ latte
2384
+ laugh
2385
+ launch
2386
+ launch event
2387
+ launch party
2388
+ laundromat
2389
+ laundry
2390
+ laundry basket
2391
+ laundry room
2392
+ lava
2393
+ lavender
2394
+ lawn
2395
+ lawn wedding
2396
+ lawyer
2397
+ lay
2398
+ lead
2399
+ lead singer
2400
+ lead to
2401
+ leader
2402
+ leak
2403
+ lean
2404
+ learn
2405
+ leash
2406
+ leather
2407
+ leather jacket
2408
+ leather shoe
2409
+ speech
2410
+ lecture hall
2411
+ lecture room
2412
+ ledge
2413
+ leftover
2414
+ leg
2415
+ legend
2416
+ legging
2417
+ legislative chamber
2418
+ lego
2419
+ legume
2420
+ lemon
2421
+ lemon juice
2422
+ lemonade
2423
+ lemur
2424
+ lens
2425
+ lens flare
2426
+ lentil
2427
+ leopard
2428
+ leotard
2429
+ tights
2430
+ leprechaun
2431
+ lesson
2432
+ letter
2433
+ mailbox
2434
+ letter logo
2435
+ lettering
2436
+ lettuce
2437
+ level
2438
+ library
2439
+ license
2440
+ license plate
2441
+ lichen
2442
+ lick
2443
+ lid
2444
+ lie
2445
+ life belt
2446
+ life jacket
2447
+ lifeboat
2448
+ lifeguard
2449
+ lift
2450
+ light fixture
2451
+ light show
2452
+ light switch
2453
+ lighting
2454
+ lightning
2455
+ lightning rod
2456
+ lilac
2457
+ lily
2458
+ limb
2459
+ lime
2460
+ limestone
2461
+ limo
2462
+ line
2463
+ line art
2464
+ line up
2465
+ linen
2466
+ liner
2467
+ lion
2468
+ lip balm
2469
+ lipstick
2470
+ liquid
2471
+ liquor store
2472
+ list
2473
+ litchi
2474
+ live
2475
+ livestock
2476
+ living room
2477
+ living space
2478
+ lizard
2479
+ load
2480
+ loading dock
2481
+ loafer
2482
+ hallway
2483
+ locate
2484
+ lock
2485
+ lock chamber
2486
+ locker
2487
+ loft
2488
+ log
2489
+ log cabin
2490
+ logo
2491
+ loki
2492
+ long hair
2493
+ longboard
2494
+ loom
2495
+ loop
2496
+ lose
2497
+ lottery
2498
+ lotus
2499
+ love
2500
+ loveseat
2501
+ luggage
2502
+ lumber
2503
+ lumberjack
2504
+ lunch
2505
+ lunch box
2506
+ lush
2507
+ luxury
2508
+ luxury yacht
2509
+ mac
2510
+ macadamia
2511
+ macaque
2512
+ macaroni
2513
+ macaw
2514
+ machete
2515
+ machine
2516
+ machine gun
2517
+ magazine
2518
+ magic
2519
+ magician
2520
+ magnet
2521
+ magnifying glass
2522
+ magnolia
2523
+ magpie
2524
+ mahjong
2525
+ mahout
2526
+ maid
2527
+ chain mail
2528
+ mail slot
2529
+ make
2530
+ makeover
2531
+ makeup artist
2532
+ makeup tool
2533
+ mallard
2534
+ mallard duck
2535
+ mallet
2536
+ mammal
2537
+ mammoth
2538
+ man
2539
+ management
2540
+ manager
2541
+ manatee
2542
+ mandala
2543
+ mandarin orange
2544
+ mandarine
2545
+ mane
2546
+ manga
2547
+ manger
2548
+ mango
2549
+ mangosteen
2550
+ mangrove
2551
+ manhattan
2552
+ manhole
2553
+ manhole cover
2554
+ manicure
2555
+ mannequin
2556
+ manor house
2557
+ mansion
2558
+ mantid
2559
+ mantle
2560
+ manufactured home
2561
+ manufacturing
2562
+ manuscript
2563
+ map
2564
+ maple
2565
+ maple leaf
2566
+ maple syrup
2567
+ maraca
2568
+ marathon
2569
+ marble
2570
+ march
2571
+ marching band
2572
+ mare
2573
+ marigold
2574
+ marine
2575
+ marine invertebrate
2576
+ marine mammal
2577
+ puppet
2578
+ mark
2579
+ market
2580
+ market square
2581
+ market stall
2582
+ marriage
2583
+ martial
2584
+ martial artist
2585
+ martial arts gym
2586
+ martini
2587
+ martini glass
2588
+ mascara
2589
+ mascot
2590
+ mashed potato
2591
+ masher
2592
+ mask
2593
+ massage
2594
+ mast
2595
+ mat
2596
+ matador
2597
+ match
2598
+ matchbox
2599
+ material
2600
+ mattress
2601
+ mausoleum
2602
+ maxi dress
2603
+ meal
2604
+ measuring cup
2605
+ measuring tape
2606
+ meat
2607
+ meatball
2608
+ mechanic
2609
+ mechanical fan
2610
+ medal
2611
+ media
2612
+ medical equipment
2613
+ medical image
2614
+ medical staff
2615
+ medicine cabinet
2616
+ medieval
2617
+ medina
2618
+ meditation
2619
+ meerkat
2620
+ meet
2621
+ melon
2622
+ monument
2623
+ menu
2624
+ mermaid
2625
+ net
2626
+ mess
2627
+ messenger bag
2628
+ metal
2629
+ metal artist
2630
+ metal detector
2631
+ meter
2632
+ mezzanine
2633
+ microphone
2634
+ microscope
2635
+ microwave
2636
+ midnight
2637
+ milestone
2638
+ military uniform
2639
+ milk
2640
+ milk can
2641
+ milk tea
2642
+ milkshake
2643
+ mill
2644
+ mine
2645
+ miner
2646
+ mineral
2647
+ mineral water
2648
+ miniskirt
2649
+ miniature
2650
+ minibus
2651
+ minister
2652
+ minivan
2653
+ mint
2654
+ mint candy
2655
+ mirror
2656
+ miss
2657
+ missile
2658
+ mission
2659
+ mistletoe
2660
+ mix
2661
+ mixer
2662
+ mixing bowl
2663
+ mixture
2664
+ moat
2665
+ mobility scooter
2666
+ model
2667
+ model car
2668
+ modern
2669
+ modern tower
2670
+ moisture
2671
+ mold
2672
+ molding
2673
+ mole
2674
+ monarch
2675
+ money
2676
+ monitor
2677
+ monk
2678
+ monkey
2679
+ monkey wrench
2680
+ monochrome
2681
+ monocycle
2682
+ monster truck
2683
+ moon
2684
+ moon cake
2685
+ moonlight
2686
+ moor
2687
+ moose
2688
+ swab
2689
+ moped
2690
+ morning
2691
+ morning fog
2692
+ morning light
2693
+ morning sun
2694
+ mortar
2695
+ mosaic
2696
+ mosque
2697
+ mosquito
2698
+ moss
2699
+ motel
2700
+ moth
2701
+ mother
2702
+ motherboard
2703
+ motif
2704
+ sport
2705
+ motor
2706
+ motorbike
2707
+ motorcycle
2708
+ motorcycle helmet
2709
+ motorcycle racer
2710
+ motorcyclist
2711
+ motorsport
2712
+ mound
2713
+ mountain
2714
+ mountain bike
2715
+ mountain biker
2716
+ mountain biking
2717
+ mountain gorilla
2718
+ mountain lake
2719
+ mountain landscape
2720
+ mountain pass
2721
+ mountain path
2722
+ mountain range
2723
+ mountain river
2724
+ mountain snowy
2725
+ mountain stream
2726
+ mountain view
2727
+ mountain village
2728
+ mountaineer
2729
+ mountaineering bag
2730
+ mouse
2731
+ mousepad
2732
+ mousetrap
2733
+ mouth
2734
+ mouthwash
2735
+ move
2736
+ movie poster
2737
+ movie ticket
2738
+ mower
2739
+ mp3 player
2740
+ mr
2741
+ mud
2742
+ muffin
2743
+ mug
2744
+ mulberry
2745
+ mulch
2746
+ mule
2747
+ municipality
2748
+ mural
2749
+ muscle
2750
+ muscle car
2751
+ museum
2752
+ mushroom
2753
+ music
2754
+ music festival
2755
+ music stool
2756
+ music studio
2757
+ music video performer
2758
+ musical keyboard
2759
+ musician
2760
+ mussel
2761
+ mustard
2762
+ mythology
2763
+ nacho
2764
+ nail polish
2765
+ nailfile
2766
+ nanny
2767
+ napkin
2768
+ narrow
2769
+ national flag
2770
+ nativity scene
2771
+ natural history museum
2772
+ nature
2773
+ nature reserve
2774
+ navigation
2775
+ navratri
2776
+ navy
2777
+ nebula
2778
+ neck
2779
+ neckband
2780
+ necklace
2781
+ neckline
2782
+ nectar
2783
+ nectarine
2784
+ needle
2785
+ neighbor
2786
+ neighbourhood
2787
+ neon
2788
+ neon light
2789
+ nerve
2790
+ nest
2791
+ new year
2792
+ newborn
2793
+ newfoundland
2794
+ newlywed
2795
+ news
2796
+ news conference
2797
+ newsstand
2798
+ night
2799
+ night market
2800
+ night sky
2801
+ night view
2802
+ nightclub
2803
+ nightstand
2804
+ noodle
2805
+ nose
2806
+ noseband
2807
+ note
2808
+ notebook
2809
+ notepad
2810
+ notepaper
2811
+ notice
2812
+ number icon
2813
+ nun
2814
+ nurse
2815
+ nursery
2816
+ nursing home
2817
+ nut
2818
+ nutcracker
2819
+ oak
2820
+ oak tree
2821
+ oar
2822
+ oasis
2823
+ oast house
2824
+ oatmeal
2825
+ oats
2826
+ obelisk
2827
+ observation tower
2828
+ observatory
2829
+ obstacle course
2830
+ sea
2831
+ octopus
2832
+ offer
2833
+ office
2834
+ office building
2835
+ office chair
2836
+ office cubicle
2837
+ office desk
2838
+ office supply
2839
+ office window
2840
+ officer
2841
+ official
2842
+ oil
2843
+ oil lamp
2844
+ oil painting
2845
+ oilrig
2846
+ okra
2847
+ old photo
2848
+ olive
2849
+ olive oil
2850
+ olive tree
2851
+ omelet
2852
+ onion
2853
+ onion ring
2854
+ opal
2855
+ open
2856
+ opening
2857
+ opening ceremony
2858
+ opera
2859
+ opera house
2860
+ operate
2861
+ operating room
2862
+ operation
2863
+ optical shop
2864
+ orangutan
2865
+ orange
2866
+ orange juice
2867
+ orange tree
2868
+ orangery
2869
+ orbit
2870
+ orchard
2871
+ orchestra pit
2872
+ orchid
2873
+ order
2874
+ organization
2875
+ origami
2876
+ ornament
2877
+ osprey
2878
+ ostrich
2879
+ otter
2880
+ out
2881
+ outcrop
2882
+ outdoor
2883
+ outhouse
2884
+ electric outlet
2885
+ outline
2886
+ oval
2887
+ oven
2888
+ overall
2889
+ overcoat
2890
+ overpass
2891
+ owl
2892
+ oyster
2893
+ teething ring
2894
+ pack
2895
+ package
2896
+ paddock
2897
+ police van
2898
+ padlock
2899
+ paella
2900
+ pagoda
2901
+ pain
2902
+ paint brush
2903
+ painter
2904
+ paisley bandanna
2905
+ palace
2906
+ palette
2907
+ paling
2908
+ pall
2909
+ palm tree
2910
+ pan
2911
+ pancake
2912
+ panda
2913
+ panel
2914
+ panorama
2915
+ pansy
2916
+ pant
2917
+ pantry
2918
+ pants
2919
+ pantyhose
2920
+ papaya
2921
+ paper
2922
+ paper bag
2923
+ paper cutter
2924
+ paper lantern
2925
+ paper plate
2926
+ paper towel
2927
+ paperback book
2928
+ paperweight
2929
+ parachute
2930
+ parade
2931
+ paradise
2932
+ parrot
2933
+ paramedic
2934
+ paraquet
2935
+ parasail
2936
+ paratrooper
2937
+ parchment
2938
+ parish
2939
+ park
2940
+ park bench
2941
+ parking
2942
+ parking garage
2943
+ parking meter
2944
+ parking sign
2945
+ parliament
2946
+ parsley
2947
+ participant
2948
+ partner
2949
+ partridge
2950
+ party
2951
+ party hat
2952
+ pass
2953
+ passage
2954
+ passbook
2955
+ passenger
2956
+ passenger ship
2957
+ passenger train
2958
+ passion fruit
2959
+ passport
2960
+ pasta
2961
+ paste
2962
+ pastry
2963
+ pasture
2964
+ patch
2965
+ patient
2966
+ pattern
2967
+ pavement
2968
+ pavilion
2969
+ paw
2970
+ pay
2971
+ payphone
2972
+ pea
2973
+ peace
2974
+ peach
2975
+ peacock
2976
+ peak
2977
+ peanut
2978
+ peanut butter
2979
+ pear
2980
+ pearl
2981
+ pebble
2982
+ pecan
2983
+ pedestrian
2984
+ pedestrian bridge
2985
+ pedestrian street
2986
+ peel
2987
+ peeler
2988
+ pegboard
2989
+ pegleg
2990
+ pelican
2991
+ pen
2992
+ penalty kick
2993
+ pencil
2994
+ pencil case
2995
+ pencil sharpener
2996
+ pencil skirt
2997
+ pendant
2998
+ pendulum
2999
+ penguin
3000
+ peninsula
3001
+ pennant
3002
+ penny
3003
+ piggy bank
3004
+ peony
3005
+ pepper
3006
+ pepper grinder
3007
+ peppercorn
3008
+ pepperoni
3009
+ perch
3010
+ perform
3011
+ performance
3012
+ performance arena
3013
+ perfume
3014
+ pergola
3015
+ persian cat
3016
+ persimmon
3017
+ personal care
3018
+ personal flotation device
3019
+ pest
3020
+ pet
3021
+ pet shop
3022
+ pet store
3023
+ petal
3024
+ petunia
3025
+ church bench
3026
+ pheasant
3027
+ phenomenon
3028
+ philosopher
3029
+ phone
3030
+ phonebook
3031
+ record player
3032
+ photo
3033
+ photo booth
3034
+ photo frame
3035
+ photography
3036
+ physicist
3037
+ physics laboratory
3038
+ pianist
3039
+ piano
3040
+ plectrum
3041
+ pick up
3042
+ pickle
3043
+ picnic
3044
+ picnic area
3045
+ picnic basket
3046
+ picnic table
3047
+ picture
3048
+ picture frame
3049
+ pie
3050
+ pigeon
3051
+ pilgrim
3052
+ tablet
3053
+ pillow
3054
+ pilot
3055
+ pilot boat
3056
+ pin
3057
+ pine
3058
+ pine cone
3059
+ pine forest
3060
+ pine nut
3061
+ pineapple
3062
+ table tennis table
3063
+ table tennis
3064
+ pink
3065
+ pint
3066
+ pipa
3067
+ pipe
3068
+ pipe bowl
3069
+ pirate
3070
+ pirate flag
3071
+ pirate ship
3072
+ pistachio
3073
+ ski slope
3074
+ pocket bread
3075
+ pitaya
3076
+ pitbull
3077
+ pitch
3078
+ pitcher
3079
+ pitcher plant
3080
+ pitchfork
3081
+ pizza
3082
+ pizza cutter
3083
+ pizza pan
3084
+ pizzeria
3085
+ placard
3086
+ place
3087
+ place mat
3088
+ plaid
3089
+ plain
3090
+ plan
3091
+ planet
3092
+ planet earth
3093
+ plank
3094
+ plant
3095
+ plantation
3096
+ planting
3097
+ plaque
3098
+ plaster
3099
+ plastic
3100
+ plasticine
3101
+ plateau
3102
+ platform
3103
+ platinum
3104
+ platter
3105
+ play
3106
+ play badminton
3107
+ play baseball
3108
+ play basketball
3109
+ play billiard
3110
+ play football
3111
+ play pong
3112
+ play tennis
3113
+ play volleyball
3114
+ player
3115
+ playground
3116
+ playhouse
3117
+ playing card
3118
+ playing chess
3119
+ playing golf
3120
+ playing mahjong
3121
+ playingfield
3122
+ playpen
3123
+ playroom
3124
+ plaza
3125
+ plier
3126
+ plot
3127
+ plow
3128
+ plug
3129
+ plug hat
3130
+ plum
3131
+ plumber
3132
+ plumbing fixture
3133
+ plume
3134
+ plywood
3135
+ pocket
3136
+ pocket watch
3137
+ pocketknife
3138
+ pod
3139
+ podium
3140
+ poetry
3141
+ poinsettia
3142
+ point
3143
+ pointer
3144
+ poker card
3145
+ poker chip
3146
+ poker table
3147
+ pole
3148
+ polecat
3149
+ police
3150
+ police car
3151
+ police dog
3152
+ police station
3153
+ politician
3154
+ polka dot
3155
+ pollen
3156
+ pollution
3157
+ polo
3158
+ polo neck
3159
+ polo shirt
3160
+ pomegranate
3161
+ pomeranian
3162
+ poncho
3163
+ pond
3164
+ ponytail
3165
+ poodle
3166
+ pool
3167
+ pop
3168
+ pop artist
3169
+ popcorn
3170
+ pope
3171
+ poppy
3172
+ porcelain
3173
+ porch
3174
+ pork
3175
+ porridge
3176
+ portable battery
3177
+ portal
3178
+ portfolio
3179
+ porthole
3180
+ portrait
3181
+ portrait session
3182
+ pose
3183
+ possum
3184
+ post
3185
+ post office
3186
+ stamp
3187
+ postcard
3188
+ poster
3189
+ poster page
3190
+ pot
3191
+ potato
3192
+ potato chip
3193
+ potato salad
3194
+ potholder
3195
+ potty
3196
+ pouch
3197
+ poultry
3198
+ pound
3199
+ pour
3200
+ powder
3201
+ power line
3202
+ power plugs and sockets
3203
+ power see
3204
+ power station
3205
+ practice
3206
+ Prague Castle
3207
+ prayer
3208
+ preacher
3209
+ premiere
3210
+ prescription
3211
+ show
3212
+ presentation
3213
+ president
3214
+ press room
3215
+ pressure cooker
3216
+ pretzel
3217
+ prince
3218
+ princess
3219
+ print
3220
+ printed page
3221
+ printer
3222
+ printing
3223
+ prison
3224
+ produce
3225
+ product
3226
+ profession
3227
+ professional
3228
+ professor
3229
+ project picture
3230
+ projection screen
3231
+ projector
3232
+ prom
3233
+ promenade
3234
+ propeller
3235
+ prophet
3236
+ proposal
3237
+ protective suit
3238
+ protest
3239
+ protester
3240
+ publication
3241
+ publicity portrait
3242
+ ice hockey
3243
+ pudding
3244
+ puddle
3245
+ puff
3246
+ puffin
3247
+ pug
3248
+ pull
3249
+ pulpit
3250
+ pulse
3251
+ pump
3252
+ pumpkin
3253
+ pumpkin pie
3254
+ pumpkin seed
3255
+ punch bag
3256
+ punch
3257
+ student
3258
+ purple
3259
+ push
3260
+ putt
3261
+ puzzle
3262
+ tower
3263
+ pyramid
3264
+ python
3265
+ qr code
3266
+ quail
3267
+ quarry
3268
+ quarter
3269
+ quartz
3270
+ queen
3271
+ quesadilla
3272
+ queue
3273
+ quiche
3274
+ quilt
3275
+ quilting
3276
+ quote
3277
+ rabbit
3278
+ raccoon
3279
+ race
3280
+ race track
3281
+ raceway
3282
+ race car
3283
+ racket
3284
+ radar
3285
+ radiator
3286
+ radio
3287
+ raft
3288
+ rag doll
3289
+ rail
3290
+ railcar
3291
+ railroad
3292
+ railroad bridge
3293
+ railway line
3294
+ railway station
3295
+ rain
3296
+ rain boot
3297
+ rainbow
3298
+ rainbow trout
3299
+ raincoat
3300
+ rainforest
3301
+ rainy
3302
+ raisin
3303
+ rake
3304
+ ram
3305
+ ramp
3306
+ rapeseed
3307
+ rapid
3308
+ rapper
3309
+ raspberry
3310
+ rat
3311
+ ratchet
3312
+ raven
3313
+ ravine
3314
+ ray
3315
+ razor
3316
+ razor blade
3317
+ read
3318
+ reading
3319
+ reamer
3320
+ rear
3321
+ rear light
3322
+ rear view
3323
+ rearview mirror
3324
+ receipt
3325
+ receive
3326
+ reception
3327
+ recipe
3328
+ record
3329
+ record producer
3330
+ recorder
3331
+ recording studio
3332
+ recreation room
3333
+ recreational vehicle
3334
+ rectangle
3335
+ recycling
3336
+ recycling bin
3337
+ red
3338
+ red carpet
3339
+ red flag
3340
+ red panda
3341
+ red wine
3342
+ redwood
3343
+ reed
3344
+ reef
3345
+ reel
3346
+ referee
3347
+ reflect
3348
+ reflection
3349
+ reflector
3350
+ register
3351
+ rein
3352
+ reindeer
3353
+ relax
3354
+ release
3355
+ relief
3356
+ religion
3357
+ religious
3358
+ relish
3359
+ remain
3360
+ remodel
3361
+ remote
3362
+ remove
3363
+ repair
3364
+ repair shop
3365
+ reptile
3366
+ rescue
3367
+ rescuer
3368
+ research
3369
+ researcher
3370
+ reservoir
3371
+ residence
3372
+ residential neighborhood
3373
+ resin
3374
+ resort
3375
+ resort town
3376
+ restaurant kitchen
3377
+ restaurant patio
3378
+ restroom
3379
+ retail
3380
+ retriever
3381
+ retro
3382
+ reveal
3383
+ rhinoceros
3384
+ rhododendron
3385
+ rib
3386
+ ribbon
3387
+ rice
3388
+ rice cooker
3389
+ rice field
3390
+ ride
3391
+ ridge
3392
+ riding
3393
+ rifle
3394
+ rim
3395
+ ring
3396
+ riot
3397
+ ripple
3398
+ rise
3399
+ rise building
3400
+ river
3401
+ river bank
3402
+ river boat
3403
+ river valley
3404
+ riverbed
3405
+ road
3406
+ road sign
3407
+ road trip
3408
+ roadside
3409
+ roast chicken
3410
+ robe
3411
+ robin
3412
+ robot
3413
+ stone
3414
+ rock arch
3415
+ rock artist
3416
+ rock band
3417
+ rock climber
3418
+ rock climbing
3419
+ rock concert
3420
+ rock face
3421
+ rock formation
3422
+ rocker
3423
+ rocket
3424
+ rocking chair
3425
+ rocky
3426
+ rodent
3427
+ rodeo
3428
+ rodeo arena
3429
+ roe
3430
+ roe deer
3431
+ roller
3432
+ coaster
3433
+ roller skate
3434
+ roller skates
3435
+ rolling pin
3436
+ romance
3437
+ romantic
3438
+ roof
3439
+ roof garden
3440
+ room
3441
+ room divider
3442
+ root
3443
+ root beer
3444
+ rope bridge
3445
+ rosary
3446
+ rose
3447
+ rosemary
3448
+ rosy cloud
3449
+ rottweiler
3450
+ round table
3451
+ router
3452
+ row
3453
+ rowan
3454
+ royal
3455
+ rubber stamp
3456
+ rubble
3457
+ rubik's cube
3458
+ ruby
3459
+ ruffle
3460
+ rugby
3461
+ rugby ball
3462
+ rugby player
3463
+ ruins
3464
+ ruler
3465
+ rum
3466
+ run
3467
+ runner
3468
+ running shoe
3469
+ rural
3470
+ rust
3471
+ rustic
3472
+ rye
3473
+ sack
3474
+ saddle
3475
+ saddlebag
3476
+ safari
3477
+ safe
3478
+ safety vest
3479
+ sage
3480
+ sail
3481
+ sailboat
3482
+ sailing
3483
+ sailor
3484
+ squirrel monkey
3485
+ sake
3486
+ salad
3487
+ salad bowl
3488
+ salamander
3489
+ salami
3490
+ sale
3491
+ salmon
3492
+ salon
3493
+ salsa
3494
+ salt
3495
+ salt and pepper shakers
3496
+ salt lake
3497
+ salt marsh
3498
+ salt shaker
3499
+ salute
3500
+ samoyed
3501
+ samurai
3502
+ sand
3503
+ sand bar
3504
+ sand box
3505
+ sand castle
3506
+ sand sculpture
3507
+ sandal
3508
+ sandwich
3509
+ sanitary napkin
3510
+ santa claus
3511
+ sapphire
3512
+ sardine
3513
+ sari
3514
+ sashimi
3515
+ satay
3516
+ satchel
3517
+ satellite
3518
+ satin
3519
+ sauce
3520
+ saucer
3521
+ sauna
3522
+ sausage
3523
+ savanna
3524
+ saw
3525
+ sawbuck
3526
+ sax
3527
+ saxophonist
3528
+ scaffold
3529
+ scale
3530
+ scale model
3531
+ scallop
3532
+ scar
3533
+ strawman
3534
+ scarf
3535
+ scene
3536
+ scenery
3537
+ schnauzer
3538
+ school
3539
+ school bus
3540
+ school uniform
3541
+ schoolhouse
3542
+ schooner
3543
+ science
3544
+ science fiction film
3545
+ science museum
3546
+ scientist
3547
+ scissors
3548
+ wall lamp
3549
+ scone
3550
+ scoop
3551
+ scooter
3552
+ score
3553
+ scoreboard
3554
+ scorpion
3555
+ scout
3556
+ scrambled egg
3557
+ scrap
3558
+ scraper
3559
+ scratch
3560
+ screen
3561
+ screen door
3562
+ screenshot
3563
+ screw
3564
+ screwdriver
3565
+ scroll
3566
+ scrub
3567
+ scrubbing brush
3568
+ sculptor
3569
+ sculpture
3570
+ sea cave
3571
+ sea ice
3572
+ sea lion
3573
+ sea turtle
3574
+ sea urchin
3575
+ seabass
3576
+ seabed
3577
+ seabird
3578
+ seafood
3579
+ seahorse
3580
+ seal
3581
+ sea view
3582
+ seashell
3583
+ seaside resort
3584
+ season
3585
+ seat
3586
+ seat belt
3587
+ seaweed
3588
+ secretary
3589
+ security
3590
+ sedan
3591
+ see
3592
+ seed
3593
+ seesaw
3594
+ segway
3595
+ selfie
3596
+ sell
3597
+ seminar
3598
+ sense
3599
+ sensor
3600
+ server
3601
+ server room
3602
+ service
3603
+ set
3604
+ sewing machine
3605
+ shadow
3606
+ shake
3607
+ shaker
3608
+ shampoo
3609
+ shape
3610
+ share
3611
+ shark
3612
+ sharpener
3613
+ sharpie
3614
+ shaver
3615
+ shaving cream
3616
+ shawl
3617
+ shear
3618
+ shears
3619
+ sheep
3620
+ sheet
3621
+ sheet music
3622
+ shelf
3623
+ shell
3624
+ shellfish
3625
+ shelter
3626
+ shelve
3627
+ shepherd
3628
+ sherbert
3629
+ shiba inu
3630
+ shine
3631
+ shipping
3632
+ shipping container
3633
+ shipwreck
3634
+ shipyard
3635
+ shirt
3636
+ shirtless
3637
+ shoal
3638
+ shoe
3639
+ shoe box
3640
+ shoe shop
3641
+ shoe tree
3642
+ shoot
3643
+ shooting basketball guard
3644
+ shop window
3645
+ shopfront
3646
+ shopper
3647
+ shopping
3648
+ shopping bag
3649
+ shopping basket
3650
+ shopping cart
3651
+ mall
3652
+ shopping street
3653
+ shore
3654
+ shoreline
3655
+ short
3656
+ short hair
3657
+ shorts
3658
+ shot glass
3659
+ shotgun
3660
+ shoulder
3661
+ shoulder bag
3662
+ shovel
3663
+ showcase
3664
+ shower
3665
+ shower cap
3666
+ shower curtain
3667
+ shower door
3668
+ shower head
3669
+ shredder
3670
+ shrew
3671
+ shrimp
3672
+ shrine
3673
+ shrub
3674
+ shutter
3675
+ siamese
3676
+ siberia
3677
+ sibling
3678
+ side
3679
+ side cabinet
3680
+ side dish
3681
+ sidecar
3682
+ sideline
3683
+ siding
3684
+ sign
3685
+ signage
3686
+ signal
3687
+ signature
3688
+ silk
3689
+ silk stocking
3690
+ silo
3691
+ silver
3692
+ silver medal
3693
+ silverware
3694
+ sing
3695
+ singe
3696
+ singer
3697
+ sink
3698
+ sip
3699
+ sit
3700
+ sitting
3701
+ skate park
3702
+ skateboard
3703
+ skateboarder
3704
+ skater
3705
+ skating rink
3706
+ skeleton
3707
+ sketch
3708
+ skewer
3709
+ ski
3710
+ ski boot
3711
+ ski equipment
3712
+ ski jacket
3713
+ ski lift
3714
+ ski pole
3715
+ ski resort
3716
+ snowboard
3717
+ skier
3718
+ skiing shoes
3719
+ skin
3720
+ skull
3721
+ skullcap
3722
+ sky
3723
+ sky tower
3724
+ skylight
3725
+ skyline
3726
+ skyscraper
3727
+ slalom
3728
+ slate
3729
+ sleigh
3730
+ sleep
3731
+ sleeping bag
3732
+ sleepwear
3733
+ sleeve
3734
+ slice
3735
+ slide
3736
+ slider
3737
+ sling
3738
+ slope
3739
+ slot
3740
+ slot machine
3741
+ sloth
3742
+ slow cooker
3743
+ slug
3744
+ slum
3745
+ smell
3746
+ smile
3747
+ smoke
3748
+ snack
3749
+ snail
3750
+ snake
3751
+ snapper
3752
+ snapshot
3753
+ snorkel
3754
+ snout
3755
+ snow
3756
+ snow leopard
3757
+ snow mountain
3758
+ snowball
3759
+ snowboarder
3760
+ snowfield
3761
+ snowflake
3762
+ snowman
3763
+ snowmobile
3764
+ snowplow
3765
+ snowshoe
3766
+ snowy
3767
+ soap
3768
+ soap bubble
3769
+ soap dispenser
3770
+ soccer goalkeeper
3771
+ socialite
3772
+ sock
3773
+ socket
3774
+ soda
3775
+ softball
3776
+ software
3777
+ solar battery
3778
+ soldier
3779
+ solo
3780
+ solution
3781
+ sombrero
3782
+ song
3783
+ sound
3784
+ soup
3785
+ soup bowl
3786
+ soupspoon
3787
+ sour cream
3788
+ souvenir
3789
+ soybean milk
3790
+ spa
3791
+ space
3792
+ space shuttle
3793
+ space station
3794
+ spacecraft
3795
+ spaghetti
3796
+ span
3797
+ wrench
3798
+ spark
3799
+ sparkle
3800
+ sparkler
3801
+ sparkling wine
3802
+ sparrow
3803
+ spatula
3804
+ speaker
3805
+ spectator
3806
+ speech bubble
3807
+ speed limit
3808
+ speed limit sign
3809
+ speedboat
3810
+ speedometer
3811
+ sphere
3812
+ spice
3813
+ spice rack
3814
+ spider
3815
+ spider web
3816
+ spike
3817
+ spin
3818
+ spinach
3819
+ spire
3820
+ splash
3821
+ sponge
3822
+ spoon
3823
+ sport association
3824
+ sport equipment
3825
+ sport team
3826
+ sports ball
3827
+ sports equipment
3828
+ sports meet
3829
+ sportswear
3830
+ dot
3831
+ spray
3832
+ spread
3833
+ spring
3834
+ spring roll
3835
+ sprinkle
3836
+ sprinkler
3837
+ sprout
3838
+ spruce
3839
+ spruce forest
3840
+ squad
3841
+ square
3842
+ squash
3843
+ squat
3844
+ squeeze
3845
+ squid
3846
+ squirrel
3847
+ water gun
3848
+ stab
3849
+ stable
3850
+ stack
3851
+ stadium
3852
+ staff
3853
+ stage
3854
+ stage light
3855
+ stagecoach
3856
+ stain
3857
+ stainless steel
3858
+ stair
3859
+ stairs
3860
+ stairwell
3861
+ stall
3862
+ stallion
3863
+ stand
3864
+ standing
3865
+ staple
3866
+ stapler
3867
+ star
3868
+ stare
3869
+ starfish
3870
+ starfruit
3871
+ starling
3872
+ state park
3873
+ state school
3874
+ station
3875
+ stationary bicycle
3876
+ stationery
3877
+ statue
3878
+ steak
3879
+ steak knife
3880
+ steam
3881
+ steam engine
3882
+ steam locomotive
3883
+ steam train
3884
+ steamed bread
3885
+ steel
3886
+ steering wheel
3887
+ stem
3888
+ stencil
3889
+ step stool
3890
+ stereo
3891
+ stethoscope
3892
+ stew
3893
+ stick
3894
+ stick insect
3895
+ sticker
3896
+ still life
3897
+ stilt
3898
+ stingray
3899
+ stir
3900
+ stirrer
3901
+ stirrup
3902
+ sew
3903
+ stock
3904
+ stocking
3905
+ stomach
3906
+ stone building
3907
+ stone carving
3908
+ stone house
3909
+ stone mill
3910
+ stool
3911
+ stop
3912
+ stop at
3913
+ stop light
3914
+ stop sign
3915
+ stop watch
3916
+ traffic light
3917
+ storage box
3918
+ storage room
3919
+ tank
3920
+ store
3921
+ storefront
3922
+ stork
3923
+ storm
3924
+ storm cloud
3925
+ stormy
3926
+ stove
3927
+ poker
3928
+ straddle
3929
+ strainer
3930
+ strait
3931
+ strap
3932
+ straw
3933
+ straw hat
3934
+ strawberry
3935
+ stream
3936
+ street art
3937
+ street artist
3938
+ street corner
3939
+ street dog
3940
+ street food
3941
+ street light
3942
+ street market
3943
+ street photography
3944
+ street scene
3945
+ street sign
3946
+ street vendor
3947
+ stretch
3948
+ stretcher
3949
+ strike
3950
+ striker
3951
+ string
3952
+ string cheese
3953
+ strip
3954
+ stripe
3955
+ stroll
3956
+ structure
3957
+ studio
3958
+ studio shot
3959
+ stuff
3960
+ stuffed animal
3961
+ stuffed toy
3962
+ stuffing
3963
+ stump
3964
+ stunning
3965
+ stunt
3966
+ stupa
3967
+ style
3968
+ stylus
3969
+ submarine
3970
+ submarine sandwich
3971
+ submarine water
3972
+ suburb
3973
+ subway
3974
+ subway station
3975
+ subwoofer
3976
+ succulent
3977
+ suede
3978
+ sugar
3979
+ sugar bowl
3980
+ sugar cane
3981
+ sugar cube
3982
+ suit
3983
+ suite
3984
+ summer
3985
+ summer evening
3986
+ summit
3987
+ sun
3988
+ sun hat
3989
+ sunbathe
3990
+ sunday
3991
+ sundial
3992
+ sunflower
3993
+ sunflower field
3994
+ sunflower seed
3995
+ sunglasses
3996
+ sunny
3997
+ sunrise
3998
+ sunset
3999
+ sunshade
4000
+ sunshine
4001
+ super bowl
4002
+ sports car
4003
+ superhero
4004
+ supermarket
4005
+ supermarket shelf
4006
+ supermodel
4007
+ supporter
4008
+ surf
4009
+ surface
4010
+ surfboard
4011
+ surfer
4012
+ surgeon
4013
+ surgery
4014
+ surround
4015
+ sushi
4016
+ sushi bar
4017
+ suspenders
4018
+ suspension
4019
+ suspension bridge
4020
+ suv
4021
+ swallow
4022
+ swallowtail butterfly
4023
+ swamp
4024
+ swan
4025
+ swan boat
4026
+ sweat pant
4027
+ sweatband
4028
+ sweater
4029
+ sweatshirt
4030
+ sweet
4031
+ sweet potato
4032
+ swim
4033
+ swim cap
4034
+ swimmer
4035
+ swimming hole
4036
+ swimming pool
4037
+ swing
4038
+ swing bridge
4039
+ swinge
4040
+ swirl
4041
+ switch
4042
+ swivel chair
4043
+ sword
4044
+ swordfish
4045
+ symbol
4046
+ symmetry
4047
+ synagogue
4048
+ syringe
4049
+ syrup
4050
+ system
4051
+ t shirt
4052
+ t-shirt
4053
+ tabasco sauce
4054
+ tabby
4055
+ table tennis racket
4056
+ table top
4057
+ tablecloth
4058
+ tablet computer
4059
+ tableware
4060
+ tachometer
4061
+ tackle
4062
+ taco
4063
+ tae kwon do
4064
+ tai chi
4065
+ tail
4066
+ tailor
4067
+ take
4068
+ takeoff
4069
+ talk
4070
+ tambourine
4071
+ tan
4072
+ tangerine
4073
+ tape
4074
+ tapestry
4075
+ tarmac
4076
+ taro
4077
+ tarp
4078
+ tart
4079
+ tassel
4080
+ taste
4081
+ tatami
4082
+ tattoo
4083
+ tattoo artist
4084
+ tavern
4085
+ tea
4086
+ tea bag
4087
+ tea party
4088
+ tea plantation
4089
+ tea pot
4090
+ tea set
4091
+ teach
4092
+ teacher
4093
+ teacup
4094
+ teal
4095
+ team photo
4096
+ team presentation
4097
+ tear
4098
+ technician
4099
+ technology
4100
+ teddy
4101
+ tee
4102
+ teenager
4103
+ telegraph pole
4104
+ zoom lens
4105
+ telescope
4106
+ television
4107
+ television camera
4108
+ television room
4109
+ television studio
4110
+ temperature
4111
+ temple
4112
+ tempura
4113
+ tennis
4114
+ tennis court
4115
+ tennis match
4116
+ tennis net
4117
+ tennis player
4118
+ tennis racket
4119
+ tent
4120
+ tequila
4121
+ terminal
4122
+ terrace
4123
+ terrain
4124
+ terrarium
4125
+ territory
4126
+ test
4127
+ test match
4128
+ test tube
4129
+ text
4130
+ text message
4131
+ textile
4132
+ texture
4133
+ thanksgiving
4134
+ thanksgiving dinner
4135
+ theater
4136
+ theatre actor
4137
+ therapy
4138
+ thermometer
4139
+ thermos
4140
+ thermos bottle
4141
+ thermostat
4142
+ thicket
4143
+ thimble
4144
+ thing
4145
+ thinking
4146
+ thistle
4147
+ throne
4148
+ throne room
4149
+ throw
4150
+ throw pillow
4151
+ thunder
4152
+ thunderstorm
4153
+ thyme
4154
+ tiara
4155
+ tick
4156
+ ticket
4157
+ ticket booth
4158
+ tide pool
4159
+ tie
4160
+ tiger
4161
+ tight
4162
+ tile
4163
+ tile flooring
4164
+ tile roof
4165
+ tile wall
4166
+ tin
4167
+ tinfoil
4168
+ tinsel
4169
+ tiramisu
4170
+ tire
4171
+ tissue
4172
+ toast
4173
+ toaster
4174
+ tobacco
4175
+ tobacco pipe
4176
+ toddler
4177
+ toe
4178
+ tofu
4179
+ toilet bowl
4180
+ toilet seat
4181
+ toiletry
4182
+ tokyo tower
4183
+ tomato
4184
+ tomato sauce
4185
+ tomato soup
4186
+ tomb
4187
+ tong
4188
+ tongs
4189
+ tool
4190
+ toolbox
4191
+ toothbrush
4192
+ toothpaste
4193
+ toothpick
4194
+ topiary garden
4195
+ topping
4196
+ torch
4197
+ tornado
4198
+ tortilla
4199
+ tortoise
4200
+ tote bag
4201
+ totem pole
4202
+ totoro
4203
+ toucan
4204
+ touch
4205
+ touchdown
4206
+ tour
4207
+ tour bus
4208
+ tour guide
4209
+ tourist
4210
+ tourist attraction
4211
+ tournament
4212
+ tow truck
4213
+ towel
4214
+ towel bar
4215
+ tower block
4216
+ tower bridge
4217
+ town
4218
+ town square
4219
+ toy
4220
+ toy car
4221
+ toy gun
4222
+ toyshop
4223
+ track
4224
+ tractor
4225
+ trade
4226
+ tradition
4227
+ traditional
4228
+ traffic
4229
+ traffic cone
4230
+ traffic congestion
4231
+ traffic jam
4232
+ traffic sign
4233
+ trail
4234
+ trailer
4235
+ trailer truck
4236
+ train
4237
+ train bridge
4238
+ train car
4239
+ train interior
4240
+ train track
4241
+ train window
4242
+ trainer
4243
+ training
4244
+ training bench
4245
+ training ground
4246
+ trolley
4247
+ trampoline
4248
+ transformer
4249
+ transparency
4250
+ travel
4251
+ tray
4252
+ treadmill
4253
+ treat
4254
+ tree
4255
+ tree branch
4256
+ tree farm
4257
+ tree frog
4258
+ tree house
4259
+ tree root
4260
+ tree trunk
4261
+ trial
4262
+ triangle
4263
+ triathlon
4264
+ tribe
4265
+ tributary
4266
+ trick
4267
+ tricycle
4268
+ trim
4269
+ trio
4270
+ tripod
4271
+ trombone
4272
+ troop
4273
+ trophy
4274
+ trophy cup
4275
+ tropic
4276
+ trout
4277
+ truck
4278
+ truck driver
4279
+ tub
4280
+ tube
4281
+ tugboat
4282
+ tulip
4283
+ tuna
4284
+ tundra
4285
+ tunnel
4286
+ turbine
4287
+ turkey
4288
+ turn
4289
+ turnip
4290
+ turquoise
4291
+ turret
4292
+ turtle
4293
+ tusk
4294
+ tv actor
4295
+ tv cabinet
4296
+ tv drama
4297
+ tv genre
4298
+ tv personality
4299
+ tv show
4300
+ tv sitcom
4301
+ tv tower
4302
+ twig
4303
+ twilight
4304
+ twin
4305
+ twine
4306
+ twist
4307
+ type
4308
+ type on
4309
+ typewriter
4310
+ ukulele
4311
+ ultraman
4312
+ umbrella
4313
+ underclothes
4314
+ underwater
4315
+ unicorn
4316
+ uniform
4317
+ universe
4318
+ university
4319
+ up
4320
+ urban
4321
+ urinal
4322
+ urn
4323
+ use
4324
+ utensil
4325
+ utility room
4326
+ vacuum
4327
+ valley
4328
+ valve
4329
+ vampire
4330
+ van
4331
+ vanilla
4332
+ vanity
4333
+ variety
4334
+ vase
4335
+ vault
4336
+ vector cartoon illustration
4337
+ vector icon
4338
+ vegetable
4339
+ vegetable garden
4340
+ vegetable market
4341
+ vegetation
4342
+ vehicle
4343
+ veil
4344
+ vein
4345
+ velvet
4346
+ vending machine
4347
+ vendor
4348
+ vent
4349
+ vespa
4350
+ vessel
4351
+ vest
4352
+ vet
4353
+ veteran
4354
+ veterinarians office
4355
+ viaduct
4356
+ video
4357
+ video camera
4358
+ video game
4359
+ videotape
4360
+ view mirror
4361
+ vigil
4362
+ villa
4363
+ village
4364
+ vine
4365
+ vinegar
4366
+ vineyard
4367
+ violence
4368
+ violet
4369
+ violin
4370
+ violinist
4371
+ violist
4372
+ vision
4373
+ visor
4374
+ vodka
4375
+ volcano
4376
+ volleyball
4377
+ volleyball court
4378
+ volleyball player
4379
+ volunteer
4380
+ voyage
4381
+ vulture
4382
+ waffle
4383
+ waffle iron
4384
+ wagon
4385
+ wagon wheel
4386
+ waist
4387
+ waiter
4388
+ waiting hall
4389
+ waiting room
4390
+ walk
4391
+ walking
4392
+ walking cane
4393
+ wall clock
4394
+ wallpaper
4395
+ walnut
4396
+ walrus
4397
+ war
4398
+ warehouse
4399
+ warm
4400
+ warning sign
4401
+ warrior
4402
+ warship
4403
+ warthog
4404
+ wash
4405
+ washer
4406
+ washing
4407
+ washing machine
4408
+ wasp
4409
+ waste
4410
+ waste container
4411
+ watch
4412
+ water
4413
+ water bird
4414
+ water buffalo
4415
+ water cooler
4416
+ water drop
4417
+ water feature
4418
+ water heater
4419
+ water level
4420
+ water lily
4421
+ water park
4422
+ water pipe
4423
+ water purifier
4424
+ water ski
4425
+ water sport
4426
+ water surface
4427
+ water tower
4428
+ watercolor
4429
+ watercolor illustration
4430
+ watercolor painting
4431
+ waterfall
4432
+ watering can
4433
+ watermark overlay stamp
4434
+ watermelon
4435
+ waterproof jacket
4436
+ waterway
4437
+ wave
4438
+ wax
4439
+ weapon
4440
+ wear
4441
+ weather
4442
+ vane
4443
+ web
4444
+ webcam
4445
+ wedding
4446
+ wedding ring
4447
+ wedding bouquet
4448
+ wedding cake
4449
+ wedding couple
4450
+ wedding invitation
4451
+ wedding party
4452
+ wedding photo
4453
+ wedding photographer
4454
+ wedding photography
4455
+ wedding reception
4456
+ wedge
4457
+ weed
4458
+ weight
4459
+ weight scale
4460
+ welder
4461
+ well
4462
+ western food
4463
+ western restaurant
4464
+ wet
4465
+ wet bar
4466
+ wet suit
4467
+ wetland
4468
+ wetsuit
4469
+ whale
4470
+ whale shark
4471
+ wheat
4472
+ wheat field
4473
+ wheel
4474
+ wheelchair
4475
+ wheelie
4476
+ whipped cream
4477
+ whisk
4478
+ whisker
4479
+ whiskey
4480
+ whistle
4481
+ white
4482
+ white house
4483
+ white wine
4484
+ whiteboard
4485
+ wicket
4486
+ wide
4487
+ wield
4488
+ wig
4489
+ Wii
4490
+ Wii controller
4491
+ wild
4492
+ wildebeest
4493
+ wildfire
4494
+ wildflower
4495
+ wildlife
4496
+ willow
4497
+ wind
4498
+ wind chime
4499
+ wind farm
4500
+ wind turbine
4501
+ windmill
4502
+ window
4503
+ window box
4504
+ window display
4505
+ window frame
4506
+ window screen
4507
+ window seat
4508
+ window sill
4509
+ wiper
4510
+ windshield
4511
+ windy
4512
+ wine bottle
4513
+ wine cooler
4514
+ wine cabinet
4515
+ wine cellar
4516
+ wine glass
4517
+ wine rack
4518
+ wine tasting
4519
+ winery
4520
+ wing
4521
+ winter
4522
+ winter melon
4523
+ winter morning
4524
+ winter scene
4525
+ winter sport
4526
+ winter storm
4527
+ wire
4528
+ wisteria
4529
+ witch
4530
+ witch hat
4531
+ wok
4532
+ wolf
4533
+ woman
4534
+ wood
4535
+ wood duck
4536
+ wood floor
4537
+ wood wall
4538
+ wood-burning stove
4539
+ wooden spoon
4540
+ woodland
4541
+ woodpecker
4542
+ woodworking plane
4543
+ wool
4544
+ job
4545
+ work card
4546
+ workbench
4547
+ worker
4548
+ workplace
4549
+ workshop
4550
+ world
4551
+ worm
4552
+ worship
4553
+ wound
4554
+ wrap
4555
+ wrap dress
4556
+ wrapping paper
4557
+ wrestle
4558
+ wrestler
4559
+ wrinkle
4560
+ wristband
4561
+ write
4562
+ writer
4563
+ writing
4564
+ writing brush
4565
+ writing desk
4566
+ yacht
4567
+ yak
4568
+ yard
4569
+ yellow
4570
+ yoga
4571
+ yoga mat
4572
+ yoghurt
4573
+ yoke
4574
+ yolk
4575
+ youth
4576
+ youth hostel
4577
+ yurt
4578
+ zebra
4579
+ zebra crossing
4580
+ zen garden
4581
+ zip
4582
+ zipper
4583
+ zombie
4584
+ zongzi
4585
+ zoo
resources/ram_tag_list_threshold.txt ADDED
@@ -0,0 +1,4585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0.65
2
+ 0.65
3
+ 0.65
4
+ 0.65
5
+ 0.65
6
+ 0.65
7
+ 0.65
8
+ 0.8
9
+ 0.71
10
+ 0.75
11
+ 0.65
12
+ 0.65
13
+ 0.65
14
+ 0.8
15
+ 0.65
16
+ 0.8
17
+ 0.8
18
+ 0.65
19
+ 0.65
20
+ 0.65
21
+ 0.65
22
+ 0.8
23
+ 0.65
24
+ 0.8
25
+ 0.8
26
+ 0.65
27
+ 0.65
28
+ 0.65
29
+ 0.65
30
+ 0.65
31
+ 0.65
32
+ 0.65
33
+ 0.65
34
+ 0.65
35
+ 0.65
36
+ 0.65
37
+ 0.8
38
+ 0.65
39
+ 0.65
40
+ 0.9
41
+ 0.65
42
+ 0.9
43
+ 0.65
44
+ 0.65
45
+ 0.65
46
+ 0.65
47
+ 0.8
48
+ 0.65
49
+ 0.65
50
+ 0.65
51
+ 0.65
52
+ 0.65
53
+ 0.61
54
+ 0.65
55
+ 0.65
56
+ 0.65
57
+ 0.65
58
+ 0.65
59
+ 0.8
60
+ 0.65
61
+ 0.65
62
+ 0.65
63
+ 0.65
64
+ 0.65
65
+ 0.65
66
+ 0.65
67
+ 0.65
68
+ 0.65
69
+ 0.65
70
+ 0.65
71
+ 0.65
72
+ 0.65
73
+ 0.65
74
+ 0.8
75
+ 0.65
76
+ 0.8
77
+ 0.8
78
+ 0.7
79
+ 0.65
80
+ 0.65
81
+ 0.8
82
+ 0.65
83
+ 0.65
84
+ 0.8
85
+ 0.65
86
+ 0.65
87
+ 0.65
88
+ 0.65
89
+ 0.65
90
+ 0.82
91
+ 0.8
92
+ 0.65
93
+ 0.65
94
+ 0.8
95
+ 0.65
96
+ 0.8
97
+ 0.65
98
+ 0.65
99
+ 0.65
100
+ 0.65
101
+ 0.65
102
+ 0.9
103
+ 0.65
104
+ 0.65
105
+ 0.65
106
+ 0.65
107
+ 0.65
108
+ 0.65
109
+ 0.65
110
+ 0.65
111
+ 0.65
112
+ 0.65
113
+ 0.8
114
+ 0.65
115
+ 0.65
116
+ 0.65
117
+ 0.65
118
+ 0.8
119
+ 0.65
120
+ 0.65
121
+ 0.65
122
+ 0.65
123
+ 0.65
124
+ 0.8
125
+ 0.65
126
+ 0.65
127
+ 0.8
128
+ 0.65
129
+ 0.65
130
+ 0.8
131
+ 0.65
132
+ 0.65
133
+ 0.65
134
+ 0.65
135
+ 0.65
136
+ 0.8
137
+ 0.65
138
+ 0.65
139
+ 0.65
140
+ 0.65
141
+ 0.8
142
+ 0.8
143
+ 0.65
144
+ 0.85
145
+ 0.8
146
+ 0.65
147
+ 0.65
148
+ 0.65
149
+ 0.65
150
+ 0.8
151
+ 0.65
152
+ 0.8
153
+ 0.65
154
+ 0.65
155
+ 0.65
156
+ 0.65
157
+ 0.65
158
+ 0.65
159
+ 0.65
160
+ 0.65
161
+ 0.65
162
+ 0.65
163
+ 0.65
164
+ 0.65
165
+ 0.8
166
+ 0.65
167
+ 0.65
168
+ 0.65
169
+ 0.65
170
+ 0.65
171
+ 0.65
172
+ 0.65
173
+ 0.8
174
+ 0.65
175
+ 0.65
176
+ 0.77
177
+ 0.65
178
+ 0.65
179
+ 0.65
180
+ 0.9
181
+ 0.65
182
+ 0.65
183
+ 0.65
184
+ 0.65
185
+ 0.65
186
+ 0.65
187
+ 0.65
188
+ 0.65
189
+ 0.65
190
+ 0.8
191
+ 0.65
192
+ 0.89
193
+ 0.65
194
+ 0.8
195
+ 0.65
196
+ 0.65
197
+ 0.65
198
+ 0.65
199
+ 0.65
200
+ 0.65
201
+ 0.8
202
+ 0.65
203
+ 0.65
204
+ 0.65
205
+ 0.65
206
+ 0.65
207
+ 0.78
208
+ 0.8
209
+ 0.65
210
+ 0.65
211
+ 0.65
212
+ 0.65
213
+ 0.65
214
+ 0.65
215
+ 0.65
216
+ 0.8
217
+ 0.65
218
+ 0.65
219
+ 0.9
220
+ 0.8
221
+ 0.65
222
+ 0.65
223
+ 0.65
224
+ 0.65
225
+ 0.65
226
+ 0.65
227
+ 0.8
228
+ 0.65
229
+ 0.65
230
+ 0.65
231
+ 0.65
232
+ 0.65
233
+ 0.65
234
+ 0.65
235
+ 0.65
236
+ 0.65
237
+ 0.65
238
+ 0.65
239
+ 0.8
240
+ 0.8
241
+ 0.65
242
+ 0.65
243
+ 0.65
244
+ 0.65
245
+ 0.65
246
+ 0.8
247
+ 0.65
248
+ 0.8
249
+ 0.65
250
+ 0.9
251
+ 0.65
252
+ 0.83
253
+ 0.65
254
+ 0.65
255
+ 0.65
256
+ 0.8
257
+ 0.65
258
+ 0.65
259
+ 0.8
260
+ 0.65
261
+ 0.65
262
+ 0.79
263
+ 0.65
264
+ 0.65
265
+ 0.8
266
+ 0.65
267
+ 0.65
268
+ 0.65
269
+ 0.89
270
+ 0.65
271
+ 0.65
272
+ 0.65
273
+ 0.65
274
+ 0.65
275
+ 0.9
276
+ 0.65
277
+ 0.65
278
+ 0.86
279
+ 0.65
280
+ 0.65
281
+ 0.65
282
+ 0.65
283
+ 0.65
284
+ 0.65
285
+ 0.65
286
+ 0.65
287
+ 0.65
288
+ 0.8
289
+ 0.65
290
+ 0.65
291
+ 0.8
292
+ 0.65
293
+ 0.65
294
+ 0.65
295
+ 0.65
296
+ 0.79
297
+ 0.65
298
+ 0.63
299
+ 0.65
300
+ 0.87
301
+ 0.8
302
+ 0.46
303
+ 0.65
304
+ 0.65
305
+ 0.65
306
+ 0.65
307
+ 0.65
308
+ 0.65
309
+ 0.8
310
+ 0.65
311
+ 0.9
312
+ 0.65
313
+ 0.65
314
+ 0.9
315
+ 0.65
316
+ 0.65
317
+ 0.8
318
+ 0.65
319
+ 0.65
320
+ 0.65
321
+ 0.65
322
+ 0.65
323
+ 0.65
324
+ 0.65
325
+ 0.8
326
+ 0.65
327
+ 0.65
328
+ 0.65
329
+ 0.65
330
+ 0.65
331
+ 0.8
332
+ 0.65
333
+ 0.65
334
+ 0.65
335
+ 0.65
336
+ 0.65
337
+ 0.65
338
+ 0.65
339
+ 0.8
340
+ 0.65
341
+ 0.65
342
+ 0.65
343
+ 0.8
344
+ 0.65
345
+ 0.65
346
+ 0.8
347
+ 0.65
348
+ 0.65
349
+ 0.65
350
+ 0.65
351
+ 0.9
352
+ 0.65
353
+ 0.65
354
+ 0.65
355
+ 0.65
356
+ 0.65
357
+ 0.65
358
+ 0.65
359
+ 0.8
360
+ 0.65
361
+ 0.65
362
+ 0.65
363
+ 0.65
364
+ 0.65
365
+ 0.65
366
+ 0.65
367
+ 0.9
368
+ 0.65
369
+ 0.8
370
+ 0.65
371
+ 0.8
372
+ 0.8
373
+ 0.8
374
+ 0.65
375
+ 0.65
376
+ 0.84
377
+ 0.65
378
+ 0.65
379
+ 0.79
380
+ 0.65
381
+ 0.65
382
+ 0.65
383
+ 0.65
384
+ 0.8
385
+ 0.65
386
+ 0.65
387
+ 0.65
388
+ 0.65
389
+ 0.8
390
+ 0.65
391
+ 0.65
392
+ 0.65
393
+ 0.65
394
+ 0.65
395
+ 0.65
396
+ 0.65
397
+ 0.8
398
+ 0.81
399
+ 0.65
400
+ 0.8
401
+ 0.65
402
+ 0.65
403
+ 0.9
404
+ 0.65
405
+ 0.65
406
+ 0.65
407
+ 0.65
408
+ 0.8
409
+ 0.65
410
+ 0.65
411
+ 0.65
412
+ 0.65
413
+ 0.65
414
+ 0.65
415
+ 0.9
416
+ 0.65
417
+ 0.65
418
+ 0.8
419
+ 0.65
420
+ 0.65
421
+ 0.65
422
+ 0.65
423
+ 0.65
424
+ 0.65
425
+ 0.9
426
+ 0.65
427
+ 0.65
428
+ 0.65
429
+ 0.87
430
+ 0.65
431
+ 0.65
432
+ 0.65
433
+ 0.65
434
+ 0.65
435
+ 0.65
436
+ 0.65
437
+ 0.65
438
+ 0.83
439
+ 0.65
440
+ 0.65
441
+ 0.65
442
+ 0.65
443
+ 0.65
444
+ 0.65
445
+ 0.65
446
+ 0.77
447
+ 0.87
448
+ 0.65
449
+ 0.65
450
+ 0.8
451
+ 0.8
452
+ 0.65
453
+ 0.65
454
+ 0.65
455
+ 0.65
456
+ 0.85
457
+ 0.65
458
+ 0.68
459
+ 0.65
460
+ 0.8
461
+ 0.65
462
+ 0.65
463
+ 0.75
464
+ 0.8
465
+ 0.65
466
+ 0.65
467
+ 0.65
468
+ 0.65
469
+ 0.65
470
+ 0.65
471
+ 0.65
472
+ 0.8
473
+ 0.65
474
+ 0.65
475
+ 0.8
476
+ 0.8
477
+ 0.8
478
+ 0.8
479
+ 0.79
480
+ 0.65
481
+ 0.85
482
+ 0.65
483
+ 0.65
484
+ 0.65
485
+ 0.9
486
+ 0.65
487
+ 0.89
488
+ 0.8
489
+ 0.65
490
+ 0.65
491
+ 0.65
492
+ 0.76
493
+ 0.65
494
+ 0.65
495
+ 0.65
496
+ 0.65
497
+ 0.65
498
+ 0.65
499
+ 1
500
+ 0.65
501
+ 0.65
502
+ 0.65
503
+ 0.65
504
+ 0.65
505
+ 0.65
506
+ 0.65
507
+ 0.65
508
+ 0.65
509
+ 0.8
510
+ 0.65
511
+ 0.65
512
+ 0.65
513
+ 0.9
514
+ 0.65
515
+ 0.89
516
+ 0.7
517
+ 0.65
518
+ 0.65
519
+ 0.65
520
+ 0.65
521
+ 0.65
522
+ 0.8
523
+ 0.8
524
+ 0.65
525
+ 0.65
526
+ 0.71
527
+ 0.65
528
+ 0.65
529
+ 0.65
530
+ 0.65
531
+ 0.65
532
+ 0.8
533
+ 0.65
534
+ 0.65
535
+ 0.8
536
+ 0.65
537
+ 0.65
538
+ 0.9
539
+ 0.65
540
+ 0.65
541
+ 0.65
542
+ 0.65
543
+ 0.8
544
+ 0.65
545
+ 0.65
546
+ 0.65
547
+ 0.65
548
+ 0.65
549
+ 0.65
550
+ 0.65
551
+ 0.8
552
+ 0.65
553
+ 0.65
554
+ 0.8
555
+ 0.8
556
+ 0.65
557
+ 0.65
558
+ 0.8
559
+ 0.8
560
+ 0.65
561
+ 0.65
562
+ 0.65
563
+ 0.8
564
+ 0.65
565
+ 0.8
566
+ 0.8
567
+ 0.65
568
+ 0.8
569
+ 0.65
570
+ 0.8
571
+ 0.8
572
+ 0.9
573
+ 0.65
574
+ 0.85
575
+ 0.8
576
+ 0.8
577
+ 0.8
578
+ 0.9
579
+ 0.65
580
+ 0.65
581
+ 0.8
582
+ 0.65
583
+ 0.65
584
+ 0.65
585
+ 0.75
586
+ 0.65
587
+ 0.65
588
+ 0.65
589
+ 0.65
590
+ 0.65
591
+ 0.65
592
+ 0.65
593
+ 0.65
594
+ 0.8
595
+ 0.65
596
+ 0.65
597
+ 0.65
598
+ 0.65
599
+ 0.65
600
+ 0.65
601
+ 0.65
602
+ 0.65
603
+ 0.65
604
+ 0.65
605
+ 0.65
606
+ 0.65
607
+ 0.65
608
+ 0.65
609
+ 0.65
610
+ 0.65
611
+ 0.65
612
+ 0.8
613
+ 0.65
614
+ 0.8
615
+ 0.65
616
+ 0.65
617
+ 0.65
618
+ 0.63
619
+ 0.65
620
+ 0.65
621
+ 0.65
622
+ 0.65
623
+ 0.65
624
+ 0.65
625
+ 0.65
626
+ 0.65
627
+ 0.65
628
+ 0.65
629
+ 0.65
630
+ 0.8
631
+ 0.65
632
+ 0.65
633
+ 0.65
634
+ 0.65
635
+ 0.8
636
+ 0.65
637
+ 0.65
638
+ 0.65
639
+ 0.8
640
+ 0.65
641
+ 0.88
642
+ 0.65
643
+ 0.65
644
+ 0.65
645
+ 0.65
646
+ 0.65
647
+ 0.8
648
+ 0.8
649
+ 0.71
650
+ 0.65
651
+ 0.65
652
+ 0.65
653
+ 0.8
654
+ 0.8
655
+ 0.65
656
+ 0.65
657
+ 0.65
658
+ 0.65
659
+ 0.65
660
+ 0.8
661
+ 0.9
662
+ 0.65
663
+ 0.8
664
+ 0.65
665
+ 0.65
666
+ 0.65
667
+ 0.65
668
+ 0.65
669
+ 0.8
670
+ 0.65
671
+ 0.71
672
+ 0.65
673
+ 0.8
674
+ 0.76
675
+ 0.85
676
+ 0.8
677
+ 0.65
678
+ 0.65
679
+ 0.8
680
+ 0.65
681
+ 0.79
682
+ 0.65
683
+ 0.75
684
+ 0.65
685
+ 0.8
686
+ 0.65
687
+ 0.86
688
+ 0.65
689
+ 0.65
690
+ 0.9
691
+ 0.9
692
+ 0.65
693
+ 0.65
694
+ 0.65
695
+ 0.65
696
+ 0.65
697
+ 0.73
698
+ 0.65
699
+ 0.65
700
+ 0.65
701
+ 0.65
702
+ 0.8
703
+ 0.65
704
+ 0.65
705
+ 0.9
706
+ 0.65
707
+ 0.85
708
+ 0.65
709
+ 0.65
710
+ 0.65
711
+ 0.65
712
+ 0.8
713
+ 0.75
714
+ 0.65
715
+ 0.65
716
+ 0.65
717
+ 0.65
718
+ 0.8
719
+ 0.85
720
+ 0.8
721
+ 0.65
722
+ 0.65
723
+ 0.65
724
+ 0.65
725
+ 0.65
726
+ 0.65
727
+ 0.77
728
+ 0.65
729
+ 0.65
730
+ 0.65
731
+ 0.65
732
+ 0.65
733
+ 0.86
734
+ 0.65
735
+ 0.65
736
+ 0.65
737
+ 0.65
738
+ 0.65
739
+ 0.8
740
+ 0.65
741
+ 0.6
742
+ 0.65
743
+ 0.65
744
+ 0.65
745
+ 0.65
746
+ 0.65
747
+ 0.65
748
+ 0.65
749
+ 0.65
750
+ 0.65
751
+ 0.65
752
+ 0.74
753
+ 0.65
754
+ 0.65
755
+ 0.67
756
+ 0.65
757
+ 0.65
758
+ 0.8
759
+ 0.65
760
+ 0.65
761
+ 0.85
762
+ 0.65
763
+ 0.8
764
+ 0.65
765
+ 0.65
766
+ 0.84
767
+ 0.8
768
+ 0.8
769
+ 0.8
770
+ 0.8
771
+ 0.8
772
+ 0.65
773
+ 0.65
774
+ 0.65
775
+ 0.65
776
+ 0.65
777
+ 0.65
778
+ 0.8
779
+ 0.65
780
+ 0.9
781
+ 0.9
782
+ 0.65
783
+ 0.65
784
+ 0.65
785
+ 0.65
786
+ 0.65
787
+ 0.65
788
+ 0.65
789
+ 0.8
790
+ 0.65
791
+ 0.65
792
+ 0.65
793
+ 0.8
794
+ 0.89
795
+ 0.65
796
+ 0.65
797
+ 0.65
798
+ 0.83
799
+ 0.65
800
+ 0.65
801
+ 0.65
802
+ 0.65
803
+ 0.6
804
+ 0.65
805
+ 0.8
806
+ 0.8
807
+ 0.8
808
+ 0.65
809
+ 0.65
810
+ 0.89
811
+ 0.65
812
+ 0.65
813
+ 0.65
814
+ 0.65
815
+ 0.8
816
+ 0.65
817
+ 0.65
818
+ 0.8
819
+ 0.65
820
+ 0.8
821
+ 0.65
822
+ 0.77
823
+ 0.65
824
+ 0.65
825
+ 0.65
826
+ 0.65
827
+ 0.65
828
+ 0.65
829
+ 0.65
830
+ 0.65
831
+ 0.65
832
+ 0.65
833
+ 0.65
834
+ 0.65
835
+ 0.65
836
+ 0.65
837
+ 0.65
838
+ 0.65
839
+ 0.65
840
+ 0.65
841
+ 0.65
842
+ 0.65
843
+ 0.65
844
+ 0.65
845
+ 0.65
846
+ 0.65
847
+ 0.87
848
+ 0.65
849
+ 0.65
850
+ 0.65
851
+ 0.65
852
+ 0.65
853
+ 0.65
854
+ 0.65
855
+ 0.65
856
+ 0.74
857
+ 0.65
858
+ 0.65
859
+ 0.66
860
+ 0.89
861
+ 0.65
862
+ 0.65
863
+ 0.65
864
+ 0.65
865
+ 0.65
866
+ 0.65
867
+ 0.65
868
+ 0.65
869
+ 0.65
870
+ 0.65
871
+ 0.65
872
+ 0.9
873
+ 0.65
874
+ 0.65
875
+ 0.65
876
+ 0.65
877
+ 0.65
878
+ 0.65
879
+ 0.65
880
+ 0.84
881
+ 0.65
882
+ 0.65
883
+ 0.65
884
+ 0.65
885
+ 0.65
886
+ 0.65
887
+ 0.65
888
+ 0.65
889
+ 0.65
890
+ 0.65
891
+ 0.65
892
+ 0.65
893
+ 0.65
894
+ 0.65
895
+ 0.65
896
+ 0.8
897
+ 0.65
898
+ 0.65
899
+ 0.65
900
+ 0.65
901
+ 0.65
902
+ 0.65
903
+ 0.65
904
+ 0.65
905
+ 0.65
906
+ 0.8
907
+ 0.65
908
+ 0.88
909
+ 0.65
910
+ 0.65
911
+ 0.8
912
+ 0.65
913
+ 0.65
914
+ 0.7
915
+ 0.65
916
+ 0.65
917
+ 0.65
918
+ 0.9
919
+ 0.65
920
+ 0.9
921
+ 0.65
922
+ 0.65
923
+ 0.65
924
+ 0.65
925
+ 0.65
926
+ 0.65
927
+ 0.65
928
+ 0.8
929
+ 0.8
930
+ 0.65
931
+ 0.8
932
+ 0.65
933
+ 0.65
934
+ 0.65
935
+ 0.65
936
+ 0.65
937
+ 0.8
938
+ 0.65
939
+ 0.65
940
+ 0.65
941
+ 0.65
942
+ 0.65
943
+ 0.65
944
+ 0.82
945
+ 0.65
946
+ 0.65
947
+ 0.65
948
+ 0.65
949
+ 0.65
950
+ 0.8
951
+ 0.8
952
+ 0.9
953
+ 0.65
954
+ 0.65
955
+ 0.65
956
+ 0.65
957
+ 0.8
958
+ 0.65
959
+ 0.65
960
+ 0.65
961
+ 0.8
962
+ 0.65
963
+ 0.65
964
+ 0.65
965
+ 0.8
966
+ 0.8
967
+ 0.65
968
+ 0.65
969
+ 0.65
970
+ 0.65
971
+ 0.65
972
+ 0.65
973
+ 0.65
974
+ 0.65
975
+ 0.65
976
+ 0.65
977
+ 0.8
978
+ 0.8
979
+ 0.65
980
+ 0.8
981
+ 0.8
982
+ 0.65
983
+ 0.65
984
+ 0.65
985
+ 0.75
986
+ 0.65
987
+ 0.7
988
+ 0.9
989
+ 0.8
990
+ 0.65
991
+ 0.65
992
+ 0.65
993
+ 0.65
994
+ 0.65
995
+ 0.8
996
+ 0.8
997
+ 0.65
998
+ 0.65
999
+ 0.65
1000
+ 0.65
1001
+ 0.65
1002
+ 0.65
1003
+ 0.65
1004
+ 0.88
1005
+ 0.65
1006
+ 0.65
1007
+ 1
1008
+ 0.65
1009
+ 0.65
1010
+ 0.65
1011
+ 0.8
1012
+ 0.65
1013
+ 0.8
1014
+ 0.65
1015
+ 0.65
1016
+ 0.65
1017
+ 0.65
1018
+ 0.65
1019
+ 0.8
1020
+ 0.8
1021
+ 0.65
1022
+ 0.65
1023
+ 0.8
1024
+ 0.65
1025
+ 0.65
1026
+ 0.8
1027
+ 0.8
1028
+ 0.65
1029
+ 0.65
1030
+ 0.8
1031
+ 0.8
1032
+ 0.65
1033
+ 0.65
1034
+ 0.65
1035
+ 0.65
1036
+ 0.65
1037
+ 0.65
1038
+ 0.8
1039
+ 0.65
1040
+ 0.65
1041
+ 0.65
1042
+ 0.65
1043
+ 0.65
1044
+ 0.65
1045
+ 0.65
1046
+ 0.65
1047
+ 0.65
1048
+ 0.65
1049
+ 0.8
1050
+ 0.65
1051
+ 0.8
1052
+ 0.65
1053
+ 0.8
1054
+ 0.8
1055
+ 0.65
1056
+ 0.8
1057
+ 0.65
1058
+ 0.65
1059
+ 0.71
1060
+ 0.65
1061
+ 0.65
1062
+ 0.65
1063
+ 0.79
1064
+ 0.65
1065
+ 0.65
1066
+ 0.65
1067
+ 0.65
1068
+ 0.65
1069
+ 0.89
1070
+ 0.65
1071
+ 0.65
1072
+ 0.8
1073
+ 0.65
1074
+ 0.65
1075
+ 0.65
1076
+ 0.65
1077
+ 0.65
1078
+ 0.8
1079
+ 0.65
1080
+ 0.65
1081
+ 0.9
1082
+ 0.65
1083
+ 0.65
1084
+ 0.65
1085
+ 0.65
1086
+ 0.65
1087
+ 0.65
1088
+ 0.65
1089
+ 0.65
1090
+ 0.65
1091
+ 0.8
1092
+ 0.65
1093
+ 0.65
1094
+ 0.65
1095
+ 0.8
1096
+ 0.65
1097
+ 0.8
1098
+ 0.65
1099
+ 0.65
1100
+ 0.65
1101
+ 0.65
1102
+ 0.65
1103
+ 0.65
1104
+ 0.65
1105
+ 0.8
1106
+ 0.65
1107
+ 0.65
1108
+ 0.65
1109
+ 0.8
1110
+ 0.65
1111
+ 0.65
1112
+ 0.65
1113
+ 0.9
1114
+ 0.65
1115
+ 0.8
1116
+ 0.65
1117
+ 0.65
1118
+ 0.65
1119
+ 0.65
1120
+ 0.65
1121
+ 0.65
1122
+ 0.88
1123
+ 0.65
1124
+ 0.65
1125
+ 0.8
1126
+ 0.65
1127
+ 0.65
1128
+ 0.65
1129
+ 0.65
1130
+ 0.65
1131
+ 0.65
1132
+ 0.65
1133
+ 0.65
1134
+ 0.65
1135
+ 0.65
1136
+ 0.8
1137
+ 0.65
1138
+ 0.65
1139
+ 0.8
1140
+ 0.65
1141
+ 0.65
1142
+ 0.82
1143
+ 0.65
1144
+ 0.9
1145
+ 0.65
1146
+ 0.65
1147
+ 0.65
1148
+ 0.65
1149
+ 0.65
1150
+ 0.8
1151
+ 0.65
1152
+ 0.8
1153
+ 0.65
1154
+ 0.65
1155
+ 0.65
1156
+ 0.8
1157
+ 0.65
1158
+ 0.9
1159
+ 0.65
1160
+ 0.65
1161
+ 0.88
1162
+ 0.65
1163
+ 0.65
1164
+ 0.65
1165
+ 0.65
1166
+ 0.9
1167
+ 0.65
1168
+ 0.65
1169
+ 0.65
1170
+ 0.8
1171
+ 0.65
1172
+ 0.65
1173
+ 0.65
1174
+ 0.65
1175
+ 0.65
1176
+ 0.65
1177
+ 0.65
1178
+ 0.9
1179
+ 0.65
1180
+ 0.65
1181
+ 0.65
1182
+ 0.65
1183
+ 0.8
1184
+ 0.65
1185
+ 0.65
1186
+ 0.65
1187
+ 0.65
1188
+ 0.65
1189
+ 0.65
1190
+ 0.65
1191
+ 0.65
1192
+ 0.65
1193
+ 0.65
1194
+ 0.65
1195
+ 0.89
1196
+ 0.65
1197
+ 0.65
1198
+ 0.8
1199
+ 0.65
1200
+ 0.65
1201
+ 0.65
1202
+ 0.87
1203
+ 0.65
1204
+ 0.66
1205
+ 0.65
1206
+ 0.84
1207
+ 0.65
1208
+ 0.8
1209
+ 0.65
1210
+ 0.65
1211
+ 0.65
1212
+ 0.65
1213
+ 0.65
1214
+ 0.65
1215
+ 0.65
1216
+ 0.65
1217
+ 0.65
1218
+ 0.65
1219
+ 0.65
1220
+ 0.84
1221
+ 0.65
1222
+ 0.65
1223
+ 0.65
1224
+ 0.65
1225
+ 0.65
1226
+ 0.9
1227
+ 0.8
1228
+ 0.65
1229
+ 0.65
1230
+ 0.65
1231
+ 0.65
1232
+ 0.65
1233
+ 0.5
1234
+ 0.65
1235
+ 0.64
1236
+ 0.65
1237
+ 0.65
1238
+ 0.8
1239
+ 0.8
1240
+ 0.65
1241
+ 0.65
1242
+ 0.65
1243
+ 0.65
1244
+ 0.65
1245
+ 0.65
1246
+ 0.65
1247
+ 0.65
1248
+ 0.81
1249
+ 0.65
1250
+ 0.65
1251
+ 0.65
1252
+ 0.65
1253
+ 0.65
1254
+ 0.65
1255
+ 0.65
1256
+ 0.65
1257
+ 0.65
1258
+ 0.8
1259
+ 0.65
1260
+ 0.65
1261
+ 0.8
1262
+ 0.65
1263
+ 0.8
1264
+ 0.8
1265
+ 0.65
1266
+ 0.65
1267
+ 0.65
1268
+ 0.8
1269
+ 0.8
1270
+ 0.65
1271
+ 0.65
1272
+ 0.8
1273
+ 0.65
1274
+ 0.65
1275
+ 0.65
1276
+ 0.65
1277
+ 0.65
1278
+ 0.8
1279
+ 0.65
1280
+ 0.8
1281
+ 0.8
1282
+ 0.65
1283
+ 0.84
1284
+ 0.65
1285
+ 0.65
1286
+ 0.65
1287
+ 0.65
1288
+ 0.65
1289
+ 0.8
1290
+ 0.65
1291
+ 0.65
1292
+ 0.65
1293
+ 0.65
1294
+ 0.65
1295
+ 0.65
1296
+ 0.65
1297
+ 0.65
1298
+ 0.9
1299
+ 0.65
1300
+ 0.8
1301
+ 0.65
1302
+ 0.85
1303
+ 0.65
1304
+ 0.65
1305
+ 0.65
1306
+ 0.9
1307
+ 0.65
1308
+ 0.65
1309
+ 0.65
1310
+ 0.65
1311
+ 0.65
1312
+ 0.8
1313
+ 0.65
1314
+ 0.65
1315
+ 0.65
1316
+ 0.73
1317
+ 0.65
1318
+ 0.65
1319
+ 0.8
1320
+ 0.65
1321
+ 0.65
1322
+ 0.8
1323
+ 0.65
1324
+ 0.8
1325
+ 0.65
1326
+ 0.65
1327
+ 0.86
1328
+ 0.65
1329
+ 0.65
1330
+ 0.65
1331
+ 0.65
1332
+ 0.87
1333
+ 0.65
1334
+ 0.65
1335
+ 0.8
1336
+ 0.65
1337
+ 0.65
1338
+ 0.65
1339
+ 0.65
1340
+ 0.65
1341
+ 0.65
1342
+ 0.65
1343
+ 0.8
1344
+ 0.65
1345
+ 0.65
1346
+ 0.65
1347
+ 0.65
1348
+ 0.65
1349
+ 0.65
1350
+ 0.65
1351
+ 0.8
1352
+ 0.65
1353
+ 0.65
1354
+ 0.8
1355
+ 0.65
1356
+ 0.65
1357
+ 0.65
1358
+ 0.65
1359
+ 0.65
1360
+ 0.8
1361
+ 0.8
1362
+ 0.8
1363
+ 0.65
1364
+ 0.9
1365
+ 0.65
1366
+ 0.65
1367
+ 0.65
1368
+ 0.65
1369
+ 0.65
1370
+ 0.65
1371
+ 0.8
1372
+ 0.65
1373
+ 0.65
1374
+ 0.82
1375
+ 0.8
1376
+ 0.65
1377
+ 0.65
1378
+ 0.65
1379
+ 0.84
1380
+ 0.9
1381
+ 0.9
1382
+ 0.65
1383
+ 0.65
1384
+ 0.65
1385
+ 0.65
1386
+ 0.65
1387
+ 0.65
1388
+ 0.65
1389
+ 0.65
1390
+ 0.65
1391
+ 0.8
1392
+ 0.64
1393
+ 0.65
1394
+ 0.65
1395
+ 0.65
1396
+ 0.8
1397
+ 0.8
1398
+ 0.87
1399
+ 0.65
1400
+ 0.65
1401
+ 0.78
1402
+ 0.65
1403
+ 0.65
1404
+ 0.65
1405
+ 0.65
1406
+ 0.65
1407
+ 0.65
1408
+ 0.65
1409
+ 0.65
1410
+ 0.65
1411
+ 0.65
1412
+ 0.8
1413
+ 0.65
1414
+ 0.8
1415
+ 0.8
1416
+ 0.8
1417
+ 0.65
1418
+ 0.8
1419
+ 0.65
1420
+ 0.65
1421
+ 0.65
1422
+ 0.8
1423
+ 0.65
1424
+ 0.9
1425
+ 0.65
1426
+ 0.65
1427
+ 0.8
1428
+ 0.65
1429
+ 0.85
1430
+ 0.65
1431
+ 0.65
1432
+ 0.65
1433
+ 0.65
1434
+ 0.65
1435
+ 0.65
1436
+ 0.65
1437
+ 0.74
1438
+ 0.65
1439
+ 0.8
1440
+ 0.65
1441
+ 0.65
1442
+ 0.8
1443
+ 0.65
1444
+ 0.65
1445
+ 0.65
1446
+ 0.65
1447
+ 0.65
1448
+ 0.65
1449
+ 0.65
1450
+ 0.8
1451
+ 0.65
1452
+ 0.88
1453
+ 0.65
1454
+ 0.65
1455
+ 0.65
1456
+ 0.65
1457
+ 0.65
1458
+ 0.65
1459
+ 0.83
1460
+ 0.89
1461
+ 0.89
1462
+ 0.65
1463
+ 0.65
1464
+ 0.65
1465
+ 0.65
1466
+ 0.65
1467
+ 0.65
1468
+ 0.65
1469
+ 0.9
1470
+ 0.65
1471
+ 0.65
1472
+ 0.65
1473
+ 0.65
1474
+ 0.65
1475
+ 0.65
1476
+ 0.8
1477
+ 0.65
1478
+ 0.65
1479
+ 0.65
1480
+ 0.65
1481
+ 0.65
1482
+ 0.65
1483
+ 0.86
1484
+ 0.65
1485
+ 0.65
1486
+ 0.65
1487
+ 0.65
1488
+ 0.65
1489
+ 0.65
1490
+ 0.65
1491
+ 0.65
1492
+ 0.65
1493
+ 0.65
1494
+ 0.8
1495
+ 0.65
1496
+ 0.65
1497
+ 0.65
1498
+ 0.65
1499
+ 0.65
1500
+ 0.65
1501
+ 0.65
1502
+ 0.65
1503
+ 0.65
1504
+ 0.65
1505
+ 0.65
1506
+ 0.65
1507
+ 0.8
1508
+ 0.8
1509
+ 0.65
1510
+ 0.65
1511
+ 0.65
1512
+ 0.65
1513
+ 0.65
1514
+ 0.65
1515
+ 0.65
1516
+ 0.65
1517
+ 0.65
1518
+ 0.8
1519
+ 0.65
1520
+ 0.65
1521
+ 0.65
1522
+ 0.65
1523
+ 0.65
1524
+ 0.65
1525
+ 0.65
1526
+ 0.65
1527
+ 0.65
1528
+ 0.65
1529
+ 0.8
1530
+ 0.65
1531
+ 0.65
1532
+ 0.8
1533
+ 0.65
1534
+ 0.65
1535
+ 0.65
1536
+ 0.65
1537
+ 0.8
1538
+ 0.65
1539
+ 0.65
1540
+ 0.65
1541
+ 0.8
1542
+ 0.65
1543
+ 0.8
1544
+ 0.65
1545
+ 0.65
1546
+ 0.65
1547
+ 0.65
1548
+ 0.65
1549
+ 0.65
1550
+ 0.65
1551
+ 0.8
1552
+ 0.65
1553
+ 0.65
1554
+ 0.65
1555
+ 0.8
1556
+ 0.65
1557
+ 0.8
1558
+ 0.8
1559
+ 0.65
1560
+ 0.65
1561
+ 0.65
1562
+ 0.65
1563
+ 0.65
1564
+ 0.8
1565
+ 0.65
1566
+ 0.65
1567
+ 0.65
1568
+ 0.65
1569
+ 0.65
1570
+ 0.8
1571
+ 0.8
1572
+ 0.65
1573
+ 0.65
1574
+ 0.65
1575
+ 0.8
1576
+ 0.65
1577
+ 0.8
1578
+ 0.8
1579
+ 0.65
1580
+ 0.65
1581
+ 0.8
1582
+ 0.65
1583
+ 0.65
1584
+ 0.65
1585
+ 0.65
1586
+ 0.65
1587
+ 0.65
1588
+ 0.8
1589
+ 0.65
1590
+ 0.65
1591
+ 0.8
1592
+ 0.85
1593
+ 0.65
1594
+ 0.65
1595
+ 0.65
1596
+ 0.65
1597
+ 0.65
1598
+ 0.8
1599
+ 0.65
1600
+ 0.8
1601
+ 0.65
1602
+ 0.65
1603
+ 0.65
1604
+ 0.65
1605
+ 0.65
1606
+ 0.8
1607
+ 0.65
1608
+ 0.65
1609
+ 0.65
1610
+ 0.9
1611
+ 0.65
1612
+ 0.65
1613
+ 0.9
1614
+ 0.65
1615
+ 0.65
1616
+ 0.65
1617
+ 0.9
1618
+ 0.65
1619
+ 0.65
1620
+ 0.8
1621
+ 0.65
1622
+ 0.65
1623
+ 0.65
1624
+ 0.65
1625
+ 0.65
1626
+ 0.8
1627
+ 0.65
1628
+ 0.8
1629
+ 0.65
1630
+ 0.65
1631
+ 0.65
1632
+ 0.65
1633
+ 0.65
1634
+ 0.65
1635
+ 0.8
1636
+ 0.65
1637
+ 0.65
1638
+ 0.65
1639
+ 0.86
1640
+ 0.65
1641
+ 0.65
1642
+ 0.65
1643
+ 0.65
1644
+ 0.65
1645
+ 0.65
1646
+ 0.65
1647
+ 0.65
1648
+ 0.87
1649
+ 0.8
1650
+ 0.84
1651
+ 0.65
1652
+ 0.65
1653
+ 0.8
1654
+ 0.65
1655
+ 0.65
1656
+ 0.65
1657
+ 0.65
1658
+ 0.8
1659
+ 0.65
1660
+ 0.8
1661
+ 0.65
1662
+ 0.65
1663
+ 0.65
1664
+ 0.65
1665
+ 0.65
1666
+ 0.8
1667
+ 0.65
1668
+ 0.65
1669
+ 0.8
1670
+ 0.65
1671
+ 0.65
1672
+ 0.8
1673
+ 0.81
1674
+ 0.65
1675
+ 0.65
1676
+ 0.65
1677
+ 0.8
1678
+ 0.65
1679
+ 0.8
1680
+ 0.65
1681
+ 0.65
1682
+ 0.65
1683
+ 0.65
1684
+ 0.65
1685
+ 0.8
1686
+ 0.65
1687
+ 0.65
1688
+ 0.65
1689
+ 0.65
1690
+ 0.8
1691
+ 0.8
1692
+ 0.65
1693
+ 0.7
1694
+ 0.65
1695
+ 0.65
1696
+ 0.8
1697
+ 0.65
1698
+ 0.65
1699
+ 0.65
1700
+ 0.65
1701
+ 0.65
1702
+ 0.8
1703
+ 0.82
1704
+ 0.65
1705
+ 0.65
1706
+ 0.65
1707
+ 0.65
1708
+ 0.65
1709
+ 0.65
1710
+ 0.65
1711
+ 0.65
1712
+ 0.65
1713
+ 0.8
1714
+ 0.65
1715
+ 0.65
1716
+ 0.87
1717
+ 0.65
1718
+ 0.9
1719
+ 0.8
1720
+ 0.65
1721
+ 0.65
1722
+ 0.65
1723
+ 0.9
1724
+ 0.65
1725
+ 0.65
1726
+ 0.65
1727
+ 0.65
1728
+ 0.65
1729
+ 0.8
1730
+ 0.7
1731
+ 0.65
1732
+ 0.65
1733
+ 0.65
1734
+ 0.65
1735
+ 0.65
1736
+ 0.65
1737
+ 0.8
1738
+ 0.65
1739
+ 0.9
1740
+ 0.65
1741
+ 0.65
1742
+ 0.65
1743
+ 0.65
1744
+ 0.65
1745
+ 0.65
1746
+ 0.8
1747
+ 0.65
1748
+ 0.8
1749
+ 0.8
1750
+ 0.65
1751
+ 0.65
1752
+ 0.65
1753
+ 0.65
1754
+ 0.65
1755
+ 0.65
1756
+ 0.65
1757
+ 0.85
1758
+ 0.65
1759
+ 0.65
1760
+ 0.65
1761
+ 0.65
1762
+ 0.65
1763
+ 0.73
1764
+ 0.65
1765
+ 0.8
1766
+ 0.65
1767
+ 0.65
1768
+ 0.65
1769
+ 0.65
1770
+ 0.65
1771
+ 0.65
1772
+ 0.65
1773
+ 0.65
1774
+ 0.9
1775
+ 0.65
1776
+ 0.89
1777
+ 0.8
1778
+ 0.65
1779
+ 0.9
1780
+ 0.65
1781
+ 1
1782
+ 0.65
1783
+ 0.65
1784
+ 0.65
1785
+ 0.65
1786
+ 0.9
1787
+ 0.65
1788
+ 0.65
1789
+ 0.65
1790
+ 0.65
1791
+ 0.89
1792
+ 0.89
1793
+ 0.65
1794
+ 0.65
1795
+ 0.65
1796
+ 0.8
1797
+ 0.75
1798
+ 0.65
1799
+ 0.65
1800
+ 0.65
1801
+ 0.65
1802
+ 0.65
1803
+ 0.65
1804
+ 0.65
1805
+ 0.8
1806
+ 0.65
1807
+ 0.65
1808
+ 0.65
1809
+ 0.65
1810
+ 0.8
1811
+ 0.65
1812
+ 0.65
1813
+ 0.65
1814
+ 0.65
1815
+ 0.65
1816
+ 0.8
1817
+ 0.65
1818
+ 0.65
1819
+ 0.65
1820
+ 0.8
1821
+ 0.8
1822
+ 0.8
1823
+ 0.65
1824
+ 0.65
1825
+ 0.88
1826
+ 0.65
1827
+ 0.8
1828
+ 0.65
1829
+ 0.65
1830
+ 0.8
1831
+ 0.85
1832
+ 0.65
1833
+ 0.65
1834
+ 0.65
1835
+ 0.65
1836
+ 0.65
1837
+ 0.65
1838
+ 0.65
1839
+ 0.8
1840
+ 0.65
1841
+ 0.65
1842
+ 0.8
1843
+ 0.9
1844
+ 0.57
1845
+ 0.65
1846
+ 0.8
1847
+ 0.65
1848
+ 0.65
1849
+ 0.65
1850
+ 0.8
1851
+ 0.65
1852
+ 0.65
1853
+ 0.65
1854
+ 0.65
1855
+ 0.65
1856
+ 0.65
1857
+ 0.65
1858
+ 0.8
1859
+ 0.65
1860
+ 0.65
1861
+ 0.8
1862
+ 0.65
1863
+ 0.65
1864
+ 0.65
1865
+ 0.65
1866
+ 0.65
1867
+ 0.65
1868
+ 0.65
1869
+ 0.65
1870
+ 0.65
1871
+ 0.9
1872
+ 0.8
1873
+ 0.8
1874
+ 0.79
1875
+ 0.65
1876
+ 0.65
1877
+ 0.8
1878
+ 0.65
1879
+ 0.65
1880
+ 0.65
1881
+ 0.65
1882
+ 0.65
1883
+ 0.65
1884
+ 0.65
1885
+ 0.65
1886
+ 0.65
1887
+ 0.65
1888
+ 0.65
1889
+ 0.8
1890
+ 0.65
1891
+ 0.65
1892
+ 0.65
1893
+ 0.8
1894
+ 0.89
1895
+ 0.8
1896
+ 0.65
1897
+ 0.8
1898
+ 0.65
1899
+ 0.8
1900
+ 0.65
1901
+ 0.81
1902
+ 0.65
1903
+ 0.65
1904
+ 0.65
1905
+ 0.8
1906
+ 0.65
1907
+ 0.65
1908
+ 0.65
1909
+ 0.65
1910
+ 0.89
1911
+ 0.65
1912
+ 0.65
1913
+ 0.65
1914
+ 0.65
1915
+ 0.65
1916
+ 0.89
1917
+ 0.84
1918
+ 0.65
1919
+ 0.65
1920
+ 0.65
1921
+ 0.65
1922
+ 0.8
1923
+ 0.65
1924
+ 0.9
1925
+ 0.65
1926
+ 0.65
1927
+ 0.65
1928
+ 0.65
1929
+ 0.65
1930
+ 0.65
1931
+ 0.65
1932
+ 0.65
1933
+ 0.89
1934
+ 0.65
1935
+ 0.8
1936
+ 0.83
1937
+ 0.65
1938
+ 0.65
1939
+ 0.8
1940
+ 0.65
1941
+ 0.65
1942
+ 0.72
1943
+ 0.65
1944
+ 0.65
1945
+ 0.65
1946
+ 0.8
1947
+ 0.8
1948
+ 0.65
1949
+ 0.8
1950
+ 0.65
1951
+ 0.65
1952
+ 0.65
1953
+ 0.8
1954
+ 0.65
1955
+ 0.65
1956
+ 0.65
1957
+ 0.8
1958
+ 0.65
1959
+ 0.65
1960
+ 0.65
1961
+ 0.65
1962
+ 0.65
1963
+ 0.65
1964
+ 0.65
1965
+ 0.65
1966
+ 1
1967
+ 0.65
1968
+ 0.65
1969
+ 0.8
1970
+ 0.65
1971
+ 0.65
1972
+ 0.65
1973
+ 0.65
1974
+ 0.65
1975
+ 0.8
1976
+ 0.65
1977
+ 0.9
1978
+ 0.65
1979
+ 0.65
1980
+ 0.89
1981
+ 0.65
1982
+ 0.65
1983
+ 0.65
1984
+ 0.65
1985
+ 0.9
1986
+ 0.65
1987
+ 0.65
1988
+ 0.65
1989
+ 0.65
1990
+ 0.8
1991
+ 0.65
1992
+ 0.65
1993
+ 0.65
1994
+ 0.65
1995
+ 0.65
1996
+ 0.65
1997
+ 0.65
1998
+ 0.8
1999
+ 0.8
2000
+ 0.65
2001
+ 0.69
2002
+ 0.8
2003
+ 0.65
2004
+ 0.65
2005
+ 0.65
2006
+ 0.9
2007
+ 0.65
2008
+ 0.65
2009
+ 0.65
2010
+ 0.65
2011
+ 0.71
2012
+ 0.65
2013
+ 0.65
2014
+ 0.65
2015
+ 0.88
2016
+ 0.65
2017
+ 0.65
2018
+ 0.65
2019
+ 0.65
2020
+ 0.8
2021
+ 0.65
2022
+ 0.65
2023
+ 0.65
2024
+ 0.85
2025
+ 0.65
2026
+ 0.8
2027
+ 0.65
2028
+ 0.65
2029
+ 0.65
2030
+ 0.8
2031
+ 0.65
2032
+ 0.65
2033
+ 0.65
2034
+ 0.65
2035
+ 0.65
2036
+ 0.65
2037
+ 0.65
2038
+ 0.65
2039
+ 0.65
2040
+ 0.65
2041
+ 0.65
2042
+ 0.65
2043
+ 0.65
2044
+ 0.65
2045
+ 0.87
2046
+ 0.65
2047
+ 0.65
2048
+ 0.65
2049
+ 0.65
2050
+ 0.65
2051
+ 0.65
2052
+ 0.8
2053
+ 0.65
2054
+ 0.65
2055
+ 0.65
2056
+ 0.65
2057
+ 0.65
2058
+ 0.65
2059
+ 0.65
2060
+ 0.8
2061
+ 0.65
2062
+ 0.65
2063
+ 0.65
2064
+ 0.65
2065
+ 0.65
2066
+ 0.9
2067
+ 0.8
2068
+ 0.9
2069
+ 0.65
2070
+ 0.8
2071
+ 0.8
2072
+ 0.65
2073
+ 0.65
2074
+ 0.8
2075
+ 0.8
2076
+ 0.65
2077
+ 0.8
2078
+ 0.65
2079
+ 0.65
2080
+ 0.65
2081
+ 0.65
2082
+ 0.65
2083
+ 0.65
2084
+ 0.65
2085
+ 0.65
2086
+ 0.8
2087
+ 0.8
2088
+ 0.65
2089
+ 0.65
2090
+ 0.8
2091
+ 0.65
2092
+ 0.65
2093
+ 0.65
2094
+ 0.65
2095
+ 0.65
2096
+ 0.65
2097
+ 0.65
2098
+ 0.65
2099
+ 0.65
2100
+ 0.8
2101
+ 0.8
2102
+ 0.65
2103
+ 0.65
2104
+ 0.65
2105
+ 0.65
2106
+ 0.65
2107
+ 0.65
2108
+ 0.8
2109
+ 0.8
2110
+ 0.65
2111
+ 0.65
2112
+ 0.8
2113
+ 0.65
2114
+ 0.65
2115
+ 0.8
2116
+ 0.65
2117
+ 0.8
2118
+ 0.65
2119
+ 0.65
2120
+ 0.65
2121
+ 0.65
2122
+ 0.65
2123
+ 0.65
2124
+ 0.8
2125
+ 0.8
2126
+ 0.65
2127
+ 0.8
2128
+ 0.65
2129
+ 0.65
2130
+ 0.65
2131
+ 0.65
2132
+ 0.65
2133
+ 0.65
2134
+ 0.65
2135
+ 0.65
2136
+ 0.65
2137
+ 0.65
2138
+ 0.65
2139
+ 0.65
2140
+ 0.65
2141
+ 0.8
2142
+ 0.65
2143
+ 0.65
2144
+ 0.65
2145
+ 0.8
2146
+ 0.8
2147
+ 0.65
2148
+ 0.85
2149
+ 0.65
2150
+ 0.65
2151
+ 0.8
2152
+ 0.65
2153
+ 0.89
2154
+ 0.65
2155
+ 0.65
2156
+ 0.9
2157
+ 0.8
2158
+ 0.65
2159
+ 0.65
2160
+ 0.65
2161
+ 0.65
2162
+ 0.8
2163
+ 0.65
2164
+ 0.86
2165
+ 0.65
2166
+ 0.77
2167
+ 0.65
2168
+ 0.65
2169
+ 0.65
2170
+ 0.65
2171
+ 0.65
2172
+ 0.65
2173
+ 0.65
2174
+ 0.65
2175
+ 0.65
2176
+ 0.65
2177
+ 0.9
2178
+ 0.65
2179
+ 0.8
2180
+ 0.65
2181
+ 0.65
2182
+ 0.65
2183
+ 0.9
2184
+ 0.65
2185
+ 0.65
2186
+ 0.65
2187
+ 0.65
2188
+ 0.65
2189
+ 0.65
2190
+ 0.65
2191
+ 0.65
2192
+ 0.65
2193
+ 0.65
2194
+ 0.65
2195
+ 0.65
2196
+ 0.65
2197
+ 0.65
2198
+ 0.65
2199
+ 0.65
2200
+ 0.8
2201
+ 0.65
2202
+ 0.65
2203
+ 0.65
2204
+ 0.9
2205
+ 0.65
2206
+ 0.65
2207
+ 0.8
2208
+ 0.8
2209
+ 0.65
2210
+ 0.65
2211
+ 0.65
2212
+ 0.65
2213
+ 0.8
2214
+ 0.65
2215
+ 0.65
2216
+ 0.65
2217
+ 0.65
2218
+ 0.65
2219
+ 0.65
2220
+ 0.65
2221
+ 0.65
2222
+ 0.8
2223
+ 0.65
2224
+ 0.65
2225
+ 0.65
2226
+ 0.65
2227
+ 0.65
2228
+ 0.65
2229
+ 0.8
2230
+ 0.65
2231
+ 0.65
2232
+ 0.8
2233
+ 0.65
2234
+ 0.65
2235
+ 0.8
2236
+ 0.8
2237
+ 0.8
2238
+ 0.65
2239
+ 0.65
2240
+ 0.65
2241
+ 0.65
2242
+ 0.8
2243
+ 0.65
2244
+ 0.65
2245
+ 0.65
2246
+ 0.65
2247
+ 0.65
2248
+ 0.89
2249
+ 0.65
2250
+ 0.65
2251
+ 0.65
2252
+ 0.65
2253
+ 0.65
2254
+ 0.65
2255
+ 0.65
2256
+ 0.8
2257
+ 0.65
2258
+ 0.65
2259
+ 0.65
2260
+ 0.65
2261
+ 0.65
2262
+ 0.65
2263
+ 0.65
2264
+ 0.65
2265
+ 0.65
2266
+ 0.65
2267
+ 0.65
2268
+ 0.65
2269
+ 0.8
2270
+ 0.65
2271
+ 0.65
2272
+ 0.65
2273
+ 0.75
2274
+ 0.8
2275
+ 0.65
2276
+ 0.8
2277
+ 0.88
2278
+ 0.65
2279
+ 0.65
2280
+ 0.65
2281
+ 0.65
2282
+ 0.65
2283
+ 0.65
2284
+ 0.65
2285
+ 0.65
2286
+ 0.65
2287
+ 0.65
2288
+ 0.65
2289
+ 0.65
2290
+ 0.65
2291
+ 0.65
2292
+ 0.65
2293
+ 0.65
2294
+ 0.65
2295
+ 0.8
2296
+ 0.65
2297
+ 0.65
2298
+ 0.65
2299
+ 0.88
2300
+ 0.65
2301
+ 0.65
2302
+ 0.65
2303
+ 0.65
2304
+ 0.65
2305
+ 0.65
2306
+ 0.65
2307
+ 0.65
2308
+ 0.65
2309
+ 0.8
2310
+ 0.65
2311
+ 0.82
2312
+ 0.65
2313
+ 0.65
2314
+ 0.8
2315
+ 0.65
2316
+ 0.8
2317
+ 0.65
2318
+ 0.9
2319
+ 0.65
2320
+ 0.65
2321
+ 0.65
2322
+ 0.65
2323
+ 0.65
2324
+ 0.65
2325
+ 0.65
2326
+ 0.65
2327
+ 0.65
2328
+ 0.65
2329
+ 0.83
2330
+ 0.65
2331
+ 0.65
2332
+ 0.92
2333
+ 0.89
2334
+ 0.8
2335
+ 0.8
2336
+ 0.65
2337
+ 0.65
2338
+ 0.65
2339
+ 0.65
2340
+ 0.75
2341
+ 0.65
2342
+ 0.65
2343
+ 0.65
2344
+ 0.65
2345
+ 0.8
2346
+ 0.65
2347
+ 0.65
2348
+ 0.8
2349
+ 0.65
2350
+ 0.65
2351
+ 0.65
2352
+ 0.85
2353
+ 0.65
2354
+ 0.8
2355
+ 0.65
2356
+ 0.65
2357
+ 0.65
2358
+ 0.65
2359
+ 0.65
2360
+ 0.65
2361
+ 0.65
2362
+ 0.65
2363
+ 0.8
2364
+ 0.65
2365
+ 0.65
2366
+ 0.65
2367
+ 0.65
2368
+ 0.65
2369
+ 0.8
2370
+ 0.65
2371
+ 0.65
2372
+ 0.87
2373
+ 0.65
2374
+ 0.79
2375
+ 0.65
2376
+ 0.65
2377
+ 0.65
2378
+ 0.65
2379
+ 0.65
2380
+ 0.65
2381
+ 0.65
2382
+ 0.65
2383
+ 0.65
2384
+ 0.65
2385
+ 0.8
2386
+ 0.65
2387
+ 0.65
2388
+ 0.65
2389
+ 0.65
2390
+ 0.65
2391
+ 0.65
2392
+ 0.65
2393
+ 0.83
2394
+ 0.8
2395
+ 0.65
2396
+ 0.65
2397
+ 0.8
2398
+ 0.8
2399
+ 0.65
2400
+ 0.7
2401
+ 0.65
2402
+ 0.65
2403
+ 0.8
2404
+ 0.65
2405
+ 0.65
2406
+ 0.8
2407
+ 0.8
2408
+ 0.65
2409
+ 0.8
2410
+ 0.65
2411
+ 0.65
2412
+ 0.65
2413
+ 0.65
2414
+ 0.9
2415
+ 0.8
2416
+ 0.65
2417
+ 0.65
2418
+ 0.65
2419
+ 0.65
2420
+ 0.7
2421
+ 0.65
2422
+ 0.65
2423
+ 0.65
2424
+ 0.65
2425
+ 0.65
2426
+ 0.65
2427
+ 0.87
2428
+ 0.65
2429
+ 0.65
2430
+ 0.65
2431
+ 0.65
2432
+ 0.8
2433
+ 0.82
2434
+ 0.65
2435
+ 0.8
2436
+ 0.65
2437
+ 0.65
2438
+ 0.9
2439
+ 0.65
2440
+ 0.65
2441
+ 0.65
2442
+ 0.65
2443
+ 0.65
2444
+ 1
2445
+ 0.65
2446
+ 0.65
2447
+ 0.65
2448
+ 0.65
2449
+ 0.65
2450
+ 0.65
2451
+ 0.65
2452
+ 0.65
2453
+ 0.8
2454
+ 0.64
2455
+ 0.65
2456
+ 0.65
2457
+ 0.63
2458
+ 0.65
2459
+ 0.65
2460
+ 0.65
2461
+ 0.65
2462
+ 0.8
2463
+ 0.65
2464
+ 0.65
2465
+ 0.65
2466
+ 0.65
2467
+ 0.76
2468
+ 0.65
2469
+ 0.65
2470
+ 0.65
2471
+ 0.65
2472
+ 0.8
2473
+ 0.65
2474
+ 0.8
2475
+ 0.65
2476
+ 0.8
2477
+ 0.65
2478
+ 0.75
2479
+ 0.65
2480
+ 0.65
2481
+ 0.65
2482
+ 0.8
2483
+ 0.65
2484
+ 0.65
2485
+ 0.65
2486
+ 0.65
2487
+ 0.8
2488
+ 0.65
2489
+ 0.65
2490
+ 0.8
2491
+ 0.65
2492
+ 0.65
2493
+ 0.65
2494
+ 0.65
2495
+ 0.65
2496
+ 0.65
2497
+ 0.65
2498
+ 0.65
2499
+ 0.8
2500
+ 0.65
2501
+ 0.87
2502
+ 0.65
2503
+ 0.65
2504
+ 0.8
2505
+ 0.65
2506
+ 0.65
2507
+ 0.65
2508
+ 0.65
2509
+ 0.65
2510
+ 0.65
2511
+ 0.65
2512
+ 0.65
2513
+ 0.65
2514
+ 0.65
2515
+ 0.8
2516
+ 0.65
2517
+ 0.8
2518
+ 0.65
2519
+ 0.65
2520
+ 0.65
2521
+ 0.65
2522
+ 0.65
2523
+ 0.65
2524
+ 0.65
2525
+ 0.65
2526
+ 0.65
2527
+ 0.65
2528
+ 0.65
2529
+ 0.8
2530
+ 0.65
2531
+ 0.65
2532
+ 0.65
2533
+ 0.65
2534
+ 0.65
2535
+ 0.65
2536
+ 0.65
2537
+ 0.65
2538
+ 0.8
2539
+ 0.65
2540
+ 0.8
2541
+ 0.65
2542
+ 0.65
2543
+ 0.65
2544
+ 0.65
2545
+ 0.65
2546
+ 0.8
2547
+ 0.65
2548
+ 0.82
2549
+ 0.65
2550
+ 0.65
2551
+ 0.65
2552
+ 0.65
2553
+ 0.65
2554
+ 0.8
2555
+ 0.89
2556
+ 0.65
2557
+ 0.8
2558
+ 0.65
2559
+ 0.65
2560
+ 0.65
2561
+ 0.65
2562
+ 0.65
2563
+ 0.9
2564
+ 0.65
2565
+ 0.65
2566
+ 0.65
2567
+ 0.65
2568
+ 0.65
2569
+ 0.65
2570
+ 0.8
2571
+ 0.65
2572
+ 0.65
2573
+ 0.65
2574
+ 0.65
2575
+ 0.65
2576
+ 0.65
2577
+ 0.65
2578
+ 0.65
2579
+ 0.8
2580
+ 0.65
2581
+ 0.65
2582
+ 0.65
2583
+ 0.65
2584
+ 0.65
2585
+ 0.65
2586
+ 0.65
2587
+ 0.65
2588
+ 0.65
2589
+ 0.8
2590
+ 0.65
2591
+ 0.65
2592
+ 0.9
2593
+ 0.65
2594
+ 0.65
2595
+ 0.65
2596
+ 0.65
2597
+ 0.8
2598
+ 0.65
2599
+ 0.65
2600
+ 0.9
2601
+ 0.65
2602
+ 0.65
2603
+ 0.8
2604
+ 0.65
2605
+ 0.65
2606
+ 0.8
2607
+ 0.65
2608
+ 0.65
2609
+ 0.65
2610
+ 0.65
2611
+ 0.8
2612
+ 0.65
2613
+ 0.65
2614
+ 0.65
2615
+ 0.65
2616
+ 0.8
2617
+ 0.65
2618
+ 0.65
2619
+ 0.65
2620
+ 0.65
2621
+ 0.65
2622
+ 0.9
2623
+ 0.8
2624
+ 0.65
2625
+ 0.73
2626
+ 0.65
2627
+ 0.65
2628
+ 0.8
2629
+ 0.65
2630
+ 0.65
2631
+ 0.65
2632
+ 0.65
2633
+ 0.86
2634
+ 0.65
2635
+ 0.9
2636
+ 0.65
2637
+ 0.65
2638
+ 0.65
2639
+ 0.65
2640
+ 0.65
2641
+ 0.65
2642
+ 0.65
2643
+ 0.65
2644
+ 0.65
2645
+ 0.65
2646
+ 0.65
2647
+ 0.65
2648
+ 0.65
2649
+ 0.65
2650
+ 0.65
2651
+ 0.65
2652
+ 0.65
2653
+ 0.65
2654
+ 0.65
2655
+ 0.9
2656
+ 0.65
2657
+ 0.65
2658
+ 0.65
2659
+ 0.65
2660
+ 0.8
2661
+ 0.65
2662
+ 0.65
2663
+ 0.65
2664
+ 0.65
2665
+ 0.65
2666
+ 0.8
2667
+ 0.65
2668
+ 0.8
2669
+ 0.65
2670
+ 0.65
2671
+ 0.65
2672
+ 0.65
2673
+ 0.65
2674
+ 0.8
2675
+ 0.8
2676
+ 0.9
2677
+ 0.65
2678
+ 0.9
2679
+ 0.65
2680
+ 0.65
2681
+ 0.65
2682
+ 0.65
2683
+ 0.86
2684
+ 0.65
2685
+ 0.65
2686
+ 0.65
2687
+ 0.65
2688
+ 0.65
2689
+ 0.65
2690
+ 0.8
2691
+ 0.65
2692
+ 0.65
2693
+ 0.65
2694
+ 0.65
2695
+ 0.65
2696
+ 0.86
2697
+ 0.65
2698
+ 0.8
2699
+ 0.8
2700
+ 0.65
2701
+ 0.8
2702
+ 0.65
2703
+ 0.65
2704
+ 0.8
2705
+ 0.65
2706
+ 0.65
2707
+ 0.69
2708
+ 0.65
2709
+ 0.65
2710
+ 0.65
2711
+ 0.65
2712
+ 0.65
2713
+ 0.88
2714
+ 0.65
2715
+ 0.65
2716
+ 0.65
2717
+ 0.65
2718
+ 0.65
2719
+ 0.65
2720
+ 0.65
2721
+ 0.65
2722
+ 0.8
2723
+ 0.65
2724
+ 0.65
2725
+ 0.65
2726
+ 0.65
2727
+ 0.65
2728
+ 0.65
2729
+ 0.65
2730
+ 0.72
2731
+ 0.65
2732
+ 0.65
2733
+ 0.8
2734
+ 0.65
2735
+ 0.8
2736
+ 0.8
2737
+ 0.65
2738
+ 0.65
2739
+ 0.65
2740
+ 0.65
2741
+ 0.65
2742
+ 0.65
2743
+ 0.9
2744
+ 0.65
2745
+ 0.65
2746
+ 0.65
2747
+ 0.65
2748
+ 0.8
2749
+ 0.65
2750
+ 0.65
2751
+ 0.9
2752
+ 0.9
2753
+ 0.8
2754
+ 0.8
2755
+ 0.65
2756
+ 0.65
2757
+ 0.65
2758
+ 0.65
2759
+ 0.8
2760
+ 0.65
2761
+ 0.65
2762
+ 0.65
2763
+ 0.65
2764
+ 0.8
2765
+ 0.65
2766
+ 0.65
2767
+ 0.65
2768
+ 0.8
2769
+ 0.65
2770
+ 0.65
2771
+ 0.65
2772
+ 0.8
2773
+ 0.65
2774
+ 0.65
2775
+ 0.65
2776
+ 0.65
2777
+ 0.45
2778
+ 0.8
2779
+ 0.65
2780
+ 0.88
2781
+ 0.65
2782
+ 0.65
2783
+ 0.65
2784
+ 0.65
2785
+ 0.65
2786
+ 0.65
2787
+ 0.65
2788
+ 0.65
2789
+ 0.65
2790
+ 0.65
2791
+ 0.8
2792
+ 0.8
2793
+ 0.65
2794
+ 0.65
2795
+ 0.65
2796
+ 0.8
2797
+ 0.65
2798
+ 0.8
2799
+ 0.65
2800
+ 0.8
2801
+ 0.51
2802
+ 0.65
2803
+ 0.65
2804
+ 0.8
2805
+ 0.65
2806
+ 0.65
2807
+ 0.8
2808
+ 0.8
2809
+ 0.65
2810
+ 0.65
2811
+ 0.65
2812
+ 0.65
2813
+ 0.65
2814
+ 0.8
2815
+ 0.65
2816
+ 0.65
2817
+ 0.65
2818
+ 0.65
2819
+ 0.65
2820
+ 0.65
2821
+ 0.65
2822
+ 0.65
2823
+ 0.65
2824
+ 0.65
2825
+ 0.65
2826
+ 0.65
2827
+ 0.65
2828
+ 0.65
2829
+ 0.65
2830
+ 0.66
2831
+ 0.65
2832
+ 0.8
2833
+ 0.9
2834
+ 0.65
2835
+ 0.65
2836
+ 0.65
2837
+ 0.65
2838
+ 0.65
2839
+ 0.65
2840
+ 0.65
2841
+ 0.8
2842
+ 0.8
2843
+ 0.65
2844
+ 0.8
2845
+ 0.65
2846
+ 0.65
2847
+ 0.65
2848
+ 0.65
2849
+ 0.65
2850
+ 0.65
2851
+ 0.65
2852
+ 0.65
2853
+ 0.65
2854
+ 0.65
2855
+ 0.8
2856
+ 0.8
2857
+ 0.65
2858
+ 0.65
2859
+ 0.65
2860
+ 0.65
2861
+ 0.65
2862
+ 0.65
2863
+ 0.65
2864
+ 0.65
2865
+ 0.81
2866
+ 0.65
2867
+ 0.65
2868
+ 0.65
2869
+ 0.65
2870
+ 0.65
2871
+ 0.65
2872
+ 0.65
2873
+ 0.8
2874
+ 0.65
2875
+ 0.65
2876
+ 0.8
2877
+ 0.65
2878
+ 0.75
2879
+ 0.65
2880
+ 0.65
2881
+ 0.65
2882
+ 0.8
2883
+ 0.65
2884
+ 0.65
2885
+ 0.8
2886
+ 0.65
2887
+ 0.66
2888
+ 0.65
2889
+ 0.65
2890
+ 0.65
2891
+ 0.65
2892
+ 0.65
2893
+ 0.65
2894
+ 0.8
2895
+ 0.65
2896
+ 0.65
2897
+ 0.65
2898
+ 0.65
2899
+ 0.65
2900
+ 0.9
2901
+ 0.65
2902
+ 0.65
2903
+ 0.8
2904
+ 0.65
2905
+ 0.65
2906
+ 0.65
2907
+ 0.65
2908
+ 0.65
2909
+ 0.9
2910
+ 0.8
2911
+ 0.65
2912
+ 0.85
2913
+ 0.8
2914
+ 0.65
2915
+ 0.65
2916
+ 0.8
2917
+ 0.65
2918
+ 0.65
2919
+ 0.65
2920
+ 0.65
2921
+ 0.9
2922
+ 0.65
2923
+ 0.65
2924
+ 0.65
2925
+ 0.65
2926
+ 0.65
2927
+ 0.65
2928
+ 0.65
2929
+ 0.65
2930
+ 0.8
2931
+ 0.65
2932
+ 0.65
2933
+ 0.65
2934
+ 0.65
2935
+ 0.65
2936
+ 0.65
2937
+ 0.65
2938
+ 0.65
2939
+ 0.8
2940
+ 0.65
2941
+ 0.65
2942
+ 0.65
2943
+ 0.81
2944
+ 0.65
2945
+ 0.65
2946
+ 0.65
2947
+ 0.65
2948
+ 0.65
2949
+ 0.65
2950
+ 0.89
2951
+ 0.65
2952
+ 0.8
2953
+ 0.65
2954
+ 0.65
2955
+ 0.8
2956
+ 0.65
2957
+ 0.65
2958
+ 0.65
2959
+ 0.79
2960
+ 0.75
2961
+ 0.65
2962
+ 0.65
2963
+ 0.8
2964
+ 0.65
2965
+ 0.67
2966
+ 0.8
2967
+ 0.8
2968
+ 0.86
2969
+ 0.65
2970
+ 0.65
2971
+ 0.65
2972
+ 0.65
2973
+ 0.65
2974
+ 0.65
2975
+ 0.81
2976
+ 0.8
2977
+ 0.65
2978
+ 0.65
2979
+ 0.9
2980
+ 0.65
2981
+ 0.79
2982
+ 0.65
2983
+ 0.8
2984
+ 0.65
2985
+ 0.65
2986
+ 0.65
2987
+ 0.65
2988
+ 0.65
2989
+ 0.65
2990
+ 0.65
2991
+ 0.65
2992
+ 0.65
2993
+ 0.65
2994
+ 0.65
2995
+ 0.65
2996
+ 0.65
2997
+ 0.8
2998
+ 0.65
2999
+ 0.77
3000
+ 0.65
3001
+ 0.65
3002
+ 0.65
3003
+ 0.65
3004
+ 0.65
3005
+ 0.65
3006
+ 0.65
3007
+ 0.65
3008
+ 0.65
3009
+ 0.8
3010
+ 0.8
3011
+ 0.8
3012
+ 0.65
3013
+ 0.74
3014
+ 0.65
3015
+ 0.65
3016
+ 0.65
3017
+ 0.65
3018
+ 0.65
3019
+ 0.65
3020
+ 0.6
3021
+ 0.65
3022
+ 0.65
3023
+ 0.65
3024
+ 0.65
3025
+ 0.65
3026
+ 0.65
3027
+ 0.65
3028
+ 0.65
3029
+ 0.8
3030
+ 0.65
3031
+ 0.65
3032
+ 0.8
3033
+ 0.65
3034
+ 0.65
3035
+ 0.8
3036
+ 0.65
3037
+ 0.65
3038
+ 0.65
3039
+ 0.89
3040
+ 0.8
3041
+ 0.65
3042
+ 0.65
3043
+ 0.88
3044
+ 0.65
3045
+ 0.65
3046
+ 0.65
3047
+ 0.9
3048
+ 0.75
3049
+ 0.65
3050
+ 0.65
3051
+ 0.65
3052
+ 0.8
3053
+ 0.6
3054
+ 0.65
3055
+ 0.65
3056
+ 0.65
3057
+ 0.9
3058
+ 0.65
3059
+ 0.65
3060
+ 0.65
3061
+ 0.84
3062
+ 0.65
3063
+ 0.65
3064
+ 0.8
3065
+ 0.65
3066
+ 0.65
3067
+ 0.8
3068
+ 0.65
3069
+ 0.65
3070
+ 0.65
3071
+ 0.65
3072
+ 0.65
3073
+ 0.65
3074
+ 0.65
3075
+ 0.65
3076
+ 0.65
3077
+ 0.8
3078
+ 0.65
3079
+ 0.65
3080
+ 0.65
3081
+ 0.9
3082
+ 0.65
3083
+ 0.65
3084
+ 0.65
3085
+ 0.65
3086
+ 0.8
3087
+ 0.65
3088
+ 0.8
3089
+ 0.65
3090
+ 0.8
3091
+ 0.8
3092
+ 0.8
3093
+ 0.65
3094
+ 0.8
3095
+ 0.65
3096
+ 0.65
3097
+ 0.65
3098
+ 0.65
3099
+ 0.8
3100
+ 0.65
3101
+ 0.65
3102
+ 0.85
3103
+ 0.65
3104
+ 0.65
3105
+ 0.8
3106
+ 0.65
3107
+ 0.65
3108
+ 0.65
3109
+ 0.65
3110
+ 0.65
3111
+ 0.65
3112
+ 0.65
3113
+ 0.65
3114
+ 0.8
3115
+ 0.8
3116
+ 0.65
3117
+ 0.65
3118
+ 0.65
3119
+ 0.65
3120
+ 0.65
3121
+ 0.63
3122
+ 0.65
3123
+ 0.65
3124
+ 0.65
3125
+ 0.7
3126
+ 0.65
3127
+ 0.65
3128
+ 0.65
3129
+ 0.65
3130
+ 0.65
3131
+ 0.65
3132
+ 0.65
3133
+ 0.65
3134
+ 0.65
3135
+ 0.65
3136
+ 0.65
3137
+ 0.65
3138
+ 0.65
3139
+ 0.8
3140
+ 0.65
3141
+ 0.65
3142
+ 0.8
3143
+ 0.65
3144
+ 0.65
3145
+ 0.65
3146
+ 0.65
3147
+ 0.65
3148
+ 0.65
3149
+ 0.9
3150
+ 0.9
3151
+ 0.65
3152
+ 0.65
3153
+ 0.8
3154
+ 0.65
3155
+ 0.65
3156
+ 0.65
3157
+ 0.65
3158
+ 0.65
3159
+ 0.65
3160
+ 0.84
3161
+ 0.65
3162
+ 0.65
3163
+ 0.8
3164
+ 0.65
3165
+ 0.81
3166
+ 0.8
3167
+ 0.8
3168
+ 0.8
3169
+ 0.82
3170
+ 0.65
3171
+ 0.65
3172
+ 0.65
3173
+ 0.8
3174
+ 0.65
3175
+ 0.65
3176
+ 0.65
3177
+ 0.65
3178
+ 0.65
3179
+ 0.65
3180
+ 0.8
3181
+ 0.65
3182
+ 0.8
3183
+ 0.65
3184
+ 0.8
3185
+ 0.65
3186
+ 0.88
3187
+ 0.65
3188
+ 0.8
3189
+ 0.65
3190
+ 0.7
3191
+ 0.65
3192
+ 0.65
3193
+ 0.65
3194
+ 0.65
3195
+ 0.65
3196
+ 0.65
3197
+ 0.65
3198
+ 0.65
3199
+ 0.8
3200
+ 0.65
3201
+ 0.65
3202
+ 0.65
3203
+ 0.65
3204
+ 0.65
3205
+ 0.8
3206
+ 0.65
3207
+ 0.65
3208
+ 0.65
3209
+ 0.8
3210
+ 0.65
3211
+ 1
3212
+ 0.8
3213
+ 0.8
3214
+ 0.65
3215
+ 0.65
3216
+ 0.65
3217
+ 0.8
3218
+ 0.8
3219
+ 0.8
3220
+ 0.65
3221
+ 0.74
3222
+ 0.65
3223
+ 0.65
3224
+ 0.65
3225
+ 0.8
3226
+ 0.65
3227
+ 0.8
3228
+ 0.65
3229
+ 0.65
3230
+ 0.65
3231
+ 0.65
3232
+ 0.65
3233
+ 0.65
3234
+ 0.65
3235
+ 0.65
3236
+ 0.65
3237
+ 0.65
3238
+ 0.8
3239
+ 0.8
3240
+ 0.65
3241
+ 0.65
3242
+ 0.65
3243
+ 0.65
3244
+ 0.65
3245
+ 0.65
3246
+ 0.65
3247
+ 0.65
3248
+ 0.8
3249
+ 0.65
3250
+ 0.65
3251
+ 0.65
3252
+ 0.85
3253
+ 0.65
3254
+ 0.65
3255
+ 0.65
3256
+ 0.65
3257
+ 0.8
3258
+ 0.8
3259
+ 0.65
3260
+ 0.65
3261
+ 0.65
3262
+ 0.8
3263
+ 0.65
3264
+ 0.65
3265
+ 0.65
3266
+ 0.65
3267
+ 0.65
3268
+ 0.8
3269
+ 0.65
3270
+ 0.8
3271
+ 0.65
3272
+ 0.65
3273
+ 0.65
3274
+ 0.65
3275
+ 0.65
3276
+ 0.8
3277
+ 0.9
3278
+ 0.86
3279
+ 0.8
3280
+ 0.65
3281
+ 0.8
3282
+ 0.8
3283
+ 0.65
3284
+ 0.65
3285
+ 0.65
3286
+ 0.65
3287
+ 0.65
3288
+ 0.65
3289
+ 0.65
3290
+ 0.65
3291
+ 0.64
3292
+ 0.65
3293
+ 0.65
3294
+ 0.8
3295
+ 0.8
3296
+ 0.65
3297
+ 0.87
3298
+ 0.65
3299
+ 0.65
3300
+ 0.8
3301
+ 0.8
3302
+ 0.65
3303
+ 0.65
3304
+ 0.65
3305
+ 0.65
3306
+ 0.65
3307
+ 0.65
3308
+ 0.65
3309
+ 0.65
3310
+ 0.87
3311
+ 0.65
3312
+ 0.65
3313
+ 0.65
3314
+ 0.65
3315
+ 0.65
3316
+ 0.65
3317
+ 0.8
3318
+ 0.65
3319
+ 0.65
3320
+ 0.8
3321
+ 0.65
3322
+ 0.65
3323
+ 0.65
3324
+ 0.7
3325
+ 0.65
3326
+ 0.65
3327
+ 0.8
3328
+ 0.65
3329
+ 0.65
3330
+ 0.75
3331
+ 0.65
3332
+ 0.65
3333
+ 0.65
3334
+ 0.65
3335
+ 0.65
3336
+ 0.65
3337
+ 0.85
3338
+ 0.8
3339
+ 0.65
3340
+ 0.65
3341
+ 0.65
3342
+ 0.65
3343
+ 0.65
3344
+ 0.65
3345
+ 0.65
3346
+ 0.65
3347
+ 0.8
3348
+ 0.8
3349
+ 0.65
3350
+ 0.65
3351
+ 0.65
3352
+ 0.65
3353
+ 0.65
3354
+ 0.65
3355
+ 0.65
3356
+ 0.65
3357
+ 0.8
3358
+ 0.65
3359
+ 0.65
3360
+ 0.65
3361
+ 0.71
3362
+ 0.65
3363
+ 0.65
3364
+ 0.65
3365
+ 0.65
3366
+ 0.65
3367
+ 0.65
3368
+ 0.65
3369
+ 0.65
3370
+ 0.65
3371
+ 0.65
3372
+ 0.65
3373
+ 0.65
3374
+ 0.8
3375
+ 0.65
3376
+ 0.65
3377
+ 0.65
3378
+ 0.73
3379
+ 0.65
3380
+ 0.65
3381
+ 0.8
3382
+ 0.65
3383
+ 0.65
3384
+ 0.65
3385
+ 0.65
3386
+ 0.8
3387
+ 0.8
3388
+ 0.65
3389
+ 0.65
3390
+ 0.8
3391
+ 0.65
3392
+ 0.65
3393
+ 0.65
3394
+ 0.65
3395
+ 0.9
3396
+ 0.65
3397
+ 0.65
3398
+ 0.8
3399
+ 0.65
3400
+ 0.86
3401
+ 0.65
3402
+ 0.65
3403
+ 0.65
3404
+ 0.65
3405
+ 0.9
3406
+ 0.65
3407
+ 0.65
3408
+ 0.65
3409
+ 0.65
3410
+ 0.65
3411
+ 0.65
3412
+ 0.8
3413
+ 0.75
3414
+ 0.65
3415
+ 0.8
3416
+ 0.65
3417
+ 0.65
3418
+ 0.65
3419
+ 0.65
3420
+ 0.65
3421
+ 0.65
3422
+ 0.65
3423
+ 0.65
3424
+ 0.65
3425
+ 0.8
3426
+ 0.65
3427
+ 0.65
3428
+ 0.65
3429
+ 0.65
3430
+ 0.65
3431
+ 0.65
3432
+ 0.65
3433
+ 0.65
3434
+ 0.65
3435
+ 0.65
3436
+ 0.65
3437
+ 0.8
3438
+ 0.88
3439
+ 0.65
3440
+ 0.8
3441
+ 0.65
3442
+ 0.8
3443
+ 0.65
3444
+ 0.65
3445
+ 0.65
3446
+ 0.9
3447
+ 0.65
3448
+ 0.65
3449
+ 0.65
3450
+ 0.65
3451
+ 0.65
3452
+ 0.8
3453
+ 0.65
3454
+ 0.8
3455
+ 0.65
3456
+ 0.65
3457
+ 0.65
3458
+ 0.65
3459
+ 0.65
3460
+ 0.81
3461
+ 0.65
3462
+ 0.65
3463
+ 0.8
3464
+ 0.65
3465
+ 0.65
3466
+ 0.9
3467
+ 0.8
3468
+ 0.65
3469
+ 0.65
3470
+ 0.65
3471
+ 0.8
3472
+ 0.65
3473
+ 0.65
3474
+ 0.65
3475
+ 0.65
3476
+ 0.65
3477
+ 0.65
3478
+ 0.65
3479
+ 0.65
3480
+ 0.8
3481
+ 0.9
3482
+ 0.65
3483
+ 0.65
3484
+ 0.65
3485
+ 0.65
3486
+ 0.7
3487
+ 0.65
3488
+ 0.65
3489
+ 0.65
3490
+ 0.8
3491
+ 0.65
3492
+ 0.65
3493
+ 0.65
3494
+ 0.65
3495
+ 0.65
3496
+ 0.65
3497
+ 0.65
3498
+ 0.65
3499
+ 0.65
3500
+ 0.65
3501
+ 0.65
3502
+ 0.77
3503
+ 0.65
3504
+ 0.65
3505
+ 0.65
3506
+ 0.65
3507
+ 0.65
3508
+ 0.85
3509
+ 0.65
3510
+ 0.65
3511
+ 0.65
3512
+ 0.65
3513
+ 0.65
3514
+ 0.65
3515
+ 0.65
3516
+ 0.65
3517
+ 0.65
3518
+ 0.65
3519
+ 0.8
3520
+ 0.65
3521
+ 0.65
3522
+ 0.87
3523
+ 0.65
3524
+ 0.65
3525
+ 0.65
3526
+ 0.65
3527
+ 0.65
3528
+ 0.65
3529
+ 0.65
3530
+ 0.65
3531
+ 0.65
3532
+ 0.65
3533
+ 0.65
3534
+ 0.8
3535
+ 0.8
3536
+ 0.65
3537
+ 0.65
3538
+ 0.8
3539
+ 0.65
3540
+ 0.65
3541
+ 0.65
3542
+ 0.65
3543
+ 0.65
3544
+ 0.65
3545
+ 0.65
3546
+ 0.65
3547
+ 0.9
3548
+ 0.65
3549
+ 0.65
3550
+ 0.65
3551
+ 0.65
3552
+ 0.8
3553
+ 0.65
3554
+ 0.65
3555
+ 0.65
3556
+ 0.65
3557
+ 0.65
3558
+ 0.65
3559
+ 0.65
3560
+ 0.8
3561
+ 0.65
3562
+ 0.8
3563
+ 0.65
3564
+ 0.65
3565
+ 0.65
3566
+ 0.65
3567
+ 0.65
3568
+ 0.65
3569
+ 0.8
3570
+ 0.65
3571
+ 0.65
3572
+ 0.65
3573
+ 0.65
3574
+ 0.65
3575
+ 0.65
3576
+ 0.65
3577
+ 0.65
3578
+ 0.57
3579
+ 0.65
3580
+ 0.65
3581
+ 0.8
3582
+ 0.65
3583
+ 0.65
3584
+ 0.8
3585
+ 0.8
3586
+ 0.65
3587
+ 0.65
3588
+ 0.65
3589
+ 0.65
3590
+ 0.76
3591
+ 1
3592
+ 0.8
3593
+ 0.65
3594
+ 0.65
3595
+ 0.58
3596
+ 0.8
3597
+ 0.65
3598
+ 0.65
3599
+ 0.65
3600
+ 0.65
3601
+ 0.65
3602
+ 0.8
3603
+ 1
3604
+ 0.65
3605
+ 0.8
3606
+ 0.65
3607
+ 0.65
3608
+ 0.65
3609
+ 0.8
3610
+ 0.65
3611
+ 0.9
3612
+ 0.65
3613
+ 0.65
3614
+ 0.65
3615
+ 0.65
3616
+ 0.65
3617
+ 0.65
3618
+ 0.65
3619
+ 0.87
3620
+ 0.8
3621
+ 0.9
3622
+ 0.8
3623
+ 0.8
3624
+ 0.65
3625
+ 0.65
3626
+ 0.65
3627
+ 0.65
3628
+ 0.65
3629
+ 0.65
3630
+ 0.8
3631
+ 0.65
3632
+ 0.65
3633
+ 0.65
3634
+ 0.65
3635
+ 0.8
3636
+ 0.65
3637
+ 0.65
3638
+ 0.8
3639
+ 0.65
3640
+ 0.65
3641
+ 0.65
3642
+ 0.8
3643
+ 0.65
3644
+ 0.65
3645
+ 0.65
3646
+ 0.65
3647
+ 0.65
3648
+ 0.65
3649
+ 0.65
3650
+ 0.65
3651
+ 0.65
3652
+ 0.65
3653
+ 0.8
3654
+ 0.65
3655
+ 0.8
3656
+ 0.65
3657
+ 0.65
3658
+ 0.65
3659
+ 0.65
3660
+ 0.8
3661
+ 0.65
3662
+ 0.65
3663
+ 0.65
3664
+ 0.8
3665
+ 0.65
3666
+ 0.65
3667
+ 0.65
3668
+ 0.65
3669
+ 0.65
3670
+ 0.65
3671
+ 0.87
3672
+ 0.68
3673
+ 0.8
3674
+ 0.65
3675
+ 0.65
3676
+ 0.65
3677
+ 0.65
3678
+ 0.8
3679
+ 0.65
3680
+ 0.65
3681
+ 0.65
3682
+ 0.65
3683
+ 0.65
3684
+ 0.8
3685
+ 0.65
3686
+ 0.65
3687
+ 0.65
3688
+ 0.65
3689
+ 0.65
3690
+ 0.65
3691
+ 0.8
3692
+ 0.65
3693
+ 0.65
3694
+ 0.65
3695
+ 0.99
3696
+ 0.8
3697
+ 0.77
3698
+ 0.65
3699
+ 0.9
3700
+ 0.65
3701
+ 0.65
3702
+ 0.88
3703
+ 0.65
3704
+ 0.65
3705
+ 0.65
3706
+ 0.65
3707
+ 0.9
3708
+ 0.65
3709
+ 0.88
3710
+ 0.65
3711
+ 0.65
3712
+ 0.65
3713
+ 0.65
3714
+ 0.65
3715
+ 0.65
3716
+ 0.89
3717
+ 0.65
3718
+ 0.65
3719
+ 0.8
3720
+ 0.8
3721
+ 0.65
3722
+ 0.7
3723
+ 0.65
3724
+ 0.65
3725
+ 0.8
3726
+ 0.9
3727
+ 0.65
3728
+ 0.65
3729
+ 0.65
3730
+ 0.8
3731
+ 0.65
3732
+ 0.65
3733
+ 0.8
3734
+ 0.8
3735
+ 0.65
3736
+ 0.65
3737
+ 0.65
3738
+ 0.8
3739
+ 0.65
3740
+ 0.65
3741
+ 0.65
3742
+ 0.65
3743
+ 0.65
3744
+ 0.65
3745
+ 0.65
3746
+ 0.8
3747
+ 0.8
3748
+ 0.8
3749
+ 0.65
3750
+ 0.77
3751
+ 0.65
3752
+ 0.65
3753
+ 0.65
3754
+ 0.65
3755
+ 0.79
3756
+ 0.65
3757
+ 0.65
3758
+ 0.65
3759
+ 0.65
3760
+ 0.65
3761
+ 0.8
3762
+ 0.65
3763
+ 0.65
3764
+ 0.65
3765
+ 0.65
3766
+ 0.8
3767
+ 0.65
3768
+ 0.65
3769
+ 0.65
3770
+ 0.65
3771
+ 0.65
3772
+ 0.65
3773
+ 0.65
3774
+ 0.65
3775
+ 0.65
3776
+ 0.65
3777
+ 0.65
3778
+ 0.8
3779
+ 0.65
3780
+ 0.65
3781
+ 0.65
3782
+ 0.8
3783
+ 0.65
3784
+ 0.8
3785
+ 0.65
3786
+ 0.65
3787
+ 0.65
3788
+ 0.65
3789
+ 0.65
3790
+ 0.8
3791
+ 0.8
3792
+ 0.65
3793
+ 0.65
3794
+ 0.65
3795
+ 0.85
3796
+ 0.65
3797
+ 0.65
3798
+ 0.65
3799
+ 0.65
3800
+ 0.65
3801
+ 0.65
3802
+ 0.52
3803
+ 0.65
3804
+ 0.65
3805
+ 0.8
3806
+ 0.65
3807
+ 0.65
3808
+ 0.65
3809
+ 0.65
3810
+ 0.65
3811
+ 0.65
3812
+ 0.8
3813
+ 0.65
3814
+ 0.65
3815
+ 0.65
3816
+ 0.65
3817
+ 0.65
3818
+ 0.65
3819
+ 0.65
3820
+ 0.8
3821
+ 0.65
3822
+ 0.86
3823
+ 0.65
3824
+ 0.65
3825
+ 0.8
3826
+ 0.56
3827
+ 0.65
3828
+ 0.65
3829
+ 0.65
3830
+ 0.8
3831
+ 0.65
3832
+ 0.8
3833
+ 0.8
3834
+ 0.65
3835
+ 0.65
3836
+ 0.65
3837
+ 0.65
3838
+ 0.65
3839
+ 0.65
3840
+ 0.65
3841
+ 0.8
3842
+ 0.65
3843
+ 0.65
3844
+ 0.65
3845
+ 0.65
3846
+ 0.72
3847
+ 0.65
3848
+ 0.65
3849
+ 0.65
3850
+ 0.8
3851
+ 0.8
3852
+ 0.65
3853
+ 0.9
3854
+ 0.65
3855
+ 0.65
3856
+ 0.8
3857
+ 0.65
3858
+ 0.8
3859
+ 0.6
3860
+ 0.65
3861
+ 0.65
3862
+ 0.65
3863
+ 0.8
3864
+ 0.65
3865
+ 0.65
3866
+ 0.65
3867
+ 0.8
3868
+ 0.65
3869
+ 0.88
3870
+ 0.65
3871
+ 0.65
3872
+ 0.65
3873
+ 0.65
3874
+ 0.8
3875
+ 0.65
3876
+ 0.65
3877
+ 0.89
3878
+ 0.85
3879
+ 0.65
3880
+ 0.65
3881
+ 0.65
3882
+ 0.65
3883
+ 0.65
3884
+ 0.65
3885
+ 0.65
3886
+ 0.87
3887
+ 0.65
3888
+ 0.65
3889
+ 0.65
3890
+ 0.65
3891
+ 0.65
3892
+ 0.65
3893
+ 0.8
3894
+ 0.65
3895
+ 0.8
3896
+ 0.65
3897
+ 0.65
3898
+ 0.65
3899
+ 0.65
3900
+ 0.65
3901
+ 0.65
3902
+ 0.65
3903
+ 0.65
3904
+ 0.65
3905
+ 0.75
3906
+ 0.65
3907
+ 0.65
3908
+ 0.65
3909
+ 0.65
3910
+ 0.54
3911
+ 1
3912
+ 0.65
3913
+ 0.65
3914
+ 0.75
3915
+ 0.65
3916
+ 0.75
3917
+ 0.65
3918
+ 0.65
3919
+ 0.65
3920
+ 0.8
3921
+ 0.65
3922
+ 0.65
3923
+ 0.8
3924
+ 0.65
3925
+ 0.65
3926
+ 0.8
3927
+ 0.65
3928
+ 0.65
3929
+ 0.65
3930
+ 0.65
3931
+ 0.65
3932
+ 0.65
3933
+ 0.65
3934
+ 0.9
3935
+ 0.9
3936
+ 0.62
3937
+ 0.65
3938
+ 0.65
3939
+ 0.65
3940
+ 0.65
3941
+ 0.86
3942
+ 0.65
3943
+ 0.65
3944
+ 0.65
3945
+ 0.65
3946
+ 0.65
3947
+ 0.65
3948
+ 0.65
3949
+ 0.65
3950
+ 0.65
3951
+ 0.65
3952
+ 0.65
3953
+ 0.65
3954
+ 0.8
3955
+ 0.65
3956
+ 0.8
3957
+ 0.8
3958
+ 0.65
3959
+ 0.8
3960
+ 0.65
3961
+ 0.65
3962
+ 0.65
3963
+ 0.65
3964
+ 0.65
3965
+ 0.65
3966
+ 0.65
3967
+ 0.8
3968
+ 0.65
3969
+ 0.82
3970
+ 0.65
3971
+ 0.65
3972
+ 0.65
3973
+ 0.65
3974
+ 0.65
3975
+ 0.65
3976
+ 0.65
3977
+ 0.65
3978
+ 0.8
3979
+ 0.65
3980
+ 0.65
3981
+ 0.65
3982
+ 0.9
3983
+ 0.74
3984
+ 0.8
3985
+ 0.65
3986
+ 0.8
3987
+ 0.8
3988
+ 0.7
3989
+ 0.65
3990
+ 0.65
3991
+ 0.65
3992
+ 0.89
3993
+ 0.65
3994
+ 0.65
3995
+ 0.8
3996
+ 0.8
3997
+ 0.8
3998
+ 0.8
3999
+ 0.65
4000
+ 0.8
4001
+ 0.65
4002
+ 0.65
4003
+ 0.65
4004
+ 0.9
4005
+ 0.65
4006
+ 0.65
4007
+ 0.65
4008
+ 0.8
4009
+ 0.8
4010
+ 0.84
4011
+ 0.8
4012
+ 0.65
4013
+ 0.65
4014
+ 0.8
4015
+ 0.75
4016
+ 0.65
4017
+ 0.65
4018
+ 0.65
4019
+ 0.89
4020
+ 0.65
4021
+ 0.65
4022
+ 0.65
4023
+ 0.65
4024
+ 0.82
4025
+ 0.65
4026
+ 0.65
4027
+ 0.65
4028
+ 0.8
4029
+ 0.65
4030
+ 0.8
4031
+ 0.65
4032
+ 0.8
4033
+ 0.65
4034
+ 0.65
4035
+ 0.65
4036
+ 0.84
4037
+ 0.65
4038
+ 0.65
4039
+ 0.65
4040
+ 0.65
4041
+ 0.65
4042
+ 0.65
4043
+ 0.65
4044
+ 0.65
4045
+ 0.8
4046
+ 0.65
4047
+ 0.65
4048
+ 0.65
4049
+ 0.65
4050
+ 0.8
4051
+ 0.8
4052
+ 0.8
4053
+ 0.65
4054
+ 0.65
4055
+ 0.65
4056
+ 0.65
4057
+ 0.65
4058
+ 0.65
4059
+ 0.65
4060
+ 0.65
4061
+ 0.65
4062
+ 0.65
4063
+ 0.65
4064
+ 0.65
4065
+ 0.65
4066
+ 0.65
4067
+ 0.8
4068
+ 0.65
4069
+ 0.8
4070
+ 0.65
4071
+ 0.8
4072
+ 0.65
4073
+ 0.7
4074
+ 0.65
4075
+ 0.65
4076
+ 0.65
4077
+ 0.65
4078
+ 0.65
4079
+ 0.65
4080
+ 0.65
4081
+ 0.65
4082
+ 0.9
4083
+ 0.65
4084
+ 0.65
4085
+ 0.8
4086
+ 0.65
4087
+ 0.65
4088
+ 0.65
4089
+ 0.65
4090
+ 0.65
4091
+ 0.65
4092
+ 0.8
4093
+ 0.65
4094
+ 0.65
4095
+ 0.65
4096
+ 0.65
4097
+ 0.65
4098
+ 0.65
4099
+ 0.8
4100
+ 0.74
4101
+ 0.65
4102
+ 0.8
4103
+ 0.65
4104
+ 0.65
4105
+ 0.65
4106
+ 0.9
4107
+ 0.65
4108
+ 0.65
4109
+ 0.65
4110
+ 0.65
4111
+ 0.85
4112
+ 0.65
4113
+ 0.9
4114
+ 0.9
4115
+ 0.65
4116
+ 0.65
4117
+ 0.65
4118
+ 0.63
4119
+ 0.82
4120
+ 0.65
4121
+ 0.65
4122
+ 0.8
4123
+ 0.65
4124
+ 0.65
4125
+ 0.65
4126
+ 0.65
4127
+ 0.65
4128
+ 0.65
4129
+ 0.8
4130
+ 0.65
4131
+ 0.65
4132
+ 0.8
4133
+ 0.65
4134
+ 0.65
4135
+ 0.8
4136
+ 0.65
4137
+ 0.65
4138
+ 0.65
4139
+ 0.65
4140
+ 0.65
4141
+ 0.65
4142
+ 0.65
4143
+ 0.65
4144
+ 0.8
4145
+ 0.65
4146
+ 0.65
4147
+ 0.65
4148
+ 0.65
4149
+ 0.8
4150
+ 0.7
4151
+ 0.65
4152
+ 0.65
4153
+ 0.65
4154
+ 0.65
4155
+ 0.65
4156
+ 0.9
4157
+ 0.65
4158
+ 0.65
4159
+ 0.74
4160
+ 0.9
4161
+ 0.65
4162
+ 0.8
4163
+ 0.65
4164
+ 0.65
4165
+ 0.58
4166
+ 0.65
4167
+ 0.65
4168
+ 0.65
4169
+ 0.65
4170
+ 0.65
4171
+ 0.65
4172
+ 0.89
4173
+ 0.75
4174
+ 0.65
4175
+ 0.65
4176
+ 0.8
4177
+ 0.65
4178
+ 0.65
4179
+ 0.88
4180
+ 0.65
4181
+ 0.65
4182
+ 0.65
4183
+ 0.8
4184
+ 0.65
4185
+ 0.65
4186
+ 0.65
4187
+ 0.65
4188
+ 0.65
4189
+ 0.65
4190
+ 0.65
4191
+ 0.89
4192
+ 0.65
4193
+ 0.65
4194
+ 0.65
4195
+ 0.65
4196
+ 0.65
4197
+ 0.65
4198
+ 0.65
4199
+ 0.65
4200
+ 0.65
4201
+ 0.65
4202
+ 0.65
4203
+ 0.65
4204
+ 0.8
4205
+ 0.8
4206
+ 0.8
4207
+ 0.65
4208
+ 0.65
4209
+ 0.8
4210
+ 0.8
4211
+ 0.65
4212
+ 0.65
4213
+ 0.87
4214
+ 0.65
4215
+ 0.65
4216
+ 0.65
4217
+ 0.8
4218
+ 0.65
4219
+ 0.64
4220
+ 0.65
4221
+ 0.65
4222
+ 0.65
4223
+ 0.8
4224
+ 0.87
4225
+ 0.65
4226
+ 0.65
4227
+ 0.8
4228
+ 0.9
4229
+ 0.65
4230
+ 0.65
4231
+ 0.65
4232
+ 0.65
4233
+ 0.8
4234
+ 0.8
4235
+ 0.65
4236
+ 0.89
4237
+ 0.65
4238
+ 0.65
4239
+ 0.65
4240
+ 0.65
4241
+ 0.65
4242
+ 0.65
4243
+ 0.8
4244
+ 0.65
4245
+ 0.65
4246
+ 0.65
4247
+ 0.83
4248
+ 0.65
4249
+ 0.65
4250
+ 0.8
4251
+ 0.65
4252
+ 0.9
4253
+ 0.65
4254
+ 0.8
4255
+ 0.8
4256
+ 0.65
4257
+ 0.65
4258
+ 0.65
4259
+ 0.65
4260
+ 0.65
4261
+ 0.65
4262
+ 0.8
4263
+ 0.65
4264
+ 0.65
4265
+ 0.65
4266
+ 0.65
4267
+ 0.65
4268
+ 0.65
4269
+ 0.65
4270
+ 0.65
4271
+ 0.65
4272
+ 0.65
4273
+ 0.78
4274
+ 0.65
4275
+ 0.8
4276
+ 0.65
4277
+ 0.9
4278
+ 0.65
4279
+ 0.8
4280
+ 0.65
4281
+ 0.65
4282
+ 0.65
4283
+ 0.65
4284
+ 0.65
4285
+ 0.9
4286
+ 0.65
4287
+ 0.88
4288
+ 0.8
4289
+ 0.65
4290
+ 0.65
4291
+ 0.65
4292
+ 0.81
4293
+ 0.65
4294
+ 0.65
4295
+ 0.65
4296
+ 0.65
4297
+ 0.65
4298
+ 0.65
4299
+ 0.65
4300
+ 0.65
4301
+ 0.65
4302
+ 0.65
4303
+ 0.65
4304
+ 0.65
4305
+ 0.65
4306
+ 0.65
4307
+ 0.8
4308
+ 0.65
4309
+ 0.65
4310
+ 0.65
4311
+ 0.65
4312
+ 0.77
4313
+ 0.65
4314
+ 0.65
4315
+ 0.65
4316
+ 0.8
4317
+ 0.8
4318
+ 0.8
4319
+ 0.8
4320
+ 0.65
4321
+ 0.65
4322
+ 0.65
4323
+ 1
4324
+ 0.65
4325
+ 0.65
4326
+ 0.65
4327
+ 0.8
4328
+ 0.65
4329
+ 0.65
4330
+ 0.8
4331
+ 0.65
4332
+ 0.65
4333
+ 0.8
4334
+ 0.85
4335
+ 0.65
4336
+ 0.65
4337
+ 0.8
4338
+ 0.8
4339
+ 0.65
4340
+ 0.65
4341
+ 0.65
4342
+ 0.8
4343
+ 0.65
4344
+ 0.65
4345
+ 0.65
4346
+ 0.88
4347
+ 0.65
4348
+ 0.65
4349
+ 0.65
4350
+ 0.65
4351
+ 0.8
4352
+ 0.65
4353
+ 0.65
4354
+ 0.65
4355
+ 0.65
4356
+ 0.8
4357
+ 0.65
4358
+ 0.8
4359
+ 0.65
4360
+ 0.65
4361
+ 0.65
4362
+ 0.8
4363
+ 0.8
4364
+ 0.8
4365
+ 0.65
4366
+ 0.65
4367
+ 0.65
4368
+ 0.65
4369
+ 0.68
4370
+ 0.65
4371
+ 0.65
4372
+ 0.65
4373
+ 0.65
4374
+ 0.65
4375
+ 0.65
4376
+ 0.89
4377
+ 0.65
4378
+ 0.65
4379
+ 0.65
4380
+ 0.65
4381
+ 0.65
4382
+ 0.65
4383
+ 0.65
4384
+ 0.65
4385
+ 0.65
4386
+ 0.65
4387
+ 0.65
4388
+ 0.65
4389
+ 0.65
4390
+ 0.8
4391
+ 0.65
4392
+ 0.65
4393
+ 0.65
4394
+ 0.8
4395
+ 0.9
4396
+ 0.65
4397
+ 0.8
4398
+ 0.65
4399
+ 0.8
4400
+ 0.65
4401
+ 0.65
4402
+ 0.65
4403
+ 0.65
4404
+ 0.65
4405
+ 0.65
4406
+ 0.65
4407
+ 0.81
4408
+ 0.65
4409
+ 0.65
4410
+ 0.65
4411
+ 0.8
4412
+ 0.85
4413
+ 0.65
4414
+ 0.77
4415
+ 0.65
4416
+ 0.8
4417
+ 0.65
4418
+ 0.65
4419
+ 0.65
4420
+ 0.65
4421
+ 0.65
4422
+ 0.65
4423
+ 0.65
4424
+ 0.65
4425
+ 0.65
4426
+ 0.65
4427
+ 0.65
4428
+ 0.8
4429
+ 0.8
4430
+ 0.8
4431
+ 0.9
4432
+ 0.65
4433
+ 0.65
4434
+ 0.89
4435
+ 0.65
4436
+ 0.65
4437
+ 0.8
4438
+ 0.65
4439
+ 0.65
4440
+ 0.8
4441
+ 0.8
4442
+ 0.65
4443
+ 0.65
4444
+ 0.65
4445
+ 0.88
4446
+ 0.8
4447
+ 0.65
4448
+ 0.8
4449
+ 0.65
4450
+ 0.65
4451
+ 0.65
4452
+ 0.65
4453
+ 0.65
4454
+ 0.65
4455
+ 0.8
4456
+ 0.65
4457
+ 0.65
4458
+ 0.8
4459
+ 0.65
4460
+ 0.65
4461
+ 0.65
4462
+ 0.65
4463
+ 0.65
4464
+ 0.8
4465
+ 0.65
4466
+ 0.65
4467
+ 0.65
4468
+ 0.65
4469
+ 0.65
4470
+ 0.65
4471
+ 0.82
4472
+ 0.65
4473
+ 0.8
4474
+ 0.74
4475
+ 0.65
4476
+ 0.65
4477
+ 0.65
4478
+ 0.65
4479
+ 0.65
4480
+ 0.65
4481
+ 0.85
4482
+ 0.65
4483
+ 0.65
4484
+ 0.85
4485
+ 0.65
4486
+ 0.65
4487
+ 0.65
4488
+ 0.65
4489
+ 0.7
4490
+ 0.7
4491
+ 0.8
4492
+ 0.65
4493
+ 0.65
4494
+ 0.65
4495
+ 0.65
4496
+ 0.87
4497
+ 0.8
4498
+ 0.65
4499
+ 0.65
4500
+ 0.65
4501
+ 0.89
4502
+ 0.85
4503
+ 0.65
4504
+ 0.65
4505
+ 0.65
4506
+ 0.8
4507
+ 0.65
4508
+ 0.65
4509
+ 0.65
4510
+ 0.65
4511
+ 0.65
4512
+ 0.65
4513
+ 0.65
4514
+ 0.65
4515
+ 0.65
4516
+ 0.65
4517
+ 0.65
4518
+ 0.65
4519
+ 0.65
4520
+ 0.8
4521
+ 0.7
4522
+ 0.65
4523
+ 0.65
4524
+ 0.65
4525
+ 0.65
4526
+ 0.65
4527
+ 0.8
4528
+ 0.65
4529
+ 0.65
4530
+ 0.65
4531
+ 0.65
4532
+ 0.9
4533
+ 0.8
4534
+ 0.8
4535
+ 0.65
4536
+ 0.66
4537
+ 0.57
4538
+ 0.65
4539
+ 0.65
4540
+ 0.65
4541
+ 0.49
4542
+ 0.65
4543
+ 0.65
4544
+ 0.8
4545
+ 0.65
4546
+ 0.65
4547
+ 0.8
4548
+ 0.65
4549
+ 0.65
4550
+ 0.8
4551
+ 0.65
4552
+ 0.65
4553
+ 0.65
4554
+ 0.8
4555
+ 0.65
4556
+ 0.65
4557
+ 0.65
4558
+ 0.65
4559
+ 0.65
4560
+ 0.65
4561
+ 0.8
4562
+ 0.65
4563
+ 0.65
4564
+ 0.65
4565
+ 0.65
4566
+ 0.8
4567
+ 0.65
4568
+ 0.8
4569
+ 0.8
4570
+ 0.86
4571
+ 0.65
4572
+ 0.65
4573
+ 0.65
4574
+ 0.65
4575
+ 0.65
4576
+ 0.65
4577
+ 0.65
4578
+ 0.89
4579
+ 0.65
4580
+ 0.65
4581
+ 0.65
4582
+ 0.65
4583
+ 0.65
4584
+ 0.65
4585
+ 0.76
resources/word_vocabulary_english.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ 3D glasses,abacus,abalone,monastery,belly,accordion,acorn,acrylic paint,adhesive tape,antenna,spray can,afro,air conditioner,air sock,aircraft cabin,aircraft model,air field,airport,airliner,airman,pilot,plane,airplane window,air field,airport,airport runway,airport terminal,airship,airshow,aisle,alarm clock,mollymawk,album,album cover,alcohol,alcove,algae,alley,almond,aloe vera,alp,alpaca,alphabet,german shepherd,altar,amber,ambulance,bald eagle,vulture,American shorthair,amethyst,amphitheater,amplifier,megaphone,amusement park,anchor,anemone,angel,angle,animal sculpture,animal shelter,ankle,anklet,sock,trench coat,ant,antelope,antique,antler,anvil,apartment,ape,appetizer,apple,apple juice,apple pie,apple tree,applesauce,apricot,apron,aquarium,aquarium fish,aqueduct,arcade,arcade machine,arch,archway,arch bridge,archery,architect,archive,arch,archway,arena,arm,armadillo,armband,armchair,armoire,armor,army,army base,army tank,arrow,art exhibition,art gallery,gallery,art school,artichoke,artists loft,ash,ashtray,asia temple,asparagus,asphalt road,assembly line,astronaut,astronomer,athlete,atlas,atm,atmosphere,atrium,fighter jet,atv,eggplant,auction,audi,auditorium,hall,aurora,auto factory,auto mechanic,auto part,auto show,car show,auto showroom,car battery,automobile model,model car,motor vehicle,avatar,avenue,aviator sunglasses,avocado,shed,ax,azalea,baboon,baby,baby bottle,baby carriage,baby clothe,baby elephant,baby food,baby seat,baby shower,backpack,backyard,bacon,badge,badger,badlands,badminton,badminton racket,bag,bagel,bagpipe,baguette,bait,baked goods,baker,bakery,baking,baking sheet,balance,balance car,balcony,terrace,ball,sphere,ball pit,ballerina,ballet dancer,ballet skirt,balloon,balloon arch,baseball player,ballroom,bamboo,bamboo forest,banana,banana bread,banana leaf,banana tree,band,band aid,bandage,headscarf,bandeau,bangs,bracelet,balustrade,banjo,bank,bank card,bank vault,banknote,banner,banquet hall,banyan tree,baozi,bar,bar code,bar stool,barbecue,barbecue grill,grill,barbell,barber,barber shop,barbie,barge,barista,bark,barley,barn,barn owl,barn door,barrel,barricade,barrier,handcart,cart,bartender,baseball,baseball base,baseball bat,baseball hat,baseball stadium,baseball glove,baseball pitcher,baseball team,baseball uniform,basement,basil,basin,basket,basket container,basketball,basketball backboard,basketball coach,basketball court,basketball game,basketball hoop,basketball player,basketball stadium,basketball team,bass,bass guitar,bass horn,bassist,bat,bath,bathroom,bath heater,bath mat,bath towel,swimwear,bathrobe,bath,bathroom,bathroom accessory,bathroom cabinet,bathroom door,bathroom mirror,bathroom sink,toilet paper,bathroom window,batman,wand,batter,battery,battle,battle rope,battleship,bay,gulf,bay bridge,bay window,bayberry,bazaar,fair,market,beach,beach ball,beach chair,beach house,beach hut,beach towel,beach volleyball,lighthouse,bead,beagle,beak,beaker,beam,bean,bean bag chair,beanbag,bear,bear cub,beard,beast,beauty salon,beaver,bed,bedcover,sheet,bed frame,bedroom,bedding,bedpan,bedroom window,bedside lamp,bee,beech tree,beef,beekeeper,beeper,beer,beer bottle,beer can,beer garden,beer glass,beer hall,beet,beetle,clock,bell pepper,bell tower,belt,leash,belt buckle,bench,bend,bengal tiger,bento,beret,berry,berth,beverage,bib,bibimbap,bible,bichon,bicycle,cycle,bicycle helmet,bicycle wheel,biker,bidet,big ben,bike lane,bike path,bike racing,bike ride,bikini,bikini top,bill,billard,billboard,billiard table,bin,binder,binocular,biology laboratory,biplane,birch,birch tree,bird bath,birdbath,bird feeder,bird house,bird nest,bird bath,birdbath,bird cage,birthday cake,birthday candle,birthday card,biscuit,bison,bit,broach,black sheep,blackberry,blackbird,crow,raven,blackboard,blacksmith,blade,blanket,sports coat,bleacher,blender,mixer,blind,curtain,eye mask,blood,blossom,flower,blouse,hair drier,blowfish,blue jay,blue sky,blueberry,bluebird,pig,board,board eraser,boardwalk,boat,vessel,boat deck,boat house,paddle,oar,bobfloat,buoy,bobcat,body,bodyboard,boiled egg,boiler,bolo tie,bolt,latch,bomb,bomber,bonasa umbellu,bone,bonfire,campfire,bonnet,bonsai,book,book cover,bookcase,folder,bookmark,bookshelf,bookstore,boom microphone,boot,Border collie,botanical garden,bottle,shaker,bottle cap,bottle opener,bottle screw,bougainvillea,boulder,bouquet,bow,bow tie,bow window,bowl,bowling alley,bowling ball,bowling equipment,box,box girder bridge,box turtle,underdrawers,boxing glove,boxing ring,brace,bracket,braid,pigtail,brain,brake light,branch,tree branch,brandy,brass,brass plaque,bread,breadbox,seawall,brewery,brick,brickwork,wall,brick,brickwork,wedding dress,bridge,bridle,briefcase,bit,broach,broccoli,bronze,bronze medal,bronze sculpture,bronze statue,brooch,creek,broom,broth,brown bear,brownie,chocolate cake,brush,coyote,brussels sprout,bubble,bubble gum,bubble tea,bucket cabinet,shield,bud,buffalo,water buffalo,bug,insect,building block,lamp,bull,cattle,bulldog,pitbull,bullet,bullet train,bulletin board,bulletproof vest,amplifier,megaphone,bumblebee,hornet,bumper,bunk bed,bunker,bunny,rabbit,bobfloat,buoy,bureau,burial chamber,burrito,bus,bus window,bush,shrub,business card,business suit,bust,butte,butter,cream,butterfly,butterfly house,button,buttonwood,taxi,cabbage,cabinet,cabinetry,cable,cable car,cactus,cage,cake,cake stand,calculator,caldron,calendar,calf,camcorder,video camera,camel,camera,camera lens,bonfire,campfire,can,can opener,canary,candle,candle holder,candy,candy bar,candy cane,candy store,cane,crutch,jar,cannon,canopy,canopy bed,cantaloupe,melon,cantilever bridge,canvas,canyon,ravine,cap,hat,cape,cloak,cape cod,cappuccino,capsule,car,car door,car logo,car mirror,rearview mirror,car seat,car window,caramel,card,cardboard,cardboard box,cardigan,cardinal,cargo,cargo aircraft,cargo ship,carnation,carousel,carp,carpet,slipper,house finch,coach,dalmatian,aircraft carrier,carrot,carrot cake,handcart,cart,carton,cash,cashew,casserole,cassette,cassette deck,plaster bandage,cat,cat bed,cat food,cat tree,catamaran,catamount,mountain lion,caterpillar,catfish,cathedral,church,bull,cattle,cauliflower,cave,grotto,caviar,CD,CD player,cedar,ceiling,ceiling fan,celery,cello,smartphone,cement,centipede,ceramic,ceramic tile,cereal,certificate,chain,chain saw,chair,chairlift,daybed,chalet,chalice,chalk,champagne,champagne flute,chandelier,droplight,changing table,charcoal,charger,chariot,graph,chassis,check,checkbook,chessboard,checklist,cheese,cheeseburger,cheesecake,cheetah,cheongsam,cherry,cherry blossom,cherry tomato,cherry tree,chess,chestnut,chicken,chicken breast,chicken coop,chicken salad,chicken wing,garbanzo,chiffonier,chihuahua,chile,chili dog,chimney,chimpanzee,chinaware,chinese cabbage,chinese knot,chinese rose,chinese tower,chip,chipmunk,chisel,chocolate,chocolate bar,brownie,chocolate cake,chocolate chip,chocolate chip cookie,chocolate milk,chocolate mousse,truffle,kitchen knife,cutting board,chopstick,christmas ball,christmas card,christmas hat,christmas light,christmas tree,chrysanthemum,church tower,cider,cigar,cigar box,cigarette,cigarette case,waistband,cinnamon,circuit board,water tank,clam,clarinet,clasp,claw,paw,clay,pottery,cleaning product,cleat,clementine,clip,clip art,clipper,clivia,cape,cloak,clogs,closet,cloth,clothespin,clothesline,clover,clown fish,clutch,clutch bag,coal,coat,coatrack,cob,corn,cock,cockatoo,cocker,roach,cocktail,cocktail dress,cocktail shaker,cocktail table,cocoa,coconut,coconut tree,coffee,coffee bean,coffee cup,coffee machine,coffee shop,coffeepot,coffin,cognac,coin,coke,colander,slaw,collage,sheepdog,crash,pony,pillar,comb,combination lock,comet,comic book,compass,computer,computer box,computer chair,computer desk,keyboard,computer monitor,computer room,computer screen,computer tower,concept car,conch,shell,concrete,condiment,condom,confetti,connector,container ship,contract,converter,transporter,cooking spray,cooker,cooler,copper,coral,coral reef,rope,corded phone,liquor,corgi,cork,corkboard,cormorant,cob,corn,cornbread,trumpet,cornmeal,oatmeal,corset,cosmetics brush,cosmetics mirror,infant bed,cotton,cotton candy,couch,counter,counter top,coupe,courgette,coverall,cow,cowboy boot,cowboy hat,crab,crabmeat,cradle,cranberry,crane,crape,crate,lobster,crayon,cream cheese,cream pitcher,credit card,croissant,cricket,cricket ball,crock pot,crocodile,crop top,crossbar,crouton,blackbird,crow,raven,crowbar,crown,tiara,crt screen,crucifix,cruise ship,cruiser,crumb,cane,crutch,crystal,cucumber,cue,cuff,cufflink,cup,cupcake,curl,hair roller,currant,curry,blind,curtain,pad,bicycle,cycle,cyclone,tornado,cylinder,cymbal,cypress,cypress tree,cypress,cypress tree,dachshund,daffodil,dagger,dahlia,daikon,daisy,dam,dandelion,dart,dartboard,dashboard,deadbolt,decanter,deck,decker bus,decorative picture,deer,denim jacket,derby,table,table lamp,desktop computer,dessert,detergent,dew,dial,diamond,diaper,diaper bag,journal,magazine,excavator,digital clock,dill,rowboat,dinning table,dinosaur,dirt bike,plate,dish antenna,dish washer,dishrag,dishsoap,dispenser,vending machine,diving board,paper cup,doberman,dog,dog bed,dog house,dog collar,dog food,dog bed,dog house,doll,dolly,dollar,doll,dolly,dolphin,domino,donkey,donut,door,door handle,doorplate,dough,dozer,dragon,dragonfly,drawing pin,dress hat,dress shirt,dress shoe,leather shoe,dress suit,dresser,driftwood,drill,drinking water,drone,chandelier,droplight,dropper,drum,drumstick,duck,duckbill,duckling,duct tape,canoe,dumbbell,dumpling,durian,dust,garbage truck,dustpan,duvet,DVD,dye,eagle,ear,earmuff,earphone,earplug,earring,easel,easter bunny,easter egg,eclair,puff,eel,egg,egg roll,egg tart,eggbeater,egret,elastic band,electric chair,electric drill,elephant,elevator,elevator car,elevator door,elevator shaft,ember,emblem,embroidery,emerald,emergency vehicle,side table,engagement ring,english shorthair,enter,envelope,equestrian,eraser,erhu,escalator,escargot,espresso,eucalyptus tree,evening dress,ewe,exhaust hood,extension cord,extinguisher,extractor,eye,eye shadow,eyebrow,eyeliner,fabric,face powder,face towel,towel,facial tissue holder,falcon,fan,fang,farm,faucet,fawn,feather,plume,fedora,catamount,mountain lion,fence,paling,fender,fern,ferret,ferris wheel,ferry,fiber,fiction book,fig,figurine,file photo,file cabinet,film camera,filter,strainer,fin,fir,fir tree,fire,fire alarm,fire truck,fire hose,firecracker,fireplace,firework,first-aid kit,fish,fish boat,fish pond,fishbowl,fisherman,fishing,fishing pole,fishing boat,fishing net,fishing,fishing pole,flag,national flag,flag pole,flame,flamingo,flask,flatfish,flea,flip-flop,flipchart,floor fan,floor mat,floor window,floss,flour,blossom,flower,flower basket,flower box,flower girl,flute,flyer,horse,foam,foie gra,foil,folding chair,leaf,fondant,hotpot,food processor,foosball,football,football helmet,footprint,footrest,footstall,footwear,fork,forklift,formal garden,formula 1,fossil,foundation,fountain,fountain pen,fox,lorry,truck,French bulldog,French fries,French toast,freshener,fridge,fried chicken,fried egg,fried rice,frisbee,frog,frost,frosting,fruit cake,fruit dish,fruit salad,fruit tree,frying pan,fudge,fuel,fume hood,fungi,funnel,fur,fur coat,futon,muzzle,game board,game controller,ham,garage,garage door,garage kit,garbage,garden asparagus,garden hose,garden spider,garfield,gargoyle,wreath,garlic,gas stove,gasmask,gauge,gazebo,gear,gecko,generator,geranium,gift bag,gift basket,gift box,gift card,gift shop,gift wrap,gig,gin,ginger,gingerbread,gingerbread house,ginkgo tree,giraffe,glass bead,glass bottle,glass bowl,glass box,glass door,glass floor,glass house,glass jar,glass plate,glass table,glass vase,glass wall,glass window,glasses,glider,earth,glove,glue pudding,goat,goat cheese,gobi,goggles,gold,gold medal,golden retriever,goldfish,golf cap,golf cart,golf club,golf course,goose,gorilla,gourd,grampus,granite,granola,grape,grapefruit,wine,grass,grasshopper,grater,gravel,gravestone,gravy,gravy boat,greeting card,greyhound,grid,griddle,barbecue grill,grill,grille,grilled eel,grinder,grits,grocery bag,ground squirrel,guacamole,guard dog,guinea pig,guitar,gull,gun,guzheng,hair,hair spray,hairbrush,haircut,hairstyle,hairgrip,hairpin,hairnet,hairgrip,hairpin,halloween pumpkin,halter top,hamburg,hamburger,hami melon,hammer,hammock,hamster,hand dryer,hand glass,magnifying glass,hand towel,handbag,handball,handcuff,handgun,handkerchief,handle,handsaw,hanfu,hanger,harbor seal,hardback book,hardwood,hardwood floor,mouth organ,pipe organ,harpsichord,harvester,hassock,cap,hat,hatbox,hautboy,hawthorn,hay,hazelnut,headlight,headboard,headdress,heart,heater,heather,hedge,hedgehog,helicopter,helmet,hen,henna,hermit crab,heron,hibiscus,hibiscus flower,high bar,high heel,hiking boot,hinge,hippo,hockey,hockey stick,hoe,holly,holothurian,hummus,honey,beehive,hood,hoodie,hornbill,horned cow,bumblebee,hornet,horse blanket,horse cart,horseback,horseshoe,hose,hospital bed,hot air balloon,hot dog,hot sauce,hotplate,hourglass,houseplant,hoverboard,hula hoop,humidifier,hummingbird,humpback whale,husky,hyaena,hydrangea,hydrant,seaplane,ice,ice bag,polar bear,icecream,ice cream cone,ice cube,ice floe,lollipop,ice maker,ice sculpture,ice shelf,skate,roller skates,icicle,icing,identity card,iguana,impala,indoor rower,induction cooker,inflatable boat,inhalator,ink,inking pad,insulated cup,ipad,tablet computer,iphone,ipod,iris,iron,ironing board,island,islet,ivory,ivy,jackcrab,jacket,jacuzzi,jade,jaguar,jam,jasmine,jay,jeans,jeep,jelly,jelly bean,jellyfish,jet,motorboat,jewel,jewellery,rickshaw,jockey cap,joystick,jug,juice,juicer,jujube,jumpsuit,kale,kaleidoscope,kangaroo,kayak,kebab,key,keycard,kilt,kimono,king crab,kit,kitchen cabinet,kitchen hood,kitchen sink,kitchen table,kitchen window,kite,kiwi,knee pad,knife,knit,knitting needle,knob,knocker,koala,koi,lab coat,label,labrador,lace dress,ladder,ladle,ladybird,lamb,lamb chop,lamp post,lamp shade,spear,land vehicle,lanyard,lantern,lap,laptop,laptop keyboard,lasagne,laser,lash,lasso,bolt,latch,latex,latte,laundry basket,laundry,laundry room,lavender,belt,leash,leather,leather jacket,dress shoe,leather shoe,leg,legging,lego,lemon,lemon juice,lemonade,lemur,lens,lentil,leopard,leotard,tights,leprechaun,letter,mailbox,lettuce,license plate,lichen,lid,life belt,seat belt,life jacket,lifeboat,lifeguard,light fixture,light show,light switch,lighting,lightning,lightning rod,lily,lime,limestone,limo,linen,liner,lion,lip balm,lipstick,liquid,litchi,lizard,lock,locker,longboard,surfboard,loom,lottery,lotus,loveseat,lumber,lunch box,luxury yacht,mac,raincoat,macadamia,macaque,macaroni,macaw,machete,machine,machine gun,journal,magazine,magnet,hand glass,magnifying glass,magnolia,magpie,mahjong,chain mail,mail slot,makeup tool,mallard,mallard duck,mallard,mallard duck,mallet,mammoth,manatee,mandala,mandarin orange,tangerine,mane,manga,manger,mango,mangosteen,manhole,manhole cover,mannequin,mantid,mantle,manuscript,map,maple,maple leaf,maple syrup,maraca,marble,mare,marigold,marine,puppet,martini,martini glass,mascara,mashed potato,masher,mask,massage,mast,mat,compete,contest,match,race,matchbox,material,mattress,maxi dress,measuring cup,measuring tape,meat,meatball,mechanical fan,medal,medicine cabinet,meerkat,cantaloupe,melon,monument,menu,mermaid,net,web,messenger bag,metal,metal detector,meter,microphone,microscope,microwave,military uniform,milk,milk can,milk tea,milkshake,mine,mineral,mineral water,miniature,minibus,minivan,mint,mint candy,mirror,mistletoe,blender,mixer,mixing bowl,hybrid,mixture,mobility scooter,automobile model,model car,mold,molding,mole,money,monitor,monkey,monkey wrench,monocycle,monster truck,moon,moon cake,moose,swab,moped,mortar,mosquito,moth,motor,motorbike,motorcycle,motorcycle helmet,mountain bike,mountain gorilla,mountaineering bag,mouse,mousepad,mousetrap,mouthwash,movie poster,movie ticket,mower,mp3 player,mud,muffin,mug,mulberry,mule,mural,mushroom,music stool,musical keyboard,mussel,mustard,nacho,nail polish,nailfile,napkin,flag,national flag,necklace,nectar,nectarine,neon,neon light,nest,nightstand,noodle,nose,snout,noseband,notebook,notepad,notepaper,notice,nut,nutcracker,oak,oak tree,paddle,oar,cornmeal,oatmeal,oats,octopus,office chair,office desk,office supply,oil,oil lamp,oil painting,oilrig,okra,olive,olive oil,olive tree,omelet,onion,onion ring,opal,orangutan,orange juice,orange tree,orchid,osprey,ostrich,otter,electric outlet,oven,overcoat,owl,oyster,teething ring,police van,police car,padlock,paella,pagoda,paint brush,paisley bandanna,fence,paling,pall,palm tree,pan,pancake,panda,panel,pants,pantyhose,papaya,paper,paper bag,paper cutter,paper lantern,paper plate,paper towel,tissue,paperback book,paperweight,parachute,parrot,paraquet,parasail,parchment,parking sign,stop sign,parsley,party hat,passbook,passenger ship,passenger train,passion fruit,passport,pasta,pastry,pavilion,claw,paw,pea,peach,peacock,peanut,peanut butter,pear,pearl,pebble,pecan,peel,peeler,pegboard,pegleg,pelican,pen,pencil,pencil case,pencil sharpener,sharpener,pencil skirt,pendant,pendulum,penguin,pennant,penny,piggy bank,peony,pepper,pepper grinder,peppercorn,pepperoni,perch,perfume,persian cat,persimmon,petal,pheasant,phone,phonebook,record player,photo,photo booth,photo frame,picture frame,piano,pickle,picnic basket,picnic table,photo frame,picture frame,pie,pigeon,tablet,pillow,pilot boat,pin,pine,pine cone,pine forest,pine nut,pineapple,table tennis table,table tennis,pipa,pipe,tube,pipe bowl,pirate,pirate flag,pirate ship,pistachio,pitaya,bulldog,pitbull,pitcher,pitcher plant,pitchfork,pizza,pizza cutter,pizza pan,place mat,planet,planet earth,plank,plant,plaque,plaster,plasticine,platter,playing card,playpen,plier,tong,tongs,plow,plug,plug hat,plum,feather,plume,plywood,pocket,pocket watch,pocketknife,pod,pointer,poker card,poker table,pole,polecat,police van,police car,police dog,pollen,polo,polo neck,polo shirt,pomegranate,poncho,poodle,popcorn,poppy,porcelain,pork,porridge,portable battery,porthole,possum,post,post office,stamp,postcard,poster,poster page,pot,potato,potato chip,potato salad,potholder,potty,pound,pour,powder,power line,power plugs and sockets,prescription,pressure cooker,pretzel,printer,projection screen,projector,propeller,protective suit,ice hockey,pudding,puddle,eclair,puff,puffin,pug,pump,pumpkin,squash,pumpkin pie,pumpkin seed,punch bag,tower,pyramid,python,qr code,quail,quartz,quesadilla,quiche,quilt,quilting,bunny,rabbit,raccoon,race track,race car,racket,radar,radiator,broadcasting,radio,raft,rag doll,rail,railcar,rain boot,rainbow trout,mac,raincoat,raisin,rake,ram,ramp,rapeseed,raspberry,rat,ratchet,blackbird,crow,raven,canyon,ravine,ray,thunder,razor,shaver,reamer,rear light,car mirror,rearview mirror,recorder,recreational vehicle,red carpet,red flag,red panda,red wine,redwood,reed,reef,reel,reflector,reindeer,remote,resin,retriever,retro,rhinoceros,rhododendron,rib,ribbon,rice,rice cooker,ridge,rifle,ring,road sign,street sign,roast chicken,robe,robin,robot,stone,rock arch,rocket,rocking chair,rocky,roe,roe deer,roller,coaster,roller skate,skate,roller skates,rolling pin,room divider,root,root beer,rosary,rose,rosemary,rottweiler,round table,router,rowan,royal,rubber stamp,rubik's cube,ruby,ruffle,rugby,rugby ball,ruler,rum,running shoe,rye,saddle,saddlebag,safety vest,sail,sailboat,squirrel monkey,salad,salad bowl,salamander,salami,salmon,salon,salt,salt and pepper shakers,salt shaker,sand,sand box,sand castle,sandal,sandwich,sanitary napkin,sapphire,sardine,sari,sashimi,satay,satchel,satellite,satin,sauce,saucer,sausage,saw,sawbuck,sax,scaffold,scale,scale model,scallop,strawman,scarf,schnauzer,school bus,school uniform,schooner,scissors,shears,wall lamp,scone,scoop,spoon,scooter,scoreboard,scorpion,scrambled egg,scraper,screen,screen door,screw,screwdriver,scroll,scrubbing brush,sculpture,sea ice,sea lion,sea turtle,sea urchin,seabass,seabird,seafood,seahorse,seal,sea view,seashell,seat,life belt,seat belt,seaweed,sedan,seed,seesaw,segway,sensor,sewing machine,shadow,shampoo,shark,pencil sharpener,sharpener,sharpie,razor,shaver,shaving cream,shawl,scissors,shears,sheep,bedcover,sheet,sheet music,shelf,conch,shell,shellfish,shelter,shelve,sherbert,shiba inu,shipping container,shirt,shoe,shoe box,shoe tree,shop window,shopping bag,shopping basket,shopping cart,shot glass,shotgun,shoulder bag,showcase,shower cap,shower curtain,shower door,shower head,shredder,shrimp,shutter,siamese,side cabinet,side dish,sidecar,sideline,siding,logo,mark,sign,signage,silk,silk stocking,silo,silver,silver medal,silverware,sing,skateboard,skeleton,ski boot,ski jacket,ski lift,ski pole,snowboard,ski,skier,skiing shoes,skullcap,sky tower,skylight,slate,sleigh,sleeping bag,sleepwear,sleeve,sling,slot,slot machine,sloth,slow cooker,slug,snail,snake,snapper,snorkel,snow leopard,snowball,snowman,snowmobile,snowplow,snowshoe,snow,snowy,soap,soap bubble,soap dispenser,anklet,sock,socket,soda,softball,solar battery,sombrero,soup,soup bowl,soupspoon,sour cream,souvenir,soybean milk,space shuttle,spacecraft,spaghetti,wrench,spark,sparkling wine,sparrow,spatula,speaker,speed limit,speed limit sign,speedboat,speedometer,ball,sphere,spice,spice rack,spider,spider web,spinach,spire,sponge,scoop,spoon,sports ball,sportswear,spring roll,sprinkler,pumpkin,squash,squid,squirrel,water gun,stage light,stagecoach,stair,stairs,stapler,star,starfish,starfruit,starling,stationary bicycle,statue,steak,steak knife,steam,steam engine,steam locomotive,steam train,steamed bread,steel,steering wheel,step stool,stethoscope,stick insect,sticker,still life,stilt,stingray,stirrer,whisk,stocking,stone carving,stone house,stone mill,stool,stop light,stop watch,traffic light,storage box,tank,stork,stove,poker,filter,strainer,straw,straw hat,strawberry,street dog,street light,road sign,street sign,stretcher,string,string cheese,strip,stuffed toy,stump,stylus,submarine,submarine sandwich,submarine water,succulent,suede,sugar,sugar bowl,sugar cane,sugar cube,suit,sun hat,sunbathe,sundial,sunflower,sunflower seed,sunglasses,sunshade,sports car,supermarket shelf,longboard,surfboard,sushi,suspenders,suspension,suspension bridge,suv,swallow,swallowtail butterfly,swan,swan boat,sweat pant,sweatband,sweater,sweatshirt,sweet potato,swim,swim cap,swimming hole,swing bridge,swinge,swirl,switch,swivel chair,sword,swordfish,syringe,syrup,t shirt,t-shirt,tabasco sauce,tabby,table tennis racket,desktop,table top,tablecloth,ipad,tablet computer,cutlery,tableware,tachometer,taco,tail,tambourine,mandarin orange,tangerine,tape,tapestry,tarmac,taro,tarp,tart,tassel,tatami,tea,tea bag,tea pot,tea set,teacup,teal,teddy,telegraph pole,telescope,television,television camera,television room,tempura,tennis,tennis net,tennis racket,tent,tequila,terrarium,test tube,thermometer,thermos,thermos bottle,thermostat,thimble,thistle,throne,throw pillow,thyme,crown,tiara,ticket,tie,tiger,tile,tile flooring,tile roof,tile wall,tin,tinfoil,tinsel,tiramisu,tire,paper towel,tissue,toast,toaster,tobacco,tobacco pipe,toe,tofu,toilet bowl,toilet seat,toiletry,tokyo tower,tomato,tomato sauce,tomato soup,tomb,plier,tong,tongs,plier,tong,tongs,tool,toolbox,toothbrush,toothpaste,toothpick,torch,tortilla,tortoise,turtle,tote bag,totem pole,totoro,toucan,tow truck,trailer truck,face towel,towel,towel bar,toy car,toy gun,tractor,traffic cone,traffic sign,tow truck,trailer truck,train,training bench,trolley,trampoline,transformer,tray,treadmill,tree,branch,tree branch,tree farm,tree frog,tree house,tree root,tree trunk,tricycle,tripod,trombone,trophy,trophy cup,trout,lorry,truck,tub,pipe,tube,tugboat,tulip,tuna,tundra,turbine,turkey,turnip,turquoise,turret,tortoise,turtle,tusk,tv cabinet,tv tower,twig,twine,typewriter,ukulele,umbrella,underclothes,unicorn,urinal,urn,vacuum,valley,valve,van,wagon,vanilla,vase,veil,velvet,dispenser,vending machine,vent,vespa,boat,vessel,vest,camcorder,video camera,videotape,vine,vinegar,violin,visor,vodka,volleyball,bald eagle,vulture,waffle,waffle iron,van,wagon,wagon wheel,walking cane,wall clock,wallpaper,walnut,walrus,warthog,washer,washing machine,wasp,watch,water,water bird,buffalo,water buffalo,water cooler,water drop,drop,water heater,water lily,water pipe,water purifier,water ski,water tower,watercolor,watering can,watermark overlay stamp,watermelon,waterproof jacket,waterway,wave,wax,vane,net,web,webcam,wedding ring,wedding bouquet,wedding cake,wedding invitation,wedge,weed,weight scale,well,wet suit,wetsuit,whale,whale shark,wheat,wheel,wheelchair,wheelie,whipped cream,stirrer,whisk,whiskey,whistle,white wine,whiteboard,wicket,wig,Wii,Wii controller,wild,wildebeest,wildfire,wildflower,willow,wind chime,wind farm,wind turbine,windmill,window,window box,window frame,window screen,ledge,window sill,wiper,windshield,wine bottle,wine cooler,wine cabinet,wine glass,wine rack,wing,winter melon,wire,wisteria,witch,witch hat,wok,wolf,wood,wood duck,wood floor,wood wall,wood-burning stove,wooden spoon,woodpecker,woodworking plane,wool,work card,workbench,worm,wrap dress,wrapping paper,wristband,writing,writing brush,writing desk,yacht,yak,yoga,yoga mat,yoghurt,yoke,yolk,zebra,zebra crossing,zip,zipper,zongzi,autumn leave,autumn tree,chameleon,coloring book,coloring material,cowbell,dress,pocket bread
2
+ birthday party,snowstorm,boutique,boutique hotel,brick building,brim,building facade,bullring,bus interior,bus station,bus stop,butchers shop,cabana,cottage,hut,cabin,cafe,canteen,phone box,campsite,campus,canal,parking lot,parking garage,auto show,car show,caribbean,carnival,carry,casino,castle,catacomb,celebration,graveyard,chamber,room,approach,channel,passage,chapel,charity,charity event,chemistry lab,chinese garden,christmas,christmas decoration,christmas ornament,christmas dinner,christmas eve,christmas market,cathedral,church,cinema,city,urban,city bus,city hall,city nightview,city park,city skyline,city square,city street,city wall,city view,class,classroom,clean room,cliff,clinic,clothing store,cloud,cloud forest,cloudy,club,coast,shore,community,company,concert,concert hall,conference center,conference hall,meeting room,conservatory,construction site,continent,control tower,convenience store,assembly,convention,corn field,corner,cornice,corral,corridor,hallway,cabana,cottage,hut,country house,country lane,countryside,court,pitch,courthouse,courtyard,yard,crapper,outhouse,restroom,crater lake,crest,crochet,crop,crossroad,intersection,crosswalk,crowd,farmland,curb,dance floor,dance room,dark,darkness,dawn,day bed,daylight,den,department store,general store,desert,desert road,desktop,table top,dining room,restaurant,dinner party,dirt,dirt field,dirt road,dirt track,disco,discotheque,disco ball,disco,discotheque,Disneyland,display window,trench,dock,dollhouse,dome,domicile,residence,doorway,dormitory,downtown,drain,drawer,dressing room,driveway,pharmacy,dune,dusk,twilight,earthquake,easter,dining room,restaurant,eclipse,Eiffel tower,elevator lobby,embankment,embassy,Empire State Building,enclosure,engine room,entertainment center,entrance,entrance hall,estuary,evening,night,evening light,evening sky,exit,fabric store,factory,factory workshop,bazaar,fair,market,fairground,autumn,fall,family,family car,family room,farmer market,farmhouse,banquet,feast,festival,field,field road,film premiere,fire department,fire escape,fire pit,fire station,firework display,fish market,fishing village,fjord,flea market,fleet,flood,floor,florist,flower bed,flower field,flower market,fog,font,food court,food stand,food truck,foot bridge,football college game,football match,football game,football field,football stadium,football match,football game,football field,football stadium,football team,path,forbidden city,ford,shoal,forest,forest fire,forest floor,forest path,forest road,formation,fort,fortification,highway,French,frosty,fruit market,fruit stand,fruits shop,funeral,galaxy,art gallery,gallery,garden,gas station,department store,general store,glacier,glass building,goal,Golden Gate Bridge,government,government agency,graduation,grand prix,grassland,grave,cave,grotto,grove,guest house,guest room,bay,gulf,gurdwara,gym,habitat,hail,auditorium,hall,halloween,hangar,harbor,hardware store,hayfield,headland,headquarter,heliport,herd,highland,hike,hill,hill country,hill station,villa,hillside,hindu temple,historic,hockey arena,hockey game,hole,vacation,home,home base,home office,home theater,honeymoon,horizon,horror film,horse farm,hospital,hospital room,inn,hot spring,hotel,hotel lobby,hotel room,house,house exterior,hunting lodge,hurricane,cabana,cottage,hut,ice cave,ice cream parlor,rink,skating rink,iceberg,igloo,light,independence day,indoor,industrial area,information desk,inlet,crossroad,intersection,irrigation system,izakaya,jail cell,japanese garden,jewelry shop,jungle,junkyard,karaoke,karting,kasbah,kindergarden classroom,kindergarten,kitchen,kitchen counter,kitchen floor,kitchen island,ktv,laboratory,maze,lagoon,lake,lake district,lake house,lakeshore,land,landing deck,landslide,launch event,launch party,laundromat,laundry,laundry room,lava,lawn,lawn wedding,lecture hall,lecture room,ledge,window sill,legislative chamber,library,liquor store,living room,living space,loading dock,corridor,hallway,lock chamber,loft,log cabin,mangrove,manhattan,manor house,mansion,tower block,manufactured home,marathon,marching band,bazaar,fair,market,market square,market stall,martial arts gym,mausoleum,medina,meet,mezzanine,midnight,milestone,mill,moat,modern,modern tower,moonlight,moor,swamp,morning,morning fog,morning light,morning sun,mosque,motel,motorsport,mound,mountain,mountain lake,mountain landscape,mountain pass,mountain path,mountain range,mountain river,mountain snowy,mountain stream,mountain view,mountain village,municipality,museum,music festival,music studio,natural history museum,nature reserve,navratri,nebula,new year,newfoundland,news conference,newsstand,evening,night,night market,night sky,night view,nightclub,nursery,nursing home,oasis,oast house,obelisk,observation tower,observatory,obstacle course,sea,office,office building,office cubicle,opening ceremony,opera house,operating room,optical shop,orangery,orbit,orchard,orchestra pit,outdoor,crapper,outhouse,restroom,overpass,paddock,palace,pantry,storage room,parade,paradise,parish,park,park bench,parking lot,parking garage,parliament,party,approach,channel,passage,pasture,pavement,peak,pedestrian bridge,pedestrian street,peninsula,performance arena,pergola,pet shop,pet store,physics laboratory,picnic area,ski slope,court,pitch,pizzeria,plain,plantation,plateau,platform,playground,playhouse,playingfield,playroom,plaza,square,podium,police station,pond,pool,porch,power station,Prague Castle,premiere,press room,prison,prom,pulpit,quarry,raceway,railroad,railroad bridge,railway line,railway station,rain,rainbow,rainforest,recording studio,recreation room,recycling bin,repair shop,reservoir,domicile,residence,residential neighborhood,resort,resort town,crapper,outhouse,restroom,rice field,riot,rise building,river,river bank,river boat,river valley,riverbed,road,roadside,rock concert,rodeo,rodeo arena,roof,roof garden,chamber,room,rope bridge,rubble,salt lake,salt marsh,sand bar,sauna,savanna,school,schoolhouse,science museum,sea cave,seabed,seaside resort,seminar,server room,shipyard,ford,shoal,shoe shop,shopfront,mall,shopping street,coast,shore,shoreline,shrine,bush,shrub,siberia,sink,skate park,rink,skating rink,ski resort,sky,skyline,skyscraper,slalom,slope,slum,snow,snowy,snow mountain,snowfield,snowflake,spa,space,space station,sparkler,sports meet,spring,spruce,spruce forest,plaza,square,stadium,stage,stairwell,stall,state park,state school,station,stone building,pantry,storage room,store,storefront,storm,storm cloud,strait,stream,street corner,street market,street scene,studio,studio shot,stupa,suburb,subway,subway station,suite,summer,summer evening,summit,sun,sunday,sunflower field,sunny,sunrise,sunset,sunshine,super bowl,supermarket,sushi bar,moor,swamp,swimming pool,synagogue,tavern,tea party,tea plantation,television studio,temple,tennis court,tennis match,terminal,balcony,terrace,test match,thanksgiving,thanksgiving dinner,theater,thicket,throne room,ray,thunder,thunderstorm,ticket booth,tide pool,cyclone,tornado,tour bus,championship,tournament,mansion,tower block,tower bridge,town,town square,toyshop,track,traffic congestion,traffic jam,trail,train bridge,train car,train interior,train track,train window,training ground,triathlon,tribe,tributary,tropic,tunnel,dusk,twilight,underwater,universe,university,city,urban,utility room,vault,vegetable garden,vegetable market,veterinarians office,viaduct,hill station,villa,village,vineyard,volcano,volleyball court,waiting hall,waiting room,warehouse,warship,water feature,water park,water sport,water surface,waterfall,wedding party,wedding reception,western restaurant,wet bar,wetland,wheat field,white house,wind,window display,wine cellar,winery,winter,winter scene,winter storm,woodland,workplace,workshop,courtyard,yard,youth hostel,yurt,zen garden,zoo,autumn forest,autumn park,childs room,condominium,evening sun,grassy,nativity scene,neighbourhood,office window,church bench,window seat,winter morning,restaurant kitchen,restaurant patio,academy,anniversary,archaelogical excavation,assembly,convention,autumn,fall
3
+ bishop,bodybuilder,boxer,boy,chest,bride,groom,bridesmaid,buddha,builder,bus driver,business executive,business team,business woman,businessman,butcher,camper,captain,car dealership,carpenter,catcher,celebrity,cheerlead,chef,cook,chemist,child,child actor,choir,photographer,circus,clavicle,cleaner,climber,mountaineer,joker,college student,comic,comic book character,commander,commentator,competitor,composer,construction worker,safety helmet,chef,costumer film designer,country artist,country pop artist,couple,cousin,cowboy,craftsman,crew,cricket team,cricketer,cupid,customer,dancer,daughter,defender,deity,monster,dentist,designer,detective,director,disciple,diver,dj,doctor,doormat,braid,pigtail,driver,drummer,duchess,dude,educator,electrician,engineer,ensemble,entertainer,explorer,face,face close-up,fairy,farmer,fashion designer,fashion model,father,figure skater,film director,film producer,hand,fireman,flight attendant,folk artist,folk rock artist,foot,football coach,football player,forehead,freckle,gang,gardener,geisha,ghost,girl,gladiator,goalkeeper,golfer,graduate,grandfather,grandmother,grandparent,guard,guitarist,gymnast,hacker,hard rock artist,construction worker,safety helmet,head,head coach,heel,hero,hiker,hip,hip hop artist,historian,hockey player,host,person,ice hockey player,ice hockey team,individual,infantry,jaw,jazz artist,jazz fusion artist,jockey,journalist,judge,king,rider,lawyer,leader,limb,loki,lumberjack,magician,mahout,maid,makeup artist,man,manager,martial artist,matador,mechanic,media,medical staff,metal artist,miner,minister,miss,model,monarch,monk,mother,motorcycle racer,mountain biker,climber,mountaineer,mouth,mr,muscle,music video performer,musician,nanny,navy,neck,neckband,neckline,neighbor,nun,nurse,officer,official,painter,paramedic,paratrooper,participant,partner,partridge,passenger,patient,pedestrian,petunia,philosopher,physicist,pianist,pilgrim,airman,pilot,player,plumber,police,politician,ponytail,pop artist,pope,preacher,president,prince,princess,professor,prophet,protester,student,queen,rapper,record producer,referee,rescuer,researcher,rock artist,rock band,rock climber,rocker,rugby player,runner,sage,sailor,samoyed,samurai,santa claus,saxophonist,scar,scientist,scout,sculptor,secretary,shepherd,shooting basketball guard,shopper,shoulder,shrew,sibling,singer,skateboarder,skater,skin,skull,nose,snout,snowboarder,soccer goalkeeper,socialite,soldier,spectator,sport association,sport team,staff,stomach,street artist,street vendor,striker,superhero,supermodel,supporter,surfer,surgeon,swimmer,tailor,tattoo artist,teacher,technician,teenager,tennis player,theatre actor,tour guide,tourist,trainer,troop,truck driver,tv actor,tv personality,twin,ultraman,vampire,vein,vendor,vet,violinist,violist,volleyball player,volunteer,waist,waiter,warrior,wedding couple,wedding photographer,welder,whisker,woman,worker,wound,wrestler,wrinkle,writer,youth,zombie,brunette,blue artist,fashion girl,hair color,loafer,motorcyclist,toddler,actor,adult,animator,artist,award winner
4
+ accessory,accident,action film,activity,adaptation,advertisement,aerobics,agriculture,air conditioning,air line,alarm,amusement ride,animal,fauna,animation,animation film,anime,app,app icon,appearance,facade,applause,appliance,equipment,approach,channel,passage,archipelago,architecture,area,array,art,art print,art studio,art vector illustration,article,artifact,association,attraction,audio,author,award,award ceremony,backdrop,ballet,banquet,feast,baptism,baseball game,bird,birthday,blog,board game,border,bowling,boxing,brand,breakfast,brunch,buffet,building,building material,bungee,business,calligraphy,camouflage,camp,camping,cancer,car interior,card game,carnivore,cartoon,cartoon character,cartoon illustration,cartoon style,case,container,cat furniture,catwalk,centerpiece,ceremony,champion,championship,tournament,chap,character sculpture,charm,cheer,chemical compound,chemistry,circuit,citrus fruit,client,clipboard,close-up,clothing,garment,collection,comedy,comedy film,comfort food,comic strip,commuter,compete,contest,match,race,composition,cone,meeting,constellation,case,container,profile,cosmetic,costume,countdown,couple photo,course,lesson,craft,creature,crosstalk,cub,cube,currency,curve,cutlery,tableware,dairy,date,death,delicatessen,depression,dermopathy,diet,number,dinner,diploma,disaster,disease,dishes,document,file,documentary,dog breed,drama,drama film,drawing,drink,medicine,duet,ecosystem,electricity,electron,electronic,elevation map,emergency service,emotion,energy,engine,engineering,entertainment,appliance,equipment,estate,event,exhibition,appearance,facade,facility,family photo,fashion accessory,fashion illustration,fashion look,fashion show,fast food,fastfood restaurant,animal,fauna,feed,feline,fertilizer,fiction,document,file,film format,finish line,fitness course,fixture,flare,flavor,floor plan,floral arrangement,folk dance,food,form,frame,friendship,fruit,fry,furniture,gadget,game,gardening,clothing,garment,gas,gift,glaze,golf,gown,grain,group,group photo,guide,gundam,haircut,hairstyle,halloween costume,happiness,hardware,hearing,heat,herb,hiking equipment,history,home appliance,home decor,home interior,interior design,homework,hybrid,mixture,icon,id photo,illustration,image,industry,infrastructure,ingredient,bug,insect,instrument,home interior,interior design,website,invertebrate,isopod,jazz,jigsaw puzzle,karate,kitchen utensil,kitchenware,lace,landfill,landmark,landscape,scenery,larva,leftover,legend,legume,course,lesson,level,license,line,line art,list,livestock,logo,mark,sign,love,luggage,lunch,luxury,magic,mammal,mandarine,manufacturing,marine invertebrate,marine mammal,martial,mascot,medical equipment,medical image,missile,mission,monochrome,moss,motherboard,motif,sport,mountain biking,mulch,muscle car,music,mythology,nature,needle,nerve,newlywed,news,number icon,old photo,opera,order,outline,parking meter,patch,pattern,payphone,peace,act,perform,performance,personal care,personal flotation device,pest,pet,phenomenon,photography,picnic,picture,placard,place,plaid,plan,plot,plumbing fixture,poetry,poinsettia,poker chip,portal,portfolio,portrait,portrait session,pose,poultry,power see,printed page,produce,product,profession,project picture,publicity portrait,pulse,puzzle,queue,reading,rear view,receipt,recipe,reflect,reflection,religion,reptile,retail,road trip,rock formation,rodent,rust,safari,tour,travel,sailing,voyage,sake,salsa,sand sculpture,scene,landscape,scenery,science,science fiction film,score,screenshot,season,safe,security,selfie,server,service,shape,shipping,shipwreck,signal,sketch,ski equipment,slider,smell,snack,snapshot,software,solution,song,sound,speech bubble,sport equipment,sports equipment,spray,squad,stallion,staple,stationery,stencil,stereo,stick,stock,parking sign,stop sign,street art,street food,street photography,structure,stuff,stuffed animal,stuffing,stunt,style,subwoofer,surgery,symbol,system,tae kwon do,tai chi,taste,tattoo,team photo,team presentation,technology,temperature,terrain,territory,text,text message,thing,tick,topping,safari,tour,travel,tourist attraction,toy,trade,traffic,trailer,transparency,safari,tour,travel,treat,trick,trio,tv drama,tv genre,tv show,tv sitcom,type,uniform,utensil,variety,vector cartoon illustration,vector icon,vegetable,vegetation,vehicle,video,video game,view mirror,violence,vision,war,warning sign,waste container,water level,watercolor illustration,watercolor painting,weapon,weather,wedding,wedding photo,wedding photography,weight,western food,wildlife,winter sport,world,cosplay,feeding chair,food coloring,greenery,letter logo
5
+ backlight,beauty,block,roll,bundle,circle,classic,spiral,comfort,copy,crack,crescent,debris,die,drought,duffel,dunk,senior,emergency,enamel,fashion,feedbag,meal,five,flake,flannel,flat,flock,fluid,frozen,gel,glow,shine,gothic,half,heart shape,hot,jack,lens flare,log,long hair,loop,feedbag,meal,mess,miniskirt,moisture,mosaic,oval,overall,pain,panorama,plastic,platinum,polka dot,pop,pouch,sack,quarter,rapid,read,rectangle,rim,ripple,romance,pouch,sack,safe,security,set,bottle,shaker,short hair,shorts,skewer,slice,stainless steel,stripe,symmetry,tee,zoom lens,texture,tight,tradition,triangle,vanity,wet,wrap,ancient,aqua,beautiful,beige,black,blue,bright,brown,calm,clear,cold,color,convertible,cool,crowded,damp,dry,evergreen,foggy,fun,gray,green,joint,khaki,lilac,lush,medieval,narrow,newborn,open,orange,out,palette,pansy,pink,pint,pomeranian,professional,purple,rainy,razor blade,red,religious,romantic,rosy cloud,rural,rustic,shirtless,short,stable,stack,stem,stormy,stunning,sweet,tan,topiary garden,traditional,veteran,violet,warm,white,wide,windy,yellow
6
+ 3D CG rendering,act,perform,performance,action,add,adjust,adventure,aid,help,appear,appointment,argument,arrest,assemble,athletic,exercise,attach,connect,attend,automobile make,beat,birth,bite,blessing,flasher,flash,bloom,blow,boat ride,boost,bow,brake,break,broadcasting,radio,build,bullfighting,burn,buy,cabin car,call,capture,car wash,carve,casting,catch,catwalk show,celebrate,charge,chase,forward,check,cheerlead,clean,climb,climb mountain,clothe,cockpit,collaboration,compost,conductor,conflict,confluence,attach,connect,contain,control,rein,conversation,cooking,cuisine,create,cross,cruise,crush,cooking,cuisine,cut,cycling,damage,dance,debate,decor,embellishment,decorate,deliver,demolition,demonstration,design,destruction,dip,direct,display,dive,doodle,drag,draw,dribble,drift,drive,drop,eat,edit,education,decor,embellishment,engagement,erosion,excavation,athletic,exercise,explosion,extrude,fault,fax,feeding,fight,fill,filming,fitness,flap,flasher,flash,flight,flip,float,flow,flush,fly,fly fishing,forge,chase,forward,collect,gathering,give,go,go for,graze,grazing,greet,greeting,grind,grow,hamper,handshake,handstand,handwriting,hang,harvest,aid,help,hide,highlight,hook,jump,horror,horse ride,riding,howler,huddle,hug,hunt,hurdle,ice skating,illuminate,incense,injection,injury,inscription,install,interaction,interview,invitation,jog,juggle,jump rope,kick,kiss,kneel,knot,landing,laugh,launch,lay,lead,lead singer,leak,lean,learn,speech,presentation,lettering,lick,lie,lift,line up,live,load,locate,lose,make,makeover,remodel,management,manicure,march,logo,mark,sign,marriage,meditation,mix,move,navigation,note,offer,opening,operate,operation,organization,origami,ornament,outcrop,pack,package,pant,parking,pass,paste,pay,penalty kick,plectrum,pick up,planting,play,play badminton,play baseball,play basketball,play billiard,play football,play pong,play tennis,play volleyball,playing chess,playing golf,playing mahjong,pollution,practice,prayer,show,speech,presentation,print,printing,promenade,proposal,protest,publication,pull,punch,push,putt,quote,compete,contest,match,race,receive,reception,record,recycling,register,control,rein,relax,release,relief,rescue,relish,remain,makeover,remodel,remove,repair,relief,rescue,research,reveal,ride,horse ride,riding,rise,rock climbing,row,ruins,run,sale,sell,salute,scrap,scratch,scrub,see,sale,sell,sense,shake,share,shear,glow,shine,shoot,shopping,shovel,shower,signature,singe,sip,sit,sitting,ski,skier,sleep,slide,smile,smoke,solo,span,sparkle,spike,spin,splash,dot,spread,sprinkle,sprout,squat,squeeze,stab,stain,stand,standing,stare,stew,stir,stirrup,sew,stop,stop at,straddle,strap,stretch,strike,stroll,surf,swing,tackle,take,takeoff,talk,teach,tear,test,textile,therapy,thinking,throw,touch,touchdown,training,trial,trim,turn,twist,type on,use,vigil,sailing,voyage,walk,walking,wash,washing,waste,wear,wield,wine tasting,job,worship,wrestle,write
7
+ back,lead to,point,rear,rock face,side,surface,surround,up