xiulinyang commited on
Commit
43fb2e8
·
1 Parent(s): afd0a5d

Add checkpoint

Browse files
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - generated_from_trainer
5
+ metrics:
6
+ - accuracy
7
+ model-index:
8
+ - name: EN_5000_41
9
+ results: []
10
+ ---
11
+
12
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
+ should probably proofread and complete it, then remove this comment. -->
14
+
15
+ # EN_5000_41
16
+
17
+ This model was trained from scratch on an unknown dataset.
18
+ It achieves the following results on the evaluation set:
19
+ - Loss: 3.7565
20
+ - Accuracy: 0.3152
21
+
22
+ ## Model description
23
+
24
+ More information needed
25
+
26
+ ## Intended uses & limitations
27
+
28
+ More information needed
29
+
30
+ ## Training and evaluation data
31
+
32
+ More information needed
33
+
34
+ ## Training procedure
35
+
36
+ ### Training hyperparameters
37
+
38
+ The following hyperparameters were used during training:
39
+ - learning_rate: 0.0006
40
+ - train_batch_size: 32
41
+ - eval_batch_size: 32
42
+ - seed: 41
43
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
44
+ - lr_scheduler_type: linear
45
+ - lr_scheduler_warmup_steps: 1000
46
+ - num_epochs: 10.0
47
+ - mixed_precision_training: Native AMP
48
+
49
+ ### Training results
50
+
51
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|
53
+ | 1.2252 | 1.0 | 1003 | 4.8330 | 0.1873 |
54
+ | 1.104 | 2.0 | 2006 | 4.6916 | 0.1979 |
55
+ | 1.0865 | 3.0 | 3009 | 4.6022 | 0.2084 |
56
+ | 1.0446 | 4.0 | 4012 | 4.3331 | 0.2439 |
57
+ | 0.9806 | 5.0 | 5015 | 4.1156 | 0.2660 |
58
+ | 0.9375 | 6.0 | 6018 | 3.9863 | 0.2842 |
59
+ | 0.9074 | 7.0 | 7021 | 3.9007 | 0.2942 |
60
+ | 0.8839 | 8.0 | 8024 | 3.8308 | 0.3047 |
61
+ | 0.867 | 9.0 | 9027 | 3.7816 | 0.3116 |
62
+ | 0.8541 | 10.0 | 10030 | 3.7565 | 0.3152 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.51.3
68
+ - Pytorch 2.5.1+cu121
69
+ - Datasets 3.6.0
70
+ - Tokenizers 0.21.1
all_results.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 10.0,
3
+ "eval_accuracy": 0.3152495323154909,
4
+ "eval_loss": 3.7565455436706543,
5
+ "eval_runtime": 3.6422,
6
+ "eval_samples": 227,
7
+ "eval_samples_per_second": 62.325,
8
+ "eval_steps_per_second": 2.196,
9
+ "perplexity": 42.800318479533175,
10
+ "total_flos": 8.379374174208e+16,
11
+ "train_loss": 0.9887108649713092,
12
+ "train_runtime": 9029.3583,
13
+ "train_samples": 32069,
14
+ "train_samples_per_second": 35.516,
15
+ "train_steps_per_second": 1.111
16
+ }
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPT2LMHeadModel"
5
+ ],
6
+ "attn_pdrop": 0.1,
7
+ "bos_token_id": 1,
8
+ "embd_pdrop": 0.1,
9
+ "eos_token_id": 2,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_epsilon": 1e-05,
12
+ "model_type": "gpt2",
13
+ "n_ctx": 1024,
14
+ "n_embd": 768,
15
+ "n_head": 12,
16
+ "n_inner": null,
17
+ "n_layer": 12,
18
+ "n_positions": 512,
19
+ "pad_token_id": 0,
20
+ "prefix": "<|endoftext|>",
21
+ "reorder_and_upcast_attn": false,
22
+ "resid_pdrop": 0.1,
23
+ "scale_attn_by_inverse_layer_idx": false,
24
+ "scale_attn_weights": true,
25
+ "summary_activation": null,
26
+ "summary_first_dropout": 0.1,
27
+ "summary_proj_to_labels": true,
28
+ "summary_type": "cls_index",
29
+ "summary_use_proj": true,
30
+ "task_specific_params": {
31
+ "text-generation": {
32
+ "do_sample": true,
33
+ "max_length": 50
34
+ }
35
+ },
36
+ "torch_dtype": "float32",
37
+ "transformers_version": "4.51.3",
38
+ "use_cache": true,
39
+ "vocab_size": 5000
40
+ }
eval_results.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 10.0,
3
+ "eval_accuracy": 0.3152495323154909,
4
+ "eval_loss": 3.7565455436706543,
5
+ "eval_runtime": 3.6422,
6
+ "eval_samples": 227,
7
+ "eval_samples_per_second": 62.325,
8
+ "eval_steps_per_second": 2.196,
9
+ "perplexity": 42.800318479533175
10
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.51.3"
7
+ }
merges.txt ADDED
@@ -0,0 +1,4823 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #version: 0.2
2
+ Ġ t
3
+ Ġ a
4
+ Ġt h
5
+ Ġ i
6
+ Ġ w
7
+ o u
8
+ Ġ s
9
+ e r
10
+ Ġth e
11
+ i n
12
+ Ġ h
13
+ Ġ o
14
+ r e
15
+ a t
16
+ Ġ y
17
+ Ġ m
18
+ Ġ c
19
+ Ġ b
20
+ n d
21
+ Ġy ou
22
+ Ġ d
23
+ Ġ f
24
+ o n
25
+ Ġt o
26
+ in g
27
+ l l
28
+ Ġ p
29
+ e n
30
+ o r
31
+ a n
32
+ Ġ Ċ
33
+ e s
34
+ Ġ l
35
+ Ġa nd
36
+ Ġ g
37
+ e d
38
+ Ġ n
39
+ Ġo f
40
+ i s
41
+ i t
42
+ Ġi n
43
+ a r
44
+ o m
45
+ Ġw h
46
+ a s
47
+ v e
48
+ o w
49
+ Ġi t
50
+ e t
51
+ u s
52
+ Ġth at
53
+ o t
54
+ Ġ e
55
+ l e
56
+ Ġb e
57
+ Ġw e
58
+ i c
59
+ ' s
60
+ a l
61
+ Ġi s
62
+ a y
63
+ Ġo n
64
+ er e
65
+ Ġh a
66
+ i on
67
+ Ġ re
68
+ i d
69
+ Ġh e
70
+ Ġf or
71
+ v er
72
+ l d
73
+ g h
74
+ a c
75
+ Ġ k
76
+ en t
77
+ u t
78
+ Ġth is
79
+ ' t
80
+ Ġs h
81
+ r o
82
+ Ġs t
83
+ Ġm e
84
+ i m
85
+ s e
86
+ ou t
87
+ Ġd o
88
+ Ġ u
89
+ k e
90
+ a ll
91
+ Ġ -
92
+ it h
93
+ a m
94
+ r i
95
+ s t
96
+ Ġg o
97
+ gh t
98
+ Ġa n
99
+ Ġ j
100
+ a d
101
+ Ġyou r
102
+ Ġw ith
103
+ Ġwh at
104
+ l y
105
+ i r
106
+ Ġs o
107
+ Ġha ve
108
+ Ġl i
109
+ Ġa re
110
+ e c
111
+ i ll
112
+ Ġw as
113
+ Ġn ot
114
+ t h
115
+ Ġc an
116
+ Ġm y
117
+ Ġn e
118
+ o o
119
+ c h
120
+ Ġthe y
121
+ om e
122
+ t er
123
+ Ġs e
124
+ Ġa ll
125
+ Ġc h
126
+ us t
127
+ Ġa s
128
+ an t
129
+ r a
130
+ u r
131
+ ou ld
132
+ e l
133
+ o p
134
+ Ġa b
135
+ Ġ us
136
+ c e
137
+ Ġk n
138
+ ou r
139
+ Ġb ut
140
+ Ġm o
141
+ Ġth ere
142
+ at ion
143
+ i l
144
+ er s
145
+ es t
146
+ ' re
147
+ Ġd on
148
+ Ġkn ow
149
+ p p
150
+ Ġa t
151
+ Ġf r
152
+ Ġw or
153
+ es s
154
+ g e
155
+ Ġ v
156
+ o d
157
+ . .
158
+ Ġ r
159
+ ' m
160
+ Ġg et
161
+ Ġo r
162
+ c t
163
+ ver y
164
+ Ġu p
165
+ Ġ out
166
+ Ġab out
167
+ Ġp ro
168
+ at e
169
+ u l
170
+ Ġs u
171
+ Ġj ust
172
+ a ke
173
+ Ġc om
174
+ Ġe x
175
+ Ġc on
176
+ Ġli ke
177
+ all y
178
+ Ġfr om
179
+ Ġn o
180
+ k ing
181
+ Ġw ill
182
+ Ġa l
183
+ n t
184
+ Ġon e
185
+ o l
186
+ Ġs a
187
+ Ġi f
188
+ Ġd e
189
+ h er
190
+ a b
191
+ a in
192
+ ar t
193
+ q u
194
+ Ġh ow
195
+ a nd
196
+ Ġt r
197
+ Ġd id
198
+ Ġh ere
199
+ in d
200
+ on e
201
+ is t
202
+ Ġn ow
203
+ Ġh im
204
+ Ġthe m
205
+ Ġwh o
206
+ i ve
207
+ Ġs p
208
+ in k
209
+ Ġl e
210
+ Ġw ant
211
+ Ġ 1
212
+ ac k
213
+ e m
214
+ i e
215
+ u n
216
+ Ġp l
217
+ i f
218
+ Ġsh e
219
+ o s
220
+ Ġh is
221
+ i g
222
+ Ġ our
223
+ u m
224
+ Ġy e
225
+ Ġan y
226
+ ec t
227
+ am e
228
+ in e
229
+ o re
230
+ i es
231
+ Ġp e
232
+ oo k
233
+ i ght
234
+ as t
235
+ Ġm an
236
+ Ġt e
237
+ it y
238
+ ar d
239
+ Ġb y
240
+ Ġ ri
241
+ Ġ 2
242
+ Ġwh en
243
+ Ġt im
244
+ re s
245
+ Ġh er
246
+ r ou
247
+ a h
248
+ Ġs ome
249
+ Ġse e
250
+ Ġth ink
251
+ us e
252
+ Ġl o
253
+ or t
254
+ a re
255
+ â Ģ
256
+ v en
257
+ a p
258
+ h ing
259
+ Ġpe op
260
+ Ġri ght
261
+ ' ll
262
+ Ġpeop le
263
+ Ġ "
264
+ Ġbe c
265
+ Ġf e
266
+ on g
267
+ Ġ (
268
+ Ġw ould
269
+ a use
270
+ Ġtim e
271
+ m ent
272
+ r y
273
+ u re
274
+ ic e
275
+ Ġw ere
276
+ Ġwe ll
277
+ Ġmo re
278
+ Ġg ot
279
+ Ġa m
280
+ ' ve
281
+ Ġof f
282
+ Ġa g
283
+ Ġ en
284
+ Ġs ay
285
+ a g
286
+ Ġth ing
287
+ id e
288
+ ic h
289
+ a k
290
+ Ġp r
291
+ Ġne ed
292
+ ac e
293
+ c k
294
+ Ġe very
295
+ Ġthe ir
296
+ ou s
297
+ .. .
298
+ Ġha d
299
+ or d
300
+ Ġth an
301
+ Ġl et
302
+ Ġwh ere
303
+ u d
304
+ Ġgo ing
305
+ it e
306
+ Ġh as
307
+ Ġthe n
308
+ Ġin t
309
+ e p
310
+ Ġc o
311
+ Ġl ook
312
+ ac t
313
+ ow n
314
+ 0 0
315
+ ar s
316
+ Ġb ack
317
+ a ge
318
+ Ġthe se
319
+ Ġu n
320
+ re at
321
+ Ġf l
322
+ Ġwh y
323
+ Ġc l
324
+ Ġbec ause
325
+ Ġgo od
326
+ Ġc ould
327
+ Ġw ay
328
+ w e
329
+ n a
330
+ Ġc ome
331
+ Ġwh ich
332
+ p l
333
+ b le
334
+ b er
335
+ ou nt
336
+ Ġne w
337
+ p t
338
+ Ġ qu
339
+ Ġg u
340
+ Ġbe en
341
+ Ġa f
342
+ om et
343
+ Ġm ake
344
+ Ġ- -
345
+ Ġi m
346
+ Ġd ay
347
+ Ġ ro
348
+ Ġo ver
349
+ Ġsa id
350
+ e nd
351
+ w ay
352
+ Ġa c
353
+ an s
354
+ re e
355
+ Ġsh all
356
+ Ġ very
357
+ o se
358
+ i v
359
+ Ġs omet
360
+ Ġt ake
361
+ as e
362
+ Ġd is
363
+ nd er
364
+ Ġa r
365
+ Ġa d
366
+ Ġo th
367
+ i re
368
+ ic k
369
+ ion s
370
+ it t
371
+ i ld
372
+ Ġte ll
373
+ i z
374
+ Ġwor k
375
+ Ġt w
376
+ Ġm ay
377
+ se l
378
+ Ġd own
379
+ p er
380
+ Ġa ct
381
+ Ġs c
382
+ Ġb l
383
+ Ġre ally
384
+ ac h
385
+ Ġb r
386
+ f e
387
+ o g
388
+ Ġha pp
389
+ is h
390
+ Ġth ou
391
+ Ġp er
392
+ ot her
393
+ Ġsomet hing
394
+ i p
395
+ Ġint o
396
+ f ore
397
+ as s
398
+ Ġoth er
399
+ en ce
400
+ Ġch an
401
+ ou nd
402
+ a u
403
+ Ġc all
404
+ Ġto o
405
+ Ġb et
406
+ Ġs er
407
+ Ġcon t
408
+ Ġt al
409
+ Ġp re
410
+ Ġdo es
411
+ Ġon ly
412
+ th ing
413
+ b e
414
+ at h
415
+ Ġsh ould
416
+ Ġb u
417
+ Ġcom p
418
+ i al
419
+ ab le
420
+ Ġg on
421
+ Ġ2 0
422
+ Ġf ir
423
+ Ġag ain
424
+ Ġgon na
425
+ Ġe ven
426
+ or m
427
+ Ġp h
428
+ i a
429
+ Ġdid n
430
+ s o
431
+ Ġhe l
432
+ f er
433
+ Ġwor ld
434
+ Ġin ter
435
+ Ġf u
436
+ res s
437
+ Ġtw o
438
+ Ġj o
439
+ Ġp o
440
+ ad e
441
+ Ġfir st
442
+ ur n
443
+ a v
444
+ Ġgo d
445
+ u e
446
+ ' d
447
+ a il
448
+ Ġm u
449
+ Ġhel p
450
+ Ġu nder
451
+ Ġp art
452
+ Ġf ind
453
+ Ġre s
454
+ Ġhapp en
455
+ Ġbe fore
456
+ Ġk e
457
+ oo d
458
+ Ġac c
459
+ re n
460
+ Ġne ver
461
+ or y
462
+ Ġye ars
463
+ au ght
464
+ itt le
465
+ Ġa pp
466
+ Ġl ittle
467
+ ig n
468
+ od y
469
+ f t
470
+ Ġmu ch
471
+ ul t
472
+ Ġb o
473
+ . "
474
+ i le
475
+ Ġthing s
476
+ sel f
477
+ Ġus e
478
+ u ally
479
+ rou nd
480
+ at ed
481
+ ation s
482
+ Ġha nd
483
+ Ġu nt
484
+ Ġ 3
485
+ Ġw r
486
+ Ġ âĢ
487
+ Ġre m
488
+ Ġli fe
489
+ ar y
490
+ Ġal so
491
+ Ġaf ter
492
+ Ġth ose
493
+ p h
494
+ Ġst art
495
+ Ġg ive
496
+ a ve
497
+ Ġe m
498
+ y s
499
+ v ing
500
+ an ce
501
+ u ct
502
+ w n
503
+ Ġt ra
504
+ ve l
505
+ at er
506
+ at her
507
+ Ġbe l
508
+ Ġs ec
509
+ Ġp ut
510
+ on s
511
+ t ing
512
+ âĢ Ļ
513
+ an g
514
+ Ġk ill
515
+ f f
516
+ Ġcom m
517
+ Ġo k
518
+ ic al
519
+ n ing
520
+ Ġm ar
521
+ Ġmo st
522
+ v ed
523
+ Ġi d
524
+ f orm
525
+ Ġf o
526
+ v es
527
+ Ġd if
528
+ Ġl ong
529
+ Ġtr y
530
+ is s
531
+ Ġg reat
532
+ Ġd es
533
+ Ġch ild
534
+ g et
535
+ Ġl ord
536
+ Ġim p
537
+ ver s
538
+ Ġc ar
539
+ Ġp le
540
+ Ġm ade
541
+ d ay
542
+ aught er
543
+ Ġtal k
544
+ Ġye ah
545
+ Ġs m
546
+ is e
547
+ ou se
548
+ Ġh o
549
+ Ġlo ve
550
+ ow er
551
+ ot h
552
+ u b
553
+ Ġk ind
554
+ ri end
555
+ in t
556
+ k s
557
+ Ġo h
558
+ Ġdo ing
559
+ rou gh
560
+ Ġman y
561
+ Ġh ome
562
+ Ġfe el
563
+ en s
564
+ Ġin st
565
+ Ġre c
566
+ Ġs y
567
+ Ġact ually
568
+ Ġg r
569
+ Ġth rough
570
+ Ġl ot
571
+ Ġst ill
572
+ i ous
573
+ Ġme an
574
+ or s
575
+ ent s
576
+ i gh
577
+ ad y
578
+ Ġd el
579
+ Ġ20 1
580
+ t y
581
+ Ġ _
582
+ d er
583
+ Ġin c
584
+ Ġsu pp
585
+ oo king
586
+ Ġk ing
587
+ oo l
588
+ Ġc ou
589
+ Ġdif fer
590
+ Ġdis c
591
+ f ul
592
+ Ġm a
593
+ Ġm on
594
+ Ġok ay
595
+ p le
596
+ at ch
597
+ Ġke ep
598
+ Ġthou ght
599
+ Ġd ec
600
+ Ġsh ow
601
+ Ġre al
602
+ Ġe l
603
+ Ġo wn
604
+ i an
605
+ Ġa round
606
+ re d
607
+ b s
608
+ Ġh ouse
609
+ h n
610
+ x t
611
+ Ġl ast
612
+ b ody
613
+ Ġe ar
614
+ o nd
615
+ Ġpl ace
616
+ Ġh ot
617
+ Ġd r
618
+ Ġpl ay
619
+ Ġas k
620
+ ie w
621
+ l o
622
+ Ġst r
623
+ Ġsu re
624
+ Ġbet ter
625
+ ic t
626
+ Ġc ame
627
+ os s
628
+ et h
629
+ Ġf riend
630
+ Ġany thing
631
+ Ġple ase
632
+ Ġs ame
633
+ at es
634
+ i ly
635
+ one y
636
+ Ġb est
637
+ n ess
638
+ Ġo p
639
+ Ġa way
640
+ Ġi nd
641
+ Ġn ame
642
+ Ġs on
643
+ Ġp ers
644
+ p e
645
+ Ġser v
646
+ Ġw om
647
+ Ġe ver
648
+ Ġs ur
649
+ ol og
650
+ Ġc r
651
+ ou gh
652
+ Ġm en
653
+ Ġc ount
654
+ at ing
655
+ Ġy ah
656
+ Ġe nd
657
+ we h
658
+ Ġbel ie
659
+ Ġwor d
660
+ Ġ ra
661
+ Ġbe ing
662
+ Ġm ight
663
+ Ġ 5
664
+ Ġm in
665
+ it ion
666
+ Ġt urn
667
+ l aughter
668
+ e ll
669
+ Ġpro d
670
+ ir l
671
+ Ġyah weh
672
+ Ġid e
673
+ Ġmay be
674
+ Ġf am
675
+ Ġf ound
676
+ Ġth ree
677
+ Ġs et
678
+ way s
679
+ Ġunt o
680
+ Ġm ust
681
+ Ġb ig
682
+ Ġc od
683
+ Ġ ent
684
+ Ġf ree
685
+ Ġad d
686
+ em ber
687
+ ll ow
688
+ Ġchild ren
689
+ Ġh igh
690
+ i ed
691
+ Ġit s
692
+ Ġn ight
693
+ i ble
694
+ Ġ 4
695
+ Ġw ent
696
+ al s
697
+ ble m
698
+ st and
699
+ Ġex p
700
+ Ġqu est
701
+ Ġdiffer ent
702
+ Ġe v
703
+ Ġpro blem
704
+ Ġo ld
705
+ Ġdon e
706
+ w h
707
+ Ġtr ans
708
+ Ġg en
709
+ Ġc are
710
+ l es
711
+ Ġdel i
712
+ Ġnot hing
713
+ Ġan other
714
+ Ġy es
715
+ el s
716
+ ak es
717
+ Ġh u
718
+ Ġto day
719
+ Ġye ar
720
+ Ġl ist
721
+ it ies
722
+ Ġevery thing
723
+ Ġal ways
724
+ Ġst op
725
+ Ġdoes n
726
+ Ġb us
727
+ et s
728
+ Ġh um
729
+ Ġw a
730
+ i x
731
+ Ġpl an
732
+ Ġf ather
733
+ l ine
734
+ Ġsp e
735
+ Ġg irl
736
+ Ġt ri
737
+ Ġto ld
738
+ Ġk id
739
+ g in
740
+ c om
741
+ c es
742
+ Ġpers on
743
+ Ġb re
744
+ Ġin s
745
+ Ġs l
746
+ Ġm oney
747
+ Ġc our
748
+ Ġhe ad
749
+ g r
750
+ ment s
751
+ Ġunder stand
752
+ Ġop en
753
+ iz e
754
+ Ġin v
755
+ Ġl a
756
+ Ġl and
757
+ Ġsp ec
758
+ Ġm om
759
+ Ġs or
760
+ t ain
761
+ Ġt er
762
+ Ġs ch
763
+ Ġf in
764
+ e w
765
+ Ġbe h
766
+ Ġoff er
767
+ Ġhe ar
768
+ at ter
769
+ Ġbelie ve
770
+ Ġc le
771
+ Ġli ve
772
+ Ġ1 0
773
+ it ed
774
+ Ġre p
775
+ Ġcon s
776
+ Ġb ra
777
+ Ġs w
778
+ Ġn um
779
+ Ġp ri
780
+ Ġp ol
781
+ Ġas s
782
+ u ck
783
+ in ess
784
+ Ġst ud
785
+ Ġ z
786
+ i b
787
+ u c
788
+ st em
789
+ ut e
790
+ Ġsor ry
791
+ ra el
792
+ Ġthan k
793
+ u p
794
+ Ġne xt
795
+ Ġat t
796
+ Ġw on
797
+ Ġprod uct
798
+ it s
799
+ Ġis rael
800
+ Ġin form
801
+ Ġr un
802
+ Ġp ass
803
+ w ard
804
+ or n
805
+ ar k
806
+ Ġs im
807
+ Ġre l
808
+ Ġcod e
809
+ Ġcall ed
810
+ i ence
811
+ Ġw ar
812
+ Ġl ooking
813
+ ar ch
814
+ Ġv is
815
+ Ġs k
816
+ c ess
817
+ Ġs in
818
+ j ect
819
+ Ġon line
820
+ Ġex t
821
+ Ġb as
822
+ Ġbr ing
823
+ Ġus ed
824
+ ow ers
825
+ Ġwa it
826
+ Ġsy stem
827
+ g er
828
+ Ġf un
829
+ Ġagain st
830
+ Ġt ec
831
+ Ġle ft
832
+ Ġto get
833
+ Ġtoget her
834
+ Ġle ar
835
+ Ġst ay
836
+ ic es
837
+ Ġfo llow
838
+ Ġb it
839
+ u al
840
+ Ġle ave
841
+ le ct
842
+ Ġb ro
843
+ Ġre v
844
+ Ġp ay
845
+ Ġday s
846
+ Ġc ap
847
+ Ġwant ed
848
+ Ġwith out
849
+ a le
850
+ Ġrem ember
851
+ Ġh ard
852
+ Ġtec hn
853
+ Ġro om
854
+ Ġre g
855
+ Ġe y
856
+ as h
857
+ Ġh op
858
+ Ġis n
859
+ Ġide a
860
+ Ġe ach
861
+ Ġpr om
862
+ Ġhappen ed
863
+ Ġf ace
864
+ Ġ ed
865
+ Ġm iss
866
+ o ld
867
+ Ġw al
868
+ Ġpr ot
869
+ Ġf act
870
+ Ġor der
871
+ Ġp ower
872
+ Ġg ra
873
+ o c
874
+ a ir
875
+ m an
876
+ Ġb ad
877
+ Ġsome one
878
+ a z
879
+ i ent
880
+ Ġg l
881
+ Ġch ar
882
+ Ġex per
883
+ Ġtoo k
884
+ ĠâĢ ĵ
885
+ Ġinform ation
886
+ Ġth y
887
+ Ġgu y
888
+ e ver
889
+ Ġnew s
890
+ Ġar t
891
+ Ġc ur
892
+ Ġco ll
893
+ Ġm ind
894
+ Ġen ough
895
+ Ġen g
896
+ Ġel se
897
+ Ġtry ing
898
+ p s
899
+ u res
900
+ Ġbu ild
901
+ Ġs ign
902
+ or k
903
+ Ġp res
904
+ Ġcom ing
905
+ r ow
906
+ Ġ '
907
+ Ġchan ge
908
+ a king
909
+ c y
910
+ ic s
911
+ Ġbus iness
912
+ Ġhe ll
913
+ Ġcom pl
914
+ ing s
915
+ Ġ $
916
+ ag es
917
+ Ġhe y
918
+ u g
919
+ Ġc ity
920
+ Ġre st
921
+ Ġmon th
922
+ g y
923
+ Ġhe art
924
+ Ġfe w
925
+ Ġw ater
926
+ Ġimp ort
927
+ Ġst and
928
+ Ġe as
929
+ Ġsa w
930
+ Ġm ed
931
+ s w
932
+ Ġp oss
933
+ Ġf ar
934
+ Ġre ad
935
+ Ġb ab
936
+ Ġget ting
937
+ 2 0
938
+ ir d
939
+ Ġsay ing
940
+ Ġsec ond
941
+ ul ar
942
+ Ġag o
943
+ Ġde p
944
+ Ġm other
945
+ a pp
946
+ ce pt
947
+ m s
948
+ en se
949
+ Ġcour se
950
+ Ġnum ber
951
+ Ġm r
952
+ Ġgu ys
953
+ Ġso l
954
+ et e
955
+ o y
956
+ Ġde ad
957
+ Ġsu ch
958
+ Ġpo int
959
+ Ġme et
960
+ g ed
961
+ Ġ1 9
962
+ Ġc re
963
+ Ġl ess
964
+ an k
965
+ p n
966
+ Ġwh ile
967
+ Ġw atch
968
+ 00 0
969
+ Ġd ri
970
+ Ġsch ool
971
+ Ġy et
972
+ Ġb ook
973
+ t s
974
+ il ity
975
+ Ġfam ily
976
+ if ic
977
+ Ġpre t
978
+ Ġli ght
979
+ n er
980
+ an ge
981
+ w are
982
+ Ġinter est
983
+ Ġwr ong
984
+ ow s
985
+ Ġfl owers
986
+ am es
987
+ o st
988
+ ut ion
989
+ Ġh our
990
+ Ġst ory
991
+ Ġan sw
992
+ are d
993
+ Ġm or
994
+ Ġtra in
995
+ o ck
996
+ Ġse en
997
+ Ġcomp an
998
+ l ed
999
+ in es
1000
+ Ġhum an
1001
+ Ġb oth
1002
+ ro s
1003
+ Ġun i
1004
+ Ġ â
1005
+ Ġmo ve
1006
+ f ect
1007
+ r ic
1008
+ we en
1009
+ Ġyour self
1010
+ Ġs it
1011
+ Ġto p
1012
+ h e
1013
+ Ġre qu
1014
+ Ġbet ween
1015
+ o ice
1016
+ Ġtal king
1017
+ a ut
1018
+ Ġd at
1019
+ Ġhot el
1020
+ c king
1021
+ Ġimport ant
1022
+ Ġre t
1023
+ Ġhe ard
1024
+ l ic
1025
+ Ġdisc ount
1026
+ Ġv ide
1027
+ g an
1028
+ Ġo b
1029
+ Ġ &
1030
+ u ll
1031
+ Ġwe e
1032
+ Ġf our
1033
+ Ġlear n
1034
+ ec k
1035
+ c ri
1036
+ re ady
1037
+ Ġjo b
1038
+ Ġinter n
1039
+ Ġa v
1040
+ Ġs ound
1041
+ ith er
1042
+ c ent
1043
+ re am
1044
+ Ġal ready
1045
+ Ġwho le
1046
+ if e
1047
+ or ies
1048
+ ill ion
1049
+ c er
1050
+ Ġrev iew
1051
+ n e
1052
+ Ġlist en
1053
+ Ġre d
1054
+ c i
1055
+ Ġres p
1056
+ i er
1057
+ Ġgen er
1058
+ Ġd et
1059
+ as on
1060
+ ut h
1061
+ Ġsay s
1062
+ ic ally
1063
+ Ġear th
1064
+ Ġ Â
1065
+ Ġquest ion
1066
+ Ġhop e
1067
+ Ġwas n
1068
+ os ed
1069
+ Ġwor king
1070
+ in s
1071
+ Ġcou p
1072
+ Ġc am
1073
+ Ġn or
1074
+ Ġj ud
1075
+ ation al
1076
+ Ġunt il
1077
+ Ġse em
1078
+ ri ed
1079
+ Ġlo c
1080
+ Ġn at
1081
+ y ing
1082
+ Ġc reat
1083
+ Ġm ess
1084
+ i o
1085
+ in king
1086
+ Ġa p
1087
+ al th
1088
+ Ġf ore
1089
+ b r
1090
+ Ġ 6
1091
+ Ġcon f
1092
+ Ġt est
1093
+ im e
1094
+ Ġstart ed
1095
+ Ġfriend s
1096
+ Ġpret ty
1097
+ Ġfu ll
1098
+ Ġab le
1099
+ Ġd ie
1100
+ Ġdat a
1101
+ Ġfor m
1102
+ h ip
1103
+ Ġde f
1104
+ Ġde al
1105
+ Ġbab y
1106
+ ab ly
1107
+ Ġc ent
1108
+ Ġb ar
1109
+ Ġex pl
1110
+ Ġp ar
1111
+ Ġv al
1112
+ Ġde v
1113
+ ist s
1114
+ Ġm et
1115
+ Ġon ce
1116
+ gr am
1117
+ Ġs ir
1118
+ Ġthe e
1119
+ olog y
1120
+ Ġansw er
1121
+ is ter
1122
+ Ġus ing
1123
+ o nder
1124
+ ant s
1125
+ Ġwom en
1126
+ Ġpro v
1127
+ Ġbe aut
1128
+ Ġmo d
1129
+ Ġs ide
1130
+ Ġa ir
1131
+ Ġtim es
1132
+ id er
1133
+ Ġt y
1134
+ ri es
1135
+ l ish
1136
+ Ġn ice
1137
+ Ġse nd
1138
+ Ġsa ve
1139
+ Ġkn ew
1140
+ Ġho ld
1141
+ er ic
1142
+ re t
1143
+ Ġfu cking
1144
+ n ect
1145
+ Ġs le
1146
+ Ġm atter
1147
+ p r
1148
+ c on
1149
+ Ġn et
1150
+ Ġcomm un
1151
+ Ġsupp ort
1152
+ Ġyou n
1153
+ Ġprot ect
1154
+ Ġpro gram
1155
+ Ġf ire
1156
+ t en
1157
+ Ġtra vel
1158
+ Ġf il
1159
+ Ġme m
1160
+ Ġsu b
1161
+ Ġex am
1162
+ Ġd ad
1163
+ Ġup on
1164
+ Ġbo y
1165
+ Ġserv ice
1166
+ Ġwom an
1167
+ sel ves
1168
+ Ġw ind
1169
+ as ter
1170
+ Ġdes ign
1171
+ Ġg ame
1172
+ Ġbl ood
1173
+ Ġd i
1174
+ Ġf ive
1175
+ Ġe ff
1176
+ Ġad v
1177
+ rou ght
1178
+ Ġsin ce
1179
+ Ġm us
1180
+ c ed
1181
+ ion al
1182
+ b o
1183
+ Ġcont ro
1184
+ out h
1185
+ g est
1186
+ Ġe at
1187
+ Ġ 7
1188
+ Ġh ur
1189
+ Ġph one
1190
+ vel op
1191
+ iv es
1192
+ iz ed
1193
+ Ġacc ount
1194
+ Ġpro f
1195
+ at or
1196
+ us s
1197
+ Ġspe ak
1198
+ Ġle ad
1199
+ wh ere
1200
+ Ġt v
1201
+ Ġla w
1202
+ Ġf ight
1203
+ m ore
1204
+ Ġp i
1205
+ Ġs ing
1206
+ l ess
1207
+ Ġph ot
1208
+ Ġb en
1209
+ Ġex act
1210
+ al f
1211
+ Ġme ans
1212
+ Ġfu ck
1213
+ Ġwal k
1214
+ l and
1215
+ Ġp ub
1216
+ Ġex c
1217
+ Ġpro b
1218
+ u ro
1219
+ Ġd est
1220
+ c ial
1221
+ Ġc ust
1222
+ Ġb ody
1223
+ Ġey es
1224
+ Ġhand s
1225
+ Ġsm all
1226
+ ie ld
1227
+ l ud
1228
+ Ġwould n
1229
+ Ġmy self
1230
+ Ġb rought
1231
+ Ġp ur
1232
+ Ġdeli ver
1233
+ Ġc er
1234
+ Ġs ent
1235
+ Ġcon nect
1236
+ Ġâ Ļ
1237
+ Ġ es
1238
+ Ġcount ry
1239
+ Ġevery one
1240
+ Ġchan n
1241
+ it es
1242
+ ac es
1243
+ n y
1244
+ Ġs we
1245
+ Ġm akes
1246
+ Ġkill ed
1247
+ Ġc ra
1248
+ g es
1249
+ ros s
1250
+ at t
1251
+ Ġ 8
1252
+ Ġd ist
1253
+ r on
1254
+ Ġlook s
1255
+ lo ad
1256
+ Ġc ut
1257
+ u ff
1258
+ Ġg i
1259
+ Ġmar k
1260
+ Ġde velop
1261
+ Ġask ed
1262
+ Ġg rou
1263
+ Ġha ving
1264
+ Ġl ar
1265
+ Ġch eck
1266
+ Ġar m
1267
+ ire d
1268
+ Ġc ol
1269
+ ent ion
1270
+ Ġam eric
1271
+ âĢ Ŀ
1272
+ ? "
1273
+ Ġh ar
1274
+ Ġtr ust
1275
+ Ġany one
1276
+ Ġcoup on
1277
+ Ġbre ak
1278
+ Ġcust om
1279
+ Ġp op
1280
+ Ġacc ess
1281
+ m m
1282
+ Ġm id
1283
+ Ġkid s
1284
+ o ver
1285
+ Ġspec ial
1286
+ Ġw ife
1287
+ it al
1288
+ Ġth inking
1289
+ Ġhe alth
1290
+ id ent
1291
+ Ġo per
1292
+ ot e
1293
+ Ġc ase
1294
+ ut es
1295
+ Ġf ood
1296
+ t a
1297
+ Ġd av
1298
+ Ġw onder
1299
+ Ġyoun g
1300
+ Ġprob ably
1301
+ Ġgu ess
1302
+ Ġproduct s
1303
+ ĠâĢ ľ
1304
+ ur al
1305
+ Ġbr other
1306
+ Ġt reat
1307
+ Ġcont act
1308
+ Ġma king
1309
+ Ġto ol
1310
+ Ġcompan y
1311
+ Ġdo ll
1312
+ Ġg ave
1313
+ w ork
1314
+ Ġst e
1315
+ l ing
1316
+ Ġbec ome
1317
+ Ġper cent
1318
+ Ġpri v
1319
+ Ġ1 5
1320
+ Ġhour s
1321
+ ire ct
1322
+ Ġre ason
1323
+ t e
1324
+ Ġc or
1325
+ Ġha ven
1326
+ Ġso ft
1327
+ Ġc op
1328
+ Ġword s
1329
+ Ġsh o
1330
+ us h
1331
+ Ġp at
1332
+ Ġc a
1333
+ Ġg re
1334
+ Ġvide o
1335
+ un ch
1336
+ Ġp ain
1337
+ Ġde ath
1338
+ e ar
1339
+ Ġre ady
1340
+ s es
1341
+ Ġret urn
1342
+ f l
1343
+ Ġs ort
1344
+ Ġf re
1345
+ Ġim ag
1346
+ Ġcomp ut
1347
+ Ġdav id
1348
+ Ġg one
1349
+ Ġcom es
1350
+ Ġhapp y
1351
+ Ġo pt
1352
+ Ġl ang
1353
+ Ġsle ep
1354
+ Ġ 9
1355
+ Ġd ra
1356
+ Ġt re
1357
+ Ġpo st
1358
+ Ġmor ning
1359
+ at ive
1360
+ Ġp age
1361
+ if ul
1362
+ ak en
1363
+ Ġh alf
1364
+ Ġc ell
1365
+ it ch
1366
+ l et
1367
+ Ġd am
1368
+ Ġfl or
1369
+ u es
1370
+ m ost
1371
+ Ġv iew
1372
+ Ġinc lud
1373
+ Ġre f
1374
+ Ġal one
1375
+ ate g
1376
+ Ġpro cess
1377
+ Ġgr ow
1378
+ Ġe uro
1379
+ Ġch r
1380
+ Ġexact ly
1381
+ Ġent er
1382
+ Ġl ater
1383
+ ap s
1384
+ o f
1385
+ ur ing
1386
+ Ġcontro l
1387
+ Ġlang u
1388
+ Ġins ide
1389
+ Ġf ine
1390
+ Ġcould n
1391
+ Ġmom ent
1392
+ Ġeas y
1393
+ Ġe qu
1394
+ Ġw in
1395
+ Ġ1 2
1396
+ ot s
1397
+ Ġwe bs
1398
+ b ers
1399
+ a i
1400
+ Ġle g
1401
+ Ġbra in
1402
+ a x
1403
+ Ġto m
1404
+ Ġco nd
1405
+ on es
1406
+ Ġp ict
1407
+ Ġs am
1408
+ Ġlo st
1409
+ Ġcompl ete
1410
+ Ġd irect
1411
+ Ġso on
1412
+ ou ch
1413
+ ous and
1414
+ ate ll
1415
+ Ġtr ue
1416
+ Ġthan ks
1417
+ re nt
1418
+ s h
1419
+ Ġbe gin
1420
+ Ġse arch
1421
+ Ġch e
1422
+ Ġqu ite
1423
+ Ġbeaut iful
1424
+ Ġth ousand
1425
+ Ġs ite
1426
+ in a
1427
+ an na
1428
+ Ġdr ink
1429
+ Ġs ix
1430
+ ate ly
1431
+ Ġm ag
1432
+ Ġf ig
1433
+ Ġcle ar
1434
+ n ot
1435
+ t on
1436
+ w w
1437
+ Ġho st
1438
+ Ġposs ible
1439
+ Ġf all
1440
+ Ġt aking
1441
+ Ġs atell
1442
+ on t
1443
+ Ġcre ate
1444
+ Ġdo or
1445
+ Ġvis it
1446
+ Ġpr in
1447
+ b y
1448
+ Ġan im
1449
+ Ġc al
1450
+ ac y
1451
+ Ġde m
1452
+ Ġm illion
1453
+ Ġcomm and
1454
+ Ġm il
1455
+ Ġcer tain
1456
+ Ġpi ec
1457
+ ver n
1458
+ Ġcl ose
1459
+ Ġf ut
1460
+ Ġsa fe
1461
+ is ed
1462
+ ord ing
1463
+ ĠâĻ «
1464
+ Ġ /
1465
+ Ġam ong
1466
+ Ġb ed
1467
+ an e
1468
+ Ġst uff
1469
+ Ġh on
1470
+ Ġle ast
1471
+ Ġst ep
1472
+ Ġquest ions
1473
+ ter s
1474
+ are nt
1475
+ th e
1476
+ Ġdeli very
1477
+ Ġeuro pe
1478
+ Ġre se
1479
+ Ġw all
1480
+ Ġo pp
1481
+ Ġal most
1482
+ Ġdown load
1483
+ s ide
1484
+ Ġd ream
1485
+ il t
1486
+ Ġv pn
1487
+ im es
1488
+ at s
1489
+ Ġneed s
1490
+ Ġli ves
1491
+ al t
1492
+ Ġke y
1493
+ Ġw anna
1494
+ Ġsoft ware
1495
+ c o
1496
+ ro p
1497
+ Ġre ce
1498
+ Ġgo vern
1499
+ Ġt on
1500
+ Ġte am
1501
+ Ġfut ure
1502
+ k en
1503
+ Ġan g
1504
+ Ġav ail
1505
+ Ġjo hn
1506
+ Ġmonth s
1507
+ Ġg ames
1508
+ al ity
1509
+ r uct
1510
+ Ġuni vers
1511
+ z y
1512
+ Ġ3 0
1513
+ Ġh ist
1514
+ d en
1515
+ Ġpart ic
1516
+ Ġexam ple
1517
+ Ġch oo
1518
+ Ġj er
1519
+ e f
1520
+ g ing
1521
+ p ort
1522
+ Ġ 0
1523
+ et y
1524
+ Ġcont in
1525
+ is ion
1526
+ Ġwr ite
1527
+ v ious
1528
+ id ed
1529
+ Ġmin utes
1530
+ c le
1531
+ Ġco st
1532
+ ur ity
1533
+ Ġl ine
1534
+ Ġwith in
1535
+ Ġtr uth
1536
+ Ġgrou p
1537
+ Ġwe b
1538
+ Ġsh it
1539
+ t o
1540
+ Ġexp ect
1541
+ i pp
1542
+ Ġli ving
1543
+ Ġavail able
1544
+ Ġwork s
1545
+ Ġbu y
1546
+ is m
1547
+ nd red
1548
+ n o
1549
+ Ġst ates
1550
+ Ġwant s
1551
+ Ġs ons
1552
+ Ġhu ndred
1553
+ Ġtechn ology
1554
+ Ġw ish
1555
+ Ġgo es
1556
+ Ġe lect
1557
+ Ġm ine
1558
+ is on
1559
+ Ġrese arch
1560
+ Ġ2 00
1561
+ Ġf av
1562
+ Ġpro ject
1563
+ ou ble
1564
+ Ġp ast
1565
+ id es
1566
+ Ġstr ong
1567
+ Ġevery body
1568
+ Ġthere fore
1569
+ Ġbl ack
1570
+ e e
1571
+ Ġsatell ite
1572
+ Ġa ut
1573
+ Ġam az
1574
+ c ome
1575
+ Ġs ou
1576
+ er v
1577
+ ap e
1578
+ Ġt aken
1579
+ Ġs n
1580
+ Ġb i
1581
+ Ġor gan
1582
+ Ġgi ven
1583
+ ain s
1584
+ Ġsp ace
1585
+ Ġcle an
1586
+ in ed
1587
+ Ġf ast
1588
+ Ġle vel
1589
+ Ġthou gh
1590
+ Ġm ach
1591
+ i ah
1592
+ ar ing
1593
+ Ġc ateg
1594
+ Ġcan not
1595
+ r act
1596
+ ard s
1597
+ , "
1598
+ Ġg if
1599
+ Ġm ain
1600
+ Ġall ow
1601
+ Ġact iv
1602
+ Ġsupp osed
1603
+ ot t
1604
+ Ġm ult
1605
+ et her
1606
+ Ġare n
1607
+ um p
1608
+ Ġd aughter
1609
+ Ġr is
1610
+ ure d
1611
+ Ġg lo
1612
+ Ġun ited
1613
+ ri ght
1614
+ ur y
1615
+ Ġacc ording
1616
+ ang er
1617
+ j oy
1618
+ Ġcur rent
1619
+ Ġsome body
1620
+ Ġeff ect
1621
+ Ġwhat ever
1622
+ Ġan t
1623
+ Ġcount ries
1624
+ o ve
1625
+ Ġ1 1
1626
+ u ary
1627
+ Ġso cial
1628
+ Ġgot ta
1629
+ Ġknow s
1630
+ Ġexper ience
1631
+ Ġf ield
1632
+ Ġdo ct
1633
+ Ġwebs ite
1634
+ Ġchan ce
1635
+ Ġsec urity
1636
+ Ġg un
1637
+ Ġst ate
1638
+ p ect
1639
+ Ġoth ers
1640
+ Ġne ar
1641
+ Ġcl ass
1642
+ Ġbeh old
1643
+ i en
1644
+ Ġp ick
1645
+ or row
1646
+ Ġfl ower
1647
+ Ġen joy
1648
+ Ġway s
1649
+ Ġbro ad
1650
+ Ġsu n
1651
+ Ġbuild ing
1652
+ Ġu h
1653
+ Ġsu g
1654
+ Ġhappen s
1655
+ ra id
1656
+ as ed
1657
+ Ġwee k
1658
+ Ġaf raid
1659
+ Ġqu ick
1660
+ Ġ1 8
1661
+ Ġd ied
1662
+ Ġper fect
1663
+ Ġl uck
1664
+ Ġ [
1665
+ Ġc as
1666
+ Ġse x
1667
+ Ġus ers
1668
+ Ġcomput er
1669
+ f ort
1670
+ Ġsomet imes
1671
+ Ġv ir
1672
+ Ġsim ple
1673
+ Ġt ouch
1674
+ Ġco ver
1675
+ Ġ ve
1676
+ Ġsu c
1677
+ Ġchr ist
1678
+ Ġbeh ind
1679
+ o ke
1680
+ Ġl ink
1681
+ Ġs il
1682
+ Ġadd ress
1683
+ Ġgo ld
1684
+ am p
1685
+ Ġro b
1686
+ st er
1687
+ Ġp os
1688
+ Ġp ap
1689
+ Ġget s
1690
+ re ad
1691
+ Ġed uc
1692
+ it ing
1693
+ Ġt em
1694
+ n ed
1695
+ Ġf a
1696
+ Ġj e
1697
+ le x
1698
+ i ally
1699
+ Ġ1 00
1700
+ Ġnet work
1701
+ Ġs ense
1702
+ Ġdest ro
1703
+ d y
1704
+ Ġpub lic
1705
+ Ġb ou
1706
+ Ġcoll ect
1707
+ Ġl ab
1708
+ Ġinst all
1709
+ m a
1710
+ l f
1711
+ Ġm er
1712
+ Ġout side
1713
+ er gy
1714
+ Ġext ra
1715
+ Ġse lect
1716
+ Ġis s
1717
+ Ġv i
1718
+ Ġfe at
1719
+ Ġhur t
1720
+ Ġp ack
1721
+ ud e
1722
+ 20 1
1723
+ Ġperson al
1724
+ s c
1725
+ Ġsu per
1726
+ Ġv oice
1727
+ ent ly
1728
+ Ġlangu age
1729
+ Ġfr ont
1730
+ Ġinterest ing
1731
+ l ause
1732
+ Ġinc re
1733
+ b al
1734
+ Ġfor g
1735
+ Ġchann el
1736
+ Ġknow n
1737
+ m e
1738
+ Ġchoo se
1739
+ m in
1740
+ Ġrep ort
1741
+ Ġd ark
1742
+ Ġdo g
1743
+ Ġm ount
1744
+ Ġwh ite
1745
+ Ġab s
1746
+ un g
1747
+ Ġsh are
1748
+ Ġcou ple
1749
+ Ġmus ic
1750
+ Ġa w
1751
+ Ġh it
1752
+ Ġton ight
1753
+ Ġe con
1754
+ iv ing
1755
+ Ġs at
1756
+ app lause
1757
+ Ġflor ist
1758
+ Ġwh ether
1759
+ Ġecon om
1760
+ Ġ vers
1761
+ Ġem ail
1762
+ m ed
1763
+ Ġor d
1764
+ ri b
1765
+ d om
1766
+ o b
1767
+ Ġem b
1768
+ Ġp a
1769
+ Ġent ire
1770
+ Ġwe l
1771
+ Ġ x
1772
+ u ce
1773
+ Ġhist ory
1774
+ Ġ201 8
1775
+ Ġfav or
1776
+ Ġhim self
1777
+ Ġa ge
1778
+ Ġs al
1779
+ ver t
1780
+ Ġen ergy
1781
+ Ġintern et
1782
+ Ġeng ine
1783
+ g th
1784
+ s on
1785
+ Ġex ch
1786
+ Ġal ong
1787
+ Ġproblem s
1788
+ Ġha ir
1789
+ Ġst at
1790
+ Ġl ate
1791
+ Ġcra zy
1792
+ Ġde ep
1793
+ Ġh ath
1794
+ f ic
1795
+ gy pt
1796
+ if ied
1797
+ Ġfe ar
1798
+ Ġl ow
1799
+ Ġcons ider
1800
+ Ġe gypt
1801
+ Ġgra nd
1802
+ Ġse ven
1803
+ b and
1804
+ i ans
1805
+ Ġimag ine
1806
+ c c
1807
+ Ġne ither
1808
+ Ġpre p
1809
+ Ġph ys
1810
+ Ġ er
1811
+ Ġa in
1812
+ Ġc ities
1813
+ Ġb urn
1814
+ Ġst re
1815
+ Ġres ult
1816
+ Ġup d
1817
+ Ġd an
1818
+ Ġper form
1819
+ Ġe ither
1820
+ Ġdestro y
1821
+ Ġcl ick
1822
+ Ġtri ed
1823
+ id ence
1824
+ Ġlook ed
1825
+ Ġfor get
1826
+ Ġserv ices
1827
+ Ġpr ice
1828
+ Ġtom orrow
1829
+ Ġb ooking
1830
+ Ġany more
1831
+ Ġstud ents
1832
+ Ġsing le
1833
+ Ġac ross
1834
+ e ad
1835
+ Ġp arent
1836
+ Ġno body
1837
+ Ġal ive
1838
+ Ġf ly
1839
+ ro om
1840
+ Ġsho ot
1841
+ it ions
1842
+ Ġe le
1843
+ c ast
1844
+ Ġen v
1845
+ Ġ5 0
1846
+ i or
1847
+ g o
1848
+ itt ing
1849
+ Ġp ull
1850
+ t t
1851
+ Ġbu ilt
1852
+ Ġs ister
1853
+ Ġsp end
1854
+ d le
1855
+ Ġgirl s
1856
+ Ġwor th
1857
+ Ġ est
1858
+ us ed
1859
+ Ġbo x
1860
+ Ġnor th
1861
+ Ġb ur
1862
+ i um
1863
+ Ġthem selves
1864
+ Ġter ms
1865
+ Ġsh ut
1866
+ i ke
1867
+ Ġd in
1868
+ Ġtell ing
1869
+ Ġprof ess
1870
+ Ġexch ange
1871
+ b ook
1872
+ Ġmark et
1873
+ Ġlong er
1874
+ Ġser ious
1875
+ Ġa ud
1876
+ Ġreview s
1877
+ Ġp ort
1878
+ Ġpict ure
1879
+ Ġpro per
1880
+ Ġsc ience
1881
+ Ġwor ry
1882
+ Ġm outh
1883
+ Ġg er
1884
+ ra ph
1885
+ we ll
1886
+ Ġoffer ing
1887
+ h aps
1888
+ pt ion
1889
+ Ġen c
1890
+ a w
1891
+ Ġaf ric
1892
+ Ġper haps
1893
+ Ġchan ged
1894
+ ) .
1895
+ Ġpl aces
1896
+ Ġsur pr
1897
+ Ġmin ute
1898
+ Ġnat ural
1899
+ ter n
1900
+ Ġmo b
1901
+ Ġm ic
1902
+ Ġturn ed
1903
+ z e
1904
+ Ġsh ort
1905
+ Ġth ird
1906
+ Ġl im
1907
+ g n
1908
+ Ġh or
1909
+ Ġch oice
1910
+ Ġd uring
1911
+ Ġpe ace
1912
+ Ġhot els
1913
+ Ġf ac
1914
+ Ġd ig
1915
+ Ġp ress
1916
+ Ġv ar
1917
+ ish ed
1918
+ Ġh us
1919
+ Ġtr ad
1920
+ if y
1921
+ v ent
1922
+ Ġon es
1923
+ Ġjo in
1924
+ as ure
1925
+ ver se
1926
+ r or
1927
+ Ġsur v
1928
+ Ġrun ning
1929
+ ec h
1930
+ Ġoff ice
1931
+ Ġto t
1932
+ Ġp en
1933
+ it er
1934
+ Ġse a
1935
+ Ġpri est
1936
+ Ġf ail
1937
+ Ġm ur
1938
+ s y
1939
+ Ġamaz ing
1940
+ Ġr u
1941
+ Ġpres ent
1942
+ Ġst ore
1943
+ Ġrec ord
1944
+ Ġc ry
1945
+ Ġsou l
1946
+ iz ation
1947
+ Ġwait ing
1948
+ Ġ ut
1949
+ Ġg round
1950
+ Ġdri ve
1951
+ v pn
1952
+ Ġ2 4
1953
+ he ad
1954
+ Ġof ten
1955
+ qu e
1956
+ Ġn orm
1957
+ Ġlar ge
1958
+ Ġsug gest
1959
+ in ation
1960
+ Ġst ra
1961
+ en cy
1962
+ Ġ2 5
1963
+ Ġfollow ing
1964
+ Ġhus band
1965
+ Ġc ard
1966
+ b it
1967
+ Ġwel come
1968
+ Ġr uss
1969
+ Ġinv est
1970
+ Ġneed ed
1971
+ ĠÂ ·
1972
+ Ġdoct or
1973
+ it ive
1974
+ al y
1975
+ Ġb orn
1976
+ Ġle av
1977
+ Ġc ause
1978
+ Ġto wn
1979
+ Ġsh ot
1980
+ el t
1981
+ Ġfor th
1982
+ Ġar ch
1983
+ Ġjud ah
1984
+ Ġf ix
1985
+ Ġseem s
1986
+ Ġpiec e
1987
+ Ġinst ead
1988
+ ir on
1989
+ Ġcon st
1990
+ i ents
1991
+ Ġcon cer
1992
+ c l
1993
+ Ġunivers ity
1994
+ Ġg e
1995
+ Ġapp ro
1996
+ Ġm ater
1997
+ Ġr ad
1998
+ ol ution
1999
+ Ġte ach
2000
+ Ġsuc cess
2001
+ m en
2002
+ Ġsec ret
2003
+ ill s
2004
+ Ġey e
2005
+ Ġsound s
2006
+ Ġse lf
2007
+ Ġchan ges
2008
+ Ġc e
2009
+ Ġh ate
2010
+ Ġloc al
2011
+ Ġt akes
2012
+ Ġc ult
2013
+ Ġn one
2014
+ Ġus er
2015
+ Ġmess age
2016
+ Ġh y
2017
+ Ġdis e
2018
+ o h
2019
+ Ġte le
2020
+ r u
2021
+ Ġt ar
2022
+ Ġs ize
2023
+ Ġb ud
2024
+ et er
2025
+ Ġen em
2026
+ Ġm ist
2027
+ Ġcam p
2028
+ Ġany way
2029
+ Ġenv iron
2030
+ Ġfin ally
2031
+ id ing
2032
+ Ġj ack
2033
+ Ġare a
2034
+ Ġcustom er
2035
+ es h
2036
+ Ġfeel ing
2037
+ Ġear ly
2038
+ Ġr ather
2039
+ r am
2040
+ Ġpart y
2041
+ Ġma j
2042
+ Ġb on
2043
+ Ġtr ack
2044
+ Ġev il
2045
+ Ġoff ic
2046
+ Ġas king
2047
+ m b
2048
+ Ġbu ll
2049
+ Ġdr ug
2050
+ Ġc ool
2051
+ Ġc red
2052
+ Ġsu bs
2053
+ Ġsc re
2054
+ o int
2055
+ Ġm ot
2056
+ Ġgovern ment
2057
+ Ġpo or
2058
+ ic le
2059
+ Ġsh alt
2060
+ Ġac cept
2061
+ Ġatt ack
2062
+ Ġbec ame
2063
+ Ġmater ial
2064
+ m y
2065
+ Ġm aster
2066
+ ull y
2067
+ Ġtr ouble
2068
+ Ġt en
2069
+ Ġth us
2070
+ Ġintern ational
2071
+ Ġwork ed
2072
+ Ġo il
2073
+ Ġpol ic
2074
+ Ġu r
2075
+ Ġsee ing
2076
+ Ġfo ot
2077
+ Ġhu h
2078
+ Ġpol ice
2079
+ Ġp al
2080
+ Ġu k
2081
+ am ed
2082
+ Ġr ich
2083
+ Ġsc ient
2084
+ Ġfam il
2085
+ Ġexpl ain
2086
+ g ress
2087
+ Ġty pe
2088
+ Ġman age
2089
+ Ġp ot
2090
+ Ġr ul
2091
+ r al
2092
+ cri be
2093
+ Ġfig ure
2094
+ i res
2095
+ er ve
2096
+ Ġgl ad
2097
+ Ġr ate
2098
+ Ġs outh
2099
+ un e
2100
+ Ġrel ations
2101
+ i k
2102
+ at ic
2103
+ Ġre le
2104
+ Ġpriv ate
2105
+ Ġan n
2106
+ 1 0
2107
+ Ġso ci
2108
+ Ġmo v
2109
+ Ġb ott
2110
+ Ġy ork
2111
+ Ġc y
2112
+ Ġd anger
2113
+ os p
2114
+ Ġcomplete ly
2115
+ Ġc ir
2116
+ Ġli e
2117
+ Ġo cc
2118
+ us es
2119
+ Ġaf f
2120
+ l t
2121
+ Ġmid dle
2122
+ Ġto ward
2123
+ og raph
2124
+ Ġd ress
2125
+ Ġhappen ing
2126
+ ens ive
2127
+ Ġbroad cast
2128
+ Ġparent s
2129
+ a ven
2130
+ c um
2131
+ Ġse ll
2132
+ Ġlo se
2133
+ Ġcoll e
2134
+ ro id
2135
+ att le
2136
+ pp ed
2137
+ âĢ ¦
2138
+ Ġcon vers
2139
+ Ġmo ses
2140
+ d ing
2141
+ Ġph il
2142
+ Ġi ll
2143
+ Ġam ount
2144
+ Ġcateg ories
2145
+ Ġplan et
2146
+ Ġeduc ation
2147
+ Ġwee ks
2148
+ Ġpartic ular
2149
+ Ġglo bal
2150
+ Ġany body
2151
+ Ġprom ot
2152
+ Ġdet ail
2153
+ Ġty p
2154
+ Ġyour s
2155
+ y ou
2156
+ Ġd ate
2157
+ Ġe ight
2158
+ Ġ1 3
2159
+ Ġeng lish
2160
+ Ġap art
2161
+ th er
2162
+ Ġd a
2163
+ Ġsh ip
2164
+ Ġro ck
2165
+ Ġresp ons
2166
+ u ation
2167
+ ale m
2168
+ pl ay
2169
+ iv id
2170
+ Ġa h
2171
+ Ġenviron ment
2172
+ ou b
2173
+ Ġc ast
2174
+ Ġsk in
2175
+ Ġrequ ire
2176
+ Ġ1 6
2177
+ Ġc ook
2178
+ ie f
2179
+ r ation
2180
+ Ġm ad
2181
+ Ġmob ile
2182
+ in o
2183
+ Ġm ass
2184
+ Ġmo ving
2185
+ m ing
2186
+ Ġid ent
2187
+ Ġcommun ity
2188
+ us alem
2189
+ Ġsm art
2190
+ wh at
2191
+ Ġstud y
2192
+ Ġsp ir
2193
+ ick ed
2194
+ Ġcomm on
2195
+ Ġjer usalem
2196
+ ou d
2197
+ Ġfe et
2198
+ Ġpol it
2199
+ Ġl ay
2200
+ Ġfl ight
2201
+ / /
2202
+ : //
2203
+ Ġt ab
2204
+ Ġmach ine
2205
+ Ġpap er
2206
+ Ġb all
2207
+ Ġex ist
2208
+ Ġw ild
2209
+ m on
2210
+ Ġh ol
2211
+ Ġris k
2212
+ u nt
2213
+ Ġsh op
2214
+ 5 0
2215
+ Ġb ill
2216
+ Ġpr act
2217
+ Ġdif fic
2218
+ Ġso ld
2219
+ Ġ201 9
2220
+ Ġmed ia
2221
+ Ġdiffic ult
2222
+ it or
2223
+ Ġimp ro
2224
+ Ġgre en
2225
+ Ġha ck
2226
+ ul ation
2227
+ Ġswe et
2228
+ Ġd iv
2229
+ Ġj our
2230
+ Ġcommun ic
2231
+ Ġind ust
2232
+ f ully
2233
+ Ġre ach
2234
+ ent al
2235
+ Ġbas ed
2236
+ Ġh ang
2237
+ Ġin f
2238
+ Ġf ill
2239
+ Ġf ile
2240
+ Ġfe ed
2241
+ Ġd om
2242
+ Ġb reat
2243
+ f ace
2244
+ Ġbl ue
2245
+ o k
2246
+ p ed
2247
+ Ġst ar
2248
+ Ġlo g
2249
+ f or
2250
+ Ġcont ent
2251
+ Ġm al
2252
+ all en
2253
+ Ġdec ided
2254
+ ) ,
2255
+ Ġb ir
2256
+ Ġro ad
2257
+ Ġb ird
2258
+ Ġh osp
2259
+ Ġb ri
2260
+ Ġter ri
2261
+ Ġp an
2262
+ Ġab ove
2263
+ ep t
2264
+ Ġfl o
2265
+ Ġoff ers
2266
+ ne y
2267
+ ent ial
2268
+ og n
2269
+ Ġsw ord
2270
+ Ġcam er
2271
+ Ġh tt
2272
+ Ġpres ident
2273
+ Ġit em
2274
+ Ġanim als
2275
+ Ġopp ort
2276
+ Ġind ivid
2277
+ Ġrelations hip
2278
+ Ġshould n
2279
+ Ġapp e
2280
+ Ġf air
2281
+ ro d
2282
+ Ġ1 4
2283
+ Ġopport un
2284
+ as es
2285
+ Ġch allen
2286
+ Ġqu ality
2287
+ b ed
2288
+ er t
2289
+ Ġwind ows
2290
+ Ġim age
2291
+ c us
2292
+ ou n
2293
+ es e
2294
+ Ġcap tain
2295
+ Ġvers ion
2296
+ Ġinst ant
2297
+ Ġes c
2298
+ Ġsu mm
2299
+ Ġpr ay
2300
+ Ġi r
2301
+ Ġmar ried
2302
+ e y
2303
+ ac ter
2304
+ et ic
2305
+ Ġs ick
2306
+ Ġdoll ars
2307
+ Ġm ap
2308
+ Ġcou n
2309
+ Ġmur der
2310
+ Ġcl os
2311
+ iv ed
2312
+ ren gth
2313
+ Ġdisc over
2314
+ Ġrequ est
2315
+ f riend
2316
+ Ġf elt
2317
+ ar ant
2318
+ Ġwh om
2319
+ Ġl ady
2320
+ ic ated
2321
+ im ate
2322
+ led ge
2323
+ u ly
2324
+ en ces
2325
+ Ġplay ing
2326
+ lish ed
2327
+ Ġcreat ed
2328
+ Ġo ri
2329
+ Ġnat ure
2330
+ Ġfil es
2331
+ Ġst rength
2332
+ Ġphot o
2333
+ Ġrec ogn
2334
+ Ġdiffer ence
2335
+ Ġameric a
2336
+ e x
2337
+ om m
2338
+ Ġameric an
2339
+ Ġord ers
2340
+ Ġfu nd
2341
+ Ġger man
2342
+ o id
2343
+ Ġs ens
2344
+ Ġex cept
2345
+ is ing
2346
+ Ġs qu
2347
+ Ġide as
2348
+ Ġdoll ar
2349
+ Ġ ver
2350
+ Ġh d
2351
+ Ġm ill
2352
+ Ġst ick
2353
+ ct ion
2354
+ Ġpr ison
2355
+ Ġlo ved
2356
+ Ġ ...
2357
+ Ġs an
2358
+ Ġbl ess
2359
+ Ġs us
2360
+ pl oy
2361
+ o le
2362
+ Ġte xt
2363
+ Ġdis app
2364
+ Ġdam n
2365
+ Ġt ag
2366
+ Ġmo der
2367
+ ition al
2368
+ up id
2369
+ Ġg ather
2370
+ Ġgo og
2371
+ in ary
2372
+ Ġc at
2373
+ Ġg iving
2374
+ Ġcan cer
2375
+ Ġb illion
2376
+ Ġcap t
2377
+ Ġob ject
2378
+ Ġ1 7
2379
+ Ġbir th
2380
+ Ġal t
2381
+ Ġapp lic
2382
+ Ġface book
2383
+ ath ers
2384
+ ab ility
2385
+ Ġp sy
2386
+ Ġgu arant
2387
+ Ġr id
2388
+ Ġinv ol
2389
+ Ġfore ver
2390
+ Ġst upid
2391
+ ec ess
2392
+ Ġmeet ing
2393
+ ib ility
2394
+ Ġdra w
2395
+ Ġafric a
2396
+ Ġlo ck
2397
+ Ġfr ank
2398
+ Ġ201 7
2399
+ un k
2400
+ Ġch at
2401
+ c ing
2402
+ Ġ4 0
2403
+ um e
2404
+ Ġser ver
2405
+ Ġcurrent ly
2406
+ Ġf ur
2407
+ Ġj an
2408
+ Ġtechn olog
2409
+ Ġtrans l
2410
+ Ġmaj or
2411
+ Ġpsy ch
2412
+ at ors
2413
+ Ġc atch
2414
+ Ġto r
2415
+ Ġvi ol
2416
+ Ġo bs
2417
+ Ġsk y
2418
+ Ġpop ular
2419
+ Ġco ld
2420
+ z z
2421
+ Ġfor ward
2422
+ Ġfe ll
2423
+ Ġstart ing
2424
+ Ġhe aven
2425
+ Ġfun ny
2426
+ Ġtreat ment
2427
+ Ġh oney
2428
+ Ġinterest ed
2429
+ Ġwor se
2430
+ Ġprov ide
2431
+ Ġthousand s
2432
+ Ġl au
2433
+ Ġe ast
2434
+ Ġcell s
2435
+ os h
2436
+ Ġlearn ed
2437
+ p or
2438
+ Ġhow ever
2439
+ Ġb al
2440
+ Ġinc red
2441
+ Ġh ast
2442
+ Ġspe ed
2443
+ Ġgoog le
2444
+ Ġ .
2445
+ Ġs ac
2446
+ Ġwe ap
2447
+ Ġbo ys
2448
+ Ġstre et
2449
+ em ent
2450
+ Ġho ly
2451
+ Ġsp o
2452
+ u it
2453
+ Ġp ath
2454
+ Ġa uth
2455
+ Ġn on
2456
+ Ġt able
2457
+ Ġchann els
2458
+ i et
2459
+ Ġs our
2460
+ Ġv ict
2461
+ ent y
2462
+ air s
2463
+ ar a
2464
+ Ġpolic y
2465
+ u be
2466
+ Ġg ent
2467
+ Ġme ant
2468
+ Ġcon v
2469
+ Ġst ri
2470
+ Ġexp ress
2471
+ p ly
2472
+ ore d
2473
+ Ġth reat
2474
+ Ġspec ific
2475
+ Ġbegin ning
2476
+ Ġaut om
2477
+ m as
2478
+ Ġ :
2479
+ Ġt ed
2480
+ Ġsystem s
2481
+ h ow
2482
+ er n
2483
+ Ġst ories
2484
+ Ġdep art
2485
+ Ġne igh
2486
+ Ġnews let
2487
+ Ġmoder n
2488
+ Ġf at
2489
+ Ġinclud ing
2490
+ Ġch ina
2491
+ Ġspir it
2492
+ Ġabs ol
2493
+ Ġgif ts
2494
+ Ġneigh b
2495
+ Ġli k
2496
+ Ġval ue
2497
+ Ġpos ition
2498
+ Ġit self
2499
+ Ġgu est
2500
+ itt en
2501
+ Ġev ent
2502
+ Ġcop y
2503
+ l er
2504
+ ur s
2505
+ Ġlear ning
2506
+ Ġk ept
2507
+ Ġatt ention
2508
+ Ġresp ect
2509
+ om es
2510
+ Ġour selves
2511
+ Ġcar ry
2512
+ Ġis land
2513
+ Ġte ac
2514
+ Ġv ill
2515
+ Ġwho se
2516
+ Ġbl ock
2517
+ c ious
2518
+ Ġcol or
2519
+ Ġl at
2520
+ Ġknow ledge
2521
+ Ġsim ply
2522
+ Ġob vious
2523
+ Ġwonder ful
2524
+ g u
2525
+ r ay
2526
+ Ġfor ce
2527
+ re st
2528
+ end ed
2529
+ er y
2530
+ ce ll
2531
+ Ġcl a
2532
+ Ġsl ow
2533
+ Ġ +
2534
+ iss ion
2535
+ Ġdeliver ed
2536
+ ke y
2537
+ Ġv ol
2538
+ Ġpro ph
2539
+ ww w
2540
+ Ġdet ect
2541
+ Ġabsol ute
2542
+ in y
2543
+ ib ly
2544
+ Ġgener al
2545
+ Ġb ag
2546
+ Ġf ool
2547
+ Ġpart s
2548
+ Ġbeh av
2549
+ Ġn ations
2550
+ Ġfre qu
2551
+ Ġright s
2552
+ Ġad m
2553
+ Ġdev ice
2554
+ Ġla unch
2555
+ Ġtool s
2556
+ Ġhosp ital
2557
+ Ġn ecess
2558
+ Ġm is
2559
+ Ġsome where
2560
+ Ġprom ise
2561
+ Ġmod el
2562
+ Ġand roid
2563
+ id ay
2564
+ Ġpre vious
2565
+ f fe
2566
+ ag ed
2567
+ Ġm atch
2568
+ Ġleav ing
2569
+ Ġse ver
2570
+ Ġcent er
2571
+ Ġpower ful
2572
+ as k
2573
+ ap t
2574
+ p ec
2575
+ on y
2576
+ Ġturn s
2577
+ Ġint ell
2578
+ Ġsec ure
2579
+ Ġgent le
2580
+ ip s
2581
+ Ġnewslet ter
2582
+ Ġw ood
2583
+ n ers
2584
+ u x
2585
+ is es
2586
+ Ġmed ic
2587
+ Ġt ree
2588
+ res h
2589
+ um b
2590
+ Ġbou qu
2591
+ Ġhu ge
2592
+ Ġcond itions
2593
+ Ġf athers
2594
+ Ġbe gan
2595
+ Ġf ish
2596
+ Ġm eth
2597
+ Ġc orn
2598
+ Ġp ark
2599
+ Ġn ational
2600
+ e ous
2601
+ Ġli ved
2602
+ Ġr an
2603
+ g en
2604
+ l im
2605
+ Ġb ank
2606
+ Ġbe at
2607
+ Ġsu d
2608
+ y ear
2609
+ Ġc art
2610
+ il ities
2611
+ Ġbel ow
2612
+ Ġt ur
2613
+ Ġwatch ing
2614
+ Ġm ath
2615
+ Ġdise ase
2616
+ Ġa head
2617
+ Ġo ce
2618
+ Ġre pl
2619
+ Ġquick ly
2620
+ Ġcom b
2621
+ e en
2622
+ Ġuk ra
2623
+ b an
2624
+ p ress
2625
+ Ġg ar
2626
+ Ġem ot
2627
+ p ar
2628
+ Ġst ation
2629
+ Ġw er
2630
+ Ġg ives
2631
+ Ġsp ort
2632
+ Ġbit ch
2633
+ Ġfur ther
2634
+ b all
2635
+ Ġh i
2636
+ Ġr om
2637
+ oth ers
2638
+ Ġluck y
2639
+ Ġdev ices
2640
+ Ġequ ip
2641
+ Ġdin ner
2642
+ p ing
2643
+ Ġchrist mas
2644
+ g re
2645
+ Ġj es
2646
+ Ġmic ro
2647
+ Ġs ight
2648
+ Ġs ong
2649
+ Ġfavor ite
2650
+ en e
2651
+ Ġl os
2652
+ Ġk iss
2653
+ Ġde b
2654
+ Ġa st
2655
+ Ġl ad
2656
+ Ġben ef
2657
+ n s
2658
+ Ġl ed
2659
+ Ġsit uation
2660
+ Ġbre ad
2661
+ u nd
2662
+ Ġc ross
2663
+ Ġd rop
2664
+ Ġfeat ures
2665
+ Ġw icked
2666
+ Ġcl oth
2667
+ Ġwer en
2668
+ w or
2669
+ Ġcompan ies
2670
+ Ġd ro
2671
+ Ġhtt p
2672
+ Ġsp read
2673
+ Ġbas ically
2674
+ Ġmem ory
2675
+ at ure
2676
+ Ġspec ies
2677
+ Ġstra ight
2678
+ u ri
2679
+ c ul
2680
+ Ġi p
2681
+ Ġb ath
2682
+ Ġexper im
2683
+ Ġhell o
2684
+ Ġpriv acy
2685
+ Ġnorm al
2686
+ Ġguarant ee
2687
+ Ġma x
2688
+ Ġequip ment
2689
+ re me
2690
+ i od
2691
+ Ġtar get
2692
+ Ġte eth
2693
+ Ġset ting
2694
+ Ġw ed
2695
+ Ġart icle
2696
+ ut ions
2697
+ Ġany where
2698
+ Ġshow s
2699
+ Ġmult ip
2700
+ ce ed
2701
+ ast ic
2702
+ r ing
2703
+ 1 1
2704
+ Ġper iod
2705
+ Ġuni verse
2706
+ Ġdef in
2707
+ Ġs itting
2708
+ Ġori gin
2709
+ f fer
2710
+ pl es
2711
+ er ing
2712
+ Ġfor t
2713
+ Ġhon est
2714
+ Ġitem s
2715
+ Ġpl at
2716
+ h ood
2717
+ Ġlot s
2718
+ Ġd en
2719
+ Ġpro p
2720
+ Ġim m
2721
+ Ġinst it
2722
+ c ause
2723
+ Ġth row
2724
+ Ġcom fort
2725
+ Ġsa ith
2726
+ Ġopt ions
2727
+ Ġjan uary
2728
+ Ġforg ot
2729
+ Ġche ap
2730
+ it ter
2731
+ im in
2732
+ i qu
2733
+ Ġ201 6
2734
+ Ġtrans p
2735
+ t ime
2736
+ Ġres our
2737
+ Ġa ch
2738
+ Ġli ft
2739
+ Ġpur p
2740
+ Ġ >
2741
+ Ġc and
2742
+ u el
2743
+ Ġf em
2744
+ am a
2745
+ Ġsm ell
2746
+ Ġs ad
2747
+ Ġch em
2748
+ Ġus es
2749
+ Ġrem ain
2750
+ Ġarm y
2751
+ Ġt ick
2752
+ Ġbro ken
2753
+ Ġsever al
2754
+ v iew
2755
+ Ġ ess
2756
+ Ġsp ent
2757
+ Ġdevelop ment
2758
+ Ġgl ass
2759
+ Ġdanger ous
2760
+ 3 0
2761
+ Ġb le
2762
+ an n
2763
+ Ġri ver
2764
+ Ġb attle
2765
+ Ġright eous
2766
+ Ġco ffe
2767
+ Ġdisc uss
2768
+ Ġsa le
2769
+ Ġdep end
2770
+ Ġi ce
2771
+ ruct ion
2772
+ Ġsud den
2773
+ Ġf it
2774
+ Ġcur ren
2775
+ Ġpa id
2776
+ Ġsa ved
2777
+ Ġpre d
2778
+ Ġrep res
2779
+ Ġcent ury
2780
+ ipp ing
2781
+ Ġp rou
2782
+ is hing
2783
+ Ġdep os
2784
+ Ġtechnolog ies
2785
+ Ġserv ant
2786
+ d o
2787
+ Ġsub ject
2788
+ Ġh ide
2789
+ Ġbe y
2790
+ Ġwe ight
2791
+ Ġbel ong
2792
+ t ed
2793
+ Ġ #
2794
+ Ġb es
2795
+ om b
2796
+ Ġprom o
2797
+ Ġstr uct
2798
+ le y
2799
+ Ġunderstand ing
2800
+ Ġj ac
2801
+ Ġnum bers
2802
+ pec ially
2803
+ Ġcoffe e
2804
+ Ġg h
2805
+ Ġcour t
2806
+ Ġaf fect
2807
+ ph one
2808
+ Ġev idence
2809
+ Ġab ility
2810
+ Ġim ages
2811
+ Ġact ion
2812
+ Ġm ir
2813
+ Ġexc use
2814
+ Ġher o
2815
+ ap h
2816
+ Ġvide os
2817
+ Ġes pecially
2818
+ Ġcontin ue
2819
+ Ġbey ond
2820
+ Ġ ,
2821
+ Ġb an
2822
+ Ġd ar
2823
+ Ġdis play
2824
+ o v
2825
+ Ġh id
2826
+ Ġcomp lex
2827
+ Ġrul es
2828
+ ll y
2829
+ Ġwas te
2830
+ od e
2831
+ iv ity
2832
+ Ġrec omm
2833
+ oc r
2834
+ Ġflo or
2835
+ nd s
2836
+ Ġdra g
2837
+ Ġprou d
2838
+ Ġsa ul
2839
+ Ġtalk ed
2840
+ Ġsoci ety
2841
+ er m
2842
+ om s
2843
+ Ġsc ared
2844
+ Ġest ab
2845
+ Ġmov ie
2846
+ Ġterri ble
2847
+ Ġsac ri
2848
+ re w
2849
+ an ces
2850
+ bo ard
2851
+ Ġanim al
2852
+ Ġcertain ly
2853
+ b u
2854
+ iz ing
2855
+ il ar
2856
+ it ude
2857
+ Ġbook s
2858
+ 1 2
2859
+ Ġbas k
2860
+ Ġmeth od
2861
+ y le
2862
+ as ing
2863
+ Ġm ention
2864
+ Ġdes cri
2865
+ Ġb ow
2866
+ i ot
2867
+ Ġdec ision
2868
+ Ġprogram s
2869
+ ou ght
2870
+ an c
2871
+ Ġcod es
2872
+ Ġar ri
2873
+ Ġtri p
2874
+ Ġopportun ity
2875
+ Ġw ine
2876
+ Ġmed ical
2877
+ h am
2878
+ Ġh ous
2879
+ Ġwr itten
2880
+ Ġp atter
2881
+ Ġp ra
2882
+ ac king
2883
+ Ġmar ch
2884
+ Ġfin ish
2885
+ Ġsol ution
2886
+ Ġwe ird
2887
+ h ab
2888
+ ver age
2889
+ Ġthere of
2890
+ Ġcall ing
2891
+ Ġwr ote
2892
+ Ġra in
2893
+ Ġpur ch
2894
+ Ġem ploy
2895
+ Ġking dom
2896
+ l i
2897
+ w ide
2898
+ Ġbe ach
2899
+ Ġpl ant
2900
+ Ġkind s
2901
+ Ġprotect ion
2902
+ iv al
2903
+ Ġw est
2904
+ Ġro ll
2905
+ Ġreal ize
2906
+ Ġdo cum
2907
+ Ġplat form
2908
+ Ġc ars
2909
+ g s
2910
+ Ġl oss
2911
+ ent ed
2912
+ itt ed
2913
+ Ġext reme
2914
+ Ġhon or
2915
+ Ġr ide
2916
+ Ġbe ar
2917
+ Ġbon us
2918
+ Ġabsolute ly
2919
+ Ġbo ard
2920
+ Ġmist ake
2921
+ w ord
2922
+ Ġs ect
2923
+ Ġg ate
2924
+ Ġincre ase
2925
+ Ġth ine
2926
+ Ġun cle
2927
+ Ġmiss ing
2928
+ Ġchar ge
2929
+ Ġresult s
2930
+ Ġcolle ge
2931
+ Ġl ic
2932
+ am s
2933
+ Ġne g
2934
+ Ġser ve
2935
+ Ġcons um
2936
+ as ons
2937
+ Ġsu ffer
2938
+ Ġstr ange
2939
+ Ġd well
2940
+ Ġl iter
2941
+ Ġag re
2942
+ ĠâĢ Ķ
2943
+ ash ion
2944
+ Ġrece ive
2945
+ Ġcon vert
2946
+ ict ion
2947
+ Ġop in
2948
+ Ġserv ants
2949
+ Ġun less
2950
+ Ġmil es
2951
+ Ġtr ick
2952
+ Ġgif t
2953
+ Ġoce an
2954
+ - -
2955
+ Ġm ac
2956
+ Ġb ord
2957
+ uc ed
2958
+ b on
2959
+ Ġh ung
2960
+ Ġlink s
2961
+ Ġ2 1
2962
+ Ġtrain ing
2963
+ Ġbar b
2964
+ Ġauth or
2965
+ b ack
2966
+ Ġr ound
2967
+ e ed
2968
+ Ġt ill
2969
+ ren ch
2970
+ Ġwind ow
2971
+ Ġu lt
2972
+ Ġag ree
2973
+ Ġgr ad
2974
+ Ġplan e
2975
+ Ġg al
2976
+ ic a
2977
+ Ġnot ice
2978
+ Ġmo ved
2979
+ Ġv ac
2980
+ Ġtre es
2981
+ ar r
2982
+ Ġsil ver
2983
+ Ġt our
2984
+ Ġr ates
2985
+ med i
2986
+ Ġm ail
2987
+ Ġd oub
2988
+ Ġj ew
2989
+ Ġpart ner
2990
+ Ġfa ult
2991
+ Ġfo cus
2992
+ Ġas h
2993
+ Ġbott om
2994
+ Ġcamer a
2995
+ f ast
2996
+ ist ic
2997
+ h old
2998
+ s et
2999
+ Ġt ast
3000
+ Ġp et
3001
+ Ġbouqu ets
3002
+ Ġloc ation
3003
+ Ġsupp ose
3004
+ ð Ł
3005
+ Ġs ar
3006
+ i ar
3007
+ Ġsa nd
3008
+ Ġroom s
3009
+ Ġf ing
3010
+ Ġfamil ies
3011
+ Ġimpro ve
3012
+ ap an
3013
+ Ġdec ember
3014
+ Ġconnect ion
3015
+ a f
3016
+ Ġwe ar
3017
+ Ġmean ing
3018
+ Ġ ðŁ
3019
+ Ġmag ic
3020
+ act ion
3021
+ Ġem er
3022
+ Ġsumm er
3023
+ Ġc iv
3024
+ Ġ20 20
3025
+ Ġapp re
3026
+ Ġqu iet
3027
+ Ġang el
3028
+ Ġo d
3029
+ nd on
3030
+ Ġcred it
3031
+ ac le
3032
+ Ġo x
3033
+ Ġus ually
3034
+ Ġapp ear
3035
+ Ġwr iting
3036
+ Ġch ief
3037
+ Ġpass ed
3038
+ Ġmem bers
3039
+ at ers
3040
+ Ġag ent
3041
+ no v
3042
+ a ff
3043
+ v ision
3044
+ Ġse par
3045
+ Ġr out
3046
+ Ġdesign ed
3047
+ Ġpict ures
3048
+ Ġlau gh
3049
+ en ed
3050
+ Ġde ar
3051
+ Ġstand ard
3052
+ Ġval id
3053
+ Ġpiec es
3054
+ Ġ2 7
3055
+ Ġb oss
3056
+ Ġsure ly
3057
+ Ġruss ian
3058
+ Ġindust ry
3059
+ Ġ et
3060
+ Ġj apan
3061
+ ive ly
3062
+ Ġread ing
3063
+ Ġbehav ior
3064
+ Ġo ct
3065
+ Ġj ump
3066
+ Ġcall s
3067
+ l ook
3068
+ r um
3069
+ ar on
3070
+ fer ence
3071
+ Ġe p
3072
+ Ġpack age
3073
+ Ġfore st
3074
+ Ġcult ure
3075
+ m er
3076
+ Ġare as
3077
+ Ġiss ues
3078
+ Ġphys ical
3079
+ t le
3080
+ Ġp ush
3081
+ an a
3082
+ Ġcustom ers
3083
+ Ġiss ue
3084
+ d e
3085
+ Ġsa f
3086
+ Ġkill ing
3087
+ Ġwal king
3088
+ b b
3089
+ Ġc up
3090
+ Ġg ard
3091
+ Ġnecess ary
3092
+ a ur
3093
+ Ġd v
3094
+ Ġli f
3095
+ ff ic
3096
+ Ġsit es
3097
+ Ġcor re
3098
+ Ġjac ob
3099
+ er ved
3100
+ Ġstop ped
3101
+ Ġre nt
3102
+ Ġv an
3103
+ Ġcom ments
3104
+ bo x
3105
+ Ġtot al
3106
+ Ġsu it
3107
+ Ġhand le
3108
+ Ġappro ach
3109
+ im um
3110
+ Ġim medi
3111
+ Ġrem ind
3112
+ Ġn amed
3113
+ Ġsim ilar
3114
+ Ġce le
3115
+ Ġapp ly
3116
+ Ġdes p
3117
+ l on
3118
+ us ion
3119
+ Ġappre ci
3120
+ ri l
3121
+ Ġreal ity
3122
+ Ġjohn son
3123
+ u a
3124
+ Ġf if
3125
+ Ġrequ ired
3126
+ Ġda ily
3127
+ Ġw ake
3128
+ as p
3129
+ Ġcomp et
3130
+ l a
3131
+ Ġwh e
3132
+ Ġintell ig
3133
+ Ġw it
3134
+ Ġall ows
3135
+ ag ram
3136
+ Ġstand ing
3137
+ ines e
3138
+ Ġbeaut y
3139
+ Ġcele br
3140
+ u ed
3141
+ Ġb ase
3142
+ id s
3143
+ Ġmiss ion
3144
+ Ġprofess ional
3145
+ Ġconvers ation
3146
+ Ġl ower
3147
+ Ġwor ried
3148
+ Ġl ying
3149
+ Ġbl ind
3150
+ Ġupd ated
3151
+ Ġenem ies
3152
+ Ġm ich
3153
+ am in
3154
+ Ġ6 0
3155
+ Ġpat ients
3156
+ Ġopt ion
3157
+ er c
3158
+ Ġc aught
3159
+ Ġpl ans
3160
+ Ġpoint s
3161
+ Ġin her
3162
+ Ġst ream
3163
+ Ġex cell
3164
+ Ġper m
3165
+ 5 00
3166
+ Ġn ames
3167
+ Ġhum ans
3168
+ erv ation
3169
+ d s
3170
+ Ġt aught
3171
+ Ġfil m
3172
+ Ġcloth es
3173
+ Ġle v
3174
+ Ġpat ient
3175
+ Ġcommand ed
3176
+ Ġlike ly
3177
+ Ġbro ke
3178
+ Ġtot ally
3179
+ Ġphot os
3180
+ im ens
3181
+ Ġind ia
3182
+ Ġre asons
3183
+ ber ry
3184
+ Ġbr others
3185
+ ĠÂ £
3186
+ Ġgrow ing
3187
+ ri a
3188
+ Ġking s
3189
+ Ġtyp es
3190
+ ĠðŁ Ĵ
3191
+ Ġhigh er
3192
+ a ult
3193
+ ir ty
3194
+ Ġlo ndon
3195
+ ĠðŁĴ IJ
3196
+ Ġb od
3197
+ Ġr ing
3198
+ Ġcl oud
3199
+ Ġth r
3200
+ Ġukra ine
3201
+ Ġin n
3202
+ Ġsp oke
3203
+ Ġem pt
3204
+ Ġins p
3205
+ Ġrequire ments
3206
+ Ġf ashion
3207
+ Ġha ll
3208
+ Ġbl ow
3209
+ Ġgod s
3210
+ Ġopin ion
3211
+ Ġch inese
3212
+ Ġdig ital
3213
+ so ci
3214
+ Ġbe g
3215
+ Ġar g
3216
+ or ing
3217
+ Ġde als
3218
+ Ġjour ney
3219
+ Ġa ware
3220
+ Ġint rod
3221
+ Ġjud g
3222
+ Ġinvol ved
3223
+ Ġst ood
3224
+ Ġtr uck
3225
+ lo ck
3226
+ Ġtechn ical
3227
+ Ġn ine
3228
+ ra ge
3229
+ Ġexper ien
3230
+ Ġ19 9
3231
+ Ġhundred s
3232
+ Ġlo gin
3233
+ Ġfight ing
3234
+ Ġallow ed
3235
+ Ġp u
3236
+ Ġanswer ed
3237
+ d am
3238
+ Ġshow ed
3239
+ o ices
3240
+ Ġb and
3241
+ Ġst ars
3242
+ el ess
3243
+ Ġcas ino
3244
+ Ġfa ith
3245
+ Ġjes us
3246
+ if f
3247
+ Ġsy m
3248
+ br uary
3249
+ m ail
3250
+ Ġd ue
3251
+ Ġreal ized
3252
+ Ġhu nt
3253
+ Ġphot ograph
3254
+ Ġsn ow
3255
+ Ġach ie
3256
+ l ier
3257
+ Ġi ron
3258
+ Ġas soci
3259
+ l in
3260
+ Ġd ance
3261
+ Ġse ed
3262
+ Ġfe bruary
3263
+ Ġeven ing
3264
+ Ġacc ident
3265
+ Ġdist rib
3266
+ 201 6
3267
+ Ġhor se
3268
+ ak ed
3269
+ ĠâĢ ¢
3270
+ Ġscre en
3271
+ Ġindivid ual
3272
+ Ġto w
3273
+ ch es
3274
+ ess ion
3275
+ Ġdem ocr
3276
+ Ġf ed
3277
+ Ġr ange
3278
+ Ġjud ge
3279
+ ress ion
3280
+ Ġcare ful
3281
+ Ġsacri f
3282
+ Ġciv il
3283
+ Ġmid st
3284
+ Ġdirect ly
3285
+ Ġwed ding
3286
+ Ġresour ces
3287
+ b a
3288
+ Ġa ust
3289
+ Ġcl ub
3290
+ Ġbr ows
3291
+ oc ol
3292
+ Ġdrug s
3293
+ Ġdetail s
3294
+ Ġa verage
3295
+ in c
3296
+ Ġin fect
3297
+ Ġgu ard
3298
+ i us
3299
+ Ġsw itch
3300
+ l ight
3301
+ u f
3302
+ Ġun s
3303
+ Ġfeel s
3304
+ Ġa ra
3305
+ Ġc ash
3306
+ Ġlet ter
3307
+ Ġenem y
3308
+ 1 5
3309
+ i j
3310
+ Ġf aster
3311
+ Ġf rench
3312
+ Ġse at
3313
+ Ġwit ness
3314
+ id ge
3315
+ Ġang ry
3316
+ Ġproper ty
3317
+ Ġgentle men
3318
+ Ġhous es
3319
+ Ġnot e
3320
+ Ġbig ger
3321
+ y n
3322
+ at ically
3323
+ Ġn ut
3324
+ c ies
3325
+ in st
3326
+ Ġan ger
3327
+ ad a
3328
+ Ġpo ll
3329
+ Ġru le
3330
+ p ro
3331
+ Ġreg ular
3332
+ Ġmess ages
3333
+ g round
3334
+ Ġsh ipping
3335
+ Ġtele vision
3336
+ ic ed
3337
+ Ġfore ign
3338
+ Ġa ug
3339
+ Ġf le
3340
+ le c
3341
+ Ġrec ently
3342
+ Ġpass word
3343
+ ir t
3344
+ Ġter ror
3345
+ Ġgrow th
3346
+ oint ed
3347
+ i el
3348
+ l ike
3349
+ Ġt it
3350
+ Ġconnect ed
3351
+ Ġeconom ic
3352
+ Ġr ating
3353
+ Ġalt ar
3354
+ Ġst age
3355
+ ag er
3356
+ y al
3357
+ Ġt ent
3358
+ Ġap ril
3359
+ Ġc ub
3360
+ Ġsecond s
3361
+ Ġthe ory
3362
+ th ough
3363
+ Ġex erc
3364
+ Ġshow ing
3365
+ Ġmanage ment
3366
+ ic les
3367
+ Ġj une
3368
+ Ġfin al
3369
+ Ġbur nt
3370
+ Ġvar ious
3371
+ Ġpurp ose
3372
+ e v
3373
+ i ation
3374
+ z er
3375
+ an ced
3376
+ Ġtr uly
3377
+ Ġspe aking
3378
+ Ġbreak fast
3379
+ Ġpop ulation
3380
+ a el
3381
+ Ġw is
3382
+ Ġstud ent
3383
+ Ġgrou ps
3384
+ Ġsour ce
3385
+ Ġa aron
3386
+ Ġw ise
3387
+ Ġw aters
3388
+ Ġthink s
3389
+ Ġtw itter
3390
+ Ġvis ion
3391
+ Ġfind ing
3392
+ Ġput ting
3393
+ Ġwalk ed
3394
+ Ġje h
3395
+ Ġchallen ge
3396
+ Ġneighb or
3397
+ Ġro se
3398
+ Ġma le
3399
+ Ġfin ished
3400
+ t ube
3401
+ Ġhe av
3402
+ im s
3403
+ Ġ2 2
3404
+ Ġsee k
3405
+ Ġimp act
3406
+ o on
3407
+ Ġcom ment
3408
+ Ġple asure
3409
+ Ġd ouble
3410
+ Ġin nov
3411
+ se c
3412
+ Ġwill ing
3413
+ Ġjo y
3414
+ olog ical
3415
+ Ġreg ister
3416
+ Ġhas n
3417
+ b i
3418
+ Ġbut ton
3419
+ Ġsa ving
3420
+ Ġtr ade
3421
+ Ġsol ve
3422
+ Ġlar gest
3423
+ Ġlat est
3424
+ Ġpub lished
3425
+ w ise
3426
+ Ġaud ience
3427
+ Ġsubs cri
3428
+ Ġappe ared
3429
+ Ġin it
3430
+ Ġmag n
3431
+ Ġpolit ical
3432
+ 6 0
3433
+ Ġm ix
3434
+ Ġyou tube
3435
+ Ġn ation
3436
+ Ġpro gress
3437
+ Ġal though
3438
+ Ġass ist
3439
+ Ġmultip le
3440
+ Ġpre vent
3441
+ Ġind eed
3442
+ Ġtrans form
3443
+ Ġmiss ed
3444
+ Ġstat us
3445
+ ic king
3446
+ Ġcurren cy
3447
+ c a
3448
+ Ġp un
3449
+ Ġg as
3450
+ op h
3451
+ Ġav oid
3452
+ Ġmill ions
3453
+ Ġempt y
3454
+ Ġ3 5
3455
+ Ġz er
3456
+ ro ider
3457
+ er al
3458
+ Ġf resh
3459
+ Ġg am
3460
+ Ġv en
3461
+ ug g
3462
+ Ġuni que
3463
+ Ġgener ation
3464
+ x ic
3465
+ Ġg ri
3466
+ Ġsc ale
3467
+ Ġwor st
3468
+ Ġsur face
3469
+ Ġmount ain
3470
+ Ġin fl
3471
+ Ġan c
3472
+ Ġar rest
3473
+ av es
3474
+ Ġdri ving
3475
+ Ġi gn
3476
+ Ġc it
3477
+ Ġtrans fer
3478
+ Ġinclud e
3479
+ Ġbreat h
3480
+ un ately
3481
+ Ġte a
3482
+ Ġfam ous
3483
+ Ġcateg ory
3484
+ ific ation
3485
+ ag ing
3486
+ ad es
3487
+ Ġsk ills
3488
+ Ġemb roider
3489
+ Ġfo ld
3490
+ Ġchar acter
3491
+ Ġadv ent
3492
+ Ġsurpr ise
3493
+ ac ed
3494
+ os is
3495
+ ber t
3496
+ Ġdevelop ed
3497
+ Ġthrough out
3498
+ Ġsur ve
3499
+ Ġst one
3500
+ Ġad ult
3501
+ Ġlevel s
3502
+ ag n
3503
+ Ġdad dy
3504
+ Ġw ide
3505
+ Ġex ec
3506
+ Ġpl u
3507
+ Ġtw ice
3508
+ Ġlangu ages
3509
+ Ġbod ies
3510
+ e es
3511
+ Ġhe ld
3512
+ ro ll
3513
+ Ġ2 8
3514
+ Ġtw enty
3515
+ Ġfre ed
3516
+ Ġvir t
3517
+ Ġrad io
3518
+ Ġconv in
3519
+ Ġt ough
3520
+ ru pt
3521
+ Ġcorre ct
3522
+ o ber
3523
+ Ġlo ad
3524
+ Ġbou ght
3525
+ om ing
3526
+ Ġse pt
3527
+ Ġqu een
3528
+ Ġbig gest
3529
+ Ġaff ord
3530
+ it ation
3531
+ Ġpay ment
3532
+ Ġlad ies
3533
+ Ġchan ging
3534
+ Ġev ents
3535
+ u als
3536
+ Ġb are
3537
+ Ġv ia
3538
+ Ġbl og
3539
+ Ġme as
3540
+ ward s
3541
+ Ġhealth y
3542
+ b orn
3543
+ Ġme asure
3544
+ Ġimp oss
3545
+ Ġrecogn ize
3546
+ n al
3547
+ 4 5
3548
+ m ber
3549
+ it ary
3550
+ ter day
3551
+ Ġwe ak
3552
+ Ġpr im
3553
+ Ġbirth day
3554
+ en ing
3555
+ Ġon to
3556
+ Ġch ick
3557
+ Ġmon itor
3558
+ Ġcook ies
3559
+ Ġt iny
3560
+ Ġli es
3561
+ Ġfr uit
3562
+ Ġoffer ed
3563
+ Ġlead ers
3564
+ Ġme at
3565
+ Ġdec ide
3566
+ Ġyes terday
3567
+ Ġair port
3568
+ Ġoct ober
3569
+ Ġra nd
3570
+ Ġobvious ly
3571
+ Ġf an
3572
+ Ġinter act
3573
+ Ġsw im
3574
+ Ġcoup ons
3575
+ ĠâĻ ª
3576
+ Ġcond ition
3577
+ Ġdestroy ed
3578
+ Ġspo ken
3579
+ Ġ eth
3580
+ Ġd ude
3581
+ as c
3582
+ Ġsp y
3583
+ Ġad min
3584
+ Ġrem ove
3585
+ Ġword press
3586
+ Ġesc ape
3587
+ Ġbus y
3588
+ Ġatt ract
3589
+ Ġ8 0
3590
+ Ġleg al
3591
+ uf act
3592
+ Ġe ating
3593
+ Ġtrans port
3594
+ Ġgl ory
3595
+ Ġelect ric
3596
+ Ġd na
3597
+ Ġincred ible
3598
+ Ġh en
3599
+ Ġpre fer
3600
+ Ġbo at
3601
+ Ġwin ter
3602
+ Ġsudden ly
3603
+ Ġd ying
3604
+ Ġtell s
3605
+ u ra
3606
+ Ġc oo
3607
+ Ġeurope an
3608
+ Ġmr s
3609
+ Ġperform ance
3610
+ Ġsubs cribe
3611
+ Ġpromot ional
3612
+ Ġt un
3613
+ is f
3614
+ Ġbr it
3615
+ Ġuse ful
3616
+ Ġinvest ig
3617
+ Ġapplic ation
3618
+ Ġadd ed
3619
+ Ġrel ax
3620
+ Ġsport s
3621
+ Ġsaf ety
3622
+ g al
3623
+ u le
3624
+ Ġwe aring
3625
+ Ġr ise
3626
+ Ġhelp ing
3627
+ Ġhelp ed
3628
+ Ġbaby lon
3629
+ Ġactiv ity
3630
+ Ġsurv ive
3631
+ c an
3632
+ Ġsp an
3633
+ Ġsp ot
3634
+ Ġpar is
3635
+ Ġcas es
3636
+ Ġdv b
3637
+ g ers
3638
+ ist an
3639
+ Ġman ufact
3640
+ Ġevery where
3641
+ Ġkeep ing
3642
+ Ġhol iday
3643
+ . '
3644
+ o ved
3645
+ Ġam b
3646
+ Ġlaw y
3647
+ fl owers
3648
+ Ġl am
3649
+ it ect
3650
+ Ġsc an
3651
+ Ġcr it
3652
+ Ġbas ic
3653
+ Ġcent ral
3654
+ Ġembroider y
3655
+ Ġlic ense
3656
+ Ġimposs ible
3657
+ Ġre ign
3658
+ Ġfun ction
3659
+ Ġbird s
3660
+ r ate
3661
+ w ood
3662
+ Ġt ax
3663
+ Ġj im
3664
+ il ing
3665
+ Ġpr ices
3666
+ Ġfl esh
3667
+ Ġcr ime
3668
+ Ġeas ily
3669
+ Ġlisten ing
3670
+ Ġhead s
3671
+ ar ies
3672
+ Ġe ph
3673
+ Ġem p
3674
+ Ġold er
3675
+ Ġrel ig
3676
+ Ġve h
3677
+ Ġpriest s
3678
+ Ġdepos it
3679
+ c el
3680
+ Ġw ound
3681
+ Ġser ies
3682
+ Ġcont ain
3683
+ Ġear lier
3684
+ Ġrele ase
3685
+ e k
3686
+ i ate
3687
+ Ġm m
3688
+ Ġd ut
3689
+ Ġun fort
3690
+ Ġproduct ion
3691
+ Ġarch itect
3692
+ b el
3693
+ Ġopen ed
3694
+ Ġcreat ing
3695
+ Ġupd ate
3696
+ 1 9
3697
+ 2 2
3698
+ Ġin hab
3699
+ Ġfeat ure
3700
+ Ġinher it
3701
+ Ġreturn ed
3702
+ Ġsept ember
3703
+ Ġf ant
3704
+ Ġv all
3705
+ Ġkill er
3706
+ Ġinst agram
3707
+ Ġgra b
3708
+ Ġsign al
3709
+ Ġfar m
3710
+ p ut
3711
+ Ġc ab
3712
+ ant ic
3713
+ Ġreg ard
3714
+ Ġge or
3715
+ Ġpot ential
3716
+ Ġrecomm end
3717
+ ete k
3718
+ Ġpost ed
3719
+ ad em
3720
+ om on
3721
+ Ġr ace
3722
+ ite ly
3723
+ Ġen s
3724
+ Ġmount ains
3725
+ Ġplu gin
3726
+ Ġjust ice
3727
+ Ġcomp ass
3728
+ Ġprep are
3729
+ Ġra ise
3730
+ Ġrece ived
3731
+ Ġrepres ent
3732
+ l s
3733
+ em pt
3734
+ Ġ2 3
3735
+ Ġgreat est
3736
+ Ġeas ier
3737
+ Ġste al
3738
+ Ġbud dy
3739
+ l og
3740
+ ve mber
3741
+ ar ia
3742
+ Ġmight y
3743
+ Ġev olution
3744
+ Ġtoward s
3745
+ Ġimmedi ately
3746
+ Ġc ute
3747
+ Ġdream s
3748
+ Ġmaterial s
3749
+ ! "
3750
+ Ġj ose
3751
+ Ġrob ot
3752
+ Ġforg ive
3753
+ Ġapart ment
3754
+ Ġappreci ate
3755
+ 8 0
3756
+ Ġp ages
3757
+ ag ue
3758
+ Ġla id
3759
+ lim ited
3760
+ Ġara b
3761
+ Ġb a
3762
+ Ġf ro
3763
+ Ġpro ve
3764
+ s s
3765
+ v al
3766
+ Ġl en
3767
+ Ġl unch
3768
+ Ġr asp
3769
+ am m
3770
+ Ġno vember
3771
+ Ġmod els
3772
+ Ġfamil iar
3773
+ Ġdiscover ed
3774
+ Ġbec omes
3775
+ Ġpart ners
3776
+ Ġphil ist
3777
+ b es
3778
+ Ġp ool
3779
+ ust ain
3780
+ ous ly
3781
+ Ġpress ure
3782
+ Ġscient ific
3783
+ Ġlik ed
3784
+ Ġexcell ent
3785
+ Ġinn oc
3786
+ Ġhe ight
3787
+ Ġpre gn
3788
+ Ġbra nd
3789
+ Ġsat isf
3790
+ Ġexperim ent
3791
+ k es
3792
+ Ġl ines
3793
+ Ġeffect s
3794
+ Ġgard en
3795
+ Ġf al
3796
+ ar ily
3797
+ Ġun c
3798
+ Ġhear ing
3799
+ Ġfem ale
3800
+ op e
3801
+ Ġmar ry
3802
+ e gr
3803
+ Ġst uck
3804
+ op s
3805
+ Ġspe ech
3806
+ Ġbord er
3807
+ Ġcoo per
3808
+ Ġm art
3809
+ pp ing
3810
+ Ġprep ared
3811
+ Ġstruct ure
3812
+ Ġin iqu
3813
+ Ġstep s
3814
+ m ark
3815
+ Ĥ ¬
3816
+ Ġrest aur
3817
+ Ġmem ber
3818
+ Ġcal cul
3819
+ Ġ !
3820
+ ress ed
3821
+ Ġeff ort
3822
+ Â °
3823
+ Ġn eck
3824
+ ipp ed
3825
+ Ġl oo
3826
+ ch an
3827
+ Ġpl us
3828
+ Ġadv ant
3829
+ Ġ7 0
3830
+ Ġruss ia
3831
+ Ġt ips
3832
+ Ġd ry
3833
+ Ġsh ad
3834
+ Ġu m
3835
+ Ġwas h
3836
+ Ġsol omon
3837
+ Ġcare er
3838
+ Ġfin an
3839
+ Ġserious ly
3840
+ k y
3841
+ sel s
3842
+ Ġ3 1
3843
+ Ġsal es
3844
+ Ġclos er
3845
+ Ġp ill
3846
+ ab or
3847
+ Ġend s
3848
+ Ġviol ence
3849
+ o very
3850
+ Ġv es
3851
+ Ġprod uce
3852
+ p age
3853
+ ar m
3854
+ Ġst aff
3855
+ Ġpr int
3856
+ aught ers
3857
+ Ġansw ers
3858
+ Ġchem ical
3859
+ Ġt ired
3860
+ ri age
3861
+ Ġfun ct
3862
+ Ġlab or
3863
+ Ġteac her
3864
+ Ġhid den
3865
+ Ġno ise
3866
+ Ġac adem
3867
+ Ġweap on
3868
+ Ġweap ons
3869
+ s p
3870
+ at ory
3871
+ Ġp ure
3872
+ us ive
3873
+ Ġal tern
3874
+ Ġun limited
3875
+ Ġgirl friend
3876
+ Ġgra ph
3877
+ Ġsho es
3878
+ Ġpract ice
3879
+ Ġwis dom
3880
+ Ġpur s
3881
+ Ġpartic ip
3882
+ Ġcon cept
3883
+ Ġco ven
3884
+ Ġvis ual
3885
+ Ġca used
3886
+ Ġwall s
3887
+ Ġcorn er
3888
+ Ġsacrif ice
3889
+ Ġcit iz
3890
+ Ġw etek
3891
+ Ġfr ance
3892
+ Ġrev olution
3893
+ Ġcal m
3894
+ Ġdem and
3895
+ Ġeconom y
3896
+ Ġp c
3897
+ Ġg ain
3898
+ il es
3899
+ Ġstart s
3900
+ Ġreg ion
3901
+ Ã ©
3902
+ Ġ q
3903
+ Ġd aughters
3904
+ is ions
3905
+ Ġch ur
3906
+ ak er
3907
+ Ġlove ly
3908
+ Ġcr ack
3909
+ Ġliter ally
3910
+ ath an
3911
+ Ġadd ition
3912
+ Ġresp ond
3913
+ Ġdownload ed
3914
+ Ġr ub
3915
+ ep end
3916
+ ara oh
3917
+ Ġdoub t
3918
+ h ere
3919
+ Ġut c
3920
+ 1 3
3921
+ re p
3922
+ Ġph araoh
3923
+ Ġfollow ed
3924
+ Ġcover ed
3925
+ nd ay
3926
+ Ġconf ir
3927
+ Ġhold ing
3928
+ Ġfig ured
3929
+ Ġclear ly
3930
+ gre g
3931
+ 4 0
3932
+ Ġs en
3933
+ Ġd imens
3934
+ Ġthem e
3935
+ Ġsc ri
3936
+ Ġca uses
3937
+ Ġlim ited
3938
+ Ġvar i
3939
+ Ġmedic ine
3940
+ Ġsetting s
3941
+ Ġorigin al
3942
+ Ġswe ar
3943
+ Ġwild er
3944
+ Ġgather ed
3945
+ Ġextreme ly
3946
+ Ġaug ust
3947
+ Ġt ask
3948
+ Ġs ustain
3949
+ Ġb acter
3950
+ Ġe c
3951
+ Ġe g
3952
+ al es
3953
+ Ġres c
3954
+ Ġgerman y
3955
+ 2 5
3956
+ m l
3957
+ n ew
3958
+ Ġ *
3959
+ Ġm ars
3960
+ Ġre pe
3961
+ Ġsh ame
3962
+ Ġmo on
3963
+ Ġfr anc
3964
+ Ġact ive
3965
+ Ġhur ry
3966
+ Ġpain ting
3967
+ Ġpurch ase
3968
+ h an
3969
+ Ġth er
3970
+ es ome
3971
+ Ġint egr
3972
+ Ġadd itional
3973
+ Ġrespons ible
3974
+ wor ks
3975
+ Ġsym pt
3976
+ le ment
3977
+ Ġsh own
3978
+ Ġ9 0
3979
+ Ġrasp berry
3980
+ in ing
3981
+ on se
3982
+ Ġinst ruct
3983
+ Ġind ic
3984
+ Ġcompl icated
3985
+ r om
3986
+ in ct
3987
+ Ġb ound
3988
+ Ġf ol
3989
+ Ġre ven
3990
+ Ġfl u
3991
+ Ġjo bs
3992
+ Ġcons cious
3993
+ Ġschool s
3994
+ Ġrece i
3995
+ Ġscient ists
3996
+ Ġfreed om
3997
+ Ġo we
3998
+ Ġj osh
3999
+ Ġsm o
4000
+ Ġsur round
4001
+ Ġext ensive
4002
+ Ġsurpr ised
4003
+ Ġfill ed
4004
+ Ġbo b
4005
+ Ġmod e
4006
+ Ġtem per
4007
+ g a
4008
+ v est
4009
+ ri al
4010
+ il s
4011
+ Ġfir m
4012
+ Ġrem ote
4013
+ Ġmove ment
4014
+ Ġjudg ment
4015
+ j ust
4016
+ Ġlo ves
4017
+ Ġtri al
4018
+ Ġevent ually
4019
+ Ġb unch
4020
+ Ġb right
4021
+ Ġe ars
4022
+ Ġsh ape
4023
+ Ġgu ide
4024
+ Ġpre m
4025
+ Ġbring s
4026
+ Ġsuccess ful
4027
+ Ġann oun
4028
+ Ġro of
4029
+ Ġplan ning
4030
+ ret ch
4031
+ Ġmatter s
4032
+ Ġleg s
4033
+ Ġme chan
4034
+ Ġsc ore
4035
+ Ġinter view
4036
+ Ġoper ation
4037
+ Ġsus pect
4038
+ Ġm s
4039
+ Ġdes ire
4040
+ Ġrec ent
4041
+ Ġdec l
4042
+ Ġopt im
4043
+ Ġg all
4044
+ Ġbe ll
4045
+ Ġan al
4046
+ ck et
4047
+ ip e
4048
+ Ġpre c
4049
+ 9 9
4050
+ t v
4051
+ ll ed
4052
+ ac ing
4053
+ Ġ201 3
4054
+ Ġsol ar
4055
+ Ġmil itary
4056
+ Ġoffic ial
4057
+ Ġscre w
4058
+ Ġrespons ibility
4059
+ Ġw id
4060
+ ut ed
4061
+ Ġex h
4062
+ Ġwilder ness
4063
+ p her
4064
+ ul ate
4065
+ Ġwar m
4066
+ Ġresp onse
4067
+ Ġc ure
4068
+ Ġc uri
4069
+ Ġli br
4070
+ Ġgre w
4071
+ Ġnear ly
4072
+ Ġsan ct
4073
+ Ġvill age
4074
+ . ,
4075
+ er ed
4076
+ Ġj on
4077
+ Ġhigh ly
4078
+ Ġjose ph
4079
+ k n
4080
+ Ġm ut
4081
+ Ġcap ital
4082
+ Ġoper ating
4083
+ Ġdes erve
4084
+ Ġ201 5
4085
+ Ġeffect ive
4086
+ Ġhen ry
4087
+ Ġd ust
4088
+ ul ous
4089
+ Ġser vers
4090
+ ĠâĢ ĺ
4091
+ Ġe ld
4092
+ ul ations
4093
+ ck s
4094
+ Ġar r
4095
+ Ġtag s
4096
+ p ass
4097
+ Ġd ed
4098
+ Ġl uc
4099
+ Ġst ock
4100
+ Ġgreat er
4101
+ Ġpres ence
4102
+ Ġorgan ization
4103
+ Ġtast e
4104
+ Ġinhab it
4105
+ Ġj ames
4106
+ Ġro le
4107
+ Ġar k
4108
+ Ġsur ger
4109
+ Ġcr ush
4110
+ Ġfull y
4111
+ Ġpa ul
4112
+ Ġcoven ant
4113
+ b ur
4114
+ ab les
4115
+ Ġcont ract
4116
+ Ġhelp s
4117
+ Ġdes k
4118
+ Ġadv ice
4119
+ Ġhost el
4120
+ Ġmer cy
4121
+ Ġbath room
4122
+ i ant
4123
+ Ġr ay
4124
+ Ġbring ing
4125
+ Ġeff ic
4126
+ h ouse
4127
+ st airs
4128
+ Ġ2 6
4129
+ Ġsupp ly
4130
+ Ġc akes
4131
+ pp er
4132
+ Ġcar ried
4133
+ Ġho le
4134
+ Ġstud ies
4135
+ Ġoper ator
4136
+ Ġprin ces
4137
+ Ġcommunic ation
4138
+ Ġdepart ment
4139
+ ent ially
4140
+ il ed
4141
+ Ġknow ing
4142
+ Ġend ed
4143
+ e in
4144
+ p an
4145
+ Ġh ors
4146
+ Ġte nd
4147
+ Ġbu ying
4148
+ Ġtra ffic
4149
+ Ġkeep s
4150
+ Ġland sc
4151
+ Ġcomfort able
4152
+ l ies
4153
+ Ġ ?
4154
+ Ġjo ke
4155
+ Ġoffer ings
4156
+ Ġcor por
4157
+ Ġdefin itely
4158
+ m us
4159
+ z a
4160
+ Ġh om
4161
+ Ġb ast
4162
+ Ġdis p
4163
+ Ġ3 00
4164
+ uct ion
4165
+ Ġdi agn
4166
+ Ġcomput ers
4167
+ Ġpos itive
4168
+ Ġstre ets
4169
+ Ġbroadcast ing
4170
+ Ġbless ed
4171
+ Ġachie ve
4172
+ 1 6
4173
+ Ġw es
4174
+ Ġcomm er
4175
+ Ġexc iting
4176
+ Ġteac hing
4177
+ Ġa lex
4178
+ Ġj uly
4179
+ ul f
4180
+ Ġgot ten
4181
+ Ġstr uck
4182
+ Ġelect ron
4183
+ Ġcir c
4184
+ Ġmath em
4185
+ Ġphilist ines
4186
+ u ate
4187
+ Ġke ys
4188
+ pe g
4189
+ Ġdet erm
4190
+ Ġprin ce
4191
+ Ġdem on
4192
+ Ġvir us
4193
+ g ree
4194
+ z il
4195
+ Ġb er
4196
+ Ġf ra
4197
+ ar ter
4198
+ Ġlight s
4199
+ Ġactiv ities
4200
+ Ġfund am
4201
+ Ġbes ides
4202
+ Ġestab lished
4203
+ Ġunfort unately
4204
+ le ar
4205
+ Ġk itch
4206
+ Ġsome how
4207
+ Ġchur ch
4208
+ Ġr am
4209
+ Ġpro s
4210
+ Ġcon c
4211
+ if t
4212
+ Ġsc ene
4213
+ Ġinst rum
4214
+ Ġdam age
4215
+ Ġdom in
4216
+ Ġlos ing
4217
+ Ġspan ish
4218
+ Ġinnoc ent
4219
+ Ġas se
4220
+ Ġind epend
4221
+ Ġdevelop ing
4222
+ Ġprin cess
4223
+ Ġsqu are
4224
+ Ġintellig ence
4225
+ Ġvall ey
4226
+ r it
4227
+ al ed
4228
+ Ġmin ister
4229
+ Ġposs ibly
4230
+ Ġcost s
4231
+ Ġpred ict
4232
+ Ġhung ry
4233
+ Ġc ow
4234
+ Ġb omb
4235
+ Ġsol utions
4236
+ Ġbrows er
4237
+ Ġn av
4238
+ Ġmy ster
4239
+ ist ration
4240
+ Ġcr ow
4241
+ Ġgun s
4242
+ Ġaw esome
4243
+ Ġoffic er
4244
+ Ġheav y
4245
+ h ol
4246
+ i ers
4247
+ Ġm use
4248
+ Ġmain tain
4249
+ Ġbarb ie
4250
+ 1 8
4251
+ in ations
4252
+ us ing
4253
+ Ġj ail
4254
+ Ġcl osed
4255
+ Ġap olog
4256
+ Ġocc ur
4257
+ o ff
4258
+ u k
4259
+ Ġt ong
4260
+ et ed
4261
+ Ġz e
4262
+ Ġsign ific
4263
+ ĠÂ ©
4264
+ ord an
4265
+ Ġcl ient
4266
+ Ġprov ides
4267
+ Ġp eter
4268
+ Ġk en
4269
+ ra ft
4270
+ Ġsm oke
4271
+ Ġsy n
4272
+ ic ious
4273
+ Ġout look
4274
+ Ġar ms
4275
+ Ġdist ance
4276
+ Ġdog s
4277
+ Ġadvent ure
4278
+ r ict
4279
+ Ġn uc
4280
+ Ġit aly
4281
+ Ġplay ed
4282
+ Ġseem ed
4283
+ Ġlik es
4284
+ Ġ ~
4285
+ se qu
4286
+ Ġsp l
4287
+ Ġbet h
4288
+ Ġhar m
4289
+ m os
4290
+ y a
4291
+ Ġbe er
4292
+ Ġte en
4293
+ Ġapp le
4294
+ Ġpri or
4295
+ Ġvpn s
4296
+ Ġfly ing
4297
+ Ġpra ise
4298
+ Ġst orm
4299
+ at ives
4300
+ Ġsp ring
4301
+ Ġgod dam
4302
+ Ġbra zil
4303
+ Ġm ike
4304
+ Ġsh ar
4305
+ Ġsc ar
4306
+ Ġdeliver ing
4307
+ Ġshop ping
4308
+ Ġautom atically
4309
+ Ġdocum ent
4310
+ Ġsympt oms
4311
+ b ooking
4312
+ Ġye llow
4313
+ Ġcl in
4314
+ Ġacc om
4315
+ Ġgr ace
4316
+ Ġproject s
4317
+ Ġmach ines
4318
+ Ġfrequ ently
4319
+ Ġfinan cial
4320
+ Ġkitch en
4321
+ ri an
4322
+ os en
4323
+ Ġcl imate
4324
+ iz es
4325
+ by e
4326
+ Ġiniqu ity
4327
+ n et
4328
+ Ġm ort
4329
+ Ġc ards
4330
+ Ġs ake
4331
+ Ġb other
4332
+ Ġfeel ings
4333
+ Ġdr unk
4334
+ Ġlead ing
4335
+ Ġexc l
4336
+ Ġweb c
4337
+ c il
4338
+ Ġh ill
4339
+ Ġother wise
4340
+ Ġtrad itional
4341
+ Ġcred its
4342
+ Ġpatter n
4343
+ Ġmich ael
4344
+ Ġh un
4345
+ ll ing
4346
+ Ġp ig
4347
+ Ġj ordan
4348
+ Ġch osen
4349
+ Ġ201 4
4350
+ Ġed ge
4351
+ 0 4
4352
+ Ġf aces
4353
+ ra in
4354
+ Ġdeli vers
4355
+ Ġparticular ly
4356
+ z en
4357
+ en a
4358
+ Ġter m
4359
+ Ġjosh ua
4360
+ Ġb ang
4361
+ Ġp ed
4362
+ Ġsh aring
4363
+ ant ly
4364
+ Ġv amp
4365
+ Ġcr imin
4366
+ Ġdri ver
4367
+ Ġcop s
4368
+ g or
4369
+ h ole
4370
+ Ġch air
4371
+ Ġthought s
4372
+ Ġteach ers
4373
+ Ġmuse um
4374
+ Ġj ul
4375
+ Ġro ot
4376
+ Ġmar riage
4377
+ Ġsy mb
4378
+ Ġbra ins
4379
+ Ġexc ited
4380
+ f o
4381
+ Ġl ack
4382
+ Ġwas hing
4383
+ Ġco ast
4384
+ Ġcoll abor
4385
+ Ġwonder ing
4386
+ Ġgoddam n
4387
+ Ġn erv
4388
+ Ġb oo
4389
+ Ġse ason
4390
+ Ġworld wide
4391
+ ub s
4392
+ Ġbl ame
4393
+ Ġur ban
4394
+ Ġgal ax
4395
+ b ing
4396
+ Ġb atter
4397
+ Ġatt empt
4398
+ Ġlev ites
4399
+ 0 3
4400
+ r ant
4401
+ r ated
4402
+ ap ed
4403
+ Ġhop ing
4404
+ Ġsleep ing
4405
+ Ġindivid uals
4406
+ Ġcand y
4407
+ Ġh iding
4408
+ Ġg ates
4409
+ ens ion
4410
+ Ġ5 00
4411
+ Ġenter pr
4412
+ Ġaud io
4413
+ " ?
4414
+ Ġh ook
4415
+ Ġbe ast
4416
+ Ġre ve
4417
+ ers on
4418
+ Ġsub m
4419
+ Ġcer t
4420
+ ac ity
4421
+ Ġan aly
4422
+ ir ing
4423
+ ur ance
4424
+ ist ics
4425
+ Ġrec over
4426
+ Ġturn ing
4427
+ Ġsend ing
4428
+ Ġcol on
4429
+ Ġinclud es
4430
+ Ġwebs ites
4431
+ Ġpick ed
4432
+ Ġmov ies
4433
+ Ġzer o
4434
+ Ġm ary
4435
+ Ġf ab
4436
+ Ġl in
4437
+ Ġres ist
4438
+ ren e
4439
+ ph ere
4440
+ Ġkey board
4441
+ Ġha bit
4442
+ Ġwho ever
4443
+ Ġcl im
4444
+ Ġstay ing
4445
+ Ġconf ig
4446
+ Ġlead er
4447
+ Ġextra ord
4448
+ Ġsurger y
4449
+ Ġnerv ous
4450
+ Ġcont rib
4451
+ Ġadv anced
4452
+ Ġenc ou
4453
+ s a
4454
+ s ing
4455
+ Ġch oices
4456
+ Ġincred ibly
4457
+ Ġfing er
4458
+ ant booking
4459
+ Ġpl astic
4460
+ Ġad vert
4461
+ Ġinv ent
4462
+ Ġmult i
4463
+ 1 4
4464
+ Ġcomm it
4465
+ Ġmon ster
4466
+ Ġdr inking
4467
+ Ġexper t
4468
+ Ġleav es
4469
+ Ġtransp onder
4470
+ Ġhors es
4471
+ i est
4472
+ Ġt ro
4473
+ Ġn ur
4474
+ Ġhe at
4475
+ Ġra re
4476
+ Ġsch ed
4477
+ Ġinherit ance
4478
+ Ġj u
4479
+ Ġr ough
4480
+ Ġchar l
4481
+ Ġdimens ions
4482
+ Ġpl enty
4483
+ Ġro ses
4484
+ Ġres erved
4485
+ Ġgr own
4486
+ Ġnet works
4487
+ k er
4488
+ Ġ =
4489
+ Ġk ick
4490
+ Ġshe ep
4491
+ s hip
4492
+ re ts
4493
+ Ġdo ors
4494
+ Ġgr ant
4495
+ Ġrel ated
4496
+ Ġsus p
4497
+ y m
4498
+ Ġh at
4499
+ Ġp iss
4500
+ as ion
4501
+ st ood
4502
+ Ġpl ants
4503
+ Ġqu it
4504
+ Ġact ions
4505
+ Ġmin imum
4506
+ Ġjour nal
4507
+ 2 00
4508
+ Ġp ink
4509
+ Ġre j
4510
+ Ġme xic
4511
+ Ġne ur
4512
+ Ġle on
4513
+ ag o
4514
+ Ġra ised
4515
+ Ġtri be
4516
+ Ġtest s
4517
+ Ġlawy er
4518
+ b l
4519
+ Ġfe es
4520
+ Ġcont ains
4521
+ Ġwe alth
4522
+ Ġfl ow
4523
+ Ġloc ated
4524
+ Ġlaw s
4525
+ Ġbenef its
4526
+ Ġsect ion
4527
+ 2 4
4528
+ Ġbr an
4529
+ Ġear n
4530
+ Ġdeliver ies
4531
+ Ġadvant age
4532
+ Ġst retch
4533
+ Ġpar am
4534
+ Ġrighteous ness
4535
+ p a
4536
+ Ġst ones
4537
+ Ġgo al
4538
+ Ġyour selves
4539
+ Ġnot iced
4540
+ Ġde gree
4541
+ Ġfu el
4542
+ Ġlim it
4543
+ a ign
4544
+ e xt
4545
+ Ġl ion
4546
+ Ġme l
4547
+ im ately
4548
+ Ġb ones
4549
+ Ġexp ensive
4550
+ els at
4551
+ Ġfield s
4552
+ Ġer ror
4553
+ Ġcamp aign
4554
+ Ġmethod s
4555
+ Ġlen gth
4556
+ re l
4557
+ Ġent ry
4558
+ Ġdef end
4559
+ Ġconcer ning
4560
+ d ra
4561
+ Ġd ating
4562
+ Ġre fer
4563
+ Ġac qu
4564
+ Ġsc r
4565
+ Ġind ian
4566
+ Ġpass ion
4567
+ Ġmind s
4568
+ Ġeng age
4569
+ Ġexpect ed
4570
+ et ers
4571
+ Ġk ore
4572
+ Ġu nd
4573
+ Ġher self
4574
+ Ġposs ess
4575
+ Ġfour th
4576
+ Ġemer g
4577
+ Ġet c
4578
+ Ġth om
4579
+ Ġre ward
4580
+ Ġup set
4581
+ Ġdescri ption
4582
+ Ġd ick
4583
+ om a
4584
+ Ġse vent
4585
+ Ġr ot
4586
+ Ġcar bon
4587
+ Ġra p
4588
+ Ġcoun sel
4589
+ 1 00
4590
+ Ġinter face
4591
+ Ġplay er
4592
+ Ġpret end
4593
+ Ġmil k
4594
+ Ġbask ets
4595
+ Ġinfl u
4596
+ mus ic
4597
+ ic ide
4598
+ Ġfl ash
4599
+ Ġspecial ize
4600
+ u nder
4601
+ Ġre act
4602
+ Ġph ones
4603
+ ang ers
4604
+ Ġsub st
4605
+ Ġgh ost
4606
+ Ġm at
4607
+ ar ian
4608
+ ic ing
4609
+ Ġbr idge
4610
+ Ġscri pt
4611
+ Ġsymb ol
4612
+ Ġcon greg
4613
+ Ġstr ugg
4614
+ Ġhar ry
4615
+ Ġpregn ant
4616
+ Ġlibr ary
4617
+ Ġc ro
4618
+ Ġl apt
4619
+ Ġch amp
4620
+ Ġste el
4621
+ Ġf asc
4622
+ Ġst ress
4623
+ ist ry
4624
+ Ġcr ash
4625
+ Ġbelie ved
4626
+ erv ations
4627
+ Ġprofess or
4628
+ Ġfal se
4629
+ Ġbu ried
4630
+ Ġapp s
4631
+ Ġsm ile
4632
+ Ġtrans m
4633
+ cri pt
4634
+ Ġm ental
4635
+ Ġsh er
4636
+ Ġprom ised
4637
+ Ġopp os
4638
+ Ġrand om
4639
+ Ġsh el
4640
+ Ġexp and
4641
+ Ġ19 7
4642
+ Ġdemocr acy
4643
+ m p
4644
+ Ġev ol
4645
+ Ġflor ists
4646
+ Ġess ential
4647
+ Ġw ire
4648
+ Ġs d
4649
+ Ġli ber
4650
+ Ġref lect
4651
+ Ġdoct ors
4652
+ Ġut ter
4653
+ Ġtick et
4654
+ Ġqu al
4655
+ Ġhome page
4656
+ Ġfail ed
4657
+ Ġmot or
4658
+ y e
4659
+ Ġgener ations
4660
+ Ġdark ness
4661
+ Ġconsider ed
4662
+ Ġbask et
4663
+ Ġcommer cial
4664
+ Ġt ight
4665
+ Ġj ere
4666
+ Ġpro st
4667
+ Ġlet ters
4668
+ Ġact ual
4669
+ Ġpay ing
4670
+ Ġcommun ities
4671
+ rop ri
4672
+ on ed
4673
+ Ġn ar
4674
+ Ġlar ger
4675
+ il ty
4676
+ Ġcla im
4677
+ Ġdar ling
4678
+ Ġjapan ese
4679
+ Ġst yle
4680
+ Ġj ane
4681
+ Ġanc ient
4682
+ Ġrestaur ant
4683
+ Ġtong ue
4684
+ Ġse qu
4685
+ Ġapp arent
4686
+ Ġboy friend
4687
+ Ġperfect ly
4688
+ Ġdise ases
4689
+ Ġwhe el
4690
+ rep rene
4691
+ 1 7
4692
+ Ġkn ock
4693
+ Ġr ome
4694
+ Ġinter p
4695
+ Ġbre ast
4696
+ Ġbab ies
4697
+ Ġarm ies
4698
+ Ġbacter ia
4699
+ Ġther ap
4700
+ e em
4701
+ Ġ ought
4702
+ Ġch ec
4703
+ Ġtr oub
4704
+ Ġcomp on
4705
+ Ġâ Ĥ¬
4706
+ Ġhist or
4707
+ Ġb at
4708
+ Ġin j
4709
+ et ime
4710
+ se ct
4711
+ Ġ3 6
4712
+ Ġcomm itted
4713
+ Ġopen ing
4714
+ Ġcons ult
4715
+ Ġben j
4716
+ Ġbri ef
4717
+ 0 7
4718
+ t r
4719
+ Ġf ec
4720
+ as ant
4721
+ Ġwe ather
4722
+ Ġha z
4723
+ wh y
4724
+ Ġcitiz ens
4725
+ Ġlandsc ape
4726
+ n el
4727
+ p al
4728
+ Ġno se
4729
+ Ġ2 9
4730
+ ub lic
4731
+ Ġdel ight
4732
+ Ġ201 0
4733
+ Ġsl ight
4734
+ Ġass um
4735
+ Ġcongreg ation
4736
+ Ġch ose
4737
+ Ġcap acity
4738
+ Ġburn ed
4739
+ Ġbenef it
4740
+ Ġaust ral
4741
+ Ġinhabit ants
4742
+ d on
4743
+ Ġfor ms
4744
+ Ġass ign
4745
+ Ġvis a
4746
+ n es
4747
+ Ġdi et
4748
+ Ġcompass ion
4749
+ Ġfol ks
4750
+ Ġp ound
4751
+ Ġch am
4752
+ Ġplay ers
4753
+ Ġsupport s
4754
+ Ġincre asing
4755
+ Ġengine ering
4756
+ Ġshoot ing
4757
+ Ġmarket ing
4758
+ v ant
4759
+ Ġm aps
4760
+ Ġv ote
4761
+ Ġback ground
4762
+ Ġenter tain
4763
+ Ġemb arr
4764
+ Ġasse mb
4765
+ Ġembarr ass
4766
+ b re
4767
+ Ġt um
4768
+ as se
4769
+ th is
4770
+ ig ma
4771
+ Ġhost els
4772
+ v ere
4773
+ Ġdes ert
4774
+ Ġdistrib ution
4775
+ Ġn ic
4776
+ ig er
4777
+ Ġfe llow
4778
+ Ġcr is
4779
+ ai ah
4780
+ Ġtow er
4781
+ Ġexerc ise
4782
+ 0 1
4783
+ d f
4784
+ ac hing
4785
+ ec e
4786
+ Ġid iot
4787
+ Ġbuild ings
4788
+ Ġform er
4789
+ Ġant i
4790
+ Ġlock ed
4791
+ . âĢĿ
4792
+ a res
4793
+ ay s
4794
+ Ġfl at
4795
+ Ġfl ock
4796
+ Ġgu ilty
4797
+ Ġafter no
4798
+ Ġent reprene
4799
+ Ġvir gin
4800
+ Ġshad ow
4801
+ d own
4802
+ u ge
4803
+ v ation
4804
+ Ġt all
4805
+ Ġsh ield
4806
+ Ġbec oming
4807
+ Ġinv ited
4808
+ ubs cribe
4809
+ Ġsp ect
4810
+ if orn
4811
+ eth e
4812
+ Ġred uce
4813
+ Ġprov ided
4814
+ Ġneighbor hood
4815
+ Ġwes tern
4816
+ Ġn aked
4817
+ Ġit al
4818
+ Ġu g
4819
+ Ġv it
4820
+ Ġcl ients
4821
+ Ġextraord inary
4822
+ m es
4823
+ Ġw ow
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee3d347db8f3464b3f7c7ce3c453530a7ddda6253e0ee6c69f74d47c15a91e4a
3
+ size 357171840
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|endoftext|>",
3
+ "eos_token": "<|endoftext|>",
4
+ "pad_token": "<pad>",
5
+ "unk_token": "<|endoftext|>"
6
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<pad>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "<|endoftext|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "<s>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "<unk>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ }
36
+ },
37
+ "bos_token": "<|endoftext|>",
38
+ "clean_up_tokenization_spaces": false,
39
+ "eos_token": "<|endoftext|>",
40
+ "extra_special_tokens": {},
41
+ "max_length": null,
42
+ "model_max_length": 1000000000000000019884624838656,
43
+ "pad_to_multiple_of": null,
44
+ "pad_token": "<pad>",
45
+ "pad_token_type_id": 0,
46
+ "padding_side": "right",
47
+ "tokenizer_class": "GPT2Tokenizer",
48
+ "unk_token": "<|endoftext|>"
49
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 10.0,
3
+ "total_flos": 8.379374174208e+16,
4
+ "train_loss": 0.9887108649713092,
5
+ "train_runtime": 9029.3583,
6
+ "train_samples": 32069,
7
+ "train_samples_per_second": 35.516,
8
+ "train_steps_per_second": 1.111
9
+ }
trainer_state.json ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 10.0,
6
+ "eval_steps": 500,
7
+ "global_step": 10030,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.9970089730807578,
14
+ "grad_norm": 13791.8017578125,
15
+ "learning_rate": 0.0005993999999999999,
16
+ "loss": 1.2252,
17
+ "step": 1000
18
+ },
19
+ {
20
+ "epoch": 1.0,
21
+ "eval_accuracy": 0.18732381009853702,
22
+ "eval_loss": 4.833001136779785,
23
+ "eval_runtime": 4.3793,
24
+ "eval_samples_per_second": 51.835,
25
+ "eval_steps_per_second": 1.827,
26
+ "step": 1003
27
+ },
28
+ {
29
+ "epoch": 1.9940179461615155,
30
+ "grad_norm": 38028.28125,
31
+ "learning_rate": 0.0005336212624584717,
32
+ "loss": 1.104,
33
+ "step": 2000
34
+ },
35
+ {
36
+ "epoch": 2.0,
37
+ "eval_accuracy": 0.19786718622033328,
38
+ "eval_loss": 4.691581726074219,
39
+ "eval_runtime": 3.8992,
40
+ "eval_samples_per_second": 58.218,
41
+ "eval_steps_per_second": 2.052,
42
+ "step": 2006
43
+ },
44
+ {
45
+ "epoch": 2.991026919242273,
46
+ "grad_norm": 34522.31640625,
47
+ "learning_rate": 0.0004671760797342192,
48
+ "loss": 1.0865,
49
+ "step": 3000
50
+ },
51
+ {
52
+ "epoch": 3.0,
53
+ "eval_accuracy": 0.20838469960430012,
54
+ "eval_loss": 4.60223913192749,
55
+ "eval_runtime": 3.82,
56
+ "eval_samples_per_second": 59.424,
57
+ "eval_steps_per_second": 2.094,
58
+ "step": 3009
59
+ },
60
+ {
61
+ "epoch": 3.988035892323031,
62
+ "grad_norm": 9552.4384765625,
63
+ "learning_rate": 0.00040073089700996676,
64
+ "loss": 1.0446,
65
+ "step": 4000
66
+ },
67
+ {
68
+ "epoch": 4.0,
69
+ "eval_accuracy": 0.24390285955671268,
70
+ "eval_loss": 4.333094596862793,
71
+ "eval_runtime": 3.8108,
72
+ "eval_samples_per_second": 59.568,
73
+ "eval_steps_per_second": 2.099,
74
+ "step": 4012
75
+ },
76
+ {
77
+ "epoch": 4.985044865403789,
78
+ "grad_norm": 7808.9814453125,
79
+ "learning_rate": 0.00033428571428571426,
80
+ "loss": 0.9806,
81
+ "step": 5000
82
+ },
83
+ {
84
+ "epoch": 5.0,
85
+ "eval_accuracy": 0.26604136313870186,
86
+ "eval_loss": 4.115571022033691,
87
+ "eval_runtime": 3.7314,
88
+ "eval_samples_per_second": 60.836,
89
+ "eval_steps_per_second": 2.144,
90
+ "step": 5015
91
+ },
92
+ {
93
+ "epoch": 5.982053838484546,
94
+ "grad_norm": 7799.94580078125,
95
+ "learning_rate": 0.00026784053156146177,
96
+ "loss": 0.9375,
97
+ "step": 6000
98
+ },
99
+ {
100
+ "epoch": 6.0,
101
+ "eval_accuracy": 0.2841539005319103,
102
+ "eval_loss": 3.9862992763519287,
103
+ "eval_runtime": 3.7749,
104
+ "eval_samples_per_second": 60.134,
105
+ "eval_steps_per_second": 2.119,
106
+ "step": 6018
107
+ },
108
+ {
109
+ "epoch": 6.979062811565304,
110
+ "grad_norm": 7969.98388671875,
111
+ "learning_rate": 0.00020139534883720927,
112
+ "loss": 0.9074,
113
+ "step": 7000
114
+ },
115
+ {
116
+ "epoch": 7.0,
117
+ "eval_accuracy": 0.2942231264601671,
118
+ "eval_loss": 3.9006783962249756,
119
+ "eval_runtime": 3.758,
120
+ "eval_samples_per_second": 60.405,
121
+ "eval_steps_per_second": 2.129,
122
+ "step": 7021
123
+ },
124
+ {
125
+ "epoch": 7.976071784646062,
126
+ "grad_norm": 8524.130859375,
127
+ "learning_rate": 0.0001349501661129568,
128
+ "loss": 0.8839,
129
+ "step": 8000
130
+ },
131
+ {
132
+ "epoch": 8.0,
133
+ "eval_accuracy": 0.3046802934558652,
134
+ "eval_loss": 3.8308379650115967,
135
+ "eval_runtime": 3.7591,
136
+ "eval_samples_per_second": 60.388,
137
+ "eval_steps_per_second": 2.128,
138
+ "step": 8024
139
+ },
140
+ {
141
+ "epoch": 8.97308075772682,
142
+ "grad_norm": 8583.34375,
143
+ "learning_rate": 6.850498338870431e-05,
144
+ "loss": 0.867,
145
+ "step": 9000
146
+ },
147
+ {
148
+ "epoch": 9.0,
149
+ "eval_accuracy": 0.31158564445632214,
150
+ "eval_loss": 3.7815797328948975,
151
+ "eval_runtime": 3.7451,
152
+ "eval_samples_per_second": 60.613,
153
+ "eval_steps_per_second": 2.136,
154
+ "step": 9027
155
+ },
156
+ {
157
+ "epoch": 9.970089730807578,
158
+ "grad_norm": 8688.66796875,
159
+ "learning_rate": 2.0598006644518273e-06,
160
+ "loss": 0.8541,
161
+ "step": 10000
162
+ },
163
+ {
164
+ "epoch": 10.0,
165
+ "eval_accuracy": 0.3152495323154909,
166
+ "eval_loss": 3.7565455436706543,
167
+ "eval_runtime": 3.716,
168
+ "eval_samples_per_second": 61.087,
169
+ "eval_steps_per_second": 2.153,
170
+ "step": 10030
171
+ },
172
+ {
173
+ "epoch": 10.0,
174
+ "step": 10030,
175
+ "total_flos": 8.379374174208e+16,
176
+ "train_loss": 0.9887108649713092,
177
+ "train_runtime": 9029.3583,
178
+ "train_samples_per_second": 35.516,
179
+ "train_steps_per_second": 1.111
180
+ }
181
+ ],
182
+ "logging_steps": 1000,
183
+ "max_steps": 10030,
184
+ "num_input_tokens_seen": 0,
185
+ "num_train_epochs": 10,
186
+ "save_steps": 500,
187
+ "stateful_callbacks": {
188
+ "TrainerControl": {
189
+ "args": {
190
+ "should_epoch_stop": false,
191
+ "should_evaluate": false,
192
+ "should_log": false,
193
+ "should_save": true,
194
+ "should_training_stop": true
195
+ },
196
+ "attributes": {}
197
+ }
198
+ },
199
+ "total_flos": 8.379374174208e+16,
200
+ "train_batch_size": 32,
201
+ "trial_name": null,
202
+ "trial_params": null
203
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1878be69fecb884069a8d8debe9e9b10ad61574e50433d3e76aec25f6a3fdfb4
3
+ size 5304
vocab.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"<pad>":0,"<|endoftext|>":1,"<s>":2,"<unk>":3,"!":4,"\"":5,"#":6,"$":7,"%":8,"&":9,"'":10,"(":11,")":12,"*":13,"+":14,",":15,"-":16,".":17,"/":18,"0":19,"1":20,"2":21,"3":22,"4":23,"5":24,"6":25,"7":26,"8":27,"9":28,":":29,";":30,"<":31,"=":32,">":33,"?":34,"@":35,"[":36,"\\":37,"]":38,"^":39,"_":40,"`":41,"a":42,"b":43,"c":44,"d":45,"e":46,"f":47,"g":48,"h":49,"i":50,"j":51,"k":52,"l":53,"m":54,"n":55,"o":56,"p":57,"q":58,"r":59,"s":60,"t":61,"u":62,"v":63,"w":64,"x":65,"y":66,"z":67,"{":68,"|":69,"}":70,"~":71,"¡":72,"¢":73,"£":74,"¤":75,"¥":76,"¦":77,"§":78,"¨":79,"©":80,"ª":81,"«":82,"¬":83,"®":84,"¯":85,"°":86,"±":87,"²":88,"³":89,"´":90,"µ":91,"¶":92,"·":93,"¸":94,"¹":95,"º":96,"»":97,"¼":98,"½":99,"¾":100,"¿":101,"Â":102,"Ã":103,"Ä":104,"Å":105,"Æ":106,"Ç":107,"È":108,"É":109,"Ê":110,"Ì":111,"Î":112,"Ï":113,"Ð":114,"Ñ":115,"Ò":116,"Ó":117,"Ö":118,"×":119,"Ø":120,"Ù":121,"Ú":122,"Û":123,"Þ":124,"à":125,"á":126,"â":127,"ã":128,"ä":129,"å":130,"æ":131,"ç":132,"è":133,"é":134,"ê":135,"ë":136,"ì":137,"í":138,"î":139,"ï":140,"ð":141,"Ċ":142,"Ġ":143,"Ģ":144,"ģ":145,"Ĥ":146,"ĥ":147,"Ħ":148,"ħ":149,"Ĩ":150,"ĩ":151,"Ī":152,"ī":153,"Ĭ":154,"ĭ":155,"Į":156,"į":157,"İ":158,"ı":159,"IJ":160,"ij":161,"Ĵ":162,"ĵ":163,"Ķ":164,"ķ":165,"ĸ":166,"Ĺ":167,"ĺ":168,"Ļ":169,"ļ":170,"Ľ":171,"ľ":172,"Ŀ":173,"ŀ":174,"Ł":175,"ł":176,"Ń":177,"Ġt":178,"Ġa":179,"Ġth":180,"Ġi":181,"Ġw":182,"ou":183,"Ġs":184,"er":185,"Ġthe":186,"in":187,"Ġh":188,"Ġo":189,"re":190,"at":191,"Ġy":192,"Ġm":193,"Ġc":194,"Ġb":195,"nd":196,"Ġyou":197,"Ġd":198,"Ġf":199,"on":200,"Ġto":201,"ing":202,"ll":203,"Ġp":204,"en":205,"or":206,"an":207,"ĠĊ":208,"es":209,"Ġl":210,"Ġand":211,"Ġg":212,"ed":213,"Ġn":214,"Ġof":215,"is":216,"it":217,"Ġin":218,"ar":219,"om":220,"Ġwh":221,"as":222,"ve":223,"ow":224,"Ġit":225,"et":226,"us":227,"Ġthat":228,"ot":229,"Ġe":230,"le":231,"Ġbe":232,"Ġwe":233,"ic":234,"'s":235,"al":236,"Ġis":237,"ay":238,"Ġon":239,"ere":240,"Ġha":241,"ion":242,"Ġre":243,"id":244,"Ġhe":245,"Ġfor":246,"ver":247,"ld":248,"gh":249,"ac":250,"Ġk":251,"ent":252,"ut":253,"Ġthis":254,"'t":255,"Ġsh":256,"ro":257,"Ġst":258,"Ġme":259,"im":260,"se":261,"out":262,"Ġdo":263,"Ġu":264,"ke":265,"all":266,"Ġ-":267,"ith":268,"am":269,"ri":270,"st":271,"Ġgo":272,"ght":273,"Ġan":274,"Ġj":275,"ad":276,"Ġyour":277,"Ġwith":278,"Ġwhat":279,"ly":280,"ir":281,"Ġso":282,"Ġhave":283,"Ġli":284,"Ġare":285,"ec":286,"ill":287,"Ġwas":288,"Ġnot":289,"th":290,"Ġcan":291,"Ġmy":292,"Ġne":293,"oo":294,"ch":295,"Ġthey":296,"ome":297,"ter":298,"Ġse":299,"Ġall":300,"Ġch":301,"ust":302,"Ġas":303,"ant":304,"ra":305,"ur":306,"ould":307,"el":308,"op":309,"Ġab":310,"Ġus":311,"ce":312,"Ġkn":313,"our":314,"Ġbut":315,"Ġmo":316,"Ġthere":317,"ation":318,"il":319,"ers":320,"est":321,"'re":322,"Ġdon":323,"Ġknow":324,"pp":325,"Ġat":326,"Ġfr":327,"Ġwor":328,"ess":329,"ge":330,"Ġv":331,"od":332,"..":333,"Ġr":334,"'m":335,"Ġget":336,"Ġor":337,"ct":338,"very":339,"Ġup":340,"Ġout":341,"Ġabout":342,"Ġpro":343,"ate":344,"ul":345,"Ġsu":346,"Ġjust":347,"ake":348,"Ġcom":349,"Ġex":350,"Ġcon":351,"Ġlike":352,"ally":353,"Ġfrom":354,"Ġno":355,"king":356,"Ġwill":357,"Ġal":358,"nt":359,"Ġone":360,"ol":361,"Ġsa":362,"Ġif":363,"Ġde":364,"her":365,"ab":366,"ain":367,"art":368,"qu":369,"Ġhow":370,"and":371,"Ġtr":372,"Ġdid":373,"Ġhere":374,"ind":375,"one":376,"ist":377,"Ġnow":378,"Ġhim":379,"Ġthem":380,"Ġwho":381,"ive":382,"Ġsp":383,"ink":384,"Ġle":385,"Ġwant":386,"Ġ1":387,"ack":388,"em":389,"ie":390,"un":391,"Ġpl":392,"if":393,"Ġshe":394,"os":395,"Ġhis":396,"ig":397,"Ġour":398,"um":399,"Ġye":400,"Ġany":401,"ect":402,"ame":403,"ine":404,"ore":405,"ies":406,"Ġpe":407,"ook":408,"ight":409,"ast":410,"Ġman":411,"Ġte":412,"ity":413,"ard":414,"Ġby":415,"Ġri":416,"Ġ2":417,"Ġwhen":418,"Ġtim":419,"res":420,"Ġher":421,"rou":422,"ah":423,"Ġsome":424,"Ġsee":425,"Ġthink":426,"use":427,"Ġlo":428,"ort":429,"are":430,"âĢ":431,"ven":432,"ap":433,"hing":434,"Ġpeop":435,"Ġright":436,"'ll":437,"Ġpeople":438,"Ġ\"":439,"Ġbec":440,"Ġfe":441,"ong":442,"Ġ(":443,"Ġwould":444,"ause":445,"Ġtime":446,"ment":447,"ry":448,"ure":449,"ice":450,"Ġwere":451,"Ġwell":452,"Ġmore":453,"Ġgot":454,"Ġam":455,"'ve":456,"Ġoff":457,"Ġag":458,"Ġen":459,"Ġsay":460,"ag":461,"Ġthing":462,"ide":463,"ich":464,"ak":465,"Ġpr":466,"Ġneed":467,"ace":468,"ck":469,"Ġevery":470,"Ġtheir":471,"ous":472,"...":473,"Ġhad":474,"ord":475,"Ġthan":476,"Ġlet":477,"Ġwhere":478,"ud":479,"Ġgoing":480,"ite":481,"Ġhas":482,"Ġthen":483,"Ġint":484,"ep":485,"Ġco":486,"Ġlook":487,"act":488,"own":489,"00":490,"ars":491,"Ġback":492,"age":493,"Ġthese":494,"Ġun":495,"reat":496,"Ġfl":497,"Ġwhy":498,"Ġcl":499,"Ġbecause":500,"Ġgood":501,"Ġcould":502,"Ġway":503,"we":504,"na":505,"Ġcome":506,"Ġwhich":507,"pl":508,"ble":509,"ber":510,"ount":511,"Ġnew":512,"pt":513,"Ġqu":514,"Ġgu":515,"Ġbeen":516,"Ġaf":517,"omet":518,"Ġmake":519,"Ġ--":520,"Ġim":521,"Ġday":522,"Ġro":523,"Ġover":524,"Ġsaid":525,"end":526,"way":527,"Ġac":528,"ans":529,"ree":530,"Ġshall":531,"Ġvery":532,"ose":533,"iv":534,"Ġsomet":535,"Ġtake":536,"ase":537,"Ġdis":538,"nder":539,"Ġar":540,"Ġad":541,"Ġoth":542,"ire":543,"ick":544,"ions":545,"itt":546,"ild":547,"Ġtell":548,"iz":549,"Ġwork":550,"Ġtw":551,"Ġmay":552,"sel":553,"Ġdown":554,"per":555,"Ġact":556,"Ġsc":557,"Ġbl":558,"Ġreally":559,"ach":560,"Ġbr":561,"fe":562,"og":563,"Ġhapp":564,"ish":565,"Ġthou":566,"Ġper":567,"other":568,"Ġsomething":569,"ip":570,"Ġinto":571,"fore":572,"ass":573,"Ġother":574,"ence":575,"Ġchan":576,"ound":577,"au":578,"Ġcall":579,"Ġtoo":580,"Ġbet":581,"Ġser":582,"Ġcont":583,"Ġtal":584,"Ġpre":585,"Ġdoes":586,"Ġonly":587,"thing":588,"be":589,"ath":590,"Ġshould":591,"Ġbu":592,"Ġcomp":593,"ial":594,"able":595,"Ġgon":596,"Ġ20":597,"Ġfir":598,"Ġagain":599,"Ġgonna":600,"Ġeven":601,"orm":602,"Ġph":603,"ia":604,"Ġdidn":605,"so":606,"Ġhel":607,"fer":608,"Ġworld":609,"Ġinter":610,"Ġfu":611,"ress":612,"Ġtwo":613,"Ġjo":614,"Ġpo":615,"ade":616,"Ġfirst":617,"urn":618,"av":619,"Ġgod":620,"ue":621,"'d":622,"ail":623,"Ġmu":624,"Ġhelp":625,"Ġunder":626,"Ġpart":627,"Ġfind":628,"Ġres":629,"Ġhappen":630,"Ġbefore":631,"Ġke":632,"ood":633,"Ġacc":634,"ren":635,"Ġnever":636,"ory":637,"Ġyears":638,"aught":639,"ittle":640,"Ġapp":641,"Ġlittle":642,"ign":643,"ody":644,"ft":645,"Ġmuch":646,"ult":647,"Ġbo":648,".\"":649,"ile":650,"Ġthings":651,"self":652,"Ġuse":653,"ually":654,"round":655,"ated":656,"ations":657,"Ġhand":658,"Ġunt":659,"Ġ3":660,"Ġwr":661,"ĠâĢ":662,"Ġrem":663,"Ġlife":664,"ary":665,"Ġalso":666,"Ġafter":667,"Ġthose":668,"ph":669,"Ġstart":670,"Ġgive":671,"ave":672,"Ġem":673,"ys":674,"ving":675,"ance":676,"uct":677,"wn":678,"Ġtra":679,"vel":680,"ater":681,"ather":682,"Ġbel":683,"Ġsec":684,"Ġput":685,"ons":686,"ting":687,"âĢĻ":688,"ang":689,"Ġkill":690,"ff":691,"Ġcomm":692,"Ġok":693,"ical":694,"ning":695,"Ġmar":696,"Ġmost":697,"ved":698,"Ġid":699,"form":700,"Ġfo":701,"ves":702,"Ġdif":703,"Ġlong":704,"Ġtry":705,"iss":706,"Ġgreat":707,"Ġdes":708,"Ġchild":709,"get":710,"Ġlord":711,"Ġimp":712,"vers":713,"Ġcar":714,"Ġple":715,"Ġmade":716,"day":717,"aughter":718,"Ġtalk":719,"Ġyeah":720,"Ġsm":721,"ise":722,"ouse":723,"Ġho":724,"Ġlove":725,"ower":726,"oth":727,"ub":728,"Ġkind":729,"riend":730,"int":731,"ks":732,"Ġoh":733,"Ġdoing":734,"rough":735,"Ġmany":736,"Ġhome":737,"Ġfeel":738,"ens":739,"Ġinst":740,"Ġrec":741,"Ġsy":742,"Ġactually":743,"Ġgr":744,"Ġthrough":745,"Ġlot":746,"Ġstill":747,"ious":748,"Ġmean":749,"ors":750,"ents":751,"igh":752,"ady":753,"Ġdel":754,"Ġ201":755,"ty":756,"Ġ_":757,"der":758,"Ġinc":759,"Ġsupp":760,"ooking":761,"Ġking":762,"ool":763,"Ġcou":764,"Ġdiffer":765,"Ġdisc":766,"ful":767,"Ġma":768,"Ġmon":769,"Ġokay":770,"ple":771,"atch":772,"Ġkeep":773,"Ġthought":774,"Ġdec":775,"Ġshow":776,"Ġreal":777,"Ġel":778,"Ġown":779,"ian":780,"Ġaround":781,"red":782,"bs":783,"Ġhouse":784,"hn":785,"xt":786,"Ġlast":787,"body":788,"Ġear":789,"ond":790,"Ġplace":791,"Ġhot":792,"Ġdr":793,"Ġplay":794,"Ġask":795,"iew":796,"lo":797,"Ġstr":798,"Ġsure":799,"Ġbetter":800,"ict":801,"Ġcame":802,"oss":803,"eth":804,"Ġfriend":805,"Ġanything":806,"Ġplease":807,"Ġsame":808,"ates":809,"ily":810,"oney":811,"Ġbest":812,"ness":813,"Ġop":814,"Ġaway":815,"Ġind":816,"Ġname":817,"Ġson":818,"Ġpers":819,"pe":820,"Ġserv":821,"Ġwom":822,"Ġever":823,"Ġsur":824,"olog":825,"Ġcr":826,"ough":827,"Ġmen":828,"Ġcount":829,"ating":830,"Ġyah":831,"Ġend":832,"weh":833,"Ġbelie":834,"Ġword":835,"Ġra":836,"Ġbeing":837,"Ġmight":838,"Ġ5":839,"Ġmin":840,"ition":841,"Ġturn":842,"laughter":843,"ell":844,"Ġprod":845,"irl":846,"Ġyahweh":847,"Ġide":848,"Ġmaybe":849,"Ġfam":850,"Ġfound":851,"Ġthree":852,"Ġset":853,"ways":854,"Ġunto":855,"Ġmust":856,"Ġbig":857,"Ġcod":858,"Ġent":859,"Ġfree":860,"Ġadd":861,"ember":862,"llow":863,"Ġchildren":864,"Ġhigh":865,"ied":866,"Ġits":867,"Ġnight":868,"ible":869,"Ġ4":870,"Ġwent":871,"als":872,"blem":873,"stand":874,"Ġexp":875,"Ġquest":876,"Ġdifferent":877,"Ġev":878,"Ġproblem":879,"Ġold":880,"Ġdone":881,"wh":882,"Ġtrans":883,"Ġgen":884,"Ġcare":885,"les":886,"Ġdeli":887,"Ġnothing":888,"Ġanother":889,"Ġyes":890,"els":891,"akes":892,"Ġhu":893,"Ġtoday":894,"Ġyear":895,"Ġlist":896,"ities":897,"Ġeverything":898,"Ġalways":899,"Ġstop":900,"Ġdoesn":901,"Ġbus":902,"ets":903,"Ġhum":904,"Ġwa":905,"ix":906,"Ġplan":907,"Ġfather":908,"line":909,"Ġspe":910,"Ġgirl":911,"Ġtri":912,"Ġtold":913,"Ġkid":914,"gin":915,"com":916,"ces":917,"Ġperson":918,"Ġbre":919,"Ġins":920,"Ġsl":921,"Ġmoney":922,"Ġcour":923,"Ġhead":924,"gr":925,"ments":926,"Ġunderstand":927,"Ġopen":928,"ize":929,"Ġinv":930,"Ġla":931,"Ġland":932,"Ġspec":933,"Ġmom":934,"Ġsor":935,"tain":936,"Ġter":937,"Ġsch":938,"Ġfin":939,"ew":940,"Ġbeh":941,"Ġoffer":942,"Ġhear":943,"atter":944,"Ġbelieve":945,"Ġcle":946,"Ġlive":947,"Ġ10":948,"ited":949,"Ġrep":950,"Ġcons":951,"Ġbra":952,"Ġsw":953,"Ġnum":954,"Ġpri":955,"Ġpol":956,"Ġass":957,"uck":958,"iness":959,"Ġstud":960,"Ġz":961,"ib":962,"uc":963,"stem":964,"ute":965,"Ġsorry":966,"rael":967,"Ġthank":968,"up":969,"Ġnext":970,"Ġatt":971,"Ġwon":972,"Ġproduct":973,"its":974,"Ġisrael":975,"Ġinform":976,"Ġrun":977,"Ġpass":978,"ward":979,"orn":980,"ark":981,"Ġsim":982,"Ġrel":983,"Ġcode":984,"Ġcalled":985,"ience":986,"Ġwar":987,"Ġlooking":988,"arch":989,"Ġvis":990,"Ġsk":991,"cess":992,"Ġsin":993,"ject":994,"Ġonline":995,"Ġext":996,"Ġbas":997,"Ġbring":998,"Ġused":999,"owers":1000,"Ġwait":1001,"Ġsystem":1002,"ger":1003,"Ġfun":1004,"Ġagainst":1005,"Ġtec":1006,"Ġleft":1007,"Ġtoget":1008,"Ġtogether":1009,"Ġlear":1010,"Ġstay":1011,"ices":1012,"Ġfollow":1013,"Ġbit":1014,"ual":1015,"Ġleave":1016,"lect":1017,"Ġbro":1018,"Ġrev":1019,"Ġpay":1020,"Ġdays":1021,"Ġcap":1022,"Ġwanted":1023,"Ġwithout":1024,"ale":1025,"Ġremember":1026,"Ġhard":1027,"Ġtechn":1028,"Ġroom":1029,"Ġreg":1030,"Ġey":1031,"ash":1032,"Ġhop":1033,"Ġisn":1034,"Ġidea":1035,"Ġeach":1036,"Ġprom":1037,"Ġhappened":1038,"Ġface":1039,"Ġed":1040,"Ġmiss":1041,"old":1042,"Ġwal":1043,"Ġprot":1044,"Ġfact":1045,"Ġorder":1046,"Ġpower":1047,"Ġgra":1048,"oc":1049,"air":1050,"man":1051,"Ġbad":1052,"Ġsomeone":1053,"az":1054,"ient":1055,"Ġgl":1056,"Ġchar":1057,"Ġexper":1058,"Ġtook":1059,"ĠâĢĵ":1060,"Ġinformation":1061,"Ġthy":1062,"Ġguy":1063,"ever":1064,"Ġnews":1065,"Ġart":1066,"Ġcur":1067,"Ġcoll":1068,"Ġmind":1069,"Ġenough":1070,"Ġeng":1071,"Ġelse":1072,"Ġtrying":1073,"ps":1074,"ures":1075,"Ġbuild":1076,"Ġsign":1077,"ork":1078,"Ġpres":1079,"Ġcoming":1080,"row":1081,"Ġ'":1082,"Ġchange":1083,"aking":1084,"cy":1085,"ics":1086,"Ġbusiness":1087,"Ġhell":1088,"Ġcompl":1089,"ings":1090,"Ġ$":1091,"ages":1092,"Ġhey":1093,"ug":1094,"Ġcity":1095,"Ġrest":1096,"Ġmonth":1097,"gy":1098,"Ġheart":1099,"Ġfew":1100,"Ġwater":1101,"Ġimport":1102,"Ġstand":1103,"Ġeas":1104,"Ġsaw":1105,"Ġmed":1106,"sw":1107,"Ġposs":1108,"Ġfar":1109,"Ġread":1110,"Ġbab":1111,"Ġgetting":1112,"20":1113,"ird":1114,"Ġsaying":1115,"Ġsecond":1116,"ular":1117,"Ġago":1118,"Ġdep":1119,"Ġmother":1120,"app":1121,"cept":1122,"ms":1123,"ense":1124,"Ġcourse":1125,"Ġnumber":1126,"Ġmr":1127,"Ġguys":1128,"Ġsol":1129,"ete":1130,"oy":1131,"Ġdead":1132,"Ġsuch":1133,"Ġpoint":1134,"Ġmeet":1135,"ged":1136,"Ġ19":1137,"Ġcre":1138,"Ġless":1139,"ank":1140,"pn":1141,"Ġwhile":1142,"Ġwatch":1143,"000":1144,"Ġdri":1145,"Ġschool":1146,"Ġyet":1147,"Ġbook":1148,"ts":1149,"ility":1150,"Ġfamily":1151,"ific":1152,"Ġpret":1153,"Ġlight":1154,"ner":1155,"ange":1156,"ware":1157,"Ġinterest":1158,"Ġwrong":1159,"ows":1160,"Ġflowers":1161,"ames":1162,"ost":1163,"ution":1164,"Ġhour":1165,"Ġstory":1166,"Ġansw":1167,"ared":1168,"Ġmor":1169,"Ġtrain":1170,"ock":1171,"Ġseen":1172,"Ġcompan":1173,"led":1174,"ines":1175,"Ġhuman":1176,"Ġboth":1177,"ros":1178,"Ġuni":1179,"Ġâ":1180,"Ġmove":1181,"fect":1182,"ric":1183,"ween":1184,"Ġyourself":1185,"Ġsit":1186,"Ġtop":1187,"he":1188,"Ġrequ":1189,"Ġbetween":1190,"oice":1191,"Ġtalking":1192,"aut":1193,"Ġdat":1194,"Ġhotel":1195,"cking":1196,"Ġimportant":1197,"Ġret":1198,"Ġheard":1199,"lic":1200,"Ġdiscount":1201,"Ġvide":1202,"gan":1203,"Ġob":1204,"Ġ&":1205,"ull":1206,"Ġwee":1207,"Ġfour":1208,"Ġlearn":1209,"eck":1210,"cri":1211,"ready":1212,"Ġjob":1213,"Ġintern":1214,"Ġav":1215,"Ġsound":1216,"ither":1217,"cent":1218,"ream":1219,"Ġalready":1220,"Ġwhole":1221,"ife":1222,"ories":1223,"illion":1224,"cer":1225,"Ġreview":1226,"ne":1227,"Ġlisten":1228,"Ġred":1229,"ci":1230,"Ġresp":1231,"ier":1232,"Ġgener":1233,"Ġdet":1234,"ason":1235,"uth":1236,"Ġsays":1237,"ically":1238,"Ġearth":1239,"ĠÂ":1240,"Ġquestion":1241,"Ġhope":1242,"Ġwasn":1243,"osed":1244,"Ġworking":1245,"ins":1246,"Ġcoup":1247,"Ġcam":1248,"Ġnor":1249,"Ġjud":1250,"ational":1251,"Ġuntil":1252,"Ġseem":1253,"ried":1254,"Ġloc":1255,"Ġnat":1256,"ying":1257,"Ġcreat":1258,"Ġmess":1259,"io":1260,"inking":1261,"Ġap":1262,"alth":1263,"Ġfore":1264,"br":1265,"Ġ6":1266,"Ġconf":1267,"Ġtest":1268,"ime":1269,"Ġstarted":1270,"Ġfriends":1271,"Ġpretty":1272,"Ġfull":1273,"Ġable":1274,"Ġdie":1275,"Ġdata":1276,"Ġform":1277,"hip":1278,"Ġdef":1279,"Ġdeal":1280,"Ġbaby":1281,"ably":1282,"Ġcent":1283,"Ġbar":1284,"Ġexpl":1285,"Ġpar":1286,"Ġval":1287,"Ġdev":1288,"ists":1289,"Ġmet":1290,"Ġonce":1291,"gram":1292,"Ġsir":1293,"Ġthee":1294,"ology":1295,"Ġanswer":1296,"ister":1297,"Ġusing":1298,"onder":1299,"ants":1300,"Ġwomen":1301,"Ġprov":1302,"Ġbeaut":1303,"Ġmod":1304,"Ġside":1305,"Ġair":1306,"Ġtimes":1307,"ider":1308,"Ġty":1309,"ries":1310,"lish":1311,"Ġnice":1312,"Ġsend":1313,"Ġsave":1314,"Ġknew":1315,"Ġhold":1316,"eric":1317,"ret":1318,"Ġfucking":1319,"nect":1320,"Ġsle":1321,"Ġmatter":1322,"pr":1323,"con":1324,"Ġnet":1325,"Ġcommun":1326,"Ġsupport":1327,"Ġyoun":1328,"Ġprotect":1329,"Ġprogram":1330,"Ġfire":1331,"ten":1332,"Ġtravel":1333,"Ġfil":1334,"Ġmem":1335,"Ġsub":1336,"Ġexam":1337,"Ġdad":1338,"Ġupon":1339,"Ġboy":1340,"Ġservice":1341,"Ġwoman":1342,"selves":1343,"Ġwind":1344,"aster":1345,"Ġdesign":1346,"Ġgame":1347,"Ġblood":1348,"Ġdi":1349,"Ġfive":1350,"Ġeff":1351,"Ġadv":1352,"rought":1353,"Ġsince":1354,"Ġmus":1355,"ced":1356,"ional":1357,"bo":1358,"Ġcontro":1359,"outh":1360,"gest":1361,"Ġeat":1362,"Ġ7":1363,"Ġhur":1364,"Ġphone":1365,"velop":1366,"ives":1367,"ized":1368,"Ġaccount":1369,"Ġprof":1370,"ator":1371,"uss":1372,"Ġspeak":1373,"Ġlead":1374,"where":1375,"Ġtv":1376,"Ġlaw":1377,"Ġfight":1378,"more":1379,"Ġpi":1380,"Ġsing":1381,"less":1382,"Ġphot":1383,"Ġben":1384,"Ġexact":1385,"alf":1386,"Ġmeans":1387,"Ġfuck":1388,"Ġwalk":1389,"land":1390,"Ġpub":1391,"Ġexc":1392,"Ġprob":1393,"uro":1394,"Ġdest":1395,"cial":1396,"Ġcust":1397,"Ġbody":1398,"Ġeyes":1399,"Ġhands":1400,"Ġsmall":1401,"ield":1402,"lud":1403,"Ġwouldn":1404,"Ġmyself":1405,"Ġbrought":1406,"Ġpur":1407,"Ġdeliver":1408,"Ġcer":1409,"Ġsent":1410,"Ġconnect":1411,"ĠâĻ":1412,"Ġes":1413,"Ġcountry":1414,"Ġeveryone":1415,"Ġchann":1416,"ites":1417,"aces":1418,"ny":1419,"Ġswe":1420,"Ġmakes":1421,"Ġkilled":1422,"Ġcra":1423,"ges":1424,"ross":1425,"att":1426,"Ġ8":1427,"Ġdist":1428,"ron":1429,"Ġlooks":1430,"load":1431,"Ġcut":1432,"uff":1433,"Ġgi":1434,"Ġmark":1435,"Ġdevelop":1436,"Ġasked":1437,"Ġgrou":1438,"Ġhaving":1439,"Ġlar":1440,"Ġcheck":1441,"Ġarm":1442,"ired":1443,"Ġcol":1444,"ention":1445,"Ġameric":1446,"âĢĿ":1447,"?\"":1448,"Ġhar":1449,"Ġtrust":1450,"Ġanyone":1451,"Ġcoupon":1452,"Ġbreak":1453,"Ġcustom":1454,"Ġpop":1455,"Ġaccess":1456,"mm":1457,"Ġmid":1458,"Ġkids":1459,"over":1460,"Ġspecial":1461,"Ġwife":1462,"ital":1463,"Ġthinking":1464,"Ġhealth":1465,"ident":1466,"Ġoper":1467,"ote":1468,"Ġcase":1469,"utes":1470,"Ġfood":1471,"ta":1472,"Ġdav":1473,"Ġwonder":1474,"Ġyoung":1475,"Ġprobably":1476,"Ġguess":1477,"Ġproducts":1478,"ĠâĢľ":1479,"ural":1480,"Ġbrother":1481,"Ġtreat":1482,"Ġcontact":1483,"Ġmaking":1484,"Ġtool":1485,"Ġcompany":1486,"Ġdoll":1487,"Ġgave":1488,"work":1489,"Ġste":1490,"ling":1491,"Ġbecome":1492,"Ġpercent":1493,"Ġpriv":1494,"Ġ15":1495,"Ġhours":1496,"irect":1497,"Ġreason":1498,"te":1499,"Ġcor":1500,"Ġhaven":1501,"Ġsoft":1502,"Ġcop":1503,"Ġwords":1504,"Ġsho":1505,"ush":1506,"Ġpat":1507,"Ġca":1508,"Ġgre":1509,"Ġvideo":1510,"unch":1511,"Ġpain":1512,"Ġdeath":1513,"ear":1514,"Ġready":1515,"ses":1516,"Ġreturn":1517,"fl":1518,"Ġsort":1519,"Ġfre":1520,"Ġimag":1521,"Ġcomput":1522,"Ġdavid":1523,"Ġgone":1524,"Ġcomes":1525,"Ġhappy":1526,"Ġopt":1527,"Ġlang":1528,"Ġsleep":1529,"Ġ9":1530,"Ġdra":1531,"Ġtre":1532,"Ġpost":1533,"Ġmorning":1534,"ative":1535,"Ġpage":1536,"iful":1537,"aken":1538,"Ġhalf":1539,"Ġcell":1540,"itch":1541,"let":1542,"Ġdam":1543,"Ġflor":1544,"ues":1545,"most":1546,"Ġview":1547,"Ġinclud":1548,"Ġref":1549,"Ġalone":1550,"ateg":1551,"Ġprocess":1552,"Ġgrow":1553,"Ġeuro":1554,"Ġchr":1555,"Ġexactly":1556,"Ġenter":1557,"Ġlater":1558,"aps":1559,"of":1560,"uring":1561,"Ġcontrol":1562,"Ġlangu":1563,"Ġinside":1564,"Ġfine":1565,"Ġcouldn":1566,"Ġmoment":1567,"Ġeasy":1568,"Ġequ":1569,"Ġwin":1570,"Ġ12":1571,"ots":1572,"Ġwebs":1573,"bers":1574,"ai":1575,"Ġleg":1576,"Ġbrain":1577,"ax":1578,"Ġtom":1579,"Ġcond":1580,"ones":1581,"Ġpict":1582,"Ġsam":1583,"Ġlost":1584,"Ġcomplete":1585,"Ġdirect":1586,"Ġsoon":1587,"ouch":1588,"ousand":1589,"atell":1590,"Ġtrue":1591,"Ġthanks":1592,"rent":1593,"sh":1594,"Ġbegin":1595,"Ġsearch":1596,"Ġche":1597,"Ġquite":1598,"Ġbeautiful":1599,"Ġthousand":1600,"Ġsite":1601,"ina":1602,"anna":1603,"Ġdrink":1604,"Ġsix":1605,"ately":1606,"Ġmag":1607,"Ġfig":1608,"Ġclear":1609,"not":1610,"ton":1611,"ww":1612,"Ġhost":1613,"Ġpossible":1614,"Ġfall":1615,"Ġtaking":1616,"Ġsatell":1617,"ont":1618,"Ġcreate":1619,"Ġdoor":1620,"Ġvisit":1621,"Ġprin":1622,"by":1623,"Ġanim":1624,"Ġcal":1625,"acy":1626,"Ġdem":1627,"Ġmillion":1628,"Ġcommand":1629,"Ġmil":1630,"Ġcertain":1631,"Ġpiec":1632,"vern":1633,"Ġclose":1634,"Ġfut":1635,"Ġsafe":1636,"ised":1637,"ording":1638,"ĠâĻ«":1639,"Ġ/":1640,"Ġamong":1641,"Ġbed":1642,"ane":1643,"Ġstuff":1644,"Ġhon":1645,"Ġleast":1646,"Ġstep":1647,"Ġquestions":1648,"ters":1649,"arent":1650,"the":1651,"Ġdelivery":1652,"Ġeurope":1653,"Ġrese":1654,"Ġwall":1655,"Ġopp":1656,"Ġalmost":1657,"Ġdownload":1658,"side":1659,"Ġdream":1660,"ilt":1661,"Ġvpn":1662,"imes":1663,"ats":1664,"Ġneeds":1665,"Ġlives":1666,"alt":1667,"Ġkey":1668,"Ġwanna":1669,"Ġsoftware":1670,"co":1671,"rop":1672,"Ġrece":1673,"Ġgovern":1674,"Ġton":1675,"Ġteam":1676,"Ġfuture":1677,"ken":1678,"Ġang":1679,"Ġavail":1680,"Ġjohn":1681,"Ġmonths":1682,"Ġgames":1683,"ality":1684,"ruct":1685,"Ġunivers":1686,"zy":1687,"Ġ30":1688,"Ġhist":1689,"den":1690,"Ġpartic":1691,"Ġexample":1692,"Ġchoo":1693,"Ġjer":1694,"ef":1695,"ging":1696,"port":1697,"Ġ0":1698,"ety":1699,"Ġcontin":1700,"ision":1701,"Ġwrite":1702,"vious":1703,"ided":1704,"Ġminutes":1705,"cle":1706,"Ġcost":1707,"urity":1708,"Ġline":1709,"Ġwithin":1710,"Ġtruth":1711,"Ġgroup":1712,"Ġweb":1713,"Ġshit":1714,"to":1715,"Ġexpect":1716,"ipp":1717,"Ġliving":1718,"Ġavailable":1719,"Ġworks":1720,"Ġbuy":1721,"ism":1722,"ndred":1723,"no":1724,"Ġstates":1725,"Ġwants":1726,"Ġsons":1727,"Ġhundred":1728,"Ġtechnology":1729,"Ġwish":1730,"Ġgoes":1731,"Ġelect":1732,"Ġmine":1733,"ison":1734,"Ġresearch":1735,"Ġ200":1736,"Ġfav":1737,"Ġproject":1738,"ouble":1739,"Ġpast":1740,"ides":1741,"Ġstrong":1742,"Ġeverybody":1743,"Ġtherefore":1744,"Ġblack":1745,"ee":1746,"Ġsatellite":1747,"Ġaut":1748,"Ġamaz":1749,"come":1750,"Ġsou":1751,"erv":1752,"ape":1753,"Ġtaken":1754,"Ġsn":1755,"Ġbi":1756,"Ġorgan":1757,"Ġgiven":1758,"ains":1759,"Ġspace":1760,"Ġclean":1761,"ined":1762,"Ġfast":1763,"Ġlevel":1764,"Ġthough":1765,"Ġmach":1766,"iah":1767,"aring":1768,"Ġcateg":1769,"Ġcannot":1770,"ract":1771,"ards":1772,",\"":1773,"Ġgif":1774,"Ġmain":1775,"Ġallow":1776,"Ġactiv":1777,"Ġsupposed":1778,"ott":1779,"Ġmult":1780,"ether":1781,"Ġaren":1782,"ump":1783,"Ġdaughter":1784,"Ġris":1785,"ured":1786,"Ġglo":1787,"Ġunited":1788,"right":1789,"ury":1790,"Ġaccording":1791,"anger":1792,"joy":1793,"Ġcurrent":1794,"Ġsomebody":1795,"Ġeffect":1796,"Ġwhatever":1797,"Ġant":1798,"Ġcountries":1799,"ove":1800,"Ġ11":1801,"uary":1802,"Ġsocial":1803,"Ġgotta":1804,"Ġknows":1805,"Ġexperience":1806,"Ġfield":1807,"Ġdoct":1808,"Ġwebsite":1809,"Ġchance":1810,"Ġsecurity":1811,"Ġgun":1812,"Ġstate":1813,"pect":1814,"Ġothers":1815,"Ġnear":1816,"Ġclass":1817,"Ġbehold":1818,"ien":1819,"Ġpick":1820,"orrow":1821,"Ġflower":1822,"Ġenjoy":1823,"Ġways":1824,"Ġbroad":1825,"Ġsun":1826,"Ġbuilding":1827,"Ġuh":1828,"Ġsug":1829,"Ġhappens":1830,"raid":1831,"ased":1832,"Ġweek":1833,"Ġafraid":1834,"Ġquick":1835,"Ġ18":1836,"Ġdied":1837,"Ġperfect":1838,"Ġluck":1839,"Ġ[":1840,"Ġcas":1841,"Ġsex":1842,"Ġusers":1843,"Ġcomputer":1844,"fort":1845,"Ġsometimes":1846,"Ġvir":1847,"Ġsimple":1848,"Ġtouch":1849,"Ġcover":1850,"Ġve":1851,"Ġsuc":1852,"Ġchrist":1853,"Ġbehind":1854,"oke":1855,"Ġlink":1856,"Ġsil":1857,"Ġaddress":1858,"Ġgold":1859,"amp":1860,"Ġrob":1861,"ster":1862,"Ġpos":1863,"Ġpap":1864,"Ġgets":1865,"read":1866,"Ġeduc":1867,"iting":1868,"Ġtem":1869,"ned":1870,"Ġfa":1871,"Ġje":1872,"lex":1873,"ially":1874,"Ġ100":1875,"Ġnetwork":1876,"Ġsense":1877,"Ġdestro":1878,"dy":1879,"Ġpublic":1880,"Ġbou":1881,"Ġcollect":1882,"Ġlab":1883,"Ġinstall":1884,"ma":1885,"lf":1886,"Ġmer":1887,"Ġoutside":1888,"ergy":1889,"Ġextra":1890,"Ġselect":1891,"Ġiss":1892,"Ġvi":1893,"Ġfeat":1894,"Ġhurt":1895,"Ġpack":1896,"ude":1897,"201":1898,"Ġpersonal":1899,"sc":1900,"Ġsuper":1901,"Ġvoice":1902,"ently":1903,"Ġlanguage":1904,"Ġfront":1905,"Ġinteresting":1906,"lause":1907,"Ġincre":1908,"bal":1909,"Ġforg":1910,"Ġchannel":1911,"Ġknown":1912,"me":1913,"Ġchoose":1914,"min":1915,"Ġreport":1916,"Ġdark":1917,"Ġdog":1918,"Ġmount":1919,"Ġwhite":1920,"Ġabs":1921,"ung":1922,"Ġshare":1923,"Ġcouple":1924,"Ġmusic":1925,"Ġaw":1926,"Ġhit":1927,"Ġtonight":1928,"Ġecon":1929,"iving":1930,"Ġsat":1931,"applause":1932,"Ġflorist":1933,"Ġwhether":1934,"Ġeconom":1935,"Ġvers":1936,"Ġemail":1937,"med":1938,"Ġord":1939,"rib":1940,"dom":1941,"ob":1942,"Ġemb":1943,"Ġpa":1944,"Ġentire":1945,"Ġwel":1946,"Ġx":1947,"uce":1948,"Ġhistory":1949,"Ġ2018":1950,"Ġfavor":1951,"Ġhimself":1952,"Ġage":1953,"Ġsal":1954,"vert":1955,"Ġenergy":1956,"Ġinternet":1957,"Ġengine":1958,"gth":1959,"son":1960,"Ġexch":1961,"Ġalong":1962,"Ġproblems":1963,"Ġhair":1964,"Ġstat":1965,"Ġlate":1966,"Ġcrazy":1967,"Ġdeep":1968,"Ġhath":1969,"fic":1970,"gypt":1971,"ified":1972,"Ġfear":1973,"Ġlow":1974,"Ġconsider":1975,"Ġegypt":1976,"Ġgrand":1977,"Ġseven":1978,"band":1979,"ians":1980,"Ġimagine":1981,"cc":1982,"Ġneither":1983,"Ġprep":1984,"Ġphys":1985,"Ġer":1986,"Ġain":1987,"Ġcities":1988,"Ġburn":1989,"Ġstre":1990,"Ġresult":1991,"Ġupd":1992,"Ġdan":1993,"Ġperform":1994,"Ġeither":1995,"Ġdestroy":1996,"Ġclick":1997,"Ġtried":1998,"idence":1999,"Ġlooked":2000,"Ġforget":2001,"Ġservices":2002,"Ġprice":2003,"Ġtomorrow":2004,"Ġbooking":2005,"Ġanymore":2006,"Ġstudents":2007,"Ġsingle":2008,"Ġacross":2009,"ead":2010,"Ġparent":2011,"Ġnobody":2012,"Ġalive":2013,"Ġfly":2014,"room":2015,"Ġshoot":2016,"itions":2017,"Ġele":2018,"cast":2019,"Ġenv":2020,"Ġ50":2021,"ior":2022,"go":2023,"itting":2024,"Ġpull":2025,"tt":2026,"Ġbuilt":2027,"Ġsister":2028,"Ġspend":2029,"dle":2030,"Ġgirls":2031,"Ġworth":2032,"Ġest":2033,"used":2034,"Ġbox":2035,"Ġnorth":2036,"Ġbur":2037,"ium":2038,"Ġthemselves":2039,"Ġterms":2040,"Ġshut":2041,"ike":2042,"Ġdin":2043,"Ġtelling":2044,"Ġprofess":2045,"Ġexchange":2046,"book":2047,"Ġmarket":2048,"Ġlonger":2049,"Ġserious":2050,"Ġaud":2051,"Ġreviews":2052,"Ġport":2053,"Ġpicture":2054,"Ġproper":2055,"Ġscience":2056,"Ġworry":2057,"Ġmouth":2058,"Ġger":2059,"raph":2060,"well":2061,"Ġoffering":2062,"haps":2063,"ption":2064,"Ġenc":2065,"aw":2066,"Ġafric":2067,"Ġperhaps":2068,"Ġchanged":2069,").":2070,"Ġplaces":2071,"Ġsurpr":2072,"Ġminute":2073,"Ġnatural":2074,"tern":2075,"Ġmob":2076,"Ġmic":2077,"Ġturned":2078,"ze":2079,"Ġshort":2080,"Ġthird":2081,"Ġlim":2082,"gn":2083,"Ġhor":2084,"Ġchoice":2085,"Ġduring":2086,"Ġpeace":2087,"Ġhotels":2088,"Ġfac":2089,"Ġdig":2090,"Ġpress":2091,"Ġvar":2092,"ished":2093,"Ġhus":2094,"Ġtrad":2095,"ify":2096,"vent":2097,"Ġones":2098,"Ġjoin":2099,"asure":2100,"verse":2101,"ror":2102,"Ġsurv":2103,"Ġrunning":2104,"ech":2105,"Ġoffice":2106,"Ġtot":2107,"Ġpen":2108,"iter":2109,"Ġsea":2110,"Ġpriest":2111,"Ġfail":2112,"Ġmur":2113,"sy":2114,"Ġamazing":2115,"Ġru":2116,"Ġpresent":2117,"Ġstore":2118,"Ġrecord":2119,"Ġcry":2120,"Ġsoul":2121,"ization":2122,"Ġwaiting":2123,"Ġut":2124,"Ġground":2125,"Ġdrive":2126,"vpn":2127,"Ġ24":2128,"head":2129,"Ġoften":2130,"que":2131,"Ġnorm":2132,"Ġlarge":2133,"Ġsuggest":2134,"ination":2135,"Ġstra":2136,"ency":2137,"Ġ25":2138,"Ġfollowing":2139,"Ġhusband":2140,"Ġcard":2141,"bit":2142,"Ġwelcome":2143,"Ġruss":2144,"Ġinvest":2145,"Ġneeded":2146,"Ġ·":2147,"Ġdoctor":2148,"itive":2149,"aly":2150,"Ġborn":2151,"Ġleav":2152,"Ġcause":2153,"Ġtown":2154,"Ġshot":2155,"elt":2156,"Ġforth":2157,"Ġarch":2158,"Ġjudah":2159,"Ġfix":2160,"Ġseems":2161,"Ġpiece":2162,"Ġinstead":2163,"iron":2164,"Ġconst":2165,"ients":2166,"Ġconcer":2167,"cl":2168,"Ġuniversity":2169,"Ġge":2170,"Ġappro":2171,"Ġmater":2172,"Ġrad":2173,"olution":2174,"Ġteach":2175,"Ġsuccess":2176,"men":2177,"Ġsecret":2178,"ills":2179,"Ġeye":2180,"Ġsounds":2181,"Ġself":2182,"Ġchanges":2183,"Ġce":2184,"Ġhate":2185,"Ġlocal":2186,"Ġtakes":2187,"Ġcult":2188,"Ġnone":2189,"Ġuser":2190,"Ġmessage":2191,"Ġhy":2192,"Ġdise":2193,"oh":2194,"Ġtele":2195,"ru":2196,"Ġtar":2197,"Ġsize":2198,"Ġbud":2199,"eter":2200,"Ġenem":2201,"Ġmist":2202,"Ġcamp":2203,"Ġanyway":2204,"Ġenviron":2205,"Ġfinally":2206,"iding":2207,"Ġjack":2208,"Ġarea":2209,"Ġcustomer":2210,"esh":2211,"Ġfeeling":2212,"Ġearly":2213,"Ġrather":2214,"ram":2215,"Ġparty":2216,"Ġmaj":2217,"Ġbon":2218,"Ġtrack":2219,"Ġevil":2220,"Ġoffic":2221,"Ġasking":2222,"mb":2223,"Ġbull":2224,"Ġdrug":2225,"Ġcool":2226,"Ġcred":2227,"Ġsubs":2228,"Ġscre":2229,"oint":2230,"Ġmot":2231,"Ġgovernment":2232,"Ġpoor":2233,"icle":2234,"Ġshalt":2235,"Ġaccept":2236,"Ġattack":2237,"Ġbecame":2238,"Ġmaterial":2239,"my":2240,"Ġmaster":2241,"ully":2242,"Ġtrouble":2243,"Ġten":2244,"Ġthus":2245,"Ġinternational":2246,"Ġworked":2247,"Ġoil":2248,"Ġpolic":2249,"Ġur":2250,"Ġseeing":2251,"Ġfoot":2252,"Ġhuh":2253,"Ġpolice":2254,"Ġpal":2255,"Ġuk":2256,"amed":2257,"Ġrich":2258,"Ġscient":2259,"Ġfamil":2260,"Ġexplain":2261,"gress":2262,"Ġtype":2263,"Ġmanage":2264,"Ġpot":2265,"Ġrul":2266,"ral":2267,"cribe":2268,"Ġfigure":2269,"ires":2270,"erve":2271,"Ġglad":2272,"Ġrate":2273,"Ġsouth":2274,"une":2275,"Ġrelations":2276,"ik":2277,"atic":2278,"Ġrele":2279,"Ġprivate":2280,"Ġann":2281,"10":2282,"Ġsoci":2283,"Ġmov":2284,"Ġbott":2285,"Ġyork":2286,"Ġcy":2287,"Ġdanger":2288,"osp":2289,"Ġcompletely":2290,"Ġcir":2291,"Ġlie":2292,"Ġocc":2293,"uses":2294,"Ġaff":2295,"lt":2296,"Ġmiddle":2297,"Ġtoward":2298,"ograph":2299,"Ġdress":2300,"Ġhappening":2301,"ensive":2302,"Ġbroadcast":2303,"Ġparents":2304,"aven":2305,"cum":2306,"Ġsell":2307,"Ġlose":2308,"Ġcolle":2309,"roid":2310,"attle":2311,"pped":2312,"â̦":2313,"Ġconvers":2314,"Ġmoses":2315,"ding":2316,"Ġphil":2317,"Ġill":2318,"Ġamount":2319,"Ġcategories":2320,"Ġplanet":2321,"Ġeducation":2322,"Ġweeks":2323,"Ġparticular":2324,"Ġglobal":2325,"Ġanybody":2326,"Ġpromot":2327,"Ġdetail":2328,"Ġtyp":2329,"Ġyours":2330,"you":2331,"Ġdate":2332,"Ġeight":2333,"Ġ13":2334,"Ġenglish":2335,"Ġapart":2336,"ther":2337,"Ġda":2338,"Ġship":2339,"Ġrock":2340,"Ġrespons":2341,"uation":2342,"alem":2343,"play":2344,"ivid":2345,"Ġah":2346,"Ġenvironment":2347,"oub":2348,"Ġcast":2349,"Ġskin":2350,"Ġrequire":2351,"Ġ16":2352,"Ġcook":2353,"ief":2354,"ration":2355,"Ġmad":2356,"Ġmobile":2357,"ino":2358,"Ġmass":2359,"Ġmoving":2360,"ming":2361,"Ġident":2362,"Ġcommunity":2363,"usalem":2364,"Ġsmart":2365,"what":2366,"Ġstudy":2367,"Ġspir":2368,"icked":2369,"Ġcommon":2370,"Ġjerusalem":2371,"oud":2372,"Ġfeet":2373,"Ġpolit":2374,"Ġlay":2375,"Ġflight":2376,"//":2377,"://":2378,"Ġtab":2379,"Ġmachine":2380,"Ġpaper":2381,"Ġball":2382,"Ġexist":2383,"Ġwild":2384,"mon":2385,"Ġhol":2386,"Ġrisk":2387,"unt":2388,"Ġshop":2389,"50":2390,"Ġbill":2391,"Ġpract":2392,"Ġdiffic":2393,"Ġsold":2394,"Ġ2019":2395,"Ġmedia":2396,"Ġdifficult":2397,"itor":2398,"Ġimpro":2399,"Ġgreen":2400,"Ġhack":2401,"ulation":2402,"Ġsweet":2403,"Ġdiv":2404,"Ġjour":2405,"Ġcommunic":2406,"Ġindust":2407,"fully":2408,"Ġreach":2409,"ental":2410,"Ġbased":2411,"Ġhang":2412,"Ġinf":2413,"Ġfill":2414,"Ġfile":2415,"Ġfeed":2416,"Ġdom":2417,"Ġbreat":2418,"face":2419,"Ġblue":2420,"ok":2421,"ped":2422,"Ġstar":2423,"Ġlog":2424,"for":2425,"Ġcontent":2426,"Ġmal":2427,"allen":2428,"Ġdecided":2429,"),":2430,"Ġbir":2431,"Ġroad":2432,"Ġbird":2433,"Ġhosp":2434,"Ġbri":2435,"Ġterri":2436,"Ġpan":2437,"Ġabove":2438,"ept":2439,"Ġflo":2440,"Ġoffers":2441,"ney":2442,"ential":2443,"ogn":2444,"Ġsword":2445,"Ġcamer":2446,"Ġhtt":2447,"Ġpresident":2448,"Ġitem":2449,"Ġanimals":2450,"Ġopport":2451,"Ġindivid":2452,"Ġrelationship":2453,"Ġshouldn":2454,"Ġappe":2455,"Ġfair":2456,"rod":2457,"Ġ14":2458,"Ġopportun":2459,"ases":2460,"Ġchallen":2461,"Ġquality":2462,"bed":2463,"ert":2464,"Ġwindows":2465,"Ġimage":2466,"cus":2467,"oun":2468,"ese":2469,"Ġcaptain":2470,"Ġversion":2471,"Ġinstant":2472,"Ġesc":2473,"Ġsumm":2474,"Ġpray":2475,"Ġir":2476,"Ġmarried":2477,"ey":2478,"acter":2479,"etic":2480,"Ġsick":2481,"Ġdollars":2482,"Ġmap":2483,"Ġcoun":2484,"Ġmurder":2485,"Ġclos":2486,"ived":2487,"rength":2488,"Ġdiscover":2489,"Ġrequest":2490,"friend":2491,"Ġfelt":2492,"arant":2493,"Ġwhom":2494,"Ġlady":2495,"icated":2496,"imate":2497,"ledge":2498,"uly":2499,"ences":2500,"Ġplaying":2501,"lished":2502,"Ġcreated":2503,"Ġori":2504,"Ġnature":2505,"Ġfiles":2506,"Ġstrength":2507,"Ġphoto":2508,"Ġrecogn":2509,"Ġdifference":2510,"Ġamerica":2511,"ex":2512,"omm":2513,"Ġamerican":2514,"Ġorders":2515,"Ġfund":2516,"Ġgerman":2517,"oid":2518,"Ġsens":2519,"Ġexcept":2520,"ising":2521,"Ġsqu":2522,"Ġideas":2523,"Ġdollar":2524,"Ġver":2525,"Ġhd":2526,"Ġmill":2527,"Ġstick":2528,"ction":2529,"Ġprison":2530,"Ġloved":2531,"Ġ...":2532,"Ġsan":2533,"Ġbless":2534,"Ġsus":2535,"ploy":2536,"ole":2537,"Ġtext":2538,"Ġdisapp":2539,"Ġdamn":2540,"Ġtag":2541,"Ġmoder":2542,"itional":2543,"upid":2544,"Ġgather":2545,"Ġgoog":2546,"inary":2547,"Ġcat":2548,"Ġgiving":2549,"Ġcancer":2550,"Ġbillion":2551,"Ġcapt":2552,"Ġobject":2553,"Ġ17":2554,"Ġbirth":2555,"Ġalt":2556,"Ġapplic":2557,"Ġfacebook":2558,"athers":2559,"ability":2560,"Ġpsy":2561,"Ġguarant":2562,"Ġrid":2563,"Ġinvol":2564,"Ġforever":2565,"Ġstupid":2566,"ecess":2567,"Ġmeeting":2568,"ibility":2569,"Ġdraw":2570,"Ġafrica":2571,"Ġlock":2572,"Ġfrank":2573,"Ġ2017":2574,"unk":2575,"Ġchat":2576,"cing":2577,"Ġ40":2578,"ume":2579,"Ġserver":2580,"Ġcurrently":2581,"Ġfur":2582,"Ġjan":2583,"Ġtechnolog":2584,"Ġtransl":2585,"Ġmajor":2586,"Ġpsych":2587,"ators":2588,"Ġcatch":2589,"Ġtor":2590,"Ġviol":2591,"Ġobs":2592,"Ġsky":2593,"Ġpopular":2594,"Ġcold":2595,"zz":2596,"Ġforward":2597,"Ġfell":2598,"Ġstarting":2599,"Ġheaven":2600,"Ġfunny":2601,"Ġtreatment":2602,"Ġhoney":2603,"Ġinterested":2604,"Ġworse":2605,"Ġprovide":2606,"Ġthousands":2607,"Ġlau":2608,"Ġeast":2609,"Ġcells":2610,"osh":2611,"Ġlearned":2612,"por":2613,"Ġhowever":2614,"Ġbal":2615,"Ġincred":2616,"Ġhast":2617,"Ġspeed":2618,"Ġgoogle":2619,"Ġ.":2620,"Ġsac":2621,"Ġweap":2622,"Ġboys":2623,"Ġstreet":2624,"ement":2625,"Ġholy":2626,"Ġspo":2627,"uit":2628,"Ġpath":2629,"Ġauth":2630,"Ġnon":2631,"Ġtable":2632,"Ġchannels":2633,"iet":2634,"Ġsour":2635,"Ġvict":2636,"enty":2637,"airs":2638,"ara":2639,"Ġpolicy":2640,"ube":2641,"Ġgent":2642,"Ġmeant":2643,"Ġconv":2644,"Ġstri":2645,"Ġexpress":2646,"ply":2647,"ored":2648,"Ġthreat":2649,"Ġspecific":2650,"Ġbeginning":2651,"Ġautom":2652,"mas":2653,"Ġ:":2654,"Ġted":2655,"Ġsystems":2656,"how":2657,"ern":2658,"Ġstories":2659,"Ġdepart":2660,"Ġneigh":2661,"Ġnewslet":2662,"Ġmodern":2663,"Ġfat":2664,"Ġincluding":2665,"Ġchina":2666,"Ġspirit":2667,"Ġabsol":2668,"Ġgifts":2669,"Ġneighb":2670,"Ġlik":2671,"Ġvalue":2672,"Ġposition":2673,"Ġitself":2674,"Ġguest":2675,"itten":2676,"Ġevent":2677,"Ġcopy":2678,"ler":2679,"urs":2680,"Ġlearning":2681,"Ġkept":2682,"Ġattention":2683,"Ġrespect":2684,"omes":2685,"Ġourselves":2686,"Ġcarry":2687,"Ġisland":2688,"Ġteac":2689,"Ġvill":2690,"Ġwhose":2691,"Ġblock":2692,"cious":2693,"Ġcolor":2694,"Ġlat":2695,"Ġknowledge":2696,"Ġsimply":2697,"Ġobvious":2698,"Ġwonderful":2699,"gu":2700,"ray":2701,"Ġforce":2702,"rest":2703,"ended":2704,"ery":2705,"cell":2706,"Ġcla":2707,"Ġslow":2708,"Ġ+":2709,"ission":2710,"Ġdelivered":2711,"key":2712,"Ġvol":2713,"Ġproph":2714,"www":2715,"Ġdetect":2716,"Ġabsolute":2717,"iny":2718,"ibly":2719,"Ġgeneral":2720,"Ġbag":2721,"Ġfool":2722,"Ġparts":2723,"Ġbehav":2724,"Ġnations":2725,"Ġfrequ":2726,"Ġrights":2727,"Ġadm":2728,"Ġdevice":2729,"Ġlaunch":2730,"Ġtools":2731,"Ġhospital":2732,"Ġnecess":2733,"Ġmis":2734,"Ġsomewhere":2735,"Ġpromise":2736,"Ġmodel":2737,"Ġandroid":2738,"iday":2739,"Ġprevious":2740,"ffe":2741,"aged":2742,"Ġmatch":2743,"Ġleaving":2744,"Ġsever":2745,"Ġcenter":2746,"Ġpowerful":2747,"ask":2748,"apt":2749,"pec":2750,"ony":2751,"Ġturns":2752,"Ġintell":2753,"Ġsecure":2754,"Ġgentle":2755,"ips":2756,"Ġnewsletter":2757,"Ġwood":2758,"ners":2759,"ux":2760,"ises":2761,"Ġmedic":2762,"Ġtree":2763,"resh":2764,"umb":2765,"Ġbouqu":2766,"Ġhuge":2767,"Ġconditions":2768,"Ġfathers":2769,"Ġbegan":2770,"Ġfish":2771,"Ġmeth":2772,"Ġcorn":2773,"Ġpark":2774,"Ġnational":2775,"eous":2776,"Ġlived":2777,"Ġran":2778,"gen":2779,"lim":2780,"Ġbank":2781,"Ġbeat":2782,"Ġsud":2783,"year":2784,"Ġcart":2785,"ilities":2786,"Ġbelow":2787,"Ġtur":2788,"Ġwatching":2789,"Ġmath":2790,"Ġdisease":2791,"Ġahead":2792,"Ġoce":2793,"Ġrepl":2794,"Ġquickly":2795,"Ġcomb":2796,"een":2797,"Ġukra":2798,"ban":2799,"press":2800,"Ġgar":2801,"Ġemot":2802,"par":2803,"Ġstation":2804,"Ġwer":2805,"Ġgives":2806,"Ġsport":2807,"Ġbitch":2808,"Ġfurther":2809,"ball":2810,"Ġhi":2811,"Ġrom":2812,"others":2813,"Ġlucky":2814,"Ġdevices":2815,"Ġequip":2816,"Ġdinner":2817,"ping":2818,"Ġchristmas":2819,"gre":2820,"Ġjes":2821,"Ġmicro":2822,"Ġsight":2823,"Ġsong":2824,"Ġfavorite":2825,"ene":2826,"Ġlos":2827,"Ġkiss":2828,"Ġdeb":2829,"Ġast":2830,"Ġlad":2831,"Ġbenef":2832,"ns":2833,"Ġled":2834,"Ġsituation":2835,"Ġbread":2836,"und":2837,"Ġcross":2838,"Ġdrop":2839,"Ġfeatures":2840,"Ġwicked":2841,"Ġcloth":2842,"Ġweren":2843,"wor":2844,"Ġcompanies":2845,"Ġdro":2846,"Ġhttp":2847,"Ġspread":2848,"Ġbasically":2849,"Ġmemory":2850,"ature":2851,"Ġspecies":2852,"Ġstraight":2853,"uri":2854,"cul":2855,"Ġip":2856,"Ġbath":2857,"Ġexperim":2858,"Ġhello":2859,"Ġprivacy":2860,"Ġnormal":2861,"Ġguarantee":2862,"Ġmax":2863,"Ġequipment":2864,"reme":2865,"iod":2866,"Ġtarget":2867,"Ġteeth":2868,"Ġsetting":2869,"Ġwed":2870,"Ġarticle":2871,"utions":2872,"Ġanywhere":2873,"Ġshows":2874,"Ġmultip":2875,"ceed":2876,"astic":2877,"ring":2878,"11":2879,"Ġperiod":2880,"Ġuniverse":2881,"Ġdefin":2882,"Ġsitting":2883,"Ġorigin":2884,"ffer":2885,"ples":2886,"ering":2887,"Ġfort":2888,"Ġhonest":2889,"Ġitems":2890,"Ġplat":2891,"hood":2892,"Ġlots":2893,"Ġden":2894,"Ġprop":2895,"Ġimm":2896,"Ġinstit":2897,"cause":2898,"Ġthrow":2899,"Ġcomfort":2900,"Ġsaith":2901,"Ġoptions":2902,"Ġjanuary":2903,"Ġforgot":2904,"Ġcheap":2905,"itter":2906,"imin":2907,"iqu":2908,"Ġ2016":2909,"Ġtransp":2910,"time":2911,"Ġresour":2912,"Ġach":2913,"Ġlift":2914,"Ġpurp":2915,"Ġ>":2916,"Ġcand":2917,"uel":2918,"Ġfem":2919,"ama":2920,"Ġsmell":2921,"Ġsad":2922,"Ġchem":2923,"Ġuses":2924,"Ġremain":2925,"Ġarmy":2926,"Ġtick":2927,"Ġbroken":2928,"Ġseveral":2929,"view":2930,"Ġess":2931,"Ġspent":2932,"Ġdevelopment":2933,"Ġglass":2934,"Ġdangerous":2935,"30":2936,"Ġble":2937,"ann":2938,"Ġriver":2939,"Ġbattle":2940,"Ġrighteous":2941,"Ġcoffe":2942,"Ġdiscuss":2943,"Ġsale":2944,"Ġdepend":2945,"Ġice":2946,"ruction":2947,"Ġsudden":2948,"Ġfit":2949,"Ġcurren":2950,"Ġpaid":2951,"Ġsaved":2952,"Ġpred":2953,"Ġrepres":2954,"Ġcentury":2955,"ipping":2956,"Ġprou":2957,"ishing":2958,"Ġdepos":2959,"Ġtechnologies":2960,"Ġservant":2961,"do":2962,"Ġsubject":2963,"Ġhide":2964,"Ġbey":2965,"Ġweight":2966,"Ġbelong":2967,"ted":2968,"Ġ#":2969,"Ġbes":2970,"omb":2971,"Ġpromo":2972,"Ġstruct":2973,"ley":2974,"Ġunderstanding":2975,"Ġjac":2976,"Ġnumbers":2977,"pecially":2978,"Ġcoffee":2979,"Ġgh":2980,"Ġcourt":2981,"Ġaffect":2982,"phone":2983,"Ġevidence":2984,"Ġability":2985,"Ġimages":2986,"Ġaction":2987,"Ġmir":2988,"Ġexcuse":2989,"Ġhero":2990,"aph":2991,"Ġvideos":2992,"Ġespecially":2993,"Ġcontinue":2994,"Ġbeyond":2995,"Ġ,":2996,"Ġban":2997,"Ġdar":2998,"Ġdisplay":2999,"ov":3000,"Ġhid":3001,"Ġcomplex":3002,"Ġrules":3003,"lly":3004,"Ġwaste":3005,"ode":3006,"ivity":3007,"Ġrecomm":3008,"ocr":3009,"Ġfloor":3010,"nds":3011,"Ġdrag":3012,"Ġproud":3013,"Ġsaul":3014,"Ġtalked":3015,"Ġsociety":3016,"erm":3017,"oms":3018,"Ġscared":3019,"Ġestab":3020,"Ġmovie":3021,"Ġterrible":3022,"Ġsacri":3023,"rew":3024,"ances":3025,"board":3026,"Ġanimal":3027,"Ġcertainly":3028,"bu":3029,"izing":3030,"ilar":3031,"itude":3032,"Ġbooks":3033,"12":3034,"Ġbask":3035,"Ġmethod":3036,"yle":3037,"asing":3038,"Ġmention":3039,"Ġdescri":3040,"Ġbow":3041,"iot":3042,"Ġdecision":3043,"Ġprograms":3044,"ought":3045,"anc":3046,"Ġcodes":3047,"Ġarri":3048,"Ġtrip":3049,"Ġopportunity":3050,"Ġwine":3051,"Ġmedical":3052,"ham":3053,"Ġhous":3054,"Ġwritten":3055,"Ġpatter":3056,"Ġpra":3057,"acking":3058,"Ġmarch":3059,"Ġfinish":3060,"Ġsolution":3061,"Ġweird":3062,"hab":3063,"verage":3064,"Ġthereof":3065,"Ġcalling":3066,"Ġwrote":3067,"Ġrain":3068,"Ġpurch":3069,"Ġemploy":3070,"Ġkingdom":3071,"li":3072,"wide":3073,"Ġbeach":3074,"Ġplant":3075,"Ġkinds":3076,"Ġprotection":3077,"ival":3078,"Ġwest":3079,"Ġroll":3080,"Ġrealize":3081,"Ġdocum":3082,"Ġplatform":3083,"Ġcars":3084,"gs":3085,"Ġloss":3086,"ented":3087,"itted":3088,"Ġextreme":3089,"Ġhonor":3090,"Ġride":3091,"Ġbear":3092,"Ġbonus":3093,"Ġabsolutely":3094,"Ġboard":3095,"Ġmistake":3096,"word":3097,"Ġsect":3098,"Ġgate":3099,"Ġincrease":3100,"Ġthine":3101,"Ġuncle":3102,"Ġmissing":3103,"Ġcharge":3104,"Ġresults":3105,"Ġcollege":3106,"Ġlic":3107,"ams":3108,"Ġneg":3109,"Ġserve":3110,"Ġconsum":3111,"asons":3112,"Ġsuffer":3113,"Ġstrange":3114,"Ġdwell":3115,"Ġliter":3116,"Ġagre":3117,"ĠâĢĶ":3118,"ashion":3119,"Ġreceive":3120,"Ġconvert":3121,"iction":3122,"Ġopin":3123,"Ġservants":3124,"Ġunless":3125,"Ġmiles":3126,"Ġtrick":3127,"Ġgift":3128,"Ġocean":3129,"--":3130,"Ġmac":3131,"Ġbord":3132,"uced":3133,"bon":3134,"Ġhung":3135,"Ġlinks":3136,"Ġ21":3137,"Ġtraining":3138,"Ġbarb":3139,"Ġauthor":3140,"back":3141,"Ġround":3142,"eed":3143,"Ġtill":3144,"rench":3145,"Ġwindow":3146,"Ġult":3147,"Ġagree":3148,"Ġgrad":3149,"Ġplane":3150,"Ġgal":3151,"ica":3152,"Ġnotice":3153,"Ġmoved":3154,"Ġvac":3155,"Ġtrees":3156,"arr":3157,"Ġsilver":3158,"Ġtour":3159,"Ġrates":3160,"medi":3161,"Ġmail":3162,"Ġdoub":3163,"Ġjew":3164,"Ġpartner":3165,"Ġfault":3166,"Ġfocus":3167,"Ġash":3168,"Ġbottom":3169,"Ġcamera":3170,"fast":3171,"istic":3172,"hold":3173,"set":3174,"Ġtast":3175,"Ġpet":3176,"Ġbouquets":3177,"Ġlocation":3178,"Ġsuppose":3179,"ðŁ":3180,"Ġsar":3181,"iar":3182,"Ġsand":3183,"Ġrooms":3184,"Ġfing":3185,"Ġfamilies":3186,"Ġimprove":3187,"apan":3188,"Ġdecember":3189,"Ġconnection":3190,"af":3191,"Ġwear":3192,"Ġmeaning":3193,"ĠðŁ":3194,"Ġmagic":3195,"action":3196,"Ġemer":3197,"Ġsummer":3198,"Ġciv":3199,"Ġ2020":3200,"Ġappre":3201,"Ġquiet":3202,"Ġangel":3203,"Ġod":3204,"ndon":3205,"Ġcredit":3206,"acle":3207,"Ġox":3208,"Ġusually":3209,"Ġappear":3210,"Ġwriting":3211,"Ġchief":3212,"Ġpassed":3213,"Ġmembers":3214,"aters":3215,"Ġagent":3216,"nov":3217,"aff":3218,"vision":3219,"Ġsepar":3220,"Ġrout":3221,"Ġdesigned":3222,"Ġpictures":3223,"Ġlaugh":3224,"ened":3225,"Ġdear":3226,"Ġstandard":3227,"Ġvalid":3228,"Ġpieces":3229,"Ġ27":3230,"Ġboss":3231,"Ġsurely":3232,"Ġrussian":3233,"Ġindustry":3234,"Ġet":3235,"Ġjapan":3236,"ively":3237,"Ġreading":3238,"Ġbehavior":3239,"Ġoct":3240,"Ġjump":3241,"Ġcalls":3242,"look":3243,"rum":3244,"aron":3245,"ference":3246,"Ġep":3247,"Ġpackage":3248,"Ġforest":3249,"Ġculture":3250,"mer":3251,"Ġareas":3252,"Ġissues":3253,"Ġphysical":3254,"tle":3255,"Ġpush":3256,"ana":3257,"Ġcustomers":3258,"Ġissue":3259,"de":3260,"Ġsaf":3261,"Ġkilling":3262,"Ġwalking":3263,"bb":3264,"Ġcup":3265,"Ġgard":3266,"Ġnecessary":3267,"aur":3268,"Ġdv":3269,"Ġlif":3270,"ffic":3271,"Ġsites":3272,"Ġcorre":3273,"Ġjacob":3274,"erved":3275,"Ġstopped":3276,"Ġrent":3277,"Ġvan":3278,"Ġcomments":3279,"box":3280,"Ġtotal":3281,"Ġsuit":3282,"Ġhandle":3283,"Ġapproach":3284,"imum":3285,"Ġimmedi":3286,"Ġremind":3287,"Ġnamed":3288,"Ġsimilar":3289,"Ġcele":3290,"Ġapply":3291,"Ġdesp":3292,"lon":3293,"usion":3294,"Ġappreci":3295,"ril":3296,"Ġreality":3297,"Ġjohnson":3298,"ua":3299,"Ġfif":3300,"Ġrequired":3301,"Ġdaily":3302,"Ġwake":3303,"asp":3304,"Ġcompet":3305,"la":3306,"Ġwhe":3307,"Ġintellig":3308,"Ġwit":3309,"Ġallows":3310,"agram":3311,"Ġstanding":3312,"inese":3313,"Ġbeauty":3314,"Ġcelebr":3315,"ued":3316,"Ġbase":3317,"ids":3318,"Ġmission":3319,"Ġprofessional":3320,"Ġconversation":3321,"Ġlower":3322,"Ġworried":3323,"Ġlying":3324,"Ġblind":3325,"Ġupdated":3326,"Ġenemies":3327,"Ġmich":3328,"amin":3329,"Ġ60":3330,"Ġpatients":3331,"Ġoption":3332,"erc":3333,"Ġcaught":3334,"Ġplans":3335,"Ġpoints":3336,"Ġinher":3337,"Ġstream":3338,"Ġexcell":3339,"Ġperm":3340,"500":3341,"Ġnames":3342,"Ġhumans":3343,"ervation":3344,"ds":3345,"Ġtaught":3346,"Ġfilm":3347,"Ġclothes":3348,"Ġlev":3349,"Ġpatient":3350,"Ġcommanded":3351,"Ġlikely":3352,"Ġbroke":3353,"Ġtotally":3354,"Ġphotos":3355,"imens":3356,"Ġindia":3357,"Ġreasons":3358,"berry":3359,"Ġbrothers":3360,"Ġ£":3361,"Ġgrowing":3362,"ria":3363,"Ġkings":3364,"Ġtypes":3365,"ĠðŁĴ":3366,"Ġhigher":3367,"ault":3368,"irty":3369,"Ġlondon":3370,"ĠðŁĴIJ":3371,"Ġbod":3372,"Ġring":3373,"Ġcloud":3374,"Ġthr":3375,"Ġukraine":3376,"Ġinn":3377,"Ġspoke":3378,"Ġempt":3379,"Ġinsp":3380,"Ġrequirements":3381,"Ġfashion":3382,"Ġhall":3383,"Ġblow":3384,"Ġgods":3385,"Ġopinion":3386,"Ġchinese":3387,"Ġdigital":3388,"soci":3389,"Ġbeg":3390,"Ġarg":3391,"oring":3392,"Ġdeals":3393,"Ġjourney":3394,"Ġaware":3395,"Ġintrod":3396,"Ġjudg":3397,"Ġinvolved":3398,"Ġstood":3399,"Ġtruck":3400,"lock":3401,"Ġtechnical":3402,"Ġnine":3403,"rage":3404,"Ġexperien":3405,"Ġ199":3406,"Ġhundreds":3407,"Ġlogin":3408,"Ġfighting":3409,"Ġallowed":3410,"Ġpu":3411,"Ġanswered":3412,"dam":3413,"Ġshowed":3414,"oices":3415,"Ġband":3416,"Ġstars":3417,"eless":3418,"Ġcasino":3419,"Ġfaith":3420,"Ġjesus":3421,"iff":3422,"Ġsym":3423,"bruary":3424,"mail":3425,"Ġdue":3426,"Ġrealized":3427,"Ġhunt":3428,"Ġphotograph":3429,"Ġsnow":3430,"Ġachie":3431,"lier":3432,"Ġiron":3433,"Ġassoci":3434,"lin":3435,"Ġdance":3436,"Ġseed":3437,"Ġfebruary":3438,"Ġevening":3439,"Ġaccident":3440,"Ġdistrib":3441,"2016":3442,"Ġhorse":3443,"aked":3444,"ĠâĢ¢":3445,"Ġscreen":3446,"Ġindividual":3447,"Ġtow":3448,"ches":3449,"ession":3450,"Ġdemocr":3451,"Ġfed":3452,"Ġrange":3453,"Ġjudge":3454,"ression":3455,"Ġcareful":3456,"Ġsacrif":3457,"Ġcivil":3458,"Ġmidst":3459,"Ġdirectly":3460,"Ġwedding":3461,"Ġresources":3462,"ba":3463,"Ġaust":3464,"Ġclub":3465,"Ġbrows":3466,"ocol":3467,"Ġdrugs":3468,"Ġdetails":3469,"Ġaverage":3470,"inc":3471,"Ġinfect":3472,"Ġguard":3473,"ius":3474,"Ġswitch":3475,"light":3476,"uf":3477,"Ġuns":3478,"Ġfeels":3479,"Ġara":3480,"Ġcash":3481,"Ġletter":3482,"Ġenemy":3483,"15":3484,"ij":3485,"Ġfaster":3486,"Ġfrench":3487,"Ġseat":3488,"Ġwitness":3489,"idge":3490,"��angry":3491,"Ġproperty":3492,"Ġgentlemen":3493,"Ġhouses":3494,"Ġnote":3495,"Ġbigger":3496,"yn":3497,"atically":3498,"Ġnut":3499,"cies":3500,"inst":3501,"Ġanger":3502,"ada":3503,"Ġpoll":3504,"Ġrule":3505,"pro":3506,"Ġregular":3507,"Ġmessages":3508,"ground":3509,"Ġshipping":3510,"Ġtelevision":3511,"iced":3512,"Ġforeign":3513,"Ġaug":3514,"Ġfle":3515,"lec":3516,"Ġrecently":3517,"Ġpassword":3518,"irt":3519,"Ġterror":3520,"Ġgrowth":3521,"ointed":3522,"iel":3523,"like":3524,"Ġtit":3525,"Ġconnected":3526,"Ġeconomic":3527,"Ġrating":3528,"Ġaltar":3529,"Ġstage":3530,"ager":3531,"yal":3532,"Ġtent":3533,"Ġapril":3534,"Ġcub":3535,"Ġseconds":3536,"Ġtheory":3537,"though":3538,"Ġexerc":3539,"Ġshowing":3540,"Ġmanagement":3541,"icles":3542,"Ġjune":3543,"Ġfinal":3544,"Ġburnt":3545,"Ġvarious":3546,"Ġpurpose":3547,"ev":3548,"iation":3549,"zer":3550,"anced":3551,"Ġtruly":3552,"Ġspeaking":3553,"Ġbreakfast":3554,"Ġpopulation":3555,"ael":3556,"Ġwis":3557,"Ġstudent":3558,"Ġgroups":3559,"Ġsource":3560,"Ġaaron":3561,"Ġwise":3562,"Ġwaters":3563,"Ġthinks":3564,"Ġtwitter":3565,"Ġvision":3566,"Ġfinding":3567,"Ġputting":3568,"Ġwalked":3569,"Ġjeh":3570,"Ġchallenge":3571,"Ġneighbor":3572,"Ġrose":3573,"Ġmale":3574,"Ġfinished":3575,"tube":3576,"Ġheav":3577,"ims":3578,"Ġ22":3579,"Ġseek":3580,"Ġimpact":3581,"oon":3582,"Ġcomment":3583,"Ġpleasure":3584,"Ġdouble":3585,"Ġinnov":3586,"sec":3587,"Ġwilling":3588,"Ġjoy":3589,"ological":3590,"Ġregister":3591,"Ġhasn":3592,"bi":3593,"Ġbutton":3594,"Ġsaving":3595,"Ġtrade":3596,"Ġsolve":3597,"Ġlargest":3598,"Ġlatest":3599,"Ġpublished":3600,"wise":3601,"Ġaudience":3602,"Ġsubscri":3603,"Ġappeared":3604,"Ġinit":3605,"Ġmagn":3606,"Ġpolitical":3607,"60":3608,"Ġmix":3609,"Ġyoutube":3610,"Ġnation":3611,"Ġprogress":3612,"Ġalthough":3613,"Ġassist":3614,"Ġmultiple":3615,"Ġprevent":3616,"Ġindeed":3617,"Ġtransform":3618,"Ġmissed":3619,"Ġstatus":3620,"icking":3621,"Ġcurrency":3622,"ca":3623,"Ġpun":3624,"Ġgas":3625,"oph":3626,"Ġavoid":3627,"Ġmillions":3628,"Ġempty":3629,"Ġ35":3630,"Ġzer":3631,"roider":3632,"eral":3633,"Ġfresh":3634,"Ġgam":3635,"Ġven":3636,"ugg":3637,"Ġunique":3638,"Ġgeneration":3639,"xic":3640,"Ġgri":3641,"Ġscale":3642,"Ġworst":3643,"Ġsurface":3644,"Ġmountain":3645,"Ġinfl":3646,"Ġanc":3647,"Ġarrest":3648,"aves":3649,"Ġdriving":3650,"Ġign":3651,"Ġcit":3652,"Ġtransfer":3653,"Ġinclude":3654,"Ġbreath":3655,"unately":3656,"Ġtea":3657,"Ġfamous":3658,"Ġcategory":3659,"ification":3660,"aging":3661,"ades":3662,"Ġskills":3663,"Ġembroider":3664,"Ġfold":3665,"Ġcharacter":3666,"Ġadvent":3667,"Ġsurprise":3668,"aced":3669,"osis":3670,"bert":3671,"Ġdeveloped":3672,"Ġthroughout":3673,"Ġsurve":3674,"Ġstone":3675,"Ġadult":3676,"Ġlevels":3677,"agn":3678,"Ġdaddy":3679,"Ġwide":3680,"Ġexec":3681,"Ġplu":3682,"Ġtwice":3683,"Ġlanguages":3684,"Ġbodies":3685,"ees":3686,"Ġheld":3687,"roll":3688,"Ġ28":3689,"Ġtwenty":3690,"Ġfreed":3691,"Ġvirt":3692,"Ġradio":3693,"Ġconvin":3694,"Ġtough":3695,"rupt":3696,"Ġcorrect":3697,"ober":3698,"Ġload":3699,"Ġbought":3700,"oming":3701,"Ġsept":3702,"Ġqueen":3703,"Ġbiggest":3704,"Ġafford":3705,"itation":3706,"Ġpayment":3707,"Ġladies":3708,"Ġchanging":3709,"Ġevents":3710,"uals":3711,"Ġbare":3712,"Ġvia":3713,"Ġblog":3714,"Ġmeas":3715,"wards":3716,"Ġhealthy":3717,"born":3718,"Ġmeasure":3719,"Ġimposs":3720,"Ġrecognize":3721,"nal":3722,"45":3723,"mber":3724,"itary":3725,"terday":3726,"Ġweak":3727,"Ġprim":3728,"Ġbirthday":3729,"ening":3730,"Ġonto":3731,"Ġchick":3732,"Ġmonitor":3733,"Ġcookies":3734,"Ġtiny":3735,"Ġlies":3736,"Ġfruit":3737,"Ġoffered":3738,"Ġleaders":3739,"Ġmeat":3740,"Ġdecide":3741,"Ġyesterday":3742,"Ġairport":3743,"Ġoctober":3744,"Ġrand":3745,"Ġobviously":3746,"Ġfan":3747,"Ġinteract":3748,"Ġswim":3749,"Ġcoupons":3750,"ĠâĻª":3751,"Ġcondition":3752,"Ġdestroyed":3753,"Ġspoken":3754,"Ġeth":3755,"Ġdude":3756,"asc":3757,"Ġspy":3758,"Ġadmin":3759,"Ġremove":3760,"Ġwordpress":3761,"Ġescape":3762,"Ġbusy":3763,"Ġattract":3764,"Ġ80":3765,"Ġlegal":3766,"ufact":3767,"Ġeating":3768,"Ġtransport":3769,"Ġglory":3770,"Ġelectric":3771,"Ġdna":3772,"Ġincredible":3773,"Ġhen":3774,"Ġprefer":3775,"Ġboat":3776,"Ġwinter":3777,"Ġsuddenly":3778,"Ġdying":3779,"Ġtells":3780,"ura":3781,"Ġcoo":3782,"Ġeuropean":3783,"Ġmrs":3784,"Ġperformance":3785,"Ġsubscribe":3786,"Ġpromotional":3787,"Ġtun":3788,"isf":3789,"Ġbrit":3790,"Ġuseful":3791,"Ġinvestig":3792,"Ġapplication":3793,"Ġadded":3794,"Ġrelax":3795,"Ġsports":3796,"Ġsafety":3797,"gal":3798,"ule":3799,"Ġwearing":3800,"Ġrise":3801,"Ġhelping":3802,"Ġhelped":3803,"Ġbabylon":3804,"Ġactivity":3805,"Ġsurvive":3806,"can":3807,"Ġspan":3808,"Ġspot":3809,"Ġparis":3810,"Ġcases":3811,"Ġdvb":3812,"gers":3813,"istan":3814,"Ġmanufact":3815,"Ġeverywhere":3816,"Ġkeeping":3817,"Ġholiday":3818,".'":3819,"oved":3820,"Ġamb":3821,"Ġlawy":3822,"flowers":3823,"Ġlam":3824,"itect":3825,"Ġscan":3826,"Ġcrit":3827,"Ġbasic":3828,"Ġcentral":3829,"Ġembroidery":3830,"Ġlicense":3831,"Ġimpossible":3832,"Ġreign":3833,"Ġfunction":3834,"Ġbirds":3835,"rate":3836,"wood":3837,"Ġtax":3838,"Ġjim":3839,"iling":3840,"Ġprices":3841,"Ġflesh":3842,"Ġcrime":3843,"Ġeasily":3844,"Ġlistening":3845,"Ġheads":3846,"aries":3847,"Ġeph":3848,"Ġemp":3849,"Ġolder":3850,"Ġrelig":3851,"Ġveh":3852,"Ġpriests":3853,"Ġdeposit":3854,"cel":3855,"Ġwound":3856,"Ġseries":3857,"Ġcontain":3858,"Ġearlier":3859,"Ġrelease":3860,"ek":3861,"iate":3862,"Ġmm":3863,"Ġdut":3864,"Ġunfort":3865,"Ġproduction":3866,"Ġarchitect":3867,"bel":3868,"Ġopened":3869,"Ġcreating":3870,"Ġupdate":3871,"19":3872,"22":3873,"Ġinhab":3874,"Ġfeature":3875,"Ġinherit":3876,"Ġreturned":3877,"Ġseptember":3878,"Ġfant":3879,"Ġvall":3880,"Ġkiller":3881,"Ġinstagram":3882,"Ġgrab":3883,"Ġsignal":3884,"Ġfarm":3885,"put":3886,"Ġcab":3887,"antic":3888,"Ġregard":3889,"Ġgeor":3890,"Ġpotential":3891,"Ġrecommend":3892,"etek":3893,"Ġposted":3894,"adem":3895,"omon":3896,"Ġrace":3897,"itely":3898,"Ġens":3899,"Ġmountains":3900,"Ġplugin":3901,"Ġjustice":3902,"Ġcompass":3903,"Ġprepare":3904,"Ġraise":3905,"Ġreceived":3906,"Ġrepresent":3907,"ls":3908,"empt":3909,"Ġ23":3910,"Ġgreatest":3911,"Ġeasier":3912,"Ġsteal":3913,"Ġbuddy":3914,"log":3915,"vember":3916,"aria":3917,"Ġmighty":3918,"Ġevolution":3919,"Ġtowards":3920,"Ġimmediately":3921,"Ġcute":3922,"Ġdreams":3923,"Ġmaterials":3924,"!\"":3925,"Ġjose":3926,"Ġrobot":3927,"Ġforgive":3928,"Ġapartment":3929,"Ġappreciate":3930,"80":3931,"Ġpages":3932,"ague":3933,"Ġlaid":3934,"limited":3935,"Ġarab":3936,"Ġba":3937,"Ġfro":3938,"Ġprove":3939,"ss":3940,"val":3941,"Ġlen":3942,"Ġlunch":3943,"Ġrasp":3944,"amm":3945,"Ġnovember":3946,"Ġmodels":3947,"Ġfamiliar":3948,"Ġdiscovered":3949,"Ġbecomes":3950,"Ġpartners":3951,"Ġphilist":3952,"bes":3953,"Ġpool":3954,"ustain":3955,"ously":3956,"Ġpressure":3957,"Ġscientific":3958,"Ġliked":3959,"Ġexcellent":3960,"Ġinnoc":3961,"Ġheight":3962,"Ġpregn":3963,"Ġbrand":3964,"Ġsatisf":3965,"Ġexperiment":3966,"kes":3967,"Ġlines":3968,"Ġeffects":3969,"Ġgarden":3970,"Ġfal":3971,"arily":3972,"Ġunc":3973,"Ġhearing":3974,"Ġfemale":3975,"ope":3976,"Ġmarry":3977,"egr":3978,"Ġstuck":3979,"ops":3980,"Ġspeech":3981,"Ġborder":3982,"Ġcooper":3983,"Ġmart":3984,"pping":3985,"Ġprepared":3986,"Ġstructure":3987,"Ġiniqu":3988,"Ġsteps":3989,"mark":3990,"Ĥ¬":3991,"Ġrestaur":3992,"Ġmember":3993,"Ġcalcul":3994,"Ġ!":3995,"ressed":3996,"Ġeffort":3997,"°":3998,"Ġneck":3999,"ipped":4000,"Ġloo":4001,"chan":4002,"Ġplus":4003,"Ġadvant":4004,"Ġ70":4005,"Ġrussia":4006,"Ġtips":4007,"Ġdry":4008,"Ġshad":4009,"Ġum":4010,"Ġwash":4011,"Ġsolomon":4012,"Ġcareer":4013,"Ġfinan":4014,"Ġseriously":4015,"ky":4016,"sels":4017,"Ġ31":4018,"Ġsales":4019,"Ġcloser":4020,"Ġpill":4021,"abor":4022,"Ġends":4023,"Ġviolence":4024,"overy":4025,"Ġves":4026,"Ġproduce":4027,"page":4028,"arm":4029,"Ġstaff":4030,"Ġprint":4031,"aughters":4032,"Ġanswers":4033,"Ġchemical":4034,"Ġtired":4035,"riage":4036,"Ġfunct":4037,"Ġlabor":4038,"Ġteacher":4039,"Ġhidden":4040,"Ġnoise":4041,"Ġacadem":4042,"Ġweapon":4043,"Ġweapons":4044,"sp":4045,"atory":4046,"Ġpure":4047,"usive":4048,"Ġaltern":4049,"Ġunlimited":4050,"Ġgirlfriend":4051,"Ġgraph":4052,"Ġshoes":4053,"Ġpractice":4054,"Ġwisdom":4055,"Ġpurs":4056,"Ġparticip":4057,"Ġconcept":4058,"Ġcoven":4059,"Ġvisual":4060,"Ġcaused":4061,"Ġwalls":4062,"Ġcorner":4063,"Ġsacrifice":4064,"Ġcitiz":4065,"Ġwetek":4066,"Ġfrance":4067,"Ġrevolution":4068,"Ġcalm":4069,"Ġdemand":4070,"Ġeconomy":4071,"Ġpc":4072,"Ġgain":4073,"iles":4074,"Ġstarts":4075,"Ġregion":4076,"é":4077,"Ġq":4078,"Ġdaughters":4079,"isions":4080,"Ġchur":4081,"aker":4082,"Ġlovely":4083,"Ġcrack":4084,"Ġliterally":4085,"athan":4086,"Ġaddition":4087,"Ġrespond":4088,"Ġdownloaded":4089,"Ġrub":4090,"epend":4091,"araoh":4092,"Ġdoubt":4093,"here":4094,"Ġutc":4095,"13":4096,"rep":4097,"Ġpharaoh":4098,"Ġfollowed":4099,"Ġcovered":4100,"nday":4101,"Ġconfir":4102,"Ġholding":4103,"Ġfigured":4104,"Ġclearly":4105,"greg":4106,"40":4107,"Ġsen":4108,"Ġdimens":4109,"Ġtheme":4110,"Ġscri":4111,"Ġcauses":4112,"Ġlimited":4113,"Ġvari":4114,"Ġmedicine":4115,"Ġsettings":4116,"Ġoriginal":4117,"Ġswear":4118,"Ġwilder":4119,"Ġgathered":4120,"Ġextremely":4121,"Ġaugust":4122,"Ġtask":4123,"Ġsustain":4124,"Ġbacter":4125,"Ġec":4126,"Ġeg":4127,"ales":4128,"Ġresc":4129,"Ġgermany":4130,"25":4131,"ml":4132,"new":4133,"Ġ*":4134,"Ġmars":4135,"Ġrepe":4136,"Ġshame":4137,"Ġmoon":4138,"Ġfranc":4139,"Ġactive":4140,"Ġhurry":4141,"Ġpainting":4142,"Ġpurchase":4143,"han":4144,"Ġther":4145,"esome":4146,"Ġintegr":4147,"Ġadditional":4148,"Ġresponsible":4149,"works":4150,"Ġsympt":4151,"lement":4152,"Ġshown":4153,"Ġ90":4154,"Ġraspberry":4155,"ining":4156,"onse":4157,"Ġinstruct":4158,"Ġindic":4159,"Ġcomplicated":4160,"rom":4161,"inct":4162,"Ġbound":4163,"Ġfol":4164,"Ġreven":4165,"Ġflu":4166,"Ġjobs":4167,"Ġconscious":4168,"Ġschools":4169,"Ġrecei":4170,"Ġscientists":4171,"Ġfreedom":4172,"Ġowe":4173,"Ġjosh":4174,"Ġsmo":4175,"Ġsurround":4176,"Ġextensive":4177,"Ġsurprised":4178,"Ġfilled":4179,"Ġbob":4180,"Ġmode":4181,"Ġtemper":4182,"ga":4183,"vest":4184,"rial":4185,"ils":4186,"Ġfirm":4187,"Ġremote":4188,"Ġmovement":4189,"Ġjudgment":4190,"just":4191,"Ġloves":4192,"Ġtrial":4193,"Ġeventually":4194,"Ġbunch":4195,"Ġbright":4196,"Ġears":4197,"Ġshape":4198,"Ġguide":4199,"Ġprem":4200,"Ġbrings":4201,"Ġsuccessful":4202,"Ġannoun":4203,"Ġroof":4204,"Ġplanning":4205,"retch":4206,"Ġmatters":4207,"Ġlegs":4208,"Ġmechan":4209,"Ġscore":4210,"Ġinterview":4211,"Ġoperation":4212,"Ġsuspect":4213,"Ġms":4214,"Ġdesire":4215,"Ġrecent":4216,"Ġdecl":4217,"Ġoptim":4218,"Ġgall":4219,"Ġbell":4220,"Ġanal":4221,"cket":4222,"ipe":4223,"Ġprec":4224,"99":4225,"tv":4226,"lled":4227,"acing":4228,"Ġ2013":4229,"Ġsolar":4230,"Ġmilitary":4231,"Ġofficial":4232,"Ġscrew":4233,"Ġresponsibility":4234,"Ġwid":4235,"uted":4236,"Ġexh":4237,"Ġwilderness":4238,"pher":4239,"ulate":4240,"Ġwarm":4241,"Ġresponse":4242,"Ġcure":4243,"Ġcuri":4244,"Ġlibr":4245,"Ġgrew":4246,"Ġnearly":4247,"Ġsanct":4248,"Ġvillage":4249,".,":4250,"ered":4251,"Ġjon":4252,"Ġhighly":4253,"Ġjoseph":4254,"kn":4255,"Ġmut":4256,"Ġcapital":4257,"Ġoperating":4258,"Ġdeserve":4259,"Ġ2015":4260,"Ġeffective":4261,"Ġhenry":4262,"Ġdust":4263,"ulous":4264,"Ġservers":4265,"ĠâĢĺ":4266,"Ġeld":4267,"ulations":4268,"cks":4269,"Ġarr":4270,"Ġtags":4271,"pass":4272,"Ġded":4273,"Ġluc":4274,"Ġstock":4275,"Ġgreater":4276,"Ġpresence":4277,"Ġorganization":4278,"Ġtaste":4279,"Ġinhabit":4280,"Ġjames":4281,"Ġrole":4282,"Ġark":4283,"Ġsurger":4284,"Ġcrush":4285,"Ġfully":4286,"Ġpaul":4287,"Ġcovenant":4288,"bur":4289,"ables":4290,"Ġcontract":4291,"Ġhelps":4292,"Ġdesk":4293,"Ġadvice":4294,"Ġhostel":4295,"Ġmercy":4296,"Ġbathroom":4297,"iant":4298,"Ġray":4299,"Ġbringing":4300,"Ġeffic":4301,"house":4302,"stairs":4303,"Ġ26":4304,"Ġsupply":4305,"Ġcakes":4306,"pper":4307,"Ġcarried":4308,"Ġhole":4309,"Ġstudies":4310,"Ġoperator":4311,"Ġprinces":4312,"Ġcommunication":4313,"Ġdepartment":4314,"entially":4315,"iled":4316,"Ġknowing":4317,"Ġended":4318,"ein":4319,"pan":4320,"Ġhors":4321,"Ġtend":4322,"Ġbuying":4323,"Ġtraffic":4324,"Ġkeeps":4325,"Ġlandsc":4326,"Ġcomfortable":4327,"lies":4328,"Ġ?":4329,"Ġjoke":4330,"Ġofferings":4331,"Ġcorpor":4332,"Ġdefinitely":4333,"mus":4334,"za":4335,"Ġhom":4336,"Ġbast":4337,"Ġdisp":4338,"Ġ300":4339,"uction":4340,"Ġdiagn":4341,"Ġcomputers":4342,"Ġpositive":4343,"Ġstreets":4344,"Ġbroadcasting":4345,"Ġblessed":4346,"Ġachieve":4347,"16":4348,"Ġwes":4349,"Ġcommer":4350,"Ġexciting":4351,"Ġteaching":4352,"Ġalex":4353,"Ġjuly":4354,"ulf":4355,"Ġgotten":4356,"Ġstruck":4357,"Ġelectron":4358,"Ġcirc":4359,"Ġmathem":4360,"Ġphilistines":4361,"uate":4362,"Ġkeys":4363,"peg":4364,"Ġdeterm":4365,"Ġprince":4366,"Ġdemon":4367,"Ġvirus":4368,"gree":4369,"zil":4370,"Ġber":4371,"Ġfra":4372,"arter":4373,"Ġlights":4374,"Ġactivities":4375,"Ġfundam":4376,"Ġbesides":4377,"Ġestablished":4378,"Ġunfortunately":4379,"lear":4380,"Ġkitch":4381,"Ġsomehow":4382,"Ġchurch":4383,"Ġram":4384,"Ġpros":4385,"Ġconc":4386,"ift":4387,"Ġscene":4388,"Ġinstrum":4389,"Ġdamage":4390,"Ġdomin":4391,"Ġlosing":4392,"Ġspanish":4393,"Ġinnocent":4394,"Ġasse":4395,"Ġindepend":4396,"Ġdeveloping":4397,"Ġprincess":4398,"Ġsquare":4399,"Ġintelligence":4400,"Ġvalley":4401,"rit":4402,"aled":4403,"Ġminister":4404,"Ġpossibly":4405,"Ġcosts":4406,"Ġpredict":4407,"Ġhungry":4408,"Ġcow":4409,"Ġbomb":4410,"Ġsolutions":4411,"Ġbrowser":4412,"Ġnav":4413,"Ġmyster":4414,"istration":4415,"Ġcrow":4416,"Ġguns":4417,"Ġawesome":4418,"Ġofficer":4419,"Ġheavy":4420,"hol":4421,"iers":4422,"Ġmuse":4423,"Ġmaintain":4424,"Ġbarbie":4425,"18":4426,"inations":4427,"using":4428,"Ġjail":4429,"Ġclosed":4430,"Ġapolog":4431,"Ġoccur":4432,"off":4433,"uk":4434,"Ġtong":4435,"eted":4436,"Ġze":4437,"Ġsignific":4438,"Ġ©":4439,"ordan":4440,"Ġclient":4441,"Ġprovides":4442,"Ġpeter":4443,"Ġken":4444,"raft":4445,"Ġsmoke":4446,"Ġsyn":4447,"icious":4448,"Ġoutlook":4449,"Ġarms":4450,"Ġdistance":4451,"Ġdogs":4452,"Ġadventure":4453,"rict":4454,"Ġnuc":4455,"Ġitaly":4456,"Ġplayed":4457,"Ġseemed":4458,"Ġlikes":4459,"Ġ~":4460,"sequ":4461,"Ġspl":4462,"Ġbeth":4463,"Ġharm":4464,"mos":4465,"ya":4466,"Ġbeer":4467,"Ġteen":4468,"Ġapple":4469,"Ġprior":4470,"Ġvpns":4471,"Ġflying":4472,"Ġpraise":4473,"Ġstorm":4474,"atives":4475,"Ġspring":4476,"Ġgoddam":4477,"Ġbrazil":4478,"Ġmike":4479,"Ġshar":4480,"Ġscar":4481,"Ġdelivering":4482,"Ġshopping":4483,"Ġautomatically":4484,"Ġdocument":4485,"Ġsymptoms":4486,"booking":4487,"Ġyellow":4488,"Ġclin":4489,"Ġaccom":4490,"Ġgrace":4491,"Ġprojects":4492,"Ġmachines":4493,"Ġfrequently":4494,"Ġfinancial":4495,"Ġkitchen":4496,"rian":4497,"osen":4498,"Ġclimate":4499,"izes":4500,"bye":4501,"Ġiniquity":4502,"net":4503,"Ġmort":4504,"Ġcards":4505,"Ġsake":4506,"Ġbother":4507,"Ġfeelings":4508,"Ġdrunk":4509,"Ġleading":4510,"Ġexcl":4511,"Ġwebc":4512,"cil":4513,"Ġhill":4514,"Ġotherwise":4515,"Ġtraditional":4516,"Ġcredits":4517,"Ġpattern":4518,"Ġmichael":4519,"Ġhun":4520,"lling":4521,"Ġpig":4522,"Ġjordan":4523,"Ġchosen":4524,"Ġ2014":4525,"Ġedge":4526,"04":4527,"Ġfaces":4528,"rain":4529,"Ġdelivers":4530,"Ġparticularly":4531,"zen":4532,"ena":4533,"Ġterm":4534,"Ġjoshua":4535,"Ġbang":4536,"Ġped":4537,"Ġsharing":4538,"antly":4539,"Ġvamp":4540,"Ġcrimin":4541,"Ġdriver":4542,"Ġcops":4543,"gor":4544,"hole":4545,"Ġchair":4546,"Ġthoughts":4547,"Ġteachers":4548,"Ġmuseum":4549,"Ġjul":4550,"Ġroot":4551,"Ġmarriage":4552,"Ġsymb":4553,"Ġbrains":4554,"Ġexcited":4555,"fo":4556,"Ġlack":4557,"Ġwashing":4558,"Ġcoast":4559,"Ġcollabor":4560,"Ġwondering":4561,"Ġgoddamn":4562,"Ġnerv":4563,"Ġboo":4564,"Ġseason":4565,"Ġworldwide":4566,"ubs":4567,"Ġblame":4568,"Ġurban":4569,"Ġgalax":4570,"bing":4571,"Ġbatter":4572,"Ġattempt":4573,"Ġlevites":4574,"03":4575,"rant":4576,"rated":4577,"aped":4578,"Ġhoping":4579,"Ġsleeping":4580,"Ġindividuals":4581,"Ġcandy":4582,"Ġhiding":4583,"Ġgates":4584,"ension":4585,"Ġ500":4586,"Ġenterpr":4587,"Ġaudio":4588,"\"?":4589,"Ġhook":4590,"Ġbeast":4591,"Ġreve":4592,"erson":4593,"Ġsubm":4594,"Ġcert":4595,"acity":4596,"Ġanaly":4597,"iring":4598,"urance":4599,"istics":4600,"Ġrecover":4601,"Ġturning":4602,"Ġsending":4603,"Ġcolon":4604,"Ġincludes":4605,"Ġwebsites":4606,"Ġpicked":4607,"Ġmovies":4608,"Ġzero":4609,"Ġmary":4610,"Ġfab":4611,"Ġlin":4612,"Ġresist":4613,"rene":4614,"phere":4615,"Ġkeyboard":4616,"Ġhabit":4617,"Ġwhoever":4618,"Ġclim":4619,"Ġstaying":4620,"Ġconfig":4621,"Ġleader":4622,"Ġextraord":4623,"Ġsurgery":4624,"Ġnervous":4625,"Ġcontrib":4626,"Ġadvanced":4627,"Ġencou":4628,"sa":4629,"sing":4630,"Ġchoices":4631,"Ġincredibly":4632,"Ġfinger":4633,"antbooking":4634,"Ġplastic":4635,"Ġadvert":4636,"Ġinvent":4637,"Ġmulti":4638,"14":4639,"Ġcommit":4640,"Ġmonster":4641,"Ġdrinking":4642,"Ġexpert":4643,"Ġleaves":4644,"Ġtransponder":4645,"Ġhorses":4646,"iest":4647,"Ġtro":4648,"Ġnur":4649,"Ġheat":4650,"Ġrare":4651,"Ġsched":4652,"Ġinheritance":4653,"Ġju":4654,"Ġrough":4655,"Ġcharl":4656,"Ġdimensions":4657,"Ġplenty":4658,"Ġroses":4659,"Ġreserved":4660,"Ġgrown":4661,"Ġnetworks":4662,"ker":4663,"Ġ=":4664,"Ġkick":4665,"Ġsheep":4666,"ship":4667,"rets":4668,"Ġdoors":4669,"Ġgrant":4670,"Ġrelated":4671,"Ġsusp":4672,"ym":4673,"Ġhat":4674,"Ġpiss":4675,"asion":4676,"stood":4677,"Ġplants":4678,"Ġquit":4679,"Ġactions":4680,"Ġminimum":4681,"Ġjournal":4682,"200":4683,"Ġpink":4684,"Ġrej":4685,"Ġmexic":4686,"Ġneur":4687,"Ġleon":4688,"ago":4689,"Ġraised":4690,"Ġtribe":4691,"Ġtests":4692,"Ġlawyer":4693,"bl":4694,"Ġfees":4695,"Ġcontains":4696,"Ġwealth":4697,"Ġflow":4698,"Ġlocated":4699,"Ġlaws":4700,"Ġbenefits":4701,"Ġsection":4702,"24":4703,"Ġbran":4704,"Ġearn":4705,"Ġdeliveries":4706,"Ġadvantage":4707,"Ġstretch":4708,"Ġparam":4709,"Ġrighteousness":4710,"pa":4711,"Ġstones":4712,"Ġgoal":4713,"Ġyourselves":4714,"Ġnoticed":4715,"Ġdegree":4716,"Ġfuel":4717,"Ġlimit":4718,"aign":4719,"ext":4720,"Ġlion":4721,"Ġmel":4722,"imately":4723,"Ġbones":4724,"Ġexpensive":4725,"elsat":4726,"Ġfields":4727,"Ġerror":4728,"Ġcampaign":4729,"Ġmethods":4730,"Ġlength":4731,"rel":4732,"Ġentry":4733,"Ġdefend":4734,"Ġconcerning":4735,"dra":4736,"Ġdating":4737,"Ġrefer":4738,"Ġacqu":4739,"Ġscr":4740,"Ġindian":4741,"Ġpassion":4742,"Ġminds":4743,"Ġengage":4744,"Ġexpected":4745,"eters":4746,"Ġkore":4747,"Ġund":4748,"Ġherself":4749,"Ġpossess":4750,"Ġfourth":4751,"Ġemerg":4752,"Ġetc":4753,"Ġthom":4754,"Ġreward":4755,"Ġupset":4756,"Ġdescription":4757,"Ġdick":4758,"oma":4759,"Ġsevent":4760,"Ġrot":4761,"Ġcarbon":4762,"Ġrap":4763,"Ġcounsel":4764,"100":4765,"Ġinterface":4766,"Ġplayer":4767,"Ġpretend":4768,"Ġmilk":4769,"Ġbaskets":4770,"Ġinflu":4771,"music":4772,"icide":4773,"Ġflash":4774,"Ġspecialize":4775,"under":4776,"Ġreact":4777,"Ġphones":4778,"angers":4779,"Ġsubst":4780,"Ġghost":4781,"Ġmat":4782,"arian":4783,"icing":4784,"Ġbridge":4785,"Ġscript":4786,"Ġsymbol":4787,"Ġcongreg":4788,"Ġstrugg":4789,"Ġharry":4790,"Ġpregnant":4791,"Ġlibrary":4792,"Ġcro":4793,"Ġlapt":4794,"Ġchamp":4795,"Ġsteel":4796,"Ġfasc":4797,"Ġstress":4798,"istry":4799,"Ġcrash":4800,"Ġbelieved":4801,"ervations":4802,"Ġprofessor":4803,"Ġfalse":4804,"Ġburied":4805,"Ġapps":4806,"Ġsmile":4807,"Ġtransm":4808,"cript":4809,"Ġmental":4810,"Ġsher":4811,"Ġpromised":4812,"Ġoppos":4813,"Ġrandom":4814,"Ġshel":4815,"Ġexpand":4816,"Ġ197":4817,"Ġdemocracy":4818,"mp":4819,"Ġevol":4820,"Ġflorists":4821,"Ġessential":4822,"Ġwire":4823,"Ġsd":4824,"Ġliber":4825,"Ġreflect":4826,"Ġdoctors":4827,"Ġutter":4828,"Ġticket":4829,"Ġqual":4830,"Ġhomepage":4831,"Ġfailed":4832,"Ġmotor":4833,"ye":4834,"Ġgenerations":4835,"Ġdarkness":4836,"Ġconsidered":4837,"Ġbasket":4838,"Ġcommercial":4839,"Ġtight":4840,"Ġjere":4841,"Ġprost":4842,"Ġletters":4843,"Ġactual":4844,"Ġpaying":4845,"Ġcommunities":4846,"ropri":4847,"oned":4848,"Ġnar":4849,"Ġlarger":4850,"ilty":4851,"Ġclaim":4852,"Ġdarling":4853,"Ġjapanese":4854,"Ġstyle":4855,"Ġjane":4856,"Ġancient":4857,"Ġrestaurant":4858,"Ġtongue":4859,"Ġsequ":4860,"Ġapparent":4861,"Ġboyfriend":4862,"Ġperfectly":4863,"Ġdiseases":4864,"Ġwheel":4865,"reprene":4866,"17":4867,"Ġknock":4868,"Ġrome":4869,"Ġinterp":4870,"Ġbreast":4871,"Ġbabies":4872,"Ġarmies":4873,"Ġbacteria":4874,"Ġtherap":4875,"eem":4876,"Ġought":4877,"Ġchec":4878,"Ġtroub":4879,"Ġcompon":4880,"ĠâĤ¬":4881,"Ġhistor":4882,"Ġbat":4883,"Ġinj":4884,"etime":4885,"sect":4886,"Ġ36":4887,"Ġcommitted":4888,"Ġopening":4889,"Ġconsult":4890,"Ġbenj":4891,"Ġbrief":4892,"07":4893,"tr":4894,"Ġfec":4895,"asant":4896,"Ġweather":4897,"Ġhaz":4898,"why":4899,"Ġcitizens":4900,"Ġlandscape":4901,"nel":4902,"pal":4903,"Ġnose":4904,"Ġ29":4905,"ublic":4906,"Ġdelight":4907,"Ġ2010":4908,"Ġslight":4909,"Ġassum":4910,"Ġcongregation":4911,"Ġchose":4912,"Ġcapacity":4913,"Ġburned":4914,"Ġbenefit":4915,"Ġaustral":4916,"Ġinhabitants":4917,"don":4918,"Ġforms":4919,"Ġassign":4920,"Ġvisa":4921,"nes":4922,"Ġdiet":4923,"Ġcompassion":4924,"Ġfolks":4925,"Ġpound":4926,"Ġcham":4927,"Ġplayers":4928,"Ġsupports":4929,"Ġincreasing":4930,"Ġengineering":4931,"Ġshooting":4932,"Ġmarketing":4933,"vant":4934,"Ġmaps":4935,"Ġvote":4936,"Ġbackground":4937,"Ġentertain":4938,"Ġembarr":4939,"Ġassemb":4940,"Ġembarrass":4941,"bre":4942,"Ġtum":4943,"asse":4944,"this":4945,"igma":4946,"Ġhostels":4947,"vere":4948,"Ġdesert":4949,"Ġdistribution":4950,"Ġnic":4951,"iger":4952,"Ġfellow":4953,"Ġcris":4954,"aiah":4955,"Ġtower":4956,"Ġexercise":4957,"01":4958,"df":4959,"aching":4960,"ece":4961,"Ġidiot":4962,"Ġbuildings":4963,"Ġformer":4964,"Ġanti":4965,"Ġlocked":4966,".âĢĿ":4967,"ares":4968,"ays":4969,"Ġflat":4970,"Ġflock":4971,"Ġguilty":4972,"Ġafterno":4973,"Ġentreprene":4974,"Ġvirgin":4975,"Ġshadow":4976,"down":4977,"uge":4978,"vation":4979,"Ġtall":4980,"Ġshield":4981,"Ġbecoming":4982,"Ġinvited":4983,"ubscribe":4984,"Ġspect":4985,"iforn":4986,"ethe":4987,"Ġreduce":4988,"Ġprovided":4989,"Ġneighborhood":4990,"Ġwestern":4991,"Ġnaked":4992,"Ġital":4993,"Ġug":4994,"Ġvit":4995,"Ġclients":4996,"Ġextraordinary":4997,"mes":4998,"Ġwow":4999}