Upload 6 files
Browse files- config.yaml +43 -0
- dataset.py +148 -0
- model.py +331 -0
- mtp_tokenizer.model +3 -0
- mtp_tokenizer.vocab +6281 -0
- tokenizer.py +131 -0
config.yaml
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
data:
|
| 2 |
+
augmentation_prob: 0.3
|
| 3 |
+
corpus_path: data.jsonl
|
| 4 |
+
max_text_length: 3000
|
| 5 |
+
min_text_length: 30
|
| 6 |
+
use_augmentation: true
|
| 7 |
+
validation_split: 0.15
|
| 8 |
+
format: "instruction-context-response"
|
| 9 |
+
|
| 10 |
+
generation:
|
| 11 |
+
default_max_tokens: 200
|
| 12 |
+
default_repetition_penalty: 1.2
|
| 13 |
+
default_temperature: 0.8
|
| 14 |
+
default_top_k: 50
|
| 15 |
+
default_top_p: 0.95
|
| 16 |
+
min_response_length: 30
|
| 17 |
+
prompt_format: "### Instrucción:\n{instruction}\n\n### Contexto:\n{context}\n\n### Respuesta:\n"
|
| 18 |
+
|
| 19 |
+
model:
|
| 20 |
+
d_ff: 4096
|
| 21 |
+
d_model: 1024
|
| 22 |
+
dropout: 0.1
|
| 23 |
+
max_seq_len: 2048
|
| 24 |
+
n_heads: 16
|
| 25 |
+
n_layers: 24
|
| 26 |
+
vocab_size: 8000
|
| 27 |
+
|
| 28 |
+
training:
|
| 29 |
+
accumulation_steps: 8
|
| 30 |
+
batch_size: 2
|
| 31 |
+
epochs: 30
|
| 32 |
+
label_smoothing: 0.1
|
| 33 |
+
learning_rate: 0.0003
|
| 34 |
+
max_grad_norm: 1.0
|
| 35 |
+
min_delta: 0.0005
|
| 36 |
+
min_lr: 1.0e-06
|
| 37 |
+
num_threads: 4
|
| 38 |
+
patience: 7
|
| 39 |
+
save_every: 3
|
| 40 |
+
use_amp: true
|
| 41 |
+
use_lr_scheduler: true
|
| 42 |
+
warmup_steps: 500
|
| 43 |
+
weight_decay: 0.1
|
dataset.py
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from torch.utils.data import Dataset
|
| 3 |
+
import json
|
| 4 |
+
import random
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
class MTPDataset(Dataset):
|
| 8 |
+
"""Dataset optimizado para corpus con formato instruction-context-response"""
|
| 9 |
+
|
| 10 |
+
def __init__(self, corpus_path, tokenizer, max_seq_len=2048,
|
| 11 |
+
use_augmentation=True, augmentation_prob=0.3):
|
| 12 |
+
self.tokenizer = tokenizer
|
| 13 |
+
self.max_seq_len = max_seq_len
|
| 14 |
+
self.use_augmentation = use_augmentation
|
| 15 |
+
self.augmentation_prob = augmentation_prob
|
| 16 |
+
self.data = []
|
| 17 |
+
|
| 18 |
+
# Load corpus
|
| 19 |
+
print(f" → Cargando corpus: {corpus_path}")
|
| 20 |
+
valid_count = 0
|
| 21 |
+
with open(corpus_path, 'r', encoding='utf-8') as f:
|
| 22 |
+
for line_num, line in enumerate(f, 1):
|
| 23 |
+
line = line.strip()
|
| 24 |
+
if not line:
|
| 25 |
+
continue
|
| 26 |
+
|
| 27 |
+
try:
|
| 28 |
+
entry = json.loads(line)
|
| 29 |
+
|
| 30 |
+
# Validar campos requeridos
|
| 31 |
+
if 'instruction' not in entry or 'response' not in entry:
|
| 32 |
+
print(f" ⚠ Línea {line_num}: Falta 'instruction' o 'response'")
|
| 33 |
+
continue
|
| 34 |
+
|
| 35 |
+
instruction = entry['instruction'].strip()
|
| 36 |
+
response = entry['response'].strip()
|
| 37 |
+
|
| 38 |
+
if not instruction or not response:
|
| 39 |
+
print(f" ⚠ Línea {line_num}: Campos vacíos")
|
| 40 |
+
continue
|
| 41 |
+
|
| 42 |
+
# Context puede estar vacío o no existir
|
| 43 |
+
context = entry.get('context', '').strip()
|
| 44 |
+
|
| 45 |
+
self.data.append({
|
| 46 |
+
'instruction': instruction,
|
| 47 |
+
'context': context,
|
| 48 |
+
'response': response
|
| 49 |
+
})
|
| 50 |
+
valid_count += 1
|
| 51 |
+
|
| 52 |
+
except json.JSONDecodeError as e:
|
| 53 |
+
print(f" ❌ Línea {line_num}: JSON inválido - {e}")
|
| 54 |
+
continue
|
| 55 |
+
|
| 56 |
+
print(f" ✓ Cargados {valid_count} ejemplos válidos de {line_num} líneas")
|
| 57 |
+
if use_augmentation:
|
| 58 |
+
print(f" ✓ Augmentación activada (prob={augmentation_prob})")
|
| 59 |
+
|
| 60 |
+
def __len__(self):
|
| 61 |
+
return len(self.data)
|
| 62 |
+
|
| 63 |
+
def augment_text(self, text):
|
| 64 |
+
"""Augmentación mejorada de texto"""
|
| 65 |
+
if not self.use_augmentation or random.random() > self.augmentation_prob or not text:
|
| 66 |
+
return text
|
| 67 |
+
|
| 68 |
+
# 1. Variación en espacios
|
| 69 |
+
text = text.strip()
|
| 70 |
+
|
| 71 |
+
# 2. Variación en puntuación final
|
| 72 |
+
if random.random() < 0.25:
|
| 73 |
+
if text.endswith('.'):
|
| 74 |
+
if random.random() < 0.5:
|
| 75 |
+
text = text[:-1]
|
| 76 |
+
elif not text.endswith(('.', '!', '?', ':')):
|
| 77 |
+
if random.random() < 0.5:
|
| 78 |
+
text = text + '.'
|
| 79 |
+
|
| 80 |
+
# 3. Variación en mayúsculas iniciales
|
| 81 |
+
if random.random() < 0.1 and len(text) > 0:
|
| 82 |
+
if text[0].isupper():
|
| 83 |
+
text = text[0].lower() + text[1:]
|
| 84 |
+
elif text[0].islower():
|
| 85 |
+
text = text[0].upper() + text[1:]
|
| 86 |
+
|
| 87 |
+
return text
|
| 88 |
+
|
| 89 |
+
def __getitem__(self, idx):
|
| 90 |
+
entry = self.data[idx]
|
| 91 |
+
|
| 92 |
+
instruction = entry['instruction']
|
| 93 |
+
context = entry['context']
|
| 94 |
+
response = entry['response']
|
| 95 |
+
|
| 96 |
+
# Aplicar augmentación
|
| 97 |
+
instruction = self.augment_text(instruction)
|
| 98 |
+
context = self.augment_text(context)
|
| 99 |
+
response = self.augment_text(response)
|
| 100 |
+
|
| 101 |
+
# Formato optimizado para entrenamiento con contexto opcional
|
| 102 |
+
if context:
|
| 103 |
+
full_text = f"### Instrucción:\n{instruction}\n\n### Contexto:\n{context}\n\n### Respuesta:\n{response}"
|
| 104 |
+
else:
|
| 105 |
+
full_text = f"### Instrucción:\n{instruction}\n\n### Respuesta:\n{response}"
|
| 106 |
+
|
| 107 |
+
# Tokenize
|
| 108 |
+
tokens = self.tokenizer.encode(full_text)
|
| 109 |
+
|
| 110 |
+
# Add BOS and EOS
|
| 111 |
+
tokens = [self.tokenizer.bos_id()] + tokens + [self.tokenizer.eos_id()]
|
| 112 |
+
|
| 113 |
+
# Truncate if too long (mantener BOS y EOS)
|
| 114 |
+
if len(tokens) > self.max_seq_len:
|
| 115 |
+
tokens = [tokens[0]] + tokens[1:self.max_seq_len-1] + [self.tokenizer.eos_id()]
|
| 116 |
+
|
| 117 |
+
input_ids = torch.tensor(tokens[:-1], dtype=torch.long)
|
| 118 |
+
target_ids = torch.tensor(tokens[1:], dtype=torch.long)
|
| 119 |
+
|
| 120 |
+
return input_ids, target_ids
|
| 121 |
+
|
| 122 |
+
|
| 123 |
+
def collate_fn(batch, pad_id=0):
|
| 124 |
+
"""Collate function optimizada con padding dinámico"""
|
| 125 |
+
input_ids = [item[0] for item in batch]
|
| 126 |
+
target_ids = [item[1] for item in batch]
|
| 127 |
+
|
| 128 |
+
# Find max length in this batch (dynamic padding)
|
| 129 |
+
max_len = max(len(ids) for ids in input_ids)
|
| 130 |
+
|
| 131 |
+
# Pad sequences
|
| 132 |
+
input_ids_padded = []
|
| 133 |
+
target_ids_padded = []
|
| 134 |
+
|
| 135 |
+
for inp, tgt in zip(input_ids, target_ids):
|
| 136 |
+
pad_len = max_len - len(inp)
|
| 137 |
+
|
| 138 |
+
# Pad input with pad_id
|
| 139 |
+
input_ids_padded.append(
|
| 140 |
+
torch.cat([inp, torch.full((pad_len,), pad_id, dtype=torch.long)])
|
| 141 |
+
)
|
| 142 |
+
|
| 143 |
+
# Pad target with -100 (ignore_index in CrossEntropyLoss)
|
| 144 |
+
target_ids_padded.append(
|
| 145 |
+
torch.cat([tgt, torch.full((pad_len,), -100, dtype=torch.long)])
|
| 146 |
+
)
|
| 147 |
+
|
| 148 |
+
return torch.stack(input_ids_padded), torch.stack(target_ids_padded)
|
model.py
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
import math
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
class RotaryPositionalEmbedding(nn.Module):
|
| 8 |
+
"""RoPE - Rotary Position Embedding con scaling mejorado"""
|
| 9 |
+
|
| 10 |
+
def __init__(self, dim, max_seq_len=4096, base=10000):
|
| 11 |
+
super().__init__()
|
| 12 |
+
inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float() / dim))
|
| 13 |
+
self.register_buffer('inv_freq', inv_freq)
|
| 14 |
+
self.max_seq_len = max_seq_len
|
| 15 |
+
|
| 16 |
+
def forward(self, seq_len, device):
|
| 17 |
+
t = torch.arange(seq_len, device=device).type_as(self.inv_freq)
|
| 18 |
+
freqs = torch.einsum('i,j->ij', t, self.inv_freq)
|
| 19 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 20 |
+
return emb.cos(), emb.sin()
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def apply_rotary_pos_emb(q, k, cos, sin):
|
| 24 |
+
"""Aplica RoPE a queries y keys"""
|
| 25 |
+
def rotate_half(x):
|
| 26 |
+
x1, x2 = x.chunk(2, dim=-1)
|
| 27 |
+
return torch.cat((-x2, x1), dim=-1)
|
| 28 |
+
|
| 29 |
+
q_embed = (q * cos) + (rotate_half(q) * sin)
|
| 30 |
+
k_embed = (k * cos) + (rotate_half(k) * sin)
|
| 31 |
+
return q_embed, k_embed
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
class MultiQueryAttention(nn.Module):
|
| 35 |
+
"""Multi-Query Attention (MQA) - Más eficiente que MHA"""
|
| 36 |
+
|
| 37 |
+
def __init__(self, d_model, n_heads, dropout=0.1, max_seq_len=4096):
|
| 38 |
+
super().__init__()
|
| 39 |
+
assert d_model % n_heads == 0
|
| 40 |
+
|
| 41 |
+
self.d_model = d_model
|
| 42 |
+
self.n_heads = n_heads
|
| 43 |
+
self.d_k = d_model // n_heads
|
| 44 |
+
|
| 45 |
+
# Multi-query: Q tiene múltiples heads, K y V tienen 1 head
|
| 46 |
+
self.q_linear = nn.Linear(d_model, d_model, bias=False)
|
| 47 |
+
self.k_linear = nn.Linear(d_model, self.d_k, bias=False)
|
| 48 |
+
self.v_linear = nn.Linear(d_model, self.d_k, bias=False)
|
| 49 |
+
self.out_linear = nn.Linear(d_model, d_model, bias=False)
|
| 50 |
+
|
| 51 |
+
self.dropout = nn.Dropout(dropout)
|
| 52 |
+
self.attn_dropout = nn.Dropout(dropout)
|
| 53 |
+
self.rope = RotaryPositionalEmbedding(self.d_k, max_seq_len)
|
| 54 |
+
|
| 55 |
+
self.flash = hasattr(torch.nn.functional, 'scaled_dot_product_attention')
|
| 56 |
+
|
| 57 |
+
def forward(self, x, mask=None, use_cache=False, past_kv=None):
|
| 58 |
+
batch_size, seq_len, d_model = x.size()
|
| 59 |
+
|
| 60 |
+
# Q: [batch, seq, n_heads, d_k]
|
| 61 |
+
Q = self.q_linear(x).view(batch_size, seq_len, self.n_heads, self.d_k).transpose(1, 2)
|
| 62 |
+
|
| 63 |
+
# K, V: [batch, seq, d_k] -> expandir a [batch, n_heads, seq, d_k]
|
| 64 |
+
K = self.k_linear(x).unsqueeze(1).expand(-1, self.n_heads, -1, -1)
|
| 65 |
+
V = self.v_linear(x).unsqueeze(1).expand(-1, self.n_heads, -1, -1)
|
| 66 |
+
|
| 67 |
+
# Apply RoPE
|
| 68 |
+
cos, sin = self.rope(seq_len, x.device)
|
| 69 |
+
cos = cos[None, None, :, :]
|
| 70 |
+
sin = sin[None, None, :, :]
|
| 71 |
+
Q, K = apply_rotary_pos_emb(Q, K, cos, sin)
|
| 72 |
+
|
| 73 |
+
# KV cache para inferencia
|
| 74 |
+
if use_cache:
|
| 75 |
+
if past_kv is not None:
|
| 76 |
+
K = torch.cat([past_kv[0], K], dim=2)
|
| 77 |
+
V = torch.cat([past_kv[1], V], dim=2)
|
| 78 |
+
cache = (K, V)
|
| 79 |
+
else:
|
| 80 |
+
cache = None
|
| 81 |
+
|
| 82 |
+
# Attention
|
| 83 |
+
if self.flash and mask is None and not use_cache:
|
| 84 |
+
context = F.scaled_dot_product_attention(
|
| 85 |
+
Q, K, V,
|
| 86 |
+
attn_mask=None,
|
| 87 |
+
dropout_p=self.dropout.p if self.training else 0.0,
|
| 88 |
+
is_causal=True
|
| 89 |
+
)
|
| 90 |
+
else:
|
| 91 |
+
scores = torch.matmul(Q, K.transpose(-2, -1)) / math.sqrt(self.d_k)
|
| 92 |
+
if mask is not None:
|
| 93 |
+
scores = scores.masked_fill(mask == 0, float('-inf'))
|
| 94 |
+
attn_weights = F.softmax(scores, dim=-1)
|
| 95 |
+
attn_weights = self.attn_dropout(attn_weights)
|
| 96 |
+
context = torch.matmul(attn_weights, V)
|
| 97 |
+
|
| 98 |
+
context = context.transpose(1, 2).contiguous().view(batch_size, seq_len, d_model)
|
| 99 |
+
output = self.out_linear(context)
|
| 100 |
+
return self.dropout(output), cache
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
class SwiGLU(nn.Module):
|
| 104 |
+
"""SwiGLU activation con eficiencia mejorada"""
|
| 105 |
+
|
| 106 |
+
def __init__(self, d_model, d_ff, dropout=0.1):
|
| 107 |
+
super().__init__()
|
| 108 |
+
# FFN de GPT-3: 4x expansion
|
| 109 |
+
self.w1 = nn.Linear(d_model, d_ff, bias=False)
|
| 110 |
+
self.w2 = nn.Linear(d_ff, d_model, bias=False)
|
| 111 |
+
self.w3 = nn.Linear(d_model, d_ff, bias=False)
|
| 112 |
+
self.dropout = nn.Dropout(dropout)
|
| 113 |
+
|
| 114 |
+
def forward(self, x):
|
| 115 |
+
return self.w2(self.dropout(F.silu(self.w1(x)) * self.w3(x)))
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
class RMSNorm(nn.Module):
|
| 119 |
+
"""RMSNorm - Más estable que LayerNorm"""
|
| 120 |
+
|
| 121 |
+
def __init__(self, dim, eps=1e-6):
|
| 122 |
+
super().__init__()
|
| 123 |
+
self.eps = eps
|
| 124 |
+
self.weight = nn.Parameter(torch.ones(dim))
|
| 125 |
+
|
| 126 |
+
def forward(self, x):
|
| 127 |
+
norm = torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps)
|
| 128 |
+
return x * norm * self.weight
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
class TransformerBlock(nn.Module):
|
| 132 |
+
"""Transformer Block optimizado estilo GPT-3"""
|
| 133 |
+
|
| 134 |
+
def __init__(self, d_model, n_heads, d_ff, dropout=0.1, max_seq_len=4096):
|
| 135 |
+
super().__init__()
|
| 136 |
+
self.attention = MultiQueryAttention(d_model, n_heads, dropout, max_seq_len)
|
| 137 |
+
self.feed_forward = SwiGLU(d_model, d_ff, dropout)
|
| 138 |
+
|
| 139 |
+
self.norm1 = RMSNorm(d_model)
|
| 140 |
+
self.norm2 = RMSNorm(d_model)
|
| 141 |
+
|
| 142 |
+
def forward(self, x, mask=None, use_cache=False, past_kv=None):
|
| 143 |
+
# Pre-norm architecture (mejor que post-norm)
|
| 144 |
+
attn_out, cache = self.attention(self.norm1(x), mask, use_cache, past_kv)
|
| 145 |
+
x = x + attn_out
|
| 146 |
+
x = x + self.feed_forward(self.norm2(x))
|
| 147 |
+
return x, cache
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
class MTPModel(nn.Module):
|
| 151 |
+
"""MTP 3 - Arquitectura mejorada nivel GPT-3"""
|
| 152 |
+
|
| 153 |
+
def __init__(self, vocab_size, d_model=1024, n_layers=24, n_heads=16,
|
| 154 |
+
d_ff=4096, max_seq_len=2048, dropout=0.1):
|
| 155 |
+
super().__init__()
|
| 156 |
+
|
| 157 |
+
self.vocab_size = vocab_size
|
| 158 |
+
self.d_model = d_model
|
| 159 |
+
self.max_seq_len = max_seq_len
|
| 160 |
+
|
| 161 |
+
# Embeddings con escalado
|
| 162 |
+
self.token_embedding = nn.Embedding(vocab_size, d_model)
|
| 163 |
+
self.dropout = nn.Dropout(dropout)
|
| 164 |
+
|
| 165 |
+
# Transformer blocks
|
| 166 |
+
self.blocks = nn.ModuleList([
|
| 167 |
+
TransformerBlock(d_model, n_heads, d_ff, dropout, max_seq_len)
|
| 168 |
+
for _ in range(n_layers)
|
| 169 |
+
])
|
| 170 |
+
|
| 171 |
+
# Final norm y projection
|
| 172 |
+
self.norm_f = RMSNorm(d_model)
|
| 173 |
+
self.lm_head = nn.Linear(d_model, vocab_size, bias=False)
|
| 174 |
+
|
| 175 |
+
# Weight tying (reduce parámetros)
|
| 176 |
+
self.token_embedding.weight = self.lm_head.weight
|
| 177 |
+
|
| 178 |
+
# Inicialización mejorada (GPT-3 style)
|
| 179 |
+
self.apply(self._init_weights)
|
| 180 |
+
|
| 181 |
+
# Escalado especial para residual connections
|
| 182 |
+
for pn, p in self.named_parameters():
|
| 183 |
+
if pn.endswith('w2.weight') or pn.endswith('out_linear.weight'):
|
| 184 |
+
torch.nn.init.normal_(p, mean=0.0, std=0.02/math.sqrt(2 * n_layers))
|
| 185 |
+
|
| 186 |
+
def _init_weights(self, module):
|
| 187 |
+
if isinstance(module, nn.Linear):
|
| 188 |
+
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 189 |
+
if module.bias is not None:
|
| 190 |
+
torch.nn.init.zeros_(module.bias)
|
| 191 |
+
elif isinstance(module, nn.Embedding):
|
| 192 |
+
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 193 |
+
|
| 194 |
+
def forward(self, input_ids, targets=None):
|
| 195 |
+
batch_size, seq_len = input_ids.size()
|
| 196 |
+
|
| 197 |
+
# Causal mask
|
| 198 |
+
mask = torch.tril(torch.ones(seq_len, seq_len, device=input_ids.device)).view(1, 1, seq_len, seq_len)
|
| 199 |
+
|
| 200 |
+
# Embeddings con escalado
|
| 201 |
+
x = self.dropout(self.token_embedding(input_ids) * math.sqrt(self.d_model))
|
| 202 |
+
|
| 203 |
+
# Transformer blocks
|
| 204 |
+
for block in self.blocks:
|
| 205 |
+
x, _ = block(x, mask)
|
| 206 |
+
|
| 207 |
+
# Final norm y projection
|
| 208 |
+
x = self.norm_f(x)
|
| 209 |
+
logits = self.lm_head(x)
|
| 210 |
+
|
| 211 |
+
loss = None
|
| 212 |
+
if targets is not None:
|
| 213 |
+
# Label smoothing para mejor generalización
|
| 214 |
+
loss = F.cross_entropy(
|
| 215 |
+
logits.view(-1, self.vocab_size),
|
| 216 |
+
targets.view(-1),
|
| 217 |
+
label_smoothing=0.1,
|
| 218 |
+
ignore_index=-100
|
| 219 |
+
)
|
| 220 |
+
|
| 221 |
+
return logits, loss
|
| 222 |
+
|
| 223 |
+
@torch.no_grad()
|
| 224 |
+
def generate(self, input_ids, max_new_tokens=200, temperature=0.8,
|
| 225 |
+
top_k=50, top_p=0.95, repetition_penalty=1.2,
|
| 226 |
+
min_length=30, eos_token_id=3):
|
| 227 |
+
"""Generación optimizada con KV cache"""
|
| 228 |
+
self.eval()
|
| 229 |
+
|
| 230 |
+
device = input_ids.device
|
| 231 |
+
generated = input_ids.clone()
|
| 232 |
+
past_kvs = [None] * len(self.blocks)
|
| 233 |
+
generated_text_tokens = 0
|
| 234 |
+
|
| 235 |
+
for step in range(max_new_tokens):
|
| 236 |
+
# Use cache para tokens ya procesados
|
| 237 |
+
if step == 0:
|
| 238 |
+
current_input = generated
|
| 239 |
+
use_cache = False
|
| 240 |
+
else:
|
| 241 |
+
current_input = generated[:, -1:]
|
| 242 |
+
use_cache = True
|
| 243 |
+
|
| 244 |
+
# Truncate si excede max_seq_len
|
| 245 |
+
if current_input.size(1) > self.max_seq_len:
|
| 246 |
+
current_input = current_input[:, -self.max_seq_len:]
|
| 247 |
+
use_cache = False
|
| 248 |
+
past_kvs = [None] * len(self.blocks)
|
| 249 |
+
|
| 250 |
+
# Forward pass
|
| 251 |
+
batch_size, seq_len = current_input.size()
|
| 252 |
+
mask = torch.tril(torch.ones(seq_len, seq_len, device=device)).view(1, 1, seq_len, seq_len)
|
| 253 |
+
|
| 254 |
+
x = self.token_embedding(current_input) * math.sqrt(self.d_model)
|
| 255 |
+
|
| 256 |
+
new_past_kvs = []
|
| 257 |
+
for i, block in enumerate(self.blocks):
|
| 258 |
+
x, cache = block(x, mask, use_cache, past_kvs[i] if use_cache else None)
|
| 259 |
+
new_past_kvs.append(cache)
|
| 260 |
+
|
| 261 |
+
if use_cache:
|
| 262 |
+
past_kvs = new_past_kvs
|
| 263 |
+
|
| 264 |
+
x = self.norm_f(x)
|
| 265 |
+
logits = self.lm_head(x[:, -1, :])
|
| 266 |
+
|
| 267 |
+
# Repetition penalty
|
| 268 |
+
if repetition_penalty != 1.0:
|
| 269 |
+
for token_id in set(generated[0].tolist()):
|
| 270 |
+
if logits[0, token_id] < 0:
|
| 271 |
+
logits[0, token_id] *= repetition_penalty
|
| 272 |
+
else:
|
| 273 |
+
logits[0, token_id] /= repetition_penalty
|
| 274 |
+
|
| 275 |
+
# Penalizar tokens muy repetidos
|
| 276 |
+
if generated.size(1) > 20:
|
| 277 |
+
recent = generated[0, -20:].tolist()
|
| 278 |
+
for token_id in set(recent):
|
| 279 |
+
count = recent.count(token_id)
|
| 280 |
+
if count > 3:
|
| 281 |
+
logits[0, token_id] -= count * 3.0
|
| 282 |
+
|
| 283 |
+
# Control de longitud mínima
|
| 284 |
+
if generated_text_tokens < min_length:
|
| 285 |
+
logits[0, eos_token_id] = float('-inf')
|
| 286 |
+
else:
|
| 287 |
+
# Boost EOS gradualmente
|
| 288 |
+
eos_boost = min((generated_text_tokens - min_length) * 0.15, 3.0)
|
| 289 |
+
logits[0, eos_token_id] += eos_boost
|
| 290 |
+
|
| 291 |
+
# Temperature scaling
|
| 292 |
+
logits = logits / temperature
|
| 293 |
+
|
| 294 |
+
# Top-k filtering
|
| 295 |
+
if top_k > 0:
|
| 296 |
+
v, _ = torch.topk(logits, min(top_k, logits.size(-1)))
|
| 297 |
+
logits[logits < v[:, [-1]]] = float('-inf')
|
| 298 |
+
|
| 299 |
+
# Top-p (nucleus) filtering
|
| 300 |
+
if top_p < 1.0:
|
| 301 |
+
sorted_logits, sorted_indices = torch.sort(logits, descending=True)
|
| 302 |
+
cumulative_probs = torch.cumsum(F.softmax(sorted_logits, dim=-1), dim=-1)
|
| 303 |
+
sorted_indices_to_remove = cumulative_probs > top_p
|
| 304 |
+
sorted_indices_to_remove[:, 1:] = sorted_indices_to_remove[:, :-1].clone()
|
| 305 |
+
sorted_indices_to_remove[:, 0] = 0
|
| 306 |
+
indices_to_remove = sorted_indices_to_remove.scatter(1, sorted_indices, sorted_indices_to_remove)
|
| 307 |
+
logits[indices_to_remove] = float('-inf')
|
| 308 |
+
|
| 309 |
+
# Sample
|
| 310 |
+
probs = F.softmax(logits, dim=-1)
|
| 311 |
+
next_token = torch.multinomial(probs, num_samples=1)
|
| 312 |
+
|
| 313 |
+
# Check EOS
|
| 314 |
+
if next_token.item() == eos_token_id and generated_text_tokens >= min_length:
|
| 315 |
+
break
|
| 316 |
+
|
| 317 |
+
generated = torch.cat([generated, next_token], dim=1)
|
| 318 |
+
generated_text_tokens += 1
|
| 319 |
+
|
| 320 |
+
return generated
|
| 321 |
+
|
| 322 |
+
def count_parameters(self):
|
| 323 |
+
"""Cuenta parámetros entrenables"""
|
| 324 |
+
return sum(p.numel() for p in self.parameters() if p.requires_grad)
|
| 325 |
+
|
| 326 |
+
def get_num_params(self, non_embedding=True):
|
| 327 |
+
"""Cuenta parámetros excluyendo embeddings si se requiere"""
|
| 328 |
+
n_params = sum(p.numel() for p in self.parameters())
|
| 329 |
+
if non_embedding:
|
| 330 |
+
n_params -= self.token_embedding.weight.numel()
|
| 331 |
+
return n_params
|
mtp_tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6d1d72214056039cc1d00d60054786096ea5eb7ddd42e56b0a7cedd0a154c4e
|
| 3 |
+
size 102786
|
mtp_tokenizer.vocab
ADDED
|
@@ -0,0 +1,6281 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<pad> 0
|
| 2 |
+
<unk> 0
|
| 3 |
+
<s> 0
|
| 4 |
+
</s> 0
|
| 5 |
+
es -0
|
| 6 |
+
en -1
|
| 7 |
+
▁d -2
|
| 8 |
+
▁c -3
|
| 9 |
+
ra -4
|
| 10 |
+
on -5
|
| 11 |
+
ci -6
|
| 12 |
+
▁p -7
|
| 13 |
+
os -8
|
| 14 |
+
▁de -9
|
| 15 |
+
la -10
|
| 16 |
+
er -11
|
| 17 |
+
▁a -12
|
| 18 |
+
re -13
|
| 19 |
+
ta -14
|
| 20 |
+
or -15
|
| 21 |
+
in -16
|
| 22 |
+
ic -17
|
| 23 |
+
▁es -18
|
| 24 |
+
▁s -19
|
| 25 |
+
te -20
|
| 26 |
+
▁m -21
|
| 27 |
+
as -22
|
| 28 |
+
▁y -23
|
| 29 |
+
▁e -24
|
| 30 |
+
an -25
|
| 31 |
+
ar -26
|
| 32 |
+
un -27
|
| 33 |
+
ti -28
|
| 34 |
+
om -29
|
| 35 |
+
ad -30
|
| 36 |
+
▁( -31
|
| 37 |
+
ue -32
|
| 38 |
+
al -33
|
| 39 |
+
▁en -34
|
| 40 |
+
ro -35
|
| 41 |
+
▁la -36
|
| 42 |
+
to -37
|
| 43 |
+
ón -38
|
| 44 |
+
▁con -39
|
| 45 |
+
is -40
|
| 46 |
+
▁f -41
|
| 47 |
+
▁el -42
|
| 48 |
+
▁un -43
|
| 49 |
+
id -44
|
| 50 |
+
▁l -45
|
| 51 |
+
▁M -46
|
| 52 |
+
do -47
|
| 53 |
+
ol -48
|
| 54 |
+
▁com -49
|
| 55 |
+
▁re -50
|
| 56 |
+
▁in -51
|
| 57 |
+
▁g -52
|
| 58 |
+
▁h -53
|
| 59 |
+
ción -54
|
| 60 |
+
tu -55
|
| 61 |
+
ica -56
|
| 62 |
+
ri -57
|
| 63 |
+
Qu -58
|
| 64 |
+
), -59
|
| 65 |
+
▁n -60
|
| 66 |
+
▁E -61
|
| 67 |
+
ien -62
|
| 68 |
+
▁C -63
|
| 69 |
+
▁S -64
|
| 70 |
+
us -65
|
| 71 |
+
▁o -66
|
| 72 |
+
de -67
|
| 73 |
+
▁' -68
|
| 74 |
+
cion -69
|
| 75 |
+
li -70
|
| 76 |
+
ec -71
|
| 77 |
+
▁v -72
|
| 78 |
+
que -73
|
| 79 |
+
▁pa -74
|
| 80 |
+
lo -75
|
| 81 |
+
▁t -76
|
| 82 |
+
tos -77
|
| 83 |
+
men -78
|
| 84 |
+
mo -79
|
| 85 |
+
mp -80
|
| 86 |
+
ía -81
|
| 87 |
+
di -82
|
| 88 |
+
▁se -83
|
| 89 |
+
le -84
|
| 90 |
+
ma -85
|
| 91 |
+
▁A -86
|
| 92 |
+
tr -87
|
| 93 |
+
Qué -88
|
| 94 |
+
▁pro -89
|
| 95 |
+
ico -90
|
| 96 |
+
▁por -91
|
| 97 |
+
▁L -92
|
| 98 |
+
era -93
|
| 99 |
+
▁me -94
|
| 100 |
+
▁P -95
|
| 101 |
+
▁T -96
|
| 102 |
+
da -97
|
| 103 |
+
▁como -98
|
| 104 |
+
▁para -99
|
| 105 |
+
ado -100
|
| 106 |
+
res -101
|
| 107 |
+
▁que -102
|
| 108 |
+
cia -103
|
| 109 |
+
▁b -104
|
| 110 |
+
▁te -105
|
| 111 |
+
gu -106
|
| 112 |
+
ciones -107
|
| 113 |
+
ac -108
|
| 114 |
+
tura -109
|
| 115 |
+
tas -110
|
| 116 |
+
tiv -111
|
| 117 |
+
am -112
|
| 118 |
+
qu -113
|
| 119 |
+
uc -114
|
| 120 |
+
▁una -115
|
| 121 |
+
). -116
|
| 122 |
+
bi -117
|
| 123 |
+
el -118
|
| 124 |
+
ul -119
|
| 125 |
+
én -120
|
| 126 |
+
▁I -121
|
| 127 |
+
ran -122
|
| 128 |
+
▁Es -123
|
| 129 |
+
La -124
|
| 130 |
+
za -125
|
| 131 |
+
idad -126
|
| 132 |
+
ás -127
|
| 133 |
+
▁F -128
|
| 134 |
+
bre -129
|
| 135 |
+
▁ti -130
|
| 136 |
+
go -131
|
| 137 |
+
▁R -132
|
| 138 |
+
ero -133
|
| 139 |
+
tra -134
|
| 140 |
+
▁des -135
|
| 141 |
+
cu -136
|
| 142 |
+
pa -137
|
| 143 |
+
dad -138
|
| 144 |
+
iento -139
|
| 145 |
+
il -140
|
| 146 |
+
um -141
|
| 147 |
+
tes -142
|
| 148 |
+
▁del -143
|
| 149 |
+
mente -144
|
| 150 |
+
je -145
|
| 151 |
+
vi -146
|
| 152 |
+
▁G -147
|
| 153 |
+
▁so -148
|
| 154 |
+
io -149
|
| 155 |
+
ten -150
|
| 156 |
+
▁al -151
|
| 157 |
+
▁su -152
|
| 158 |
+
ones -153
|
| 159 |
+
', -154
|
| 160 |
+
TP -155
|
| 161 |
+
gen -156
|
| 162 |
+
tan -157
|
| 163 |
+
tor -158
|
| 164 |
+
▁mo -159
|
| 165 |
+
les -160
|
| 166 |
+
ómo -161
|
| 167 |
+
▁ca -162
|
| 168 |
+
cial -163
|
| 169 |
+
▁comp -164
|
| 170 |
+
El -165
|
| 171 |
+
▁i -166
|
| 172 |
+
ren -167
|
| 173 |
+
icas -168
|
| 174 |
+
ig -169
|
| 175 |
+
ers -170
|
| 176 |
+
▁ex -171
|
| 177 |
+
▁fue -172
|
| 178 |
+
Qui -173
|
| 179 |
+
gua -174
|
| 180 |
+
lar -175
|
| 181 |
+
orm -176
|
| 182 |
+
tar -177
|
| 183 |
+
Cómo -178
|
| 184 |
+
▁gen -179
|
| 185 |
+
▁más -180
|
| 186 |
+
▁pre -181
|
| 187 |
+
▁los -182
|
| 188 |
+
ir -183
|
| 189 |
+
ve -184
|
| 190 |
+
án -185
|
| 191 |
+
ier -186
|
| 192 |
+
ter -187
|
| 193 |
+
▁no -188
|
| 194 |
+
▁MTP -189
|
| 195 |
+
▁esp -190
|
| 196 |
+
if -191
|
| 197 |
+
lu -192
|
| 198 |
+
▁D -193
|
| 199 |
+
des -194
|
| 200 |
+
oci -195
|
| 201 |
+
▁ar -196
|
| 202 |
+
Quién -197
|
| 203 |
+
▁B -198
|
| 204 |
+
'. -199
|
| 205 |
+
éx -200
|
| 206 |
+
▁N -201
|
| 207 |
+
der -202
|
| 208 |
+
ras -203
|
| 209 |
+
tri -204
|
| 210 |
+
▁le -205
|
| 211 |
+
ican -206
|
| 212 |
+
uman -207
|
| 213 |
+
▁las -208
|
| 214 |
+
ch -209
|
| 215 |
+
ie -210
|
| 216 |
+
iv -211
|
| 217 |
+
dos -212
|
| 218 |
+
duc -213
|
| 219 |
+
tica -214
|
| 220 |
+
▁Con -215
|
| 221 |
+
▁pue -216
|
| 222 |
+
xican -217
|
| 223 |
+
co -218
|
| 224 |
+
ia -219
|
| 225 |
+
ici -220
|
| 226 |
+
ios -221
|
| 227 |
+
ión -222
|
| 228 |
+
las -223
|
| 229 |
+
▁as -224
|
| 230 |
+
▁cu -225
|
| 231 |
+
▁na -226
|
| 232 |
+
▁po -227
|
| 233 |
+
ando -228
|
| 234 |
+
▁dis -229
|
| 235 |
+
▁ser -230
|
| 236 |
+
miento -231
|
| 237 |
+
▁human -232
|
| 238 |
+
▁genera -233
|
| 239 |
+
ca -234
|
| 240 |
+
jo -235
|
| 241 |
+
sa -236
|
| 242 |
+
ces -237
|
| 243 |
+
con -238
|
| 244 |
+
ida -239
|
| 245 |
+
lan -240
|
| 246 |
+
luy -241
|
| 247 |
+
▁tra -242
|
| 248 |
+
me -243
|
| 249 |
+
og -244
|
| 250 |
+
pu -245
|
| 251 |
+
ís -246
|
| 252 |
+
▁H -247
|
| 253 |
+
ada -248
|
| 254 |
+
emp -249
|
| 255 |
+
ina -250
|
| 256 |
+
▁In -251
|
| 257 |
+
▁Re -252
|
| 258 |
+
▁tu -253
|
| 259 |
+
▁est -254
|
| 260 |
+
▁exp -255
|
| 261 |
+
iz -256
|
| 262 |
+
ud -257
|
| 263 |
+
▁Se -258
|
| 264 |
+
ales -259
|
| 265 |
+
delo -260
|
| 266 |
+
▁fun -261
|
| 267 |
+
cidad -262
|
| 268 |
+
encia -263
|
| 269 |
+
▁sobre -264
|
| 270 |
+
ib -265
|
| 271 |
+
po -266
|
| 272 |
+
▁V -267
|
| 273 |
+
▁¿ -268
|
| 274 |
+
cri -269
|
| 275 |
+
ing -270
|
| 276 |
+
omo -271
|
| 277 |
+
rol -272
|
| 278 |
+
▁añ -273
|
| 279 |
+
▁pr -274
|
| 280 |
+
▁ta -275
|
| 281 |
+
cluy -276
|
| 282 |
+
ores -277
|
| 283 |
+
▁can -278
|
| 284 |
+
tante -279
|
| 285 |
+
éxico -280
|
| 286 |
+
▁mexican -281
|
| 287 |
+
mb -282
|
| 288 |
+
xto -283
|
| 289 |
+
▁mú -284
|
| 290 |
+
▁ob -285
|
| 291 |
+
▁ro -286
|
| 292 |
+
▁cre -287
|
| 293 |
+
▁inf -288
|
| 294 |
+
Cu -289
|
| 295 |
+
ab -290
|
| 296 |
+
em -291
|
| 297 |
+
ep -292
|
| 298 |
+
ga -293
|
| 299 |
+
tó -294
|
| 300 |
+
éc -295
|
| 301 |
+
ene -296
|
| 302 |
+
ide -297
|
| 303 |
+
ite -298
|
| 304 |
+
osi -299
|
| 305 |
+
tal -300
|
| 306 |
+
uer -301
|
| 307 |
+
▁La -302
|
| 308 |
+
▁ac -303
|
| 309 |
+
▁ay -304
|
| 310 |
+
icos -305
|
| 311 |
+
iste -306
|
| 312 |
+
pren -307
|
| 313 |
+
tico -308
|
| 314 |
+
▁emp -309
|
| 315 |
+
▁imp -310
|
| 316 |
+
▁rep -311
|
| 317 |
+
▁ten -312
|
| 318 |
+
▁cons -313
|
| 319 |
+
▁espe -314
|
| 320 |
+
▁modelo -315
|
| 321 |
+
ha -316
|
| 322 |
+
oy -317
|
| 323 |
+
és -318
|
| 324 |
+
ino -319
|
| 325 |
+
vol -320
|
| 326 |
+
▁an -321
|
| 327 |
+
▁qu -322
|
| 328 |
+
▁us -323
|
| 329 |
+
arte -324
|
| 330 |
+
teli -325
|
| 331 |
+
▁emo -326
|
| 332 |
+
▁gra -327
|
| 333 |
+
▁hac -328
|
| 334 |
+
▁len -329
|
| 335 |
+
▁res -330
|
| 336 |
+
arrol -331
|
| 337 |
+
guaje -332
|
| 338 |
+
tural -333
|
| 339 |
+
▁agua -334
|
| 340 |
+
amiento -335
|
| 341 |
+
teligen -336
|
| 342 |
+
tividad -337
|
| 343 |
+
▁desarrol -338
|
| 344 |
+
lb -339
|
| 345 |
+
so -340
|
| 346 |
+
uz -341
|
| 347 |
+
▁O -342
|
| 348 |
+
tro -343
|
| 349 |
+
uen -344
|
| 350 |
+
▁Su -345
|
| 351 |
+
▁au -346
|
| 352 |
+
▁az -347
|
| 353 |
+
▁da -348
|
| 354 |
+
▁di -349
|
| 355 |
+
▁si -350
|
| 356 |
+
ados -351
|
| 357 |
+
cias -352
|
| 358 |
+
inci -353
|
| 359 |
+
lado -354
|
| 360 |
+
orma -355
|
| 361 |
+
tado -356
|
| 362 |
+
tiva -357
|
| 363 |
+
▁sig -358
|
| 364 |
+
▁sus -359
|
| 365 |
+
turas -360
|
| 366 |
+
▁ayud -361
|
| 367 |
+
▁años -362
|
| 368 |
+
▁prof -363
|
| 369 |
+
▁rela -364
|
| 370 |
+
cional -365
|
| 371 |
+
tación -366
|
| 372 |
+
▁México -367
|
| 373 |
+
▁conoci -368
|
| 374 |
+
▁incluy -369
|
| 375 |
+
▁lenguaje -370
|
| 376 |
+
eb -371
|
| 377 |
+
má -372
|
| 378 |
+
no -373
|
| 379 |
+
se -374
|
| 380 |
+
ér -375
|
| 381 |
+
íf -376
|
| 382 |
+
dor -377
|
| 383 |
+
mas -378
|
| 384 |
+
por -379
|
| 385 |
+
▁IA -380
|
| 386 |
+
ante -381
|
| 387 |
+
ente -382
|
| 388 |
+
ista -383
|
| 389 |
+
rans -384
|
| 390 |
+
reas -385
|
| 391 |
+
tren -386
|
| 392 |
+
volu -387
|
| 393 |
+
▁min -388
|
| 394 |
+
▁ref -389
|
| 395 |
+
incip -390
|
| 396 |
+
▁puedo -391
|
| 397 |
+
▁tengo -392
|
| 398 |
+
▁texto -393
|
| 399 |
+
▁proces -394
|
| 400 |
+
▁princip -395
|
| 401 |
+
▁especial -396
|
| 402 |
+
teligencia -397
|
| 403 |
+
ay -398
|
| 404 |
+
ja -399
|
| 405 |
+
na -400
|
| 406 |
+
ob -401
|
| 407 |
+
ño -402
|
| 408 |
+
ún -403
|
| 409 |
+
▁- -404
|
| 410 |
+
▁J -405
|
| 411 |
+
▁r -406
|
| 412 |
+
▁¡ -407
|
| 413 |
+
arn -408
|
| 414 |
+
den -409
|
| 415 |
+
ine -410
|
| 416 |
+
ira -411
|
| 417 |
+
pen -412
|
| 418 |
+
til -413
|
| 419 |
+
tón -414
|
| 420 |
+
▁ne -415
|
| 421 |
+
adas -416
|
| 422 |
+
cios -417
|
| 423 |
+
empo -418
|
| 424 |
+
enti -419
|
| 425 |
+
liza -420
|
| 426 |
+
ogía -421
|
| 427 |
+
omía -422
|
| 428 |
+
onde -423
|
| 429 |
+
sica -424
|
| 430 |
+
▁Com -425
|
| 431 |
+
▁col -426
|
| 432 |
+
▁gan -427
|
| 433 |
+
▁luz -428
|
| 434 |
+
▁pla -429
|
| 435 |
+
entes -430
|
| 436 |
+
iones -431
|
| 437 |
+
▁arti -432
|
| 438 |
+
▁elec -433
|
| 439 |
+
▁espa -434
|
| 440 |
+
▁hace -435
|
| 441 |
+
▁naci -436
|
| 442 |
+
ología -437
|
| 443 |
+
almente -438
|
| 444 |
+
▁entren -439
|
| 445 |
+
▁música -440
|
| 446 |
+
▁tareas -441
|
| 447 |
+
▁funcion -442
|
| 448 |
+
▁cantante -443
|
| 449 |
+
fi -444
|
| 450 |
+
ál -445
|
| 451 |
+
▁u -446
|
| 452 |
+
cen -447
|
| 453 |
+
cer -448
|
| 454 |
+
das -449
|
| 455 |
+
gos -450
|
| 456 |
+
gun -451
|
| 457 |
+
nif -452
|
| 458 |
+
oma -453
|
| 459 |
+
ora -454
|
| 460 |
+
ram -455
|
| 461 |
+
tre -456
|
| 462 |
+
vid -457
|
| 463 |
+
▁Me -458
|
| 464 |
+
▁Mi -459
|
| 465 |
+
▁co -460
|
| 466 |
+
▁ra -461
|
| 467 |
+
etas -462
|
| 468 |
+
itos -463
|
| 469 |
+
▁Los -464
|
| 470 |
+
▁cam -465
|
| 471 |
+
��cor -466
|
| 472 |
+
▁emb -467
|
| 473 |
+
▁gas -468
|
| 474 |
+
▁par -469
|
| 475 |
+
▁var -470
|
| 476 |
+
▁form -471
|
| 477 |
+
▁pero -472
|
| 478 |
+
▁pers -473
|
| 479 |
+
arning -474
|
| 480 |
+
▁apren -475
|
| 481 |
+
▁compu -476
|
| 482 |
+
▁tiene -477
|
| 483 |
+
▁profun -478
|
| 484 |
+
▁signif -479
|
| 485 |
+
▁tiempo -480
|
| 486 |
+
▁generar -481
|
| 487 |
+
▁ayudarte -482
|
| 488 |
+
▁learning -483
|
| 489 |
+
▁mexicana -484
|
| 490 |
+
▁inteligencia -485
|
| 491 |
+
eo -486
|
| 492 |
+
ip -487
|
| 493 |
+
it -488
|
| 494 |
+
mi -489
|
| 495 |
+
my -490
|
| 496 |
+
ne -491
|
| 497 |
+
ur -492
|
| 498 |
+
va -493
|
| 499 |
+
zo -494
|
| 500 |
+
▁W -495
|
| 501 |
+
▁j -496
|
| 502 |
+
▁k -497
|
| 503 |
+
Pue -498
|
| 504 |
+
ach -499
|
| 505 |
+
can -500
|
| 506 |
+
cur -501
|
| 507 |
+
ias -502
|
| 508 |
+
ido -503
|
| 509 |
+
ion -504
|
| 510 |
+
lia -505
|
| 511 |
+
lic -506
|
| 512 |
+
mor -507
|
| 513 |
+
tin -508
|
| 514 |
+
van -509
|
| 515 |
+
ver -510
|
| 516 |
+
zar -511
|
| 517 |
+
bles -512
|
| 518 |
+
eces -513
|
| 519 |
+
ecíf -514
|
| 520 |
+
itec -515
|
| 521 |
+
lica -516
|
| 522 |
+
para -517
|
| 523 |
+
pues -518
|
| 524 |
+
tivo -519
|
| 525 |
+
tros -520
|
| 526 |
+
usti -521
|
| 527 |
+
▁cal -522
|
| 528 |
+
▁cap -523
|
| 529 |
+
▁cla -524
|
| 530 |
+
▁cul -525
|
| 531 |
+
▁mar -526
|
| 532 |
+
▁mol -527
|
| 533 |
+
▁per -528
|
| 534 |
+
▁son -529
|
| 535 |
+
embre -530
|
| 536 |
+
isten -531
|
| 537 |
+
ísica -532
|
| 538 |
+
▁Fran -533
|
| 539 |
+
▁arqu -534
|
| 540 |
+
▁empa -535
|
| 541 |
+
▁está -536
|
| 542 |
+
▁gran -537
|
| 543 |
+
▁medi -538
|
| 544 |
+
▁plan -539
|
| 545 |
+
▁real -540
|
| 546 |
+
trones -541
|
| 547 |
+
▁donde -542
|
| 548 |
+
▁escri -543
|
| 549 |
+
▁inter -544
|
| 550 |
+
▁senti -545
|
| 551 |
+
▁siste -546
|
| 552 |
+
▁humano -547
|
| 553 |
+
▁composi -548
|
| 554 |
+
▁arquitec -549
|
| 555 |
+
▁funciona -550
|
| 556 |
+
▁relatividad -551
|
| 557 |
+
Un -552
|
| 558 |
+
bu -553
|
| 559 |
+
du -554
|
| 560 |
+
ts -555
|
| 561 |
+
ub -556
|
| 562 |
+
vo -557
|
| 563 |
+
zó -558
|
| 564 |
+
ós -559
|
| 565 |
+
▁K -560
|
| 566 |
+
▁ó -561
|
| 567 |
+
▁ú -562
|
| 568 |
+
Los -563
|
| 569 |
+
ano -564
|
| 570 |
+
ard -565
|
| 571 |
+
ble -566
|
| 572 |
+
car -567
|
| 573 |
+
cas -568
|
| 574 |
+
cio -569
|
| 575 |
+
com -570
|
| 576 |
+
fec -571
|
| 577 |
+
ins -572
|
| 578 |
+
isa -573
|
| 579 |
+
ivo -574
|
| 580 |
+
liz -575
|
| 581 |
+
lti -576
|
| 582 |
+
osa -577
|
| 583 |
+
oso -578
|
| 584 |
+
pon -579
|
| 585 |
+
tir -580
|
| 586 |
+
écn -581
|
| 587 |
+
ías -582
|
| 588 |
+
▁El -583
|
| 589 |
+
▁Mo -584
|
| 590 |
+
▁lo -585
|
| 591 |
+
▁ma -586
|
| 592 |
+
▁or -587
|
| 593 |
+
Como -588
|
| 594 |
+
Cuál -589
|
| 595 |
+
argo -590
|
| 596 |
+
enta -591
|
| 597 |
+
onio -592
|
| 598 |
+
oría -593
|
| 599 |
+
truc -594
|
| 600 |
+
uron -595
|
| 601 |
+
▁fam -596
|
| 602 |
+
▁his -597
|
| 603 |
+
▁lla -598
|
| 604 |
+
▁pas -599
|
| 605 |
+
▁pol -600
|
| 606 |
+
▁qué -601
|
| 607 |
+
▁sal -602
|
| 608 |
+
▁sup -603
|
| 609 |
+
▁tec -604
|
| 610 |
+
▁uti -605
|
| 611 |
+
ación -606
|
| 612 |
+
ierra -607
|
| 613 |
+
ransf -608
|
| 614 |
+
▁Cons -609
|
| 615 |
+
▁prem -610
|
| 616 |
+
▁pres -611
|
| 617 |
+
Puedes -612
|
| 618 |
+
▁datos -613
|
| 619 |
+
▁impor -614
|
| 620 |
+
▁Tierra -615
|
| 621 |
+
▁person -616
|
| 622 |
+
▁produc -617
|
| 623 |
+
▁Francia -618
|
| 624 |
+
▁específ -619
|
| 625 |
+
▁natural -620
|
| 626 |
+
▁incluyen -621
|
| 627 |
+
ah -622
|
| 628 |
+
ba -623
|
| 629 |
+
ex -624
|
| 630 |
+
ho -625
|
| 631 |
+
pe -626
|
| 632 |
+
óg -627
|
| 633 |
+
▁U -628
|
| 634 |
+
▁á -629
|
| 635 |
+
ali -630
|
| 636 |
+
bió -631
|
| 637 |
+
bra -632
|
| 638 |
+
bri -633
|
| 639 |
+
cep -634
|
| 640 |
+
cla -635
|
| 641 |
+
ell -636
|
| 642 |
+
erv -637
|
| 643 |
+
gan -638
|
| 644 |
+
gin -639
|
| 645 |
+
gún -640
|
| 646 |
+
leo -641
|
| 647 |
+
mos -642
|
| 648 |
+
toy -643
|
| 649 |
+
uel -644
|
| 650 |
+
ven -645
|
| 651 |
+
érm -646
|
| 652 |
+
▁Al -647
|
| 653 |
+
▁An -648
|
| 654 |
+
▁En -649
|
| 655 |
+
▁Te -650
|
| 656 |
+
▁ha -651
|
| 657 |
+
▁pe -652
|
| 658 |
+
▁éx -653
|
| 659 |
+
diza -654
|
| 660 |
+
ecta -655
|
| 661 |
+
fici -656
|
| 662 |
+
iene -657
|
| 663 |
+
inas -658
|
| 664 |
+
itas -659
|
| 665 |
+
lada -660
|
| 666 |
+
pend -661
|
| 667 |
+
tein -662
|
| 668 |
+
tudi -663
|
| 669 |
+
undo -664
|
| 670 |
+
vier -665
|
| 671 |
+
éctr -666
|
| 672 |
+
▁Sin -667
|
| 673 |
+
▁car -668
|
| 674 |
+
▁gén -669
|
| 675 |
+
▁ind -670
|
| 676 |
+
▁inm -671
|
| 677 |
+
▁mil -672
|
| 678 |
+
▁nom -673
|
| 679 |
+
▁sin -674
|
| 680 |
+
▁vol -675
|
| 681 |
+
genes -676
|
| 682 |
+
ienes -677
|
| 683 |
+
irgin -678
|
| 684 |
+
isión -679
|
| 685 |
+
izado -680
|
| 686 |
+
lones -681
|
| 687 |
+
rammy -682
|
| 688 |
+
roduc -683
|
| 689 |
+
tribu -684
|
| 690 |
+
ética -685
|
| 691 |
+
▁Eins -686
|
| 692 |
+
▁azul -687
|
| 693 |
+
▁capa -688
|
| 694 |
+
▁obje -689
|
| 695 |
+
▁técn -690
|
| 696 |
+
ciales -691
|
| 697 |
+
depend -692
|
| 698 |
+
dizaje -693
|
| 699 |
+
ficial -694
|
| 700 |
+
onomía -695
|
| 701 |
+
▁clave -696
|
| 702 |
+
▁entre -697
|
| 703 |
+
▁inici -698
|
| 704 |
+
▁neces -699
|
| 705 |
+
▁redes -700
|
| 706 |
+
▁solar -701
|
| 707 |
+
▁tradi -702
|
| 708 |
+
istente -703
|
| 709 |
+
▁Grammy -704
|
| 710 |
+
▁cuando -705
|
| 711 |
+
▁forman -706
|
| 712 |
+
▁física -707
|
| 713 |
+
▁neuron -708
|
| 714 |
+
▁nombre -709
|
| 715 |
+
▁teoría -710
|
| 716 |
+
ormación -711
|
| 717 |
+
ransform -712
|
| 718 |
+
volucion -713
|
| 719 |
+
▁embargo -714
|
| 720 |
+
▁grandes -715
|
| 721 |
+
▁premios -716
|
| 722 |
+
▁Einstein -717
|
| 723 |
+
▁mediante -718
|
| 724 |
+
▁mexicano -719
|
| 725 |
+
▁reproduc -720
|
| 726 |
+
▁capacidad -721
|
| 727 |
+
▁emociones -722
|
| 728 |
+
▁artificial -723
|
| 729 |
+
▁desarrollo -724
|
| 730 |
+
AI -725
|
| 731 |
+
No -726
|
| 732 |
+
ak -727
|
| 733 |
+
he -728
|
| 734 |
+
im -729
|
| 735 |
+
rb -730
|
| 736 |
+
ut -731
|
| 737 |
+
wa -732
|
| 738 |
+
ám -733
|
| 739 |
+
ío -734
|
| 740 |
+
Las -735
|
| 741 |
+
MTP -736
|
| 742 |
+
Por -737
|
| 743 |
+
asa -738
|
| 744 |
+
ase -739
|
| 745 |
+
bil -740
|
| 746 |
+
cho -741
|
| 747 |
+
cir -742
|
| 748 |
+
cis -743
|
| 749 |
+
cli -744
|
| 750 |
+
ens -745
|
| 751 |
+
erg -746
|
| 752 |
+
eso -747
|
| 753 |
+
her -748
|
| 754 |
+
ial -749
|
| 755 |
+
iff -750
|
| 756 |
+
ito -751
|
| 757 |
+
jer -752
|
| 758 |
+
lig -753
|
| 759 |
+
lob -754
|
| 760 |
+
pro -755
|
| 761 |
+
pse -756
|
| 762 |
+
pti -757
|
| 763 |
+
qui -758
|
| 764 |
+
ral -759
|
| 765 |
+
rar -760
|
| 766 |
+
rea -761
|
| 767 |
+
rel -762
|
| 768 |
+
rim -763
|
| 769 |
+
ura -764
|
| 770 |
+
ves -765
|
| 771 |
+
▁Na -766
|
| 772 |
+
▁Po -767
|
| 773 |
+
▁Ro -768
|
| 774 |
+
▁Sw -769
|
| 775 |
+
▁ah -770
|
| 776 |
+
▁ci -771
|
| 777 |
+
▁hi -772
|
| 778 |
+
▁id -773
|
| 779 |
+
▁of -774
|
| 780 |
+
Cien -775
|
| 781 |
+
arís -776
|
| 782 |
+
bier -777
|
| 783 |
+
bién -778
|
| 784 |
+
cono -779
|
| 785 |
+
cula -780
|
| 786 |
+
edad -781
|
| 787 |
+
ielo -782
|
| 788 |
+
inar -783
|
| 789 |
+
ismo -784
|
| 790 |
+
ital -785
|
| 791 |
+
lber -786
|
| 792 |
+
ltip -787
|
| 793 |
+
ológ -788
|
| 794 |
+
pera -789
|
| 795 |
+
tino -790
|
| 796 |
+
tora -791
|
| 797 |
+
tras -792
|
| 798 |
+
tual -793
|
| 799 |
+
ware -794
|
| 800 |
+
▁Aus -795
|
| 801 |
+
▁Pro -796
|
| 802 |
+
▁Pue -797
|
| 803 |
+
▁Sol -798
|
| 804 |
+
▁Soy -799
|
| 805 |
+
▁Sus -800
|
| 806 |
+
▁cos -801
|
| 807 |
+
▁imá -802
|
| 808 |
+
▁lar -803
|
| 809 |
+
▁lib -804
|
| 810 |
+
▁man -805
|
| 811 |
+
▁pin -806
|
| 812 |
+
▁ter -807
|
| 813 |
+
▁uno -808
|
| 814 |
+
busti -809
|
| 815 |
+
ivers -810
|
| 816 |
+
quier -811
|
| 817 |
+
ticas -812
|
| 818 |
+
tivas -813
|
| 819 |
+
tores -814
|
| 820 |
+
ustri -815
|
| 821 |
+
érica -816
|
| 822 |
+
▁avan -817
|
| 823 |
+
▁dere -818
|
| 824 |
+
▁diar -819
|
| 825 |
+
▁disp -820
|
| 826 |
+
▁popu -821
|
| 827 |
+
▁prog -822
|
| 828 |
+
▁tien -823
|
| 829 |
+
▁útil -824
|
| 830 |
+
achine -825
|
| 831 |
+
clipse -826
|
| 832 |
+
ientes -827
|
| 833 |
+
mentos -828
|
| 834 |
+
tralia -829
|
| 835 |
+
unidad -830
|
| 836 |
+
xicana -831
|
| 837 |
+
▁Tiene -832
|
| 838 |
+
▁cambi -833
|
| 839 |
+
▁color -834
|
| 840 |
+
▁estoy -835
|
| 841 |
+
▁exper -836
|
| 842 |
+
▁forma -837
|
| 843 |
+
▁moder -838
|
| 844 |
+
▁mundo -839
|
| 845 |
+
▁poder -840
|
| 846 |
+
bilidad -841
|
| 847 |
+
ltiples -842
|
| 848 |
+
tención -843
|
| 849 |
+
▁Conoci -844
|
| 850 |
+
▁concep -845
|
| 851 |
+
▁estrel -846
|
| 852 |
+
▁estruc -847
|
| 853 |
+
▁estudi -848
|
| 854 |
+
▁género -849
|
| 855 |
+
▁nacida -850
|
| 856 |
+
▁pregun -851
|
| 857 |
+
▁éxitos -852
|
| 858 |
+
tricidad -853
|
| 859 |
+
volución -854
|
| 860 |
+
▁convier -855
|
| 861 |
+
▁humanos -856
|
| 862 |
+
▁incluye -857
|
| 863 |
+
▁proceso -858
|
| 864 |
+
▁sistema -859
|
| 865 |
+
volucionó -860
|
| 866 |
+
▁conocida -861
|
| 867 |
+
▁imágenes -862
|
| 868 |
+
▁millones -863
|
| 869 |
+
▁patrones -864
|
| 870 |
+
▁sociales -865
|
| 871 |
+
▁técnicas -866
|
| 872 |
+
ransformer -867
|
| 873 |
+
▁Australia -868
|
| 874 |
+
▁múltiples -869
|
| 875 |
+
▁significa -870
|
| 876 |
+
dependencia -871
|
| 877 |
+
▁Transformer -872
|
| 878 |
+
▁capacidades -873
|
| 879 |
+
▁información -874
|
| 880 |
+
▁electricidad -875
|
| 881 |
+
▁especializado -876
|
| 882 |
+
En -877
|
| 883 |
+
In -878
|
| 884 |
+
bó -879
|
| 885 |
+
ck -880
|
| 886 |
+
có -881
|
| 887 |
+
dr -882
|
| 888 |
+
fé -883
|
| 889 |
+
ke -884
|
| 890 |
+
si -885
|
| 891 |
+
éd -886
|
| 892 |
+
ím -887
|
| 893 |
+
ala -888
|
| 894 |
+
ana -889
|
| 895 |
+
bir -890
|
| 896 |
+
bon -891
|
| 897 |
+
ció -892
|
| 898 |
+
cos -893
|
| 899 |
+
cra -894
|
| 900 |
+
ena -895
|
| 901 |
+
ern -896
|
| 902 |
+
esz -897
|
| 903 |
+
fon -898
|
| 904 |
+
gas -899
|
| 905 |
+
gre -900
|
| 906 |
+
har -901
|
| 907 |
+
igu -902
|
| 908 |
+
iom -903
|
| 909 |
+
ire -904
|
| 910 |
+
jan -905
|
| 911 |
+
jos -906
|
| 912 |
+
jus -907
|
| 913 |
+
lec -908
|
| 914 |
+
leg -909
|
| 915 |
+
lex -910
|
| 916 |
+
los -911
|
| 917 |
+
one -912
|
| 918 |
+
par -913
|
| 919 |
+
rac -914
|
| 920 |
+
rio -915
|
| 921 |
+
tab -916
|
| 922 |
+
tór -917
|
| 923 |
+
uch -918
|
| 924 |
+
uis -919
|
| 925 |
+
uri -920
|
| 926 |
+
zon -921
|
| 927 |
+
▁Ha -922
|
| 928 |
+
▁Ju -923
|
| 929 |
+
▁Li -924
|
| 930 |
+
▁am -925
|
| 931 |
+
▁cl -926
|
| 932 |
+
▁fo -927
|
| 933 |
+
▁ju -928
|
| 934 |
+
▁km -929
|
| 935 |
+
▁má -930
|
| 936 |
+
▁ri -931
|
| 937 |
+
▁to -932
|
| 938 |
+
▁va -933
|
| 939 |
+
▁ve -934
|
| 940 |
+
▁ór -935
|
| 941 |
+
adre -936
|
| 942 |
+
alis -937
|
| 943 |
+
eles -938
|
| 944 |
+
enAI -939
|
| 945 |
+
ende -940
|
| 946 |
+
enzó -941
|
| 947 |
+
ible -942
|
| 948 |
+
ides -943
|
| 949 |
+
iles -944
|
| 950 |
+
izar -945
|
| 951 |
+
limá -946
|
| 952 |
+
mico -947
|
| 953 |
+
mien -948
|
| 954 |
+
orta -949
|
| 955 |
+
rede -950
|
| 956 |
+
rens -951
|
| 957 |
+
rero -952
|
| 958 |
+
tada -953
|
| 959 |
+
tion -954
|
| 960 |
+
ular -955
|
| 961 |
+
useo -956
|
| 962 |
+
vers -957
|
| 963 |
+
zcla -958
|
| 964 |
+
▁Bil -959
|
| 965 |
+
▁Des -960
|
| 966 |
+
▁Día -961
|
| 967 |
+
▁Fil -962
|
| 968 |
+
▁Fue -963
|
| 969 |
+
▁Mar -964
|
| 970 |
+
▁Mig -965
|
| 971 |
+
▁Rey -966
|
| 972 |
+
▁Son -967
|
| 973 |
+
▁amp -968
|
| 974 |
+
▁bac -969
|
| 975 |
+
▁cen -970
|
| 976 |
+
▁dif -971
|
| 977 |
+
▁dos -972
|
| 978 |
+
▁enf -973
|
| 979 |
+
▁fil -974
|
| 980 |
+
▁hoy -975
|
| 981 |
+
▁ide -976
|
| 982 |
+
▁log -977
|
| 983 |
+
▁mis -978
|
| 984 |
+
▁méd -979
|
| 985 |
+
▁reg -980
|
| 986 |
+
▁ren -981
|
| 987 |
+
▁sec -982
|
| 988 |
+
▁sol -983
|
| 989 |
+
▁uso -984
|
| 990 |
+
adura -985
|
| 991 |
+
cción -986
|
| 992 |
+
cluye -987
|
| 993 |
+
cubri -988
|
| 994 |
+
damen -989
|
| 995 |
+
divid -990
|
| 996 |
+
ergía -991
|
| 997 |
+
ermen -992
|
| 998 |
+
fecto -993
|
| 999 |
+
icado -994
|
| 1000 |
+
iffel -995
|
| 1001 |
+
istir -996
|
| 1002 |
+
jerci -997
|
| 1003 |
+
lbert -998
|
| 1004 |
+
tener -999
|
| 1005 |
+
teria -1000
|
| 1006 |
+
ticos -1001
|
| 1007 |
+
tinos -1002
|
| 1008 |
+
untos -1003
|
| 1009 |
+
vedad -1004
|
| 1010 |
+
▁Tesz -1005
|
| 1011 |
+
▁aire -1006
|
| 1012 |
+
▁arte -1007
|
| 1013 |
+
▁buen -1008
|
| 1014 |
+
▁cada -1009
|
| 1015 |
+
▁civi -1010
|
| 1016 |
+
▁crea -1011
|
| 1017 |
+
▁cual -1012
|
| 1018 |
+
▁cuer -1013
|
| 1019 |
+
▁demo -1014
|
| 1020 |
+
▁dise -1015
|
| 1021 |
+
▁días -1016
|
| 1022 |
+
▁econ -1017
|
| 1023 |
+
▁esti -1018
|
| 1024 |
+
▁ganó -1019
|
| 1025 |
+
▁mejo -1020
|
| 1026 |
+
▁mole -1021
|
| 1027 |
+
▁proy -1022
|
| 1028 |
+
▁regu -1023
|
| 1029 |
+
▁tecn -1024
|
| 1030 |
+
▁tipo -1025
|
| 1031 |
+
▁turb -1026
|
| 1032 |
+
México -1027
|
| 1033 |
+
eléctr -1028
|
| 1034 |
+
erfici -1029
|
| 1035 |
+
lación -1030
|
| 1036 |
+
rimera -1031
|
| 1037 |
+
tantes -1032
|
| 1038 |
+
▁París -1033
|
| 1039 |
+
▁artis -1034
|
| 1040 |
+
▁avanz -1035
|
| 1041 |
+
▁climá -1036
|
| 1042 |
+
▁largo -1037
|
| 1043 |
+
▁trans -1038
|
| 1044 |
+
ciencia -1039
|
| 1045 |
+
mientos -1040
|
| 1046 |
+
pciones -1041
|
| 1047 |
+
puestas -1042
|
| 1048 |
+
rededor -1043
|
| 1049 |
+
tamente -1044
|
| 1050 |
+
▁Eiffel -1045
|
| 1051 |
+
▁Miguel -1046
|
| 1052 |
+
▁Virgin -1047
|
| 1053 |
+
▁bienes -1048
|
| 1054 |
+
▁descri -1049
|
| 1055 |
+
▁empate -1050
|
| 1056 |
+
▁estado -1051
|
| 1057 |
+
▁famosa -1052
|
| 1058 |
+
▁ganado -1053
|
| 1059 |
+
▁grados -1054
|
| 1060 |
+
▁inicio -1055
|
| 1061 |
+
▁pueden -1056
|
| 1062 |
+
▁utiliz -1057
|
| 1063 |
+
▁Incluye -1058
|
| 1064 |
+
▁Latinos -1059
|
| 1065 |
+
▁asistir -1060
|
| 1066 |
+
▁convers -1061
|
| 1067 |
+
▁cultura -1062
|
| 1068 |
+
▁espacio -1063
|
| 1069 |
+
▁general -1064
|
| 1070 |
+
▁humanas -1065
|
| 1071 |
+
▁machine -1066
|
| 1072 |
+
▁moderna -1067
|
| 1073 |
+
▁objetos -1068
|
| 1074 |
+
▁univers -1069
|
| 1075 |
+
▁Conocido -1070
|
| 1076 |
+
▁Mexicana -1071
|
| 1077 |
+
▁TeszenAI -1072
|
| 1078 |
+
▁civiliza -1073
|
| 1079 |
+
▁escribió -1074
|
| 1080 |
+
▁experien -1075
|
| 1081 |
+
▁fundamen -1076
|
| 1082 |
+
▁gravedad -1077
|
| 1083 |
+
▁industri -1078
|
| 1084 |
+
▁planetas -1079
|
| 1085 |
+
▁profunda -1080
|
| 1086 |
+
▁alrededor -1081
|
| 1087 |
+
▁asistente -1082
|
| 1088 |
+
▁computado -1083
|
| 1089 |
+
▁emocional -1084
|
| 1090 |
+
▁superfici -1085
|
| 1091 |
+
▁compositor -1086
|
| 1092 |
+
▁neuronales -1087
|
| 1093 |
+
▁respuestas -1088
|
| 1094 |
+
▁tecnología -1089
|
| 1095 |
+
▁aprendizaje -1090
|
| 1096 |
+
▁compositora -1091
|
| 1097 |
+
▁conocimiento -1092
|
| 1098 |
+
▁arquitecturas -1093
|
| 1099 |
+
▁entrenamiento -1094
|
| 1100 |
+
▁procesamiento -1095
|
| 1101 |
+
'? -1096
|
| 1102 |
+
DN -1097
|
| 1103 |
+
De -1098
|
| 1104 |
+
GL -1099
|
| 1105 |
+
GP -1100
|
| 1106 |
+
Ho -1101
|
| 1107 |
+
PE -1102
|
| 1108 |
+
bo -1103
|
| 1109 |
+
ey -1104
|
| 1110 |
+
gr -1105
|
| 1111 |
+
mu -1106
|
| 1112 |
+
ou -1107
|
| 1113 |
+
ov -1108
|
| 1114 |
+
ru -1109
|
| 1115 |
+
ui -1110
|
| 1116 |
+
ye -1111
|
| 1117 |
+
áf -1112
|
| 1118 |
+
ár -1113
|
| 1119 |
+
ín -1114
|
| 1120 |
+
ña -1115
|
| 1121 |
+
▁Y -1116
|
| 1122 |
+
Cla -1117
|
| 1123 |
+
Don -1118
|
| 1124 |
+
Dón -1119
|
| 1125 |
+
GLU -1120
|
| 1126 |
+
Mar -1121
|
| 1127 |
+
Pro -1122
|
| 1128 |
+
Soy -1123
|
| 1129 |
+
aca -1124
|
| 1130 |
+
ain -1125
|
| 1131 |
+
aki -1126
|
| 1132 |
+
anó -1127
|
| 1133 |
+
cal -1128
|
| 1134 |
+
che -1129
|
| 1135 |
+
col -1130
|
| 1136 |
+
cop -1131
|
| 1137 |
+
cul -1132
|
| 1138 |
+
dez -1133
|
| 1139 |
+
dic -1134
|
| 1140 |
+
dio -1135
|
| 1141 |
+
elí -1136
|
| 1142 |
+
eno -1137
|
| 1143 |
+
eru -1138
|
| 1144 |
+
esa -1139
|
| 1145 |
+
esp -1140
|
| 1146 |
+
ess -1141
|
| 1147 |
+
fic -1142
|
| 1148 |
+
fos -1143
|
| 1149 |
+
gae -1144
|
| 1150 |
+
ger -1145
|
| 1151 |
+
gor -1146
|
| 1152 |
+
gro -1147
|
| 1153 |
+
hak -1148
|
| 1154 |
+
hal -1149
|
| 1155 |
+
hib -1150
|
| 1156 |
+
ift -1151
|
| 1157 |
+
iza -1152
|
| 1158 |
+
jas -1153
|
| 1159 |
+
lab -1154
|
| 1160 |
+
lbo -1155
|
| 1161 |
+
lio -1156
|
| 1162 |
+
lue -1157
|
| 1163 |
+
man -1158
|
| 1164 |
+
mpo -1159
|
| 1165 |
+
net -1160
|
| 1166 |
+
ode -1161
|
| 1167 |
+
olo -1162
|
| 1168 |
+
pos -1163
|
| 1169 |
+
rec -1164
|
| 1170 |
+
rom -1165
|
| 1171 |
+
sos -1166
|
| 1172 |
+
tac -1167
|
| 1173 |
+
taf -1168
|
| 1174 |
+
tic -1169
|
| 1175 |
+
tom -1170
|
| 1176 |
+
tru -1171
|
| 1177 |
+
tud -1172
|
| 1178 |
+
tun -1173
|
| 1179 |
+
ual -1174
|
| 1180 |
+
una -1175
|
| 1181 |
+
unn -1176
|
| 1182 |
+
uta -1177
|
| 1183 |
+
vir -1178
|
| 1184 |
+
vés -1179
|
| 1185 |
+
yas -1180
|
| 1186 |
+
zas -1181
|
| 1187 |
+
élu -1182
|
| 1188 |
+
ían -1183
|
| 1189 |
+
ímb -1184
|
| 1190 |
+
ñol -1185
|
| 1191 |
+
▁Ar -1186
|
| 1192 |
+
▁Ma -1187
|
| 1193 |
+
▁No -1188
|
| 1194 |
+
▁Pa -1189
|
| 1195 |
+
▁So -1190
|
| 1196 |
+
▁at -1191
|
| 1197 |
+
▁ba -1192
|
| 1198 |
+
▁cr -1193
|
| 1199 |
+
▁du -1194
|
| 1200 |
+
▁fa -1195
|
| 1201 |
+
▁fu -1196
|
| 1202 |
+
▁iP -1197
|
| 1203 |
+
▁li -1198
|
| 1204 |
+
▁ni -1199
|
| 1205 |
+
▁on -1200
|
| 1206 |
+
▁vi -1201
|
| 1207 |
+
▁ún -1202
|
| 1208 |
+
Cuán -1203
|
| 1209 |
+
Eres -1204
|
| 1210 |
+
Hola -1205
|
| 1211 |
+
abri -1206
|
| 1212 |
+
arol -1207
|
| 1213 |
+
asta -1208
|
| 1214 |
+
bina -1209
|
| 1215 |
+
ceso -1210
|
| 1216 |
+
chos -1211
|
| 1217 |
+
ciso -1212
|
| 1218 |
+
duce -1213
|
| 1219 |
+
endo -1214
|
| 1220 |
+
erra -1215
|
| 1221 |
+
gred -1216
|
| 1222 |
+
gres -1217
|
| 1223 |
+
iGLU -1218
|
| 1224 |
+
iach -1219
|
| 1225 |
+
icil -1220
|
| 1226 |
+
iden -1221
|
| 1227 |
+
idos -1222
|
| 1228 |
+
idro -1223
|
| 1229 |
+
iemp -1224
|
| 1230 |
+
ilar -1225
|
| 1231 |
+
ipos -1226
|
| 1232 |
+
irám -1227
|
| 1233 |
+
lari -1228
|
| 1234 |
+
lbum -1229
|
| 1235 |
+
lice -1230
|
| 1236 |
+
mina -1231
|
| 1237 |
+
mula -1232
|
| 1238 |
+
obel -1233
|
| 1239 |
+
ombi -1234
|
| 1240 |
+
omen -1235
|
| 1241 |
+
omor -1236
|
| 1242 |
+
orre -1237
|
| 1243 |
+
orro -1238
|
| 1244 |
+
rama -1239
|
| 1245 |
+
rera -1240
|
| 1246 |
+
teni -1241
|
| 1247 |
+
tiga -1242
|
| 1248 |
+
trim -1243
|
| 1249 |
+
triz -1244
|
| 1250 |
+
térm -1245
|
| 1251 |
+
ucha -1246
|
| 1252 |
+
ucle -1247
|
| 1253 |
+
udad -1248
|
| 1254 |
+
uele -1249
|
| 1255 |
+
urie -1250
|
| 1256 |
+
utos -1251
|
| 1257 |
+
visa -1252
|
| 1258 |
+
ígen -1253
|
| 1259 |
+
ñado -1254
|
| 1260 |
+
úcar -1255
|
| 1261 |
+
▁ADN -1256
|
| 1262 |
+
▁Ant -1257
|
| 1263 |
+
▁Aut -1258
|
| 1264 |
+
▁Can -1259
|
| 1265 |
+
▁Cul -1260
|
| 1266 |
+
▁Gra -1261
|
| 1267 |
+
▁Las -1262
|
| 1268 |
+
▁Man -1263
|
| 1269 |
+
▁Mon -1264
|
| 1270 |
+
▁Pre -1265
|
| 1271 |
+
▁Qui -1266
|
| 1272 |
+
▁Usa -1267
|
| 1273 |
+
▁agu -1268
|
| 1274 |
+
▁avi -1269
|
| 1275 |
+
▁añe -1270
|
| 1276 |
+
▁bas -1271
|
| 1277 |
+
▁blo -1272
|
| 1278 |
+
▁bás -1273
|
| 1279 |
+
▁cer -1274
|
| 1280 |
+
▁def -1275
|
| 1281 |
+
▁dig -1276
|
| 1282 |
+
▁din -1277
|
| 1283 |
+
▁div -1278
|
| 1284 |
+
▁dom -1279
|
| 1285 |
+
▁evi -1280
|
| 1286 |
+
▁feb -1281
|
| 1287 |
+
▁fós -1282
|
| 1288 |
+
▁gui -1283
|
| 1289 |
+
▁hab -1284
|
| 1290 |
+
▁inc -1285
|
| 1291 |
+
▁ins -1286
|
| 1292 |
+
▁mag -1287
|
| 1293 |
+
▁may -1288
|
| 1294 |
+
▁mec -1289
|
| 1295 |
+
▁mul -1290
|
| 1296 |
+
▁nub -1291
|
| 1297 |
+
▁nue -1292
|
| 1298 |
+
▁pen -1293
|
| 1299 |
+
▁pos -1294
|
| 1300 |
+
▁red -1295
|
| 1301 |
+
▁río -1296
|
| 1302 |
+
▁seg -1297
|
| 1303 |
+
▁sub -1298
|
| 1304 |
+
▁tel -1299
|
| 1305 |
+
▁val -1300
|
| 1306 |
+
▁ven -1301
|
| 1307 |
+
▁ver -1302
|
| 1308 |
+
▁vir -1303
|
| 1309 |
+
Claro -1304
|
| 1310 |
+
Dónde -1305
|
| 1311 |
+
aliza -1306
|
| 1312 |
+
antes -1307
|
| 1313 |
+
canes -1308
|
| 1314 |
+
culas -1309
|
| 1315 |
+
curre -1310
|
| 1316 |
+
dores -1311
|
| 1317 |
+
empla -1312
|
| 1318 |
+
ernán -1313
|
| 1319 |
+
gosto -1314
|
| 1320 |
+
halía -1315
|
| 1321 |
+
idera -1316
|
| 1322 |
+
ienda -1317
|
| 1323 |
+
iomas -1318
|
| 1324 |
+
istra -1319
|
| 1325 |
+
itera -1320
|
| 1326 |
+
lemen -1321
|
| 1327 |
+
macen -1322
|
| 1328 |
+
mbién -1323
|
| 1329 |
+
mento -1324
|
| 1330 |
+
moria -1325
|
| 1331 |
+
rante -1326
|
| 1332 |
+
rensa -1327
|
| 1333 |
+
tecas -1328
|
| 1334 |
+
tiene -1329
|
| 1335 |
+
tilos -1330
|
| 1336 |
+
toria -1331
|
| 1337 |
+
uerzo -1332
|
| 1338 |
+
usion -1333
|
| 1339 |
+
ánica -1334
|
| 1340 |
+
ólica -1335
|
| 1341 |
+
▁Blue -1336
|
| 1342 |
+
▁Crea -1337
|
| 1343 |
+
▁Lisa -1338
|
| 1344 |
+
▁Luis -1339
|
| 1345 |
+
▁Luna -1340
|
| 1346 |
+
▁Muer -1341
|
| 1347 |
+
▁astr -1342
|
| 1348 |
+
▁auto -1343
|
| 1349 |
+
▁café -1344
|
| 1350 |
+
▁caus -1345
|
| 1351 |
+
▁clás -1346
|
| 1352 |
+
▁célu -1347
|
| 1353 |
+
▁deep -1348
|
| 1354 |
+
▁dici -1349
|
| 1355 |
+
▁empe -1350
|
| 1356 |
+
▁enfo -1351
|
| 1357 |
+
▁glob -1352
|
| 1358 |
+
▁hard -1353
|
| 1359 |
+
▁hora -1354
|
| 1360 |
+
▁lleg -1355
|
| 1361 |
+
▁molé -1356
|
| 1362 |
+
▁norm -1357
|
| 1363 |
+
▁obra -1358
|
| 1364 |
+
▁pelí -1359
|
| 1365 |
+
▁polí -1360
|
| 1366 |
+
▁posi -1361
|
| 1367 |
+
▁pref -1362
|
| 1368 |
+
▁prop -1363
|
| 1369 |
+
▁robó -1364
|
| 1370 |
+
▁rota -1365
|
| 1371 |
+
▁símb -1366
|
| 1372 |
+
▁temp -1367
|
| 1373 |
+
▁toma -1368
|
| 1374 |
+
▁tras -1369
|
| 1375 |
+
▁unos -1370
|
| 1376 |
+
▁velo -1371
|
| 1377 |
+
▁vers -1372
|
| 1378 |
+
▁vida -1373
|
| 1379 |
+
Cuándo -1374
|
| 1380 |
+
abriel -1375
|
| 1381 |
+
adores -1376
|
| 1382 |
+
alisco -1377
|
| 1383 |
+
bierta -1378
|
| 1384 |
+
conoci -1379
|
| 1385 |
+
cracia -1380
|
| 1386 |
+
cubrió -1381
|
| 1387 |
+
cursos -1382
|
| 1388 |
+
dividu -1383
|
| 1389 |
+
encias -1384
|
| 1390 |
+
gaetón -1385
|
| 1391 |
+
genera -1386
|
| 1392 |
+
hakira -1387
|
| 1393 |
+
iempre -1388
|
| 1394 |
+
iguras -1389
|
| 1395 |
+
lboard -1390
|
| 1396 |
+
misión -1391
|
| 1397 |
+
mérica -1392
|
| 1398 |
+
tancia -1393
|
| 1399 |
+
tender -1394
|
| 1400 |
+
terial -1395
|
| 1401 |
+
terias -1396
|
| 1402 |
+
tratos -1397
|
| 1403 |
+
vadura -1398
|
| 1404 |
+
vicios -1399
|
| 1405 |
+
▁Apren -1400
|
| 1406 |
+
▁Curie -1401
|
| 1407 |
+
▁Museo -1402
|
| 1408 |
+
▁Nobel -1403
|
| 1409 |
+
▁Texto -1404
|
| 1410 |
+
▁Tipos -1405
|
| 1411 |
+
▁Torre -1406
|
| 1412 |
+
▁actor -1407
|
| 1413 |
+
▁autor -1408
|
| 1414 |
+
▁capas -1409
|
| 1415 |
+
▁cielo -1410
|
| 1416 |
+
▁coher -1411
|
| 1417 |
+
▁conex -1412
|
| 1418 |
+
▁decis -1413
|
| 1419 |
+
▁difer -1414
|
| 1420 |
+
▁estás -1415
|
| 1421 |
+
▁gases -1416
|
| 1422 |
+
▁inmun -1417
|
| 1423 |
+
▁libro -1418
|
| 1424 |
+
▁marcó -1419
|
| 1425 |
+
▁metas -1420
|
| 1426 |
+
▁nació -1421
|
| 1427 |
+
▁negro -1422
|
| 1428 |
+
▁otros -1423
|
| 1429 |
+
▁pasta -1424
|
| 1430 |
+
▁perio -1425
|
| 1431 |
+
▁plazo -1426
|
| 1432 |
+
▁prote -1427
|
| 1433 |
+
▁puede -1428
|
| 1434 |
+
▁recom -1429
|
| 1435 |
+
▁según -1430
|
| 1436 |
+
▁septi -1431
|
| 1437 |
+
▁temas -1432
|
| 1438 |
+
▁trata -1433
|
| 1439 |
+
▁vapor -1434
|
| 1440 |
+
▁venta -1435
|
| 1441 |
+
▁álbum -1436
|
| 1442 |
+
▁ética -1437
|
| 1443 |
+
gresivo -1438
|
| 1444 |
+
mología -1439
|
| 1445 |
+
omorida -1440
|
| 1446 |
+
vestiga -1441
|
| 1447 |
+
▁Albert -1442
|
| 1448 |
+
▁SwiGLU -1443
|
| 1449 |
+
▁agosto -1444
|
| 1450 |
+
▁ayudar -1445
|
| 1451 |
+
▁azúcar -1446
|
| 1452 |
+
▁cambio -1447
|
| 1453 |
+
▁comple -1448
|
| 1454 |
+
▁cuerpo -1449
|
| 1455 |
+
▁efecto -1450
|
| 1456 |
+
▁ejerci -1451
|
| 1457 |
+
▁estilo -1452
|
| 1458 |
+
▁expres -1453
|
| 1459 |
+
▁histór -1454
|
| 1460 |
+
▁ingred -1455
|
| 1461 |
+
▁médico -1456
|
| 1462 |
+
▁playas -1457
|
| 1463 |
+
▁prensa -1458
|
| 1464 |
+
▁propor -1459
|
| 1465 |
+
▁proyec -1460
|
| 1466 |
+
▁refier -1461
|
| 1467 |
+
▁repres -1462
|
| 1468 |
+
▁respon -1463
|
| 1469 |
+
▁simula -1464
|
| 1470 |
+
▁tienen -1465
|
| 1471 |
+
▁tierra -1466
|
| 1472 |
+
▁través -1467
|
| 1473 |
+
▁usando -1468
|
| 1474 |
+
adamente -1469
|
| 1475 |
+
cubierta -1470
|
| 1476 |
+
paración -1471
|
| 1477 |
+
trimonio -1472
|
| 1478 |
+
vimiento -1473
|
| 1479 |
+
▁Antonio -1474
|
| 1480 |
+
▁Comenzó -1475
|
| 1481 |
+
▁Gabriel -1476
|
| 1482 |
+
▁Grammys -1477
|
| 1483 |
+
▁Muertos -1478
|
| 1484 |
+
▁almacen -1479
|
| 1485 |
+
▁aviones -1480
|
| 1486 |
+
▁aztecas -1481
|
| 1487 |
+
▁carrera -1482
|
| 1488 |
+
▁colombi -1483
|
| 1489 |
+
▁digital -1484
|
| 1490 |
+
▁dispers -1485
|
| 1491 |
+
▁eclipse -1486
|
| 1492 |
+
▁energía -1487
|
| 1493 |
+
▁entrena -1488
|
| 1494 |
+
▁español -1489
|
| 1495 |
+
▁estudia -1490
|
| 1496 |
+
▁febrero -1491
|
| 1497 |
+
▁fósiles -1492
|
| 1498 |
+
▁idiomas -1493
|
| 1499 |
+
▁mariach -1494
|
| 1500 |
+
▁materia -1495
|
| 1501 |
+
▁memoria -1496
|
| 1502 |
+
▁minutos -1497
|
| 1503 |
+
▁obtener -1498
|
| 1504 |
+
▁plantas -1499
|
| 1505 |
+
▁popular -1500
|
| 1506 |
+
▁preciso -1501
|
| 1507 |
+
▁primera -1502
|
| 1508 |
+
▁sobrevi -1503
|
| 1509 |
+
▁soledad -1504
|
| 1510 |
+
▁símbolo -1505
|
| 1511 |
+
▁utiliza -1506
|
| 1512 |
+
▁virtual -1507
|
| 1513 |
+
▁artistas -1508
|
| 1514 |
+
▁atención -1509
|
| 1515 |
+
▁combusti -1510
|
| 1516 |
+
▁conocido -1511
|
| 1517 |
+
▁cultural -1512
|
| 1518 |
+
▁derechos -1513
|
| 1519 |
+
▁distribu -1514
|
| 1520 |
+
▁economía -1515
|
| 1521 |
+
▁entender -1516
|
| 1522 |
+
▁hardware -1517
|
| 1523 |
+
▁historia -1518
|
| 1524 |
+
▁implemen -1519
|
| 1525 |
+
▁individu -1520
|
| 1526 |
+
▁película -1521
|
| 1527 |
+
▁personal -1522
|
| 1528 |
+
▁recursos -1523
|
| 1529 |
+
▁robótica -1524
|
| 1530 |
+
▁sistemas -1525
|
| 1531 |
+
▁universo -1526
|
| 1532 |
+
▁volcanes -1527
|
| 1533 |
+
idroeléctr -1528
|
| 1534 |
+
▁Billboard -1529
|
| 1535 |
+
▁bacterias -1530
|
| 1536 |
+
▁bienestar -1531
|
| 1537 |
+
▁canciones -1532
|
| 1538 |
+
▁climático -1533
|
| 1539 |
+
▁conceptos -1534
|
| 1540 |
+
▁constante -1535
|
| 1541 |
+
▁diciembre -1536
|
| 1542 |
+
▁inflación -1537
|
| 1543 |
+
▁preguntas -1538
|
| 1544 |
+
▁principio -1539
|
| 1545 |
+
▁productor -1540
|
| 1546 |
+
▁servicios -1541
|
| 1547 |
+
▁velocidad -1542
|
| 1548 |
+
▁Progresivo -1543
|
| 1549 |
+
▁Revolución -1544
|
| 1550 |
+
▁convierten -1545
|
| 1551 |
+
▁decisiones -1546
|
| 1552 |
+
▁democracia -1547
|
| 1553 |
+
▁desarrolla -1548
|
| 1554 |
+
▁diferentes -1549
|
| 1555 |
+
▁generación -1550
|
| 1556 |
+
▁importante -1551
|
| 1557 |
+
▁relaciones -1552
|
| 1558 |
+
▁reproducen -1553
|
| 1559 |
+
▁septiembre -1554
|
| 1560 |
+
▁superficie -1555
|
| 1561 |
+
conocimiento -1556
|
| 1562 |
+
▁específicas -1557
|
| 1563 |
+
▁estructuras -1558
|
| 1564 |
+
▁importantes -1559
|
| 1565 |
+
▁significado -1560
|
| 1566 |
+
▁tradiciones -1561
|
| 1567 |
+
▁desarrollado -1562
|
| 1568 |
+
▁experiencias -1563
|
| 1569 |
+
▁ingredientes -1564
|
| 1570 |
+
▁sentimientos -1565
|
| 1571 |
+
▁independencia -1566
|
| 1572 |
+
▁civilizaciones -1567
|
| 1573 |
+
▁principalmente -1568
|
| 1574 |
+
.. -1569
|
| 1575 |
+
Ac -1570
|
| 1576 |
+
Al -1571
|
| 1577 |
+
IA -1572
|
| 1578 |
+
LP -1573
|
| 1579 |
+
MS -1574
|
| 1580 |
+
Me -1575
|
| 1581 |
+
Mi -1576
|
| 1582 |
+
Mo -1577
|
| 1583 |
+
Mé -1578
|
| 1584 |
+
Us -1579
|
| 1585 |
+
Wh -1580
|
| 1586 |
+
at -1581
|
| 1587 |
+
aw -1582
|
| 1588 |
+
df -1583
|
| 1589 |
+
dy -1584
|
| 1590 |
+
ft -1585
|
| 1591 |
+
hi -1586
|
| 1592 |
+
ki -1587
|
| 1593 |
+
ló -1588
|
| 1594 |
+
mé -1589
|
| 1595 |
+
ni -1590
|
| 1596 |
+
né -1591
|
| 1597 |
+
oz -1592
|
| 1598 |
+
ró -1593
|
| 1599 |
+
tz -1594
|
| 1600 |
+
tí -1595
|
| 1601 |
+
yo -1596
|
| 1602 |
+
ác -1597
|
| 1603 |
+
áp -1598
|
| 1604 |
+
óp -1599
|
| 1605 |
+
be -1600
|
| 1606 |
+
mc -1601
|
| 1607 |
+
ór -1602
|
| 1608 |
+
úc -1603
|
| 1609 |
+
▁Q -1604
|
| 1610 |
+
▁Z -1605
|
| 1611 |
+
▁w -1606
|
| 1612 |
+
▁~ -1607
|
| 1613 |
+
Con -1608
|
| 1614 |
+
Cuá -1609
|
| 1615 |
+
Dep -1610
|
| 1616 |
+
GPT -1611
|
| 1617 |
+
Hab -1612
|
| 1618 |
+
Hey -1613
|
| 1619 |
+
MSN -1614
|
| 1620 |
+
Sal -1615
|
| 1621 |
+
ade -1616
|
| 1622 |
+
aka -1617
|
| 1623 |
+
all -1618
|
| 1624 |
+
ant -1619
|
| 1625 |
+
ara -1620
|
| 1626 |
+
arc -1621
|
| 1627 |
+
ats -1622
|
| 1628 |
+
ave -1623
|
| 1629 |
+
awk -1624
|
| 1630 |
+
ayl -1625
|
| 1631 |
+
blo -1626
|
| 1632 |
+
bón -1627
|
| 1633 |
+
cad -1628
|
| 1634 |
+
coh -1629
|
| 1635 |
+
dar -1630
|
| 1636 |
+
dil -1631
|
| 1637 |
+
dra -1632
|
| 1638 |
+
edi -1633
|
| 1639 |
+
ele -1634
|
| 1640 |
+
eli -1635
|
| 1641 |
+
eti -1636
|
| 1642 |
+
fac -1637
|
| 1643 |
+
fía -1638
|
| 1644 |
+
gip -1639
|
| 1645 |
+
gue -1640
|
| 1646 |
+
hat -1641
|
| 1647 |
+
ich -1642
|
| 1648 |
+
iel -1643
|
| 1649 |
+
igh -1644
|
| 1650 |
+
ili -1645
|
| 1651 |
+
ilo -1646
|
| 1652 |
+
ish -1647
|
| 1653 |
+
isi -1648
|
| 1654 |
+
iso -1649
|
| 1655 |
+
iva -1650
|
| 1656 |
+
jar -1651
|
| 1657 |
+
kee -1652
|
| 1658 |
+
lem -1653
|
| 1659 |
+
lie -1654
|
| 1660 |
+
lin -1655
|
| 1661 |
+
loj -1656
|
| 1662 |
+
lus -1657
|
| 1663 |
+
mon -1658
|
| 1664 |
+
mós -1659
|
| 1665 |
+
obs -1660
|
| 1666 |
+
onu -1661
|
| 1667 |
+
onó -1662
|
| 1668 |
+
opo -1663
|
| 1669 |
+
ouv -1664
|
| 1670 |
+
pan -1665
|
| 1671 |
+
pec -1666
|
| 1672 |
+
pel -1667
|
| 1673 |
+
pia -1668
|
| 1674 |
+
pol -1669
|
| 1675 |
+
pre -1670
|
| 1676 |
+
pul -1671
|
| 1677 |
+
quí -1672
|
| 1678 |
+
rez -1673
|
| 1679 |
+
reí -1674
|
| 1680 |
+
ria -1675
|
| 1681 |
+
rip -1676
|
| 1682 |
+
ros -1677
|
| 1683 |
+
rre -1678
|
| 1684 |
+
rón -1679
|
| 1685 |
+
sic -1680
|
| 1686 |
+
tel -1681
|
| 1687 |
+
tis -1682
|
| 1688 |
+
tit -1683
|
| 1689 |
+
tía -1684
|
| 1690 |
+
tíf -1685
|
| 1691 |
+
uda -1686
|
| 1692 |
+
ues -1687
|
| 1693 |
+
uln -1688
|
| 1694 |
+
uma -1689
|
| 1695 |
+
uro -1690
|
| 1696 |
+
vor -1691
|
| 1697 |
+
xim -1692
|
| 1698 |
+
áme -1693
|
| 1699 |
+
ños -1694
|
| 1700 |
+
ódi -1695
|
| 1701 |
+
óso -1696
|
| 1702 |
+
▁Ay -1697
|
| 1703 |
+
▁Ca -1698
|
| 1704 |
+
▁Ci -1699
|
| 1705 |
+
▁Co -1700
|
| 1706 |
+
▁Cr -1701
|
| 1707 |
+
▁Fr -1702
|
| 1708 |
+
▁Le -1703
|
| 1709 |
+
▁Ob -1704
|
| 1710 |
+
▁Sa -1705
|
| 1711 |
+
▁We -1706
|
| 1712 |
+
▁aé -1707
|
| 1713 |
+
▁bi -1708
|
| 1714 |
+
▁ch -1709
|
| 1715 |
+
▁fr -1710
|
| 1716 |
+
▁go -1711
|
| 1717 |
+
▁ic -1712
|
| 1718 |
+
▁mi -1713
|
| 1719 |
+
▁pl -1714
|
| 1720 |
+
▁tú -1715
|
| 1721 |
+
▁át -1716
|
| 1722 |
+
Actu -1717
|
| 1723 |
+
Amor -1718
|
| 1724 |
+
Buen -1719
|
| 1725 |
+
Cuén -1720
|
| 1726 |
+
Méto -1721
|
| 1727 |
+
Quin -1722
|
| 1728 |
+
Salu -1723
|
| 1729 |
+
able -1724
|
| 1730 |
+
acao -1725
|
| 1731 |
+
acán -1726
|
| 1732 |
+
addy -1727
|
| 1733 |
+
ahlo -1728
|
| 1734 |
+
ande -1729
|
| 1735 |
+
anza -1730
|
| 1736 |
+
arma -1731
|
| 1737 |
+
arra -1732
|
| 1738 |
+
arse -1733
|
| 1739 |
+
bajo -1734
|
| 1740 |
+
bido -1735
|
| 1741 |
+
blan -1736
|
| 1742 |
+
bono -1737
|
| 1743 |
+
bots -1738
|
| 1744 |
+
cera -1739
|
| 1745 |
+
cesa -1740
|
| 1746 |
+
cito -1741
|
| 1747 |
+
ckch -1742
|
| 1748 |
+
cola -1743
|
| 1749 |
+
decu -1744
|
| 1750 |
+
dial -1745
|
| 1751 |
+
dida -1746
|
| 1752 |
+
doro -1747
|
| 1753 |
+
dose -1748
|
| 1754 |
+
duci -1749
|
| 1755 |
+
echa -1750
|
| 1756 |
+
elsi -1751
|
| 1757 |
+
erar -1752
|
| 1758 |
+
eros -1753
|
| 1759 |
+
erta -1754
|
| 1760 |
+
ería -1755
|
| 1761 |
+
eses -1756
|
| 1762 |
+
esto -1757
|
| 1763 |
+
esía -1758
|
| 1764 |
+
fase -1759
|
| 1765 |
+
fera -1760
|
| 1766 |
+
fica -1761
|
| 1767 |
+
flas -1762
|
| 1768 |
+
fono -1763
|
| 1769 |
+
heit -1764
|
| 1770 |
+
here -1765
|
| 1771 |
+
hibe -1766
|
| 1772 |
+
ideo -1767
|
| 1773 |
+
inan -1768
|
| 1774 |
+
inio -1769
|
| 1775 |
+
ipol -1770
|
| 1776 |
+
irve -1771
|
| 1777 |
+
isto -1772
|
| 1778 |
+
istó -1773
|
| 1779 |
+
itud -1774
|
| 1780 |
+
ivos -1775
|
| 1781 |
+
jero -1776
|
| 1782 |
+
jote -1777
|
| 1783 |
+
laca -1778
|
| 1784 |
+
lece -1779
|
| 1785 |
+
lige -1780
|
| 1786 |
+
mili -1781
|
| 1787 |
+
miti -1782
|
| 1788 |
+
noti -1783
|
| 1789 |
+
omos -1784
|
| 1790 |
+
ormá -1785
|
| 1791 |
+
orte -1786
|
| 1792 |
+
paga -1787
|
| 1793 |
+
pira -1788
|
| 1794 |
+
pres -1789
|
| 1795 |
+
ptim -1790
|
| 1796 |
+
pués -1791
|
| 1797 |
+
quer -1792
|
| 1798 |
+
ques -1793
|
| 1799 |
+
quez -1794
|
| 1800 |
+
rano -1795
|
| 1801 |
+
rica -1796
|
| 1802 |
+
rito -1797
|
| 1803 |
+
roec -1798
|
| 1804 |
+
rupo -1799
|
| 1805 |
+
serv -1800
|
| 1806 |
+
tame -1801
|
| 1807 |
+
tana -1802
|
| 1808 |
+
teve -1803
|
| 1809 |
+
teza -1804
|
| 1810 |
+
tigo -1805
|
| 1811 |
+
tios -1806
|
| 1812 |
+
titu -1807
|
| 1813 |
+
tiza -1808
|
| 1814 |
+
trés -1809
|
| 1815 |
+
turo -1810
|
| 1816 |
+
uego -1811
|
| 1817 |
+
uela -1812
|
| 1818 |
+
ueve -1813
|
| 1819 |
+
ulos -1814
|
| 1820 |
+
ulpa -1815
|
| 1821 |
+
umen -1816
|
| 1822 |
+
umor -1817
|
| 1823 |
+
unny -1818
|
| 1824 |
+
usas -1819
|
| 1825 |
+
usic -1820
|
| 1826 |
+
xtos -1821
|
| 1827 |
+
zart -1822
|
| 1828 |
+
ñola -1823
|
| 1829 |
+
▁Aca -1824
|
| 1830 |
+
▁Ama -1825
|
| 1831 |
+
▁Ban -1826
|
| 1832 |
+
▁Cal -1827
|
| 1833 |
+
▁Car -1828
|
| 1834 |
+
▁Eil -1829
|
| 1835 |
+
▁Fah -1830
|
| 1836 |
+
▁Gio -1831
|
| 1837 |
+
▁Hay -1832
|
| 1838 |
+
▁Isa -1833
|
| 1839 |
+
▁Mac -1834
|
| 1840 |
+
▁Mal -1835
|
| 1841 |
+
▁Mol -1836
|
| 1842 |
+
▁Mor -1837
|
| 1843 |
+
▁Mun -1838
|
| 1844 |
+
▁Már -1839
|
| 1845 |
+
▁Per -1840
|
| 1846 |
+
▁Reg -1841
|
| 1847 |
+
▁Roo -1842
|
| 1848 |
+
▁San -1843
|
| 1849 |
+
▁Tam -1844
|
| 1850 |
+
▁Uti -1845
|
| 1851 |
+
▁Ven -1846
|
| 1852 |
+
▁Yan -1847
|
| 1853 |
+
▁adi -1848
|
| 1854 |
+
▁agr -1849
|
| 1855 |
+
▁aun -1850
|
| 1856 |
+
▁beb -1851
|
| 1857 |
+
▁bor -1852
|
| 1858 |
+
▁bus -1853
|
| 1859 |
+
▁cas -1854
|
| 1860 |
+
▁cho -1855
|
| 1861 |
+
▁das -1856
|
| 1862 |
+
▁dic -1857
|
| 1863 |
+
▁día -1858
|
| 1864 |
+
▁fib -1859
|
| 1865 |
+
▁gus -1860
|
| 1866 |
+
▁han -1861
|
| 1867 |
+
▁har -1862
|
| 1868 |
+
▁her -1863
|
| 1869 |
+
▁hon -1864
|
| 1870 |
+
▁hor -1865
|
| 1871 |
+
▁ima -1866
|
| 1872 |
+
▁lun -1867
|
| 1873 |
+
▁mas -1868
|
| 1874 |
+
▁men -1869
|
| 1875 |
+
▁mág -1870
|
| 1876 |
+
▁ocu -1871
|
| 1877 |
+
▁pan -1872
|
| 1878 |
+
▁pie -1873
|
| 1879 |
+
▁pop -1874
|
| 1880 |
+
▁pri -1875
|
| 1881 |
+
▁pub -1876
|
| 1882 |
+
▁ras -1877
|
| 1883 |
+
▁rit -1878
|
| 1884 |
+
▁rom -1879
|
| 1885 |
+
▁ráp -1880
|
| 1886 |
+
▁sos -1881
|
| 1887 |
+
▁tab -1882
|
| 1888 |
+
▁tim -1883
|
| 1889 |
+
▁tus -1884
|
| 1890 |
+
▁usa -1885
|
| 1891 |
+
▁via -1886
|
| 1892 |
+
▁voz -1887
|
| 1893 |
+
▁vue -1888
|
| 1894 |
+
Habla -1889
|
| 1895 |
+
adero -1890
|
| 1896 |
+
ander -1891
|
| 1897 |
+
apren -1892
|
| 1898 |
+
arcía -1893
|
| 1899 |
+
atson -1894
|
| 1900 |
+
aylor -1895
|
| 1901 |
+
bitan -1896
|
| 1902 |
+
calor -1897
|
| 1903 |
+
campo -1898
|
| 1904 |
+
caras -1899
|
| 1905 |
+
colas -1900
|
| 1906 |
+
copio -1901
|
| 1907 |
+
delos -1902
|
| 1908 |
+
densa -1903
|
| 1909 |
+
dfuln -1904
|
| 1910 |
+
dific -1905
|
| 1911 |
+
ellos -1906
|
| 1912 |
+
ervis -1907
|
| 1913 |
+
esion -1908
|
| 1914 |
+
esoam -1909
|
| 1915 |
+
ganos -1910
|
| 1916 |
+
gerir -1911
|
| 1917 |
+
gipto -1912
|
| 1918 |
+
gorit -1913
|
| 1919 |
+
guien -1914
|
| 1920 |
+
gunos -1915
|
| 1921 |
+
harro -1916
|
| 1922 |
+
iedad -1917
|
| 1923 |
+
iendo -1918
|
| 1924 |
+
ienta -1919
|
| 1925 |
+
iente -1920
|
| 1926 |
+
illas -1921
|
| 1927 |
+
justa -1922
|
| 1928 |
+
leopa -1923
|
| 1929 |
+
licar -1924
|
| 1930 |
+
ltima -1925
|
| 1931 |
+
manda -1926
|
| 1932 |
+
micos -1927
|
| 1933 |
+
minar -1928
|
| 1934 |
+
olver -1929
|
| 1935 |
+
ouvre -1930
|
| 1936 |
+
perar -1931
|
| 1937 |
+
plica -1932
|
| 1938 |
+
ponde -1933
|
| 1939 |
+
queño -1934
|
| 1940 |
+
quila -1935
|
| 1941 |
+
rados -1936
|
| 1942 |
+
recer -1937
|
| 1943 |
+
resso -1938
|
| 1944 |
+
tesis -1939
|
| 1945 |
+
tibió -1940
|
| 1946 |
+
tillo -1941
|
| 1947 |
+
tivos -1942
|
| 1948 |
+
torri -1943
|
| 1949 |
+
tosín -1944
|
| 1950 |
+
total -1945
|
| 1951 |
+
trado -1946
|
| 1952 |
+
truye -1947
|
| 1953 |
+
uchas -1948
|
| 1954 |
+
uegos -1949
|
| 1955 |
+
zonas -1950
|
| 1956 |
+
éfono -1951
|
| 1957 |
+
ético -1952
|
| 1958 |
+
ímica -1953
|
| 1959 |
+
ódigo -1954
|
| 1960 |
+
▁Alex -1955
|
| 1961 |
+
▁Bell -1956
|
| 1962 |
+
▁Cada -1957
|
| 1963 |
+
▁Como -1958
|
| 1964 |
+
▁Esto -1959
|
| 1965 |
+
▁Form -1960
|
| 1966 |
+
▁Ganó -1961
|
| 1967 |
+
▁Inma -1962
|
| 1968 |
+
▁Jobs -1963
|
| 1969 |
+
▁Mona -1964
|
| 1970 |
+
▁Podr -1965
|
| 1971 |
+
▁RMSN -1966
|
| 1972 |
+
▁RoPE -1967
|
| 1973 |
+
▁alta -1968
|
| 1974 |
+
▁amar -1969
|
| 1975 |
+
▁amor -1970
|
| 1976 |
+
▁apro -1971
|
| 1977 |
+
▁asex -1972
|
| 1978 |
+
▁atra -1973
|
| 1979 |
+
▁bien -1974
|
| 1980 |
+
▁blan -1975
|
| 1981 |
+
▁cele -1976
|
| 1982 |
+
▁cero -1977
|
| 1983 |
+
▁cien -1978
|
| 1984 |
+
▁cier -1979
|
| 1985 |
+
▁conj -1980
|
| 1986 |
+
▁crip -1981
|
| 1987 |
+
▁cuán -1982
|
| 1988 |
+
▁cómo -1983
|
| 1989 |
+
▁daño -1984
|
| 1990 |
+
▁diam -1985
|
| 1991 |
+
▁edad -1986
|
| 1992 |
+
▁educ -1987
|
| 1993 |
+
▁esca -1988
|
| 1994 |
+
▁esen -1989
|
| 1995 |
+
▁even -1990
|
| 1996 |
+
▁evid -1991
|
| 1997 |
+
▁feli -1992
|
| 1998 |
+
▁fine -1993
|
| 1999 |
+
▁foto -1994
|
| 2000 |
+
▁fuen -1995
|
| 2001 |
+
▁fuer -1996
|
| 2002 |
+
▁hier -1997
|
| 2003 |
+
▁hija -1998
|
| 2004 |
+
▁icón -1999
|
| 2005 |
+
▁idea -2000
|
| 2006 |
+
▁masa -2001
|
| 2007 |
+
▁meme -2002
|
| 2008 |
+
▁mide -2003
|
| 2009 |
+
▁mone -2004
|
| 2010 |
+
▁monu -2005
|
| 2011 |
+
▁novi -2006
|
| 2012 |
+
▁otro -2007
|
| 2013 |
+
▁pasó -2008
|
| 2014 |
+
▁peso -2009
|
| 2015 |
+
▁pion -2010
|
| 2016 |
+
▁prom -2011
|
| 2017 |
+
▁prác -2012
|
| 2018 |
+
▁psic -2013
|
| 2019 |
+
▁puer -2014
|
| 2020 |
+
▁radi -2015
|
| 2021 |
+
▁rama -2016
|
| 2022 |
+
▁reci -2017
|
| 2023 |
+
▁segu -2018
|
| 2024 |
+
▁soci -2019
|
| 2025 |
+
▁soft -2020
|
| 2026 |
+
▁tema -2021
|
| 2027 |
+
▁trap -2022
|
| 2028 |
+
▁térm -2023
|
| 2029 |
+
Buenos -2024
|
| 2030 |
+
Cuáles -2025
|
| 2031 |
+
Virgin -2026
|
| 2032 |
+
centra -2027
|
| 2033 |
+
ciende -2028
|
| 2034 |
+
colate -2029
|
| 2035 |
+
elsius -2030
|
| 2036 |
+
eotérm -2031
|
| 2037 |
+
icción -2032
|
| 2038 |
+
icente -2033
|
| 2039 |
+
idades -2034
|
| 2040 |
+
idense -2035
|
| 2041 |
+
idente -2036
|
| 2042 |
+
iendas -2037
|
| 2043 |
+
itosis -2038
|
| 2044 |
+
jetiva -2039
|
| 2045 |
+
labora -2040
|
| 2046 |
+
larizó -2041
|
| 2047 |
+
lizado -2042
|
| 2048 |
+
mentar -2043
|
| 2049 |
+
mezcla -2044
|
| 2050 |
+
mitada -2045
|
| 2051 |
+
mática -2046
|
| 2052 |
+
omoaki -2047
|
| 2053 |
+
osofía -2048
|
| 2054 |
+
ovable -2049
|
| 2055 |
+
pirado -2050
|
| 2056 |
+
puesta -2051
|
| 2057 |
+
puesto -2052
|
| 2058 |
+
queños -2053
|
| 2059 |
+
quiere -2054
|
| 2060 |
+
quista -2055
|
| 2061 |
+
racter -2056
|
| 2062 |
+
romiso -2057
|
| 2063 |
+
tenido -2058
|
| 2064 |
+
ternet -2059
|
| 2065 |
+
trales -2060
|
| 2066 |
+
vorito -2061
|
| 2067 |
+
ándose -2062
|
| 2068 |
+
ánicas -2063
|
| 2069 |
+
ígenas -2064
|
| 2070 |
+
ístico -2065
|
| 2071 |
+
ósofos -2066
|
| 2072 |
+
▁Alice -2067
|
| 2073 |
+
▁Bunny -2068
|
| 2074 |
+
▁Elige -2069
|
| 2075 |
+
▁Estab -2070
|
| 2076 |
+
▁Grito -2071
|
| 2077 |
+
▁Human -2072
|
| 2078 |
+
▁Icono -2073
|
| 2079 |
+
▁Kahlo -2074
|
| 2080 |
+
▁Libre -2075
|
| 2081 |
+
▁Lucha -2076
|
| 2082 |
+
▁Nació -2077
|
| 2083 |
+
▁Padre -2078
|
| 2084 |
+
▁Prens -2079
|
| 2085 |
+
▁Puede -2080
|
| 2086 |
+
▁Puedo -2081
|
| 2087 |
+
▁Sirve -2082
|
| 2088 |
+
▁Swift -2083
|
| 2089 |
+
▁Where -2084
|
| 2090 |
+
▁adecu -2085
|
| 2091 |
+
▁alcan -2086
|
| 2092 |
+
▁alcoh -2087
|
| 2093 |
+
▁algún -2088
|
| 2094 |
+
▁atmós -2089
|
| 2095 |
+
▁añejo -2090
|
| 2096 |
+
▁bueno -2091
|
| 2097 |
+
▁cacao -2092
|
| 2098 |
+
▁calen -2093
|
| 2099 |
+
▁cereb -2094
|
| 2100 |
+
▁comun -2095
|
| 2101 |
+
▁condi -2096
|
| 2102 |
+
▁conte -2097
|
| 2103 |
+
▁crear -2098
|
| 2104 |
+
▁decir -2099
|
| 2105 |
+
▁depen -2100
|
| 2106 |
+
▁desde -2101
|
| 2107 |
+
▁direc -2102
|
| 2108 |
+
▁esque -2103
|
| 2109 |
+
▁explo -2104
|
| 2110 |
+
▁extra -2105
|
| 2111 |
+
▁gastr -2106
|
| 2112 |
+
▁genio -2107
|
| 2113 |
+
▁gratu -2108
|
| 2114 |
+
▁grupo -2109
|
| 2115 |
+
▁hacer -2110
|
| 2116 |
+
▁hasta -2111
|
| 2117 |
+
▁hijas -2112
|
| 2118 |
+
▁humor -2113
|
| 2119 |
+
▁ideas -2114
|
| 2120 |
+
▁julio -2115
|
| 2121 |
+
▁justi -2116
|
| 2122 |
+
▁karma -2117
|
| 2123 |
+
▁lejan -2118
|
| 2124 |
+
▁llama -2119
|
| 2125 |
+
▁llamo -2120
|
| 2126 |
+
▁logro -2121
|
| 2127 |
+
▁luego -2122
|
| 2128 |
+
▁magma -2123
|
| 2129 |
+
▁metaf -2124
|
| 2130 |
+
▁momen -2125
|
| 2131 |
+
▁motor -2126
|
| 2132 |
+
▁multi -2127
|
| 2133 |
+
▁music -2128
|
| 2134 |
+
▁noche -2129
|
| 2135 |
+
▁nubes -2130
|
| 2136 |
+
▁nuevo -2131
|
| 2137 |
+
▁obras -2132
|
| 2138 |
+
▁optim -2133
|
| 2139 |
+
▁organ -2134
|
| 2140 |
+
▁papel -2135
|
| 2141 |
+
▁pilar -2136
|
| 2142 |
+
▁pintó -2137
|
| 2143 |
+
▁pirám -2138
|
| 2144 |
+
▁prede -2139
|
| 2145 |
+
▁pulpa -2140
|
| 2146 |
+
▁relig -2141
|
| 2147 |
+
▁salsa -2142
|
| 2148 |
+
▁sigue -2143
|
| 2149 |
+
▁teles -2144
|
| 2150 |
+
▁tipos -2145
|
| 2151 |
+
▁video -2146
|
| 2152 |
+
▁átomo -2147
|
| 2153 |
+
Ciencia -2148
|
| 2154 |
+
Depende -2149
|
| 2155 |
+
Proceso -2150
|
| 2156 |
+
Saludos -2151
|
| 2157 |
+
Shakira -2152
|
| 2158 |
+
aciones -2153
|
| 2159 |
+
ckchain -2154
|
| 2160 |
+
conocer -2155
|
| 2161 |
+
ducción -2156
|
| 2162 |
+
esional -2157
|
| 2163 |
+
icación -2158
|
| 2164 |
+
icilina -2159
|
| 2165 |
+
laridad -2160
|
| 2166 |
+
ológico -2161
|
| 2167 |
+
omatiza -2162
|
| 2168 |
+
omodoro -2163
|
| 2169 |
+
paneles -2164
|
| 2170 |
+
parente -2165
|
| 2171 |
+
rancesa -2166
|
| 2172 |
+
renheit -2167
|
| 2173 |
+
rensión -2168
|
| 2174 |
+
tacados -2169
|
| 2175 |
+
ticular -2170
|
| 2176 |
+
tinflas -2171
|
| 2177 |
+
tónicas -2172
|
| 2178 |
+
uencias -2173
|
| 2179 |
+
vidores -2174
|
| 2180 |
+
▁Compon -2175
|
| 2181 |
+
▁Egipto -2176
|
| 2182 |
+
▁Eilish -2177
|
| 2183 |
+
▁Fermen -2178
|
| 2184 |
+
▁Fernán -2179
|
| 2185 |
+
▁Louvre -2180
|
| 2186 |
+
▁Modelo -2181
|
| 2187 |
+
▁Mozart -2182
|
| 2188 |
+
▁Revisa -2183
|
| 2189 |
+
▁Thalía -2184
|
| 2190 |
+
▁Watson -2185
|
| 2191 |
+
▁Yankee -2186
|
| 2192 |
+
▁actriz -2187
|
| 2193 |
+
▁actual -2188
|
| 2194 |
+
▁ahorro -2189
|
| 2195 |
+
▁amplia -2190
|
| 2196 |
+
▁aunque -2191
|
| 2197 |
+
▁cantar -2192
|
| 2198 |
+
▁centro -2193
|
| 2199 |
+
▁contro -2194
|
| 2200 |
+
▁crista -2195
|
| 2201 |
+
▁código -2196
|
| 2202 |
+
▁debido -2197
|
| 2203 |
+
▁diaria -2198
|
| 2204 |
+
▁dinero -2199
|
| 2205 |
+
▁dispon -2200
|
| 2206 |
+
▁electr -2201
|
| 2207 |
+
▁eléctr -2202
|
| 2208 |
+
▁especi -2203
|
| 2209 |
+
▁estrés -2204
|
| 2210 |
+
▁evitar -2205
|
| 2211 |
+
▁exhibe -2206
|
| 2212 |
+
▁fermen -2207
|
| 2213 |
+
▁gastos -2208
|
| 2214 |
+
▁genero -2209
|
| 2215 |
+
▁global -2210
|
| 2216 |
+
▁granos -2211
|
| 2217 |
+
▁guitar -2212
|
| 2218 |
+
▁humana -2213
|
| 2219 |
+
▁imagen -2214
|
| 2220 |
+
▁increí -2215
|
| 2221 |
+
▁influy -2216
|
| 2222 |
+
▁latino -2217
|
| 2223 |
+
▁letras -2218
|
| 2224 |
+
▁litera -2219
|
| 2225 |
+
▁manera -2220
|
| 2226 |
+
▁medida -2221
|
| 2227 |
+
▁metros -2222
|
| 2228 |
+
▁muchas -2223
|
| 2229 |
+
▁nacido -2224
|
| 2230 |
+
▁ocurre -2225
|
| 2231 |
+
▁piezas -2226
|
| 2232 |
+
▁placer -2227
|
| 2233 |
+
▁poesía -2228
|
| 2234 |
+
▁prefer -2229
|
| 2235 |
+
▁public -2230
|
| 2236 |
+
▁pueblo -2231
|
| 2237 |
+
▁rasgos -2232
|
| 2238 |
+
▁reduce -2233
|
| 2239 |
+
▁repeti -2234
|
| 2240 |
+
▁tengas -2235
|
| 2241 |
+
▁textos -2236
|
| 2242 |
+
▁tienes -2237
|
| 2243 |
+
▁varios -2238
|
| 2244 |
+
▁varían -2239
|
| 2245 |
+
▁vuelan -2240
|
| 2246 |
+
▁última -2241
|
| 2247 |
+
Cuéntame -2242
|
| 2248 |
+
Quintana -2243
|
| 2249 |
+
binación -2244
|
| 2250 |
+
blemente -2245
|
| 2251 |
+
cionales -2246
|
| 2252 |
+
dfulness -2247
|
| 2253 |
+
emplazar -2248
|
| 2254 |
+
ervisado -2249
|
| 2255 |
+
goritmos -2250
|
| 2256 |
+
icamente -2251
|
| 2257 |
+
leopatra -2252
|
| 2258 |
+
ológicas -2253
|
| 2259 |
+
ormática -2254
|
| 2260 |
+
tacional -2255
|
| 2261 |
+
ualmente -2256
|
| 2262 |
+
unidense -2257
|
| 2263 |
+
▁Aprende -2258
|
| 2264 |
+
▁Celsius -2259
|
| 2265 |
+
▁Eclipse -2260
|
| 2266 |
+
▁Figuras -2261
|
| 2267 |
+
▁Jalisco -2262
|
| 2268 |
+
▁Mundial -2263
|
| 2269 |
+
▁Márquez -2264
|
| 2270 |
+
▁Quijote -2265
|
| 2271 |
+
▁RMSNorm -2266
|
| 2272 |
+
▁También -2267
|
| 2273 |
+
▁Utiliza -2268
|
| 2274 |
+
▁agujero -2269
|
| 2275 |
+
▁alguien -2270
|
| 2276 |
+
▁antibió -2271
|
| 2277 |
+
▁aproxim -2272
|
| 2278 |
+
▁astronó -2273
|
| 2279 |
+
▁autorre -2274
|
| 2280 |
+
▁basadas -2275
|
| 2281 |
+
▁caminar -2276
|
| 2282 |
+
▁capital -2277
|
| 2283 |
+
▁captura -2278
|
| 2284 |
+
▁carbono -2279
|
| 2285 |
+
▁celebra -2280
|
| 2286 |
+
▁científ -2281
|
| 2287 |
+
▁clásica -2282
|
| 2288 |
+
▁compara -2283
|
| 2289 |
+
▁corteza -2284
|
| 2290 |
+
▁células -2285
|
| 2291 |
+
▁derecho -2286
|
| 2292 |
+
▁después -2287
|
| 2293 |
+
▁diarios -2288
|
| 2294 |
+
▁disposi -2289
|
| 2295 |
+
▁dominio -2290
|
| 2296 |
+
▁durante -2291
|
| 2297 |
+
▁empatía -2292
|
| 2298 |
+
▁empezar -2293
|
| 2299 |
+
▁escrita -2294
|
| 2300 |
+
▁estudio -2295
|
| 2301 |
+
▁eventos -2296
|
| 2302 |
+
▁expande -2297
|
| 2303 |
+
▁fotosín -2298
|
| 2304 |
+
▁fuentes -2299
|
| 2305 |
+
▁futuras -2300
|
| 2306 |
+
▁implica -2301
|
| 2307 |
+
▁mejorar -2302
|
| 2308 |
+
▁mitosis -2303
|
| 2309 |
+
▁modelos -2304
|
| 2310 |
+
▁motores -2305
|
| 2311 |
+
▁ofrecer -2306
|
| 2312 |
+
▁orbitan -2307
|
| 2313 |
+
▁parcial -2308
|
| 2314 |
+
▁periodo -2309
|
| 2315 |
+
▁persona -2310
|
| 2316 |
+
▁pintada -2311
|
| 2317 |
+
▁posible -2312
|
| 2318 |
+
▁precios -2313
|
| 2319 |
+
▁presión -2314
|
| 2320 |
+
▁program -2315
|
| 2321 |
+
▁propias -2316
|
| 2322 |
+
▁refiere -2317
|
| 2323 |
+
▁regular -2318
|
| 2324 |
+
▁sentido -2319
|
| 2325 |
+
▁sugerir -2320
|
| 2326 |
+
▁también -2321
|
| 2327 |
+
▁teclado -2322
|
| 2328 |
+
▁tempera -2323
|
| 2329 |
+
▁tequila -2324
|
| 2330 |
+
▁tercera -2325
|
| 2331 |
+
▁valores -2326
|
| 2332 |
+
▁ventaja -2327
|
| 2333 |
+
▁álbumes -2328
|
| 2334 |
+
▁órganos -2329
|
| 2335 |
+
eotérmica -2330
|
| 2336 |
+
tividades -2331
|
| 2337 |
+
▁Amazonas -2332
|
| 2338 |
+
▁Contiene -2333
|
| 2339 |
+
▁Cultural -2334
|
| 2340 |
+
▁Komorida -2335
|
| 2341 |
+
▁Molienda -2336
|
| 2342 |
+
▁Prensado -2337
|
| 2343 |
+
▁aprender -2338
|
| 2344 |
+
▁camellos -2339
|
| 2345 |
+
▁caracter -2340
|
| 2346 |
+
▁colabora -2341
|
| 2347 |
+
▁comporta -2342
|
| 2348 |
+
▁concepto -2343
|
| 2349 |
+
▁condensa -2344
|
| 2350 |
+
▁conexión -2345
|
| 2351 |
+
▁consiste -2346
|
| 2352 |
+
▁diseñado -2347
|
| 2353 |
+
▁entrenar -2348
|
| 2354 |
+
▁escribir -2349
|
| 2355 |
+
▁esencial -2350
|
| 2356 |
+
▁española -2351
|
| 2357 |
+
▁espresso -2352
|
| 2358 |
+
▁explicar -2353
|
| 2359 |
+
▁favorito -2354
|
| 2360 |
+
▁genética -2355
|
| 2361 |
+
▁interpre -2356
|
| 2362 |
+
▁justicia -2357
|
| 2363 |
+
▁levadura -2358
|
| 2364 |
+
▁mariachi -2359
|
| 2365 |
+
▁mecánica -2360
|
| 2366 |
+
▁neuronal -2361
|
| 2367 |
+
▁objetivo -2362
|
| 2368 |
+
▁pequeños -2363
|
| 2369 |
+
▁pregunta -2364
|
| 2370 |
+
▁procesar -2365
|
| 2371 |
+
▁profundo -2366
|
| 2372 |
+
▁programa -2367
|
| 2373 |
+
▁proyecto -2368
|
| 2374 |
+
▁práctica -2369
|
| 2375 |
+
▁realidad -2370
|
| 2376 |
+
▁refuerzo -2371
|
| 2377 |
+
▁sociedad -2372
|
| 2378 |
+
▁software -2373
|
| 2379 |
+
▁teléfono -2374
|
| 2380 |
+
▁turbinas -2375
|
| 2381 |
+
▁utilizan -2376
|
| 2382 |
+
▁variedad -2377
|
| 2383 |
+
cripciones -2378
|
| 2384 |
+
roeconomía -2379
|
| 2385 |
+
tenimiento -2380
|
| 2386 |
+
torriqueño -2381
|
| 2387 |
+
zonamiento -2382
|
| 2388 |
+
▁Alexander -2383
|
| 2389 |
+
▁Establece -2384
|
| 2390 |
+
▁Fernández -2385
|
| 2391 |
+
▁Filósofos -2386
|
| 2392 |
+
▁Humanidad -2387
|
| 2393 |
+
▁asistirte -2388
|
| 2394 |
+
▁atmósfera -2389
|
| 2395 |
+
▁avanzadas -2390
|
| 2396 |
+
▁calientes -2391
|
| 2397 |
+
▁centrales -2392
|
| 2398 |
+
▁chocolate -2393
|
| 2399 |
+
▁comunidad -2394
|
| 2400 |
+
▁conjuntos -2395
|
| 2401 |
+
▁conquista -2396
|
| 2402 |
+
▁convierte -2397
|
| 2403 |
+
▁cualquier -2398
|
| 2404 |
+
▁descubrió -2399
|
| 2405 |
+
▁diamantes -2400
|
| 2406 |
+
▁ejercicio -2401
|
| 2407 |
+
▁estrellas -2402
|
| 2408 |
+
▁evidencia -2403
|
| 2409 |
+
▁evolución -2404
|
| 2410 |
+
▁felicidad -2405
|
| 2411 |
+
▁filosofía -2406
|
| 2412 |
+
▁habilidad -2407
|
| 2413 |
+
▁indígenas -2408
|
| 2414 |
+
▁inteligen -2409
|
| 2415 |
+
▁investiga -2410
|
| 2416 |
+
▁moléculas -2411
|
| 2417 |
+
▁necesitas -2412
|
| 2418 |
+
▁noviembre -2413
|
| 2419 |
+
▁pirámides -2414
|
| 2420 |
+
▁profundas -2415
|
| 2421 |
+
▁reconocer -2416
|
| 2422 |
+
▁reggaetón -2417
|
| 2423 |
+
▁renovable -2418
|
| 2424 |
+
▁responder -2419
|
| 2425 |
+
▁subjetiva -2420
|
| 2426 |
+
Actualmente -2421
|
| 2427 |
+
aprendizaje -2422
|
| 2428 |
+
▁Automatiza -2423
|
| 2429 |
+
▁Fahrenheit -2424
|
| 2430 |
+
▁Inmaterial -2425
|
| 2431 |
+
▁Patrimonio -2426
|
| 2432 |
+
▁algoritmos -2427
|
| 2433 |
+
▁coherentes -2428
|
| 2434 |
+
▁colombiana -2429
|
| 2435 |
+
▁compromiso -2430
|
| 2436 |
+
▁conciencia -2431
|
| 2437 |
+
▁cosmología -2432
|
| 2438 |
+
▁destacados -2433
|
| 2439 |
+
▁electrones -2434
|
| 2440 |
+
▁específico -2435
|
| 2441 |
+
▁estrellada -2436
|
| 2442 |
+
▁estructura -2437
|
| 2443 |
+
▁evolucionó -2438
|
| 2444 |
+
▁meditación -2439
|
| 2445 |
+
▁monumentos -2440
|
| 2446 |
+
▁movimiento -2441
|
| 2447 |
+
▁particular -2442
|
| 2448 |
+
▁penicilina -2443
|
| 2449 |
+
▁personales -2444
|
| 2450 |
+
▁popularizó -2445
|
| 2451 |
+
▁presidente -2446
|
| 2452 |
+
▁principios -2447
|
| 2453 |
+
▁producción -2448
|
| 2454 |
+
▁proporcion -2449
|
| 2455 |
+
▁protección -2450
|
| 2456 |
+
▁reemplazar -2451
|
| 2457 |
+
▁servidores -2452
|
| 2458 |
+
▁sobrevivir -2453
|
| 2459 |
+
▁telescopio -2454
|
| 2460 |
+
▁Componentes -2455
|
| 2461 |
+
▁comprensión -2456
|
| 2462 |
+
▁computadora -2457
|
| 2463 |
+
▁condiciones -2458
|
| 2464 |
+
▁descubierta -2459
|
| 2465 |
+
▁emocionales -2460
|
| 2466 |
+
▁fundamental -2461
|
| 2467 |
+
▁gastronomía -2462
|
| 2468 |
+
▁hidroeléctr -2463
|
| 2469 |
+
▁informática -2464
|
| 2470 |
+
▁profesional -2465
|
| 2471 |
+
▁recomiendas -2466
|
| 2472 |
+
▁revolucionó -2467
|
| 2473 |
+
▁supervisado -2468
|
| 2474 |
+
▁tradicional -2469
|
| 2475 |
+
▁Fermentación -2470
|
| 2476 |
+
▁arquitectura -2471
|
| 2477 |
+
▁colaboración -2472
|
| 2478 |
+
▁combustibles -2473
|
| 2479 |
+
▁computadoras -2474
|
| 2480 |
+
▁conversación -2475
|
| 2481 |
+
▁fotosíntesis -2476
|
| 2482 |
+
▁industriales -2477
|
| 2483 |
+
▁inmunológico -2478
|
| 2484 |
+
▁posiblemente -2479
|
| 2485 |
+
▁preferencias -2480
|
| 2486 |
+
▁reproducción -2481
|
| 2487 |
+
▁Independencia -2482
|
| 2488 |
+
▁computacional -2483
|
| 2489 |
+
▁especialmente -2484
|
| 2490 |
+
▁comportamiento -2485
|
| 2491 |
+
▁conversaciones -2486
|
| 2492 |
+
▁estadounidense -2487
|
| 2493 |
+
▁puertorriqueño -2488
|
| 2494 |
+
▁reconocimiento -2489
|
| 2495 |
+
▁aproximadamente -2490
|
| 2496 |
+
▁entretenimiento -2491
|
| 2497 |
+
... -2492
|
| 2498 |
+
Ani -2493
|
| 2499 |
+
Inf -2494
|
| 2500 |
+
Int -2495
|
| 2501 |
+
MoM -2496
|
| 2502 |
+
NLP -2497
|
| 2503 |
+
até -2498
|
| 2504 |
+
bot -2499
|
| 2505 |
+
Hub -2500
|
| 2506 |
+
drí -2501
|
| 2507 |
+
gné -2502
|
| 2508 |
+
ket -2503
|
| 2509 |
+
lód -2504
|
| 2510 |
+
núc -2505
|
| 2511 |
+
oPE -2506
|
| 2512 |
+
ots -2507
|
| 2513 |
+
tzs -2508
|
| 2514 |
+
tzá -2509
|
| 2515 |
+
ópe -2510
|
| 2516 |
+
▁Qa -2511
|
| 2517 |
+
▁Za -2512
|
| 2518 |
+
▁óp -2513
|
| 2519 |
+
Code -2514
|
| 2520 |
+
Conn -2515
|
| 2521 |
+
Daki -2516
|
| 2522 |
+
Deli -2517
|
| 2523 |
+
Hawk -2518
|
| 2524 |
+
Piel -2519
|
| 2525 |
+
RoPE -2520
|
| 2526 |
+
TPUs -2521
|
| 2527 |
+
Técn -2522
|
| 2528 |
+
Vivo -2523
|
| 2529 |
+
Waka -2524
|
| 2530 |
+
acío -2525
|
| 2531 |
+
aham -2526
|
| 2532 |
+
aint -2527
|
| 2533 |
+
anoh -2528
|
| 2534 |
+
arak -2529
|
| 2535 |
+
atis -2530
|
| 2536 |
+
brar -2531
|
| 2537 |
+
braz -2532
|
| 2538 |
+
bril -2533
|
| 2539 |
+
ciru -2534
|
| 2540 |
+
clus -2535
|
| 2541 |
+
dice -2536
|
| 2542 |
+
dióp -2537
|
| 2543 |
+
dral -2538
|
| 2544 |
+
drez -2539
|
| 2545 |
+
eche -2540
|
| 2546 |
+
ecut -2541
|
| 2547 |
+
essy -2542
|
| 2548 |
+
fgan -2543
|
| 2549 |
+
gaña -2544
|
| 2550 |
+
guet -2545
|
| 2551 |
+
guez -2546
|
| 2552 |
+
hihi -2547
|
| 2553 |
+
hota -2548
|
| 2554 |
+
hual -2549
|
| 2555 |
+
iche -2550
|
| 2556 |
+
ijas -2551
|
| 2557 |
+
ilob -2552
|
| 2558 |
+
imiz -2553
|
| 2559 |
+
kimb -2554
|
| 2560 |
+
ligr -2555
|
| 2561 |
+
lobo -2556
|
| 2562 |
+
luso -2557
|
| 2563 |
+
mosf -2558
|
| 2564 |
+
médu -2559
|
| 2565 |
+
métr -2560
|
| 2566 |
+
otel -2561
|
| 2567 |
+
prot -2562
|
| 2568 |
+
raba -2563
|
| 2569 |
+
rece -2564
|
| 2570 |
+
risa -2565
|
| 2571 |
+
romp -2566
|
| 2572 |
+
sayo -2567
|
| 2573 |
+
seña -2568
|
| 2574 |
+
titl -2569
|
| 2575 |
+
tune -2570
|
| 2576 |
+
turb -2571
|
| 2577 |
+
tíne -2572
|
| 2578 |
+
ucho -2573
|
| 2579 |
+
ueba -2574
|
| 2580 |
+
urió -2575
|
| 2581 |
+
árez -2576
|
| 2582 |
+
árra -2577
|
| 2583 |
+
ñade -2578
|
| 2584 |
+
ócra -2579
|
| 2585 |
+
ópez -2580
|
| 2586 |
+
órro -2581
|
| 2587 |
+
▁Hub -2582
|
| 2588 |
+
▁Mañ -2583
|
| 2589 |
+
▁Moh -2584
|
| 2590 |
+
▁NLP -2585
|
| 2591 |
+
▁Que -2586
|
| 2592 |
+
▁Yor -2587
|
| 2593 |
+
▁crí -2588
|
| 2594 |
+
▁eru -2589
|
| 2595 |
+
▁gló -2590
|
| 2596 |
+
▁hai -2591
|
| 2597 |
+
▁haz -2592
|
| 2598 |
+
▁iPh -2593
|
| 2599 |
+
▁jug -2594
|
| 2600 |
+
▁lím -2595
|
| 2601 |
+
▁lóg -2596
|
| 2602 |
+
▁máx -2597
|
| 2603 |
+
▁núc -2598
|
| 2604 |
+
▁onl -2599
|
| 2605 |
+
róf -2600
|
| 2606 |
+
hich -2601
|
| 2607 |
+
iana -2602
|
| 2608 |
+
indu -2603
|
| 2609 |
+
made -2604
|
| 2610 |
+
rófa -2605
|
| 2611 |
+
tadu -2606
|
| 2612 |
+
vern -2607
|
| 2613 |
+
▁Tim -2608
|
| 2614 |
+
▁pez -2609
|
| 2615 |
+
▁riz -2610
|
| 2616 |
+
▁vih -2611
|
| 2617 |
+
▁vik -2612
|
| 2618 |
+
▁web -2613
|
| 2619 |
+
Alber -2614
|
| 2620 |
+
Anima -2615
|
| 2621 |
+
Carol -2616
|
| 2622 |
+
CodeC -2617
|
| 2623 |
+
Mario -2618
|
| 2624 |
+
París -2619
|
| 2625 |
+
Pirám -2620
|
| 2626 |
+
Whene -2621
|
| 2627 |
+
adena -2622
|
| 2628 |
+
afase -2623
|
| 2629 |
+
aloso -2624
|
| 2630 |
+
amosa -2625
|
| 2631 |
+
aniel -2626
|
| 2632 |
+
anóme -2627
|
| 2633 |
+
arrio -2628
|
| 2634 |
+
ayuda -2629
|
| 2635 |
+
binan -2630
|
| 2636 |
+
blada -2631
|
| 2637 |
+
blano -2632
|
| 2638 |
+
cadem -2633
|
| 2639 |
+
calcu -2634
|
| 2640 |
+
casio -2635
|
| 2641 |
+
colom -2636
|
| 2642 |
+
cosas -2637
|
| 2643 |
+
culos -2638
|
| 2644 |
+
culus -2639
|
| 2645 |
+
daron -2640
|
| 2646 |
+
dicho -2641
|
| 2647 |
+
didos -2642
|
| 2648 |
+
ducir -2643
|
| 2649 |
+
enito -2644
|
| 2650 |
+
enove -2645
|
| 2651 |
+
eptun -2646
|
| 2652 |
+
erard -2647
|
| 2653 |
+
expul -2648
|
| 2654 |
+
fgang -2649
|
| 2655 |
+
fundo -2650
|
| 2656 |
+
ights -2651
|
| 2657 |
+
iliar -2652
|
| 2658 |
+
illie -2653
|
| 2659 |
+
ipoll -2654
|
| 2660 |
+
isita -2655
|
| 2661 |
+
ismos -2656
|
| 2662 |
+
istób -2657
|
| 2663 |
+
itHub -2658
|
| 2664 |
+
itman -2659
|
| 2665 |
+
iudad -2660
|
| 2666 |
+
jecut -2661
|
| 2667 |
+
jidos -2662
|
| 2668 |
+
joría -2663
|
| 2669 |
+
juste -2664
|
| 2670 |
+
lauta -2665
|
| 2671 |
+
laver -2666
|
| 2672 |
+
leigh -2667
|
| 2673 |
+
lemán -2668
|
| 2674 |
+
lezas -2669
|
| 2675 |
+
liano -2670
|
| 2676 |
+
licis -2671
|
| 2677 |
+
lific -2672
|
| 2678 |
+
lismo -2673
|
| 2679 |
+
lizan -2674
|
| 2680 |
+
medio -2675
|
| 2681 |
+
monta -2676
|
| 2682 |
+
moral -2677
|
| 2683 |
+
mulos -2678
|
| 2684 |
+
neces -2679
|
| 2685 |
+
oacán -2680
|
| 2686 |
+
ombra -2681
|
| 2687 |
+
onial -2682
|
| 2688 |
+
orial -2683
|
| 2689 |
+
orrar -2684
|
| 2690 |
+
osaki -2685
|
| 2691 |
+
panoh -2686
|
| 2692 |
+
parar -2687
|
| 2693 |
+
pejos -2688
|
| 2694 |
+
peras -2689
|
| 2695 |
+
pollo -2690
|
| 2696 |
+
polvo -2691
|
| 2697 |
+
poral -2692
|
| 2698 |
+
pulco -2693
|
| 2699 |
+
párra -2694
|
| 2700 |
+
query -2695
|
| 2701 |
+
quili -2696
|
| 2702 |
+
quisi -2697
|
| 2703 |
+
radio -2698
|
| 2704 |
+
rapia -2699
|
| 2705 |
+
ney -2700
|
| 2706 |
+
rva -2701
|
| 2707 |
+
Úne -2702
|
| 2708 |
+
émy -2703
|
| 2709 |
+
▁Wh -2704
|
| 2710 |
+
Deep -2705
|
| 2711 |
+
Rémy -2706
|
| 2712 |
+
When -2707
|
| 2713 |
+
drés -2708
|
| 2714 |
+
erva -2709
|
| 2715 |
+
flic -2710
|
| 2716 |
+
harr -2711
|
| 2717 |
+
itch -2712
|
| 2718 |
+
itco -2713
|
| 2719 |
+
jano -2714
|
| 2720 |
+
nova -2715
|
| 2721 |
+
xido -2716
|
| 2722 |
+
▁Teo -2717
|
| 2723 |
+
▁cof -2718
|
| 2724 |
+
▁jor -2719
|
| 2725 |
+
▁Úne -2720
|
| 2726 |
+
Puedo -2721
|
| 2727 |
+
curri -2722
|
| 2728 |
+
curso -2723
|
| 2729 |
+
ervan -2724
|
| 2730 |
+
iniza -2725
|
| 2731 |
+
ionel -2726
|
| 2732 |
+
mitar -2727
|
| 2733 |
+
miten -2728
|
| 2734 |
+
núcle -2729
|
| 2735 |
+
raria -2730
|
| 2736 |
+
reves -2731
|
| 2737 |
+
ribon -2732
|
| 2738 |
+
robot -2733
|
| 2739 |
+
rques -2734
|
| 2740 |
+
rueba -2735
|
| 2741 |
+
sable -2736
|
| 2742 |
+
senta -2737
|
| 2743 |
+
taban -2738
|
| 2744 |
+
tabol -2739
|
| 2745 |
+
taria -2740
|
| 2746 |
+
tinas -2741
|
| 2747 |
+
titud -2742
|
| 2748 |
+
titán -2743
|
| 2749 |
+
turón -2744
|
| 2750 |
+
tínez -2745
|
| 2751 |
+
uacán -2746
|
| 2752 |
+
ucleó -2747
|
| 2753 |
+
ucosa -2748
|
| 2754 |
+
uelta -2749
|
| 2755 |
+
umamo -2750
|
| 2756 |
+
unció -2751
|
| 2757 |
+
unner -2752
|
| 2758 |
+
urney -2753
|
| 2759 |
+
uropa -2754
|
| 2760 |
+
uters -2755
|
| 2761 |
+
uturo -2756
|
| 2762 |
+
vanni -2757
|
| 2763 |
+
vantó -2758
|
| 2764 |
+
ventó -2759
|
| 2765 |
+
viene -2760
|
| 2766 |
+
viesa -2761
|
| 2767 |
+
virus -2762
|
| 2768 |
+
witch -2763
|
| 2769 |
+
xisto -2764
|
| 2770 |
+
yendo -2765
|
| 2771 |
+
áfora -2766
|
| 2772 |
+
ámica -2767
|
| 2773 |
+
ámina -2768
|
| 2774 |
+
élice -2769
|
| 2775 |
+
ícono -2770
|
| 2776 |
+
índic -2771
|
| 2777 |
+
ófica -2772
|
| 2778 |
+
ómico -2773
|
| 2779 |
+
órico -2774
|
| 2780 |
+
ósito -2775
|
| 2781 |
+
óxido -2776
|
| 2782 |
+
▁Amor -2777
|
| 2783 |
+
▁Aquí -2778
|
| 2784 |
+
▁Arte -2779
|
| 2785 |
+
▁Ayud -2780
|
| 2786 |
+
▁Cita -2781
|
| 2787 |
+
▁Cric -2782
|
| 2788 |
+
▁Dawk -2783
|
| 2789 |
+
▁Dese -2784
|
| 2790 |
+
▁Diff -2785
|
| 2791 |
+
▁Elis -2786
|
| 2792 |
+
▁Flem -2787
|
| 2793 |
+
▁Frid -2788
|
| 2794 |
+
▁Grah -2789
|
| 2795 |
+
▁Gray -2790
|
| 2796 |
+
▁Itzá -2791
|
| 2797 |
+
▁Kant -2792
|
| 2798 |
+
▁Leon -2793
|
| 2799 |
+
▁Maci -2794
|
| 2800 |
+
▁Maha -2795
|
| 2801 |
+
▁Mesa -2796
|
| 2802 |
+
▁Mohs -2797
|
| 2803 |
+
▁Mues -2798
|
| 2804 |
+
▁Nilo -2799
|
| 2805 |
+
buj -2800
|
| 2806 |
+
ofi -2801
|
| 2807 |
+
▁ub -2802
|
| 2808 |
+
Roma -2803
|
| 2809 |
+
cent -2804
|
| 2810 |
+
dido -2805
|
| 2811 |
+
iral -2806
|
| 2812 |
+
lvid -2807
|
| 2813 |
+
ocer -2808
|
| 2814 |
+
orfi -2809
|
| 2815 |
+
roba -2810
|
| 2816 |
+
▁cál -2811
|
| 2817 |
+
▁neu -2812
|
| 2818 |
+
Drama -2813
|
| 2819 |
+
aroma -2814
|
| 2820 |
+
bujía -2815
|
| 2821 |
+
cenas -2816
|
| 2822 |
+
censo -2817
|
| 2823 |
+
decer -2818
|
| 2824 |
+
entis -2819
|
| 2825 |
+
eruda -2820
|
| 2826 |
+
gunas -2821
|
| 2827 |
+
istón -2822
|
| 2828 |
+
ofila -2823
|
| 2829 |
+
pensa -2824
|
| 2830 |
+
tomos -2825
|
| 2831 |
+
áncer -2826
|
| 2832 |
+
▁Divo -2827
|
| 2833 |
+
▁Mejo -2828
|
| 2834 |
+
▁Meuc -2829
|
| 2835 |
+
▁Mimo -2830
|
| 2836 |
+
▁Obra -2831
|
| 2837 |
+
▁Prem -2832
|
| 2838 |
+
▁Prim -2833
|
| 2839 |
+
▁Resp -2834
|
| 2840 |
+
▁Rich -2835
|
| 2841 |
+
▁Teno -2836
|
| 2842 |
+
▁Topo -2837
|
| 2843 |
+
▁York -2838
|
| 2844 |
+
▁agre -2839
|
| 2845 |
+
▁ajus -2840
|
| 2846 |
+
▁aloj -2841
|
| 2847 |
+
▁anat -2842
|
| 2848 |
+
▁anál -2843
|
| 2849 |
+
▁aquí -2844
|
| 2850 |
+
▁back -2845
|
| 2851 |
+
▁bajo -2846
|
| 2852 |
+
▁basa -2847
|
| 2853 |
+
▁bazo -2848
|
| 2854 |
+
▁casó -2849
|
| 2855 |
+
▁clor -2850
|
| 2856 |
+
▁cola -2851
|
| 2857 |
+
▁corp -2852
|
| 2858 |
+
▁coun -2853
|
| 2859 |
+
▁dice -2854
|
| 2860 |
+
▁dure -2855
|
| 2861 |
+
▁efec -2856
|
| 2862 |
+
▁embe -2857
|
| 2863 |
+
▁equi -2858
|
| 2864 |
+
▁fama -2859
|
| 2865 |
+
▁figu -2860
|
| 2866 |
+
▁fría -2861
|
| 2867 |
+
▁frío -2862
|
| 2868 |
+
▁gala -2863
|
| 2869 |
+
▁glób -2864
|
| 2870 |
+
▁habi -2865
|
| 2871 |
+
▁here -2866
|
| 2872 |
+
▁iPad -2867
|
| 2873 |
+
▁irre -2868
|
| 2874 |
+
▁luch -2869
|
| 2875 |
+
▁maya -2870
|
| 2876 |
+
▁nube -2871
|
| 2877 |
+
▁nues -2872
|
| 2878 |
+
▁ocho -2873
|
| 2879 |
+
▁ocup -2874
|
| 2880 |
+
▁orig -2875
|
| 2881 |
+
▁pedi -2876
|
| 2882 |
+
▁pens -2877
|
| 2883 |
+
▁plen -2878
|
| 2884 |
+
▁quím -2879
|
| 2885 |
+
▁rima -2880
|
| 2886 |
+
▁salv -2881
|
| 2887 |
+
▁saté -2882
|
| 2888 |
+
▁secu -2883
|
| 2889 |
+
▁sens -2884
|
| 2890 |
+
▁sone -2885
|
| 2891 |
+
▁tabl -2886
|
| 2892 |
+
▁vari -2887
|
| 2893 |
+
▁viol -2888
|
| 2894 |
+
▁volú -2889
|
| 2895 |
+
▁want -2890
|
| 2896 |
+
Albert -2891
|
| 2897 |
+
Benito -2892
|
| 2898 |
+
Cadena -2893
|
| 2899 |
+
Ciudad -2894
|
| 2900 |
+
Dakiti -2895
|
| 2901 |
+
Daniel -2896
|
| 2902 |
+
García -2897
|
| 2903 |
+
Proven -2898
|
| 2904 |
+
Thalía -2899
|
| 2905 |
+
Una -2900
|
| 2906 |
+
aja -2901
|
| 2907 |
+
cíf -2902
|
| 2908 |
+
eja -2903
|
| 2909 |
+
jaz -2904
|
| 2910 |
+
sea -2905
|
| 2911 |
+
▁Jú -2906
|
| 2912 |
+
▁rí -2907
|
| 2913 |
+
Baja -2908
|
| 2914 |
+
adna -2909
|
| 2915 |
+
ined -2910
|
| 2916 |
+
jazz -2911
|
| 2917 |
+
maño -2912
|
| 2918 |
+
nata -2913
|
| 2919 |
+
nora -2914
|
| 2920 |
+
noul -2915
|
| 2921 |
+
obbi -2916
|
| 2922 |
+
umna -2917
|
| 2923 |
+
well -2918
|
| 2924 |
+
▁Júp -2919
|
| 2925 |
+
▁Rob -2920
|
| 2926 |
+
▁dob -2921
|
| 2927 |
+
▁gob -2922
|
| 2928 |
+
▁hay -2923
|
| 2929 |
+
▁iPo -2924
|
| 2930 |
+
▁rít -2925
|
| 2931 |
+
dante -2926
|
| 2932 |
+
denes -2927
|
| 2933 |
+
derno -2928
|
| 2934 |
+
enmas -2929
|
| 2935 |
+
fista -2930
|
| 2936 |
+
gnora -2931
|
| 2937 |
+
hente -2932
|
| 2938 |
+
irlin -2933
|
| 2939 |
+
lutón -2934
|
| 2940 |
+
ocina -2935
|
| 2941 |
+
porte -2936
|
| 2942 |
+
rador -2937
|
| 2943 |
+
rwell -2938
|
| 2944 |
+
terno -2939
|
| 2945 |
+
torno -2940
|
| 2946 |
+
▁Deja -2941
|
| 2947 |
+
▁Júpi -2942
|
| 2948 |
+
▁Vala -2943
|
| 2949 |
+
▁cerv -2944
|
| 2950 |
+
▁iPod -2945
|
| 2951 |
+
▁jazz -2946
|
| 2952 |
+
▁roja -2947
|
| 2953 |
+
▁ósea -2948
|
| 2954 |
+
Chente -2949
|
| 2955 |
+
Orwell -2950
|
| 2956 |
+
Tienes -2951
|
| 2957 |
+
acrófa -2952
|
| 2958 |
+
ahorro -2953
|
| 2959 |
+
ajuste -2954
|
| 2960 |
+
aladas -2955
|
| 2961 |
+
allero -2956
|
| 2962 |
+
amblan -2957
|
| 2963 |
+
anismo -2958
|
| 2964 |
+
arrica -2959
|
| 2965 |
+
bierno -2960
|
| 2966 |
+
brazos -2961
|
| 2967 |
+
carbón -2962
|
| 2968 |
+
cenden -2963
|
| 2969 |
+
ceptos -2964
|
| 2970 |
+
copios -2965
|
| 2971 |
+
culino -2966
|
| 2972 |
+
currió -2967
|
| 2973 |
+
cífica -2968
|
| 2974 |
+
diante -2969
|
| 2975 |
+
dillas -2970
|
| 2976 |
+
dióptr -2971
|
| 2977 |
+
ducida -2972
|
| 2978 |
+
eCodeC -2973
|
| 2979 |
+
ebarak -2974
|
| 2980 |
+
ecomen -2975
|
| 2981 |
+
ecquer -2976
|
| 2982 |
+
elente -2977
|
| 2983 |
+
empleo -2978
|
| 2984 |
+
encios -2979
|
| 2985 |
+
ensivo -2980
|
| 2986 |
+
ensual -2981
|
| 2987 |
+
entren -2982
|
| 2988 |
+
erapia -2983
|
| 2989 |
+
ernoul -2984
|
| 2990 |
+
erstel -2985
|
| 2991 |
+
ervida -2986
|
| 2992 |
+
estion -2987
|
| 2993 |
+
estruc -2988
|
| 2994 |
+
ficios -2989
|
| 2995 |
+
fisión -2990
|
| 2996 |
+
flicto -2991
|
| 2997 |
+
guetza -2992
|
| 2998 |
+
hatGPT -2993
|
| 2999 |
+
herard -2994
|
| 3000 |
+
hihiro -2995
|
| 3001 |
+
iantes -2996
|
| 3002 |
+
icilli -2997
|
| 3003 |
+
imento -2998
|
| 3004 |
+
inanci -2999
|
| 3005 |
+
alió -3000
|
| 3006 |
+
buen -3001
|
| 3007 |
+
uzca -3002
|
| 3008 |
+
▁Deb -3003
|
| 3009 |
+
▁Ori -3004
|
| 3010 |
+
▁dañ -3005
|
| 3011 |
+
duzca -3006
|
| 3012 |
+
gados -3007
|
| 3013 |
+
mados -3008
|
| 3014 |
+
▁Deba -3009
|
| 3015 |
+
▁Suda -3010
|
| 3016 |
+
▁audi -3011
|
| 3017 |
+
▁hipo -3012
|
| 3018 |
+
▁simp -3013
|
| 3019 |
+
▁siti -3014
|
| 3020 |
+
▁situ -3015
|
| 3021 |
+
buenas -3016
|
| 3022 |
+
chtitl -3017
|
| 3023 |
+
contro -3018
|
| 3024 |
+
icados -3019
|
| 3025 |
+
illado -3020
|
| 3026 |
+
inario -3021
|
| 3027 |
+
inista -3022
|
| 3028 |
+
iobrar -3023
|
| 3029 |
+
iomasa -3024
|
| 3030 |
+
iraldo -3025
|
| 3031 |
+
istóte -3026
|
| 3032 |
+
itcoin -3027
|
| 3033 |
+
jantes -3028
|
| 3034 |
+
jedrez -3029
|
| 3035 |
+
juegos -3030
|
| 3036 |
+
keting -3031
|
| 3037 |
+
kimber -3032
|
| 3038 |
+
labras -3033
|
| 3039 |
+
ladora -3034
|
| 3040 |
+
landra -3035
|
| 3041 |
+
lariza -3036
|
| 3042 |
+
lentes -3037
|
| 3043 |
+
lofase -3038
|
| 3044 |
+
lámina -3039
|
| 3045 |
+
lódico -3040
|
| 3046 |
+
matriz -3041
|
| 3047 |
+
millas -3042
|
| 3048 |
+
mitién -3043
|
| 3049 |
+
médula -3044
|
| 3050 |
+
nights -3045
|
| 3051 |
+
obbies -3046
|
| 3052 |
+
ocerte -3047
|
| 3053 |
+
oleros -3048
|
| 3054 |
+
omenta -3049
|
| 3055 |
+
onedas -3050
|
| 3056 |
+
ortino -3051
|
| 3057 |
+
osinas -3052
|
| 3058 |
+
pacito -3053
|
| 3059 |
+
pistón -3054
|
| 3060 |
+
presas -3055
|
| 3061 |
+
ramien -3056
|
| 3062 |
+
restre -3057
|
| 3063 |
+
revisa -3058
|
| 3064 |
+
riadna -3059
|
| 3065 |
+
servar -3060
|
| 3066 |
+
siones -3061
|
| 3067 |
+
tadura -3062
|
| 3068 |
+
tation -3063
|
| 3069 |
+
tativa -3064
|
| 3070 |
+
tedral -3065
|
| 3071 |
+
ticuer -3066
|
| 3072 |
+
tiempo -3067
|
| 3073 |
+
tituir -3068
|
| 3074 |
+
trasta -3069
|
| 3075 |
+
troali -3070
|
| 3076 |
+
truida -3071
|
| 3077 |
+
tudios -3072
|
| 3078 |
+
tuning -3073
|
| 3079 |
+
táfora -3074
|
| 3080 |
+
tónico -3075
|
| 3081 |
+
uclear -3076
|
| 3082 |
+
uronas -3077
|
| 3083 |
+
utable -3078
|
| 3084 |
+
xplica -3079
|
| 3085 |
+
zables -3080
|
| 3086 |
+
áticas -3081
|
| 3087 |
+
érmica -3082
|
| 3088 |
+
úmulos -3083
|
| 3089 |
+
▁Argen -3084
|
| 3090 |
+
▁Aumen -3085
|
| 3091 |
+
▁Ayala -3086
|
| 3092 |
+
▁Añade -3087
|
| 3093 |
+
▁Calif -3088
|
| 3094 |
+
▁Canad -3089
|
| 3095 |
+
▁Chich -3090
|
| 3096 |
+
▁Crick -3091
|
| 3097 |
+
▁Daddy -3092
|
| 3098 |
+
▁Emili -3093
|
| 3099 |
+
▁Estoy -3094
|
| 3100 |
+
▁Frida -3095
|
| 3101 |
+
▁Fuego -3096
|
| 3102 |
+
▁Grabó -3097
|
| 3103 |
+
▁Guela -3098
|
| 3104 |
+
▁Jessy -3099
|
| 3105 |
+
how -3100
|
| 3106 |
+
gráf -3101
|
| 3107 |
+
hain -3102
|
| 3108 |
+
lbán -3103
|
| 3109 |
+
rino -3104
|
| 3110 |
+
ésar -3105
|
| 3111 |
+
▁Coy -3106
|
| 3112 |
+
curio -3107
|
| 3113 |
+
enhow -3108
|
| 3114 |
+
ietzs -3109
|
| 3115 |
+
lejan -3110
|
| 3116 |
+
piste -3111
|
| 3117 |
+
uerte -3112
|
| 3118 |
+
voluc -3113
|
| 3119 |
+
yería -3114
|
| 3120 |
+
ático -3115
|
| 3121 |
+
▁actu -3116
|
| 3122 |
+
▁anon -3117
|
| 3123 |
+
▁empu -3118
|
| 3124 |
+
▁fino -3119
|
| 3125 |
+
▁quie -3120
|
| 3126 |
+
▁sino -3121
|
| 3127 |
+
▁tuyo -3122
|
| 3128 |
+
▁usan -3123
|
| 3129 |
+
▁usar -3124
|
| 3130 |
+
adrino -3125
|
| 3131 |
+
limina -3126
|
| 3132 |
+
menino -3127
|
| 3133 |
+
onitas -3128
|
| 3134 |
+
tilada -3129
|
| 3135 |
+
tográf -3130
|
| 3136 |
+
ántico -3131
|
| 3137 |
+
ósmico -3132
|
| 3138 |
+
▁Albán -3133
|
| 3139 |
+
▁Chain -3134
|
| 3140 |
+
▁César -3135
|
| 3141 |
+
▁Juana -3136
|
| 3142 |
+
▁Julio -3137
|
| 3143 |
+
▁Karol -3138
|
| 3144 |
+
▁López -3139
|
| 3145 |
+
▁Macin -3140
|
| 3146 |
+
▁Maldi -3141
|
| 3147 |
+
▁Malte -3142
|
| 3148 |
+
▁Manch -3143
|
| 3149 |
+
▁March -3144
|
| 3150 |
+
▁Marco -3145
|
| 3151 |
+
▁Marie -3146
|
| 3152 |
+
▁Marte -3147
|
| 3153 |
+
▁Mañan -3148
|
| 3154 |
+
▁Miran -3149
|
| 3155 |
+
▁Muele -3150
|
| 3156 |
+
▁Perpe -3151
|
| 3157 |
+
▁Pobre -3152
|
| 3158 |
+
▁Porfi -3153
|
| 3159 |
+
▁Reino -3154
|
| 3160 |
+
▁Saave -3155
|
| 3161 |
+
▁Sócra -3156
|
| 3162 |
+
▁Teles -3157
|
| 3163 |
+
▁Teoti -3158
|
| 3164 |
+
▁Traba -3159
|
| 3165 |
+
▁Urano -3160
|
| 3166 |
+
▁Venus -3161
|
| 3167 |
+
▁abier -3162
|
| 3168 |
+
▁abril -3163
|
| 3169 |
+
▁acces -3164
|
| 3170 |
+
▁adies -3165
|
| 3171 |
+
▁agric -3166
|
| 3172 |
+
▁aguas -3167
|
| 3173 |
+
▁ahora -3168
|
| 3174 |
+
▁algas -3169
|
| 3175 |
+
▁amper -3170
|
| 3176 |
+
▁ancla -3171
|
| 3177 |
+
▁anorm -3172
|
| 3178 |
+
▁asilo -3173
|
| 3179 |
+
▁aumen -3174
|
| 3180 |
+
▁autón -3175
|
| 3181 |
+
▁ayuda -3176
|
| 3182 |
+
▁beber -3177
|
| 3183 |
+
▁buscó -3178
|
| 3184 |
+
▁calma -3179
|
| 3185 |
+
▁campo -3180
|
| 3186 |
+
▁cargo -3181
|
| 3187 |
+
▁cerve -3182
|
| 3188 |
+
▁clara -3183
|
| 3189 |
+
▁comba -3184
|
| 3190 |
+
▁consu -3185
|
| 3191 |
+
▁costo -3186
|
| 3192 |
+
▁democ -3187
|
| 3193 |
+
▁dimen -3188
|
| 3194 |
+
▁doble -3189
|
| 3195 |
+
▁duele -3190
|
| 3196 |
+
▁embed -3191
|
| 3197 |
+
▁encad -3192
|
| 3198 |
+
▁enfri -3193
|
| 3199 |
+
▁extre -3194
|
| 3200 |
+
▁famos -3195
|
| 3201 |
+
▁fibra -3196
|
| 3202 |
+
▁filos -3197
|
| 3203 |
+
▁formó -3198
|
| 3204 |
+
▁forta -3199
|
| 3205 |
+
abes -3200
|
| 3206 |
+
emon -3201
|
| 3207 |
+
gave -3202
|
| 3208 |
+
ideñ -3203
|
| 3209 |
+
mbro -3204
|
| 3210 |
+
mite -3205
|
| 3211 |
+
olem -3206
|
| 3212 |
+
onsi -3207
|
| 3213 |
+
peto -3208
|
| 3214 |
+
tamb -3209
|
| 3215 |
+
ultó -3210
|
| 3216 |
+
▁Cab -3211
|
| 3217 |
+
▁Hab -3212
|
| 3218 |
+
▁ató -3213
|
| 3219 |
+
▁año -3214
|
| 3220 |
+
▁déc -3215
|
| 3221 |
+
▁fem -3216
|
| 3222 |
+
▁roj -3217
|
| 3223 |
+
▁vem -3218
|
| 3224 |
+
ablan -3219
|
| 3225 |
+
brios -3220
|
| 3226 |
+
gitud -3221
|
| 3227 |
+
larga -3222
|
| 3228 |
+
lores -3223
|
| 3229 |
+
mores -3224
|
| 3230 |
+
ortal -3225
|
| 3231 |
+
taura -3226
|
| 3232 |
+
videñ -3227
|
| 3233 |
+
▁Code -3228
|
| 3234 |
+
▁Like -3229
|
| 3235 |
+
▁Pide -3230
|
| 3236 |
+
▁Prac -3231
|
| 3237 |
+
▁Puer -3232
|
| 3238 |
+
▁Rift -3233
|
| 3239 |
+
▁cree -3234
|
| 3240 |
+
▁creó -3235
|
| 3241 |
+
▁flex -3236
|
| 3242 |
+
▁máxi -3237
|
| 3243 |
+
▁rojo -3238
|
| 3244 |
+
Amores -3239
|
| 3245 |
+
esultó -3240
|
| 3246 |
+
iembro -3241
|
| 3247 |
+
isores -3242
|
| 3248 |
+
oleman -3243
|
| 3249 |
+
ostado -3244
|
| 3250 |
+
riente -3245
|
| 3251 |
+
tables -3246
|
| 3252 |
+
tribuy -3247
|
| 3253 |
+
▁Cabos -3248
|
| 3254 |
+
▁Demon -3249
|
| 3255 |
+
▁Fonsi -3250
|
| 3256 |
+
▁agave -3251
|
| 3257 |
+
▁crema -3252
|
| 3258 |
+
▁detal -3253
|
| 3259 |
+
▁galax -3254
|
| 3260 |
+
▁ganar -3255
|
| 3261 |
+
▁haber -3256
|
| 3262 |
+
▁hacen -3257
|
| 3263 |
+
▁hecha -3258
|
| 3264 |
+
▁hielo -3259
|
| 3265 |
+
▁hindu -3260
|
| 3266 |
+
▁hongo -3261
|
| 3267 |
+
▁honra -3262
|
| 3268 |
+
▁impar -3263
|
| 3269 |
+
▁jugad -3264
|
| 3270 |
+
▁juici -3265
|
| 3271 |
+
▁kilob -3266
|
| 3272 |
+
▁leche -3267
|
| 3273 |
+
▁lengu -3268
|
| 3274 |
+
▁libre -3269
|
| 3275 |
+
▁litro -3270
|
| 3276 |
+
▁llegó -3271
|
| 3277 |
+
▁logró -3272
|
| 3278 |
+
▁lunas -3273
|
| 3279 |
+
▁mayas -3274
|
| 3280 |
+
▁menor -3275
|
| 3281 |
+
▁meses -3276
|
| 3282 |
+
▁milen -3277
|
| 3283 |
+
▁molde -3278
|
| 3284 |
+
▁moral -3279
|
| 3285 |
+
▁mover -3280
|
| 3286 |
+
▁mueve -3281
|
| 3287 |
+
▁museo -3282
|
| 3288 |
+
▁narra -3283
|
| 3289 |
+
▁norte -3284
|
| 3290 |
+
▁opera -3285
|
| 3291 |
+
▁partí -3286
|
| 3292 |
+
▁pasar -3287
|
| 3293 |
+
▁pasos -3288
|
| 3294 |
+
▁pedir -3289
|
| 3295 |
+
▁perro -3290
|
| 3296 |
+
▁pesto -3291
|
| 3297 |
+
▁plena -3292
|
| 3298 |
+
▁polvo -3293
|
| 3299 |
+
▁prior -3294
|
| 3300 |
+
▁promp -3295
|
| 3301 |
+
▁queso -3296
|
| 3302 |
+
▁quien -3297
|
| 3303 |
+
▁recib -3298
|
| 3304 |
+
▁recol -3299
|
| 3305 |
+
Au -3300
|
| 3306 |
+
Tu -3301
|
| 3307 |
+
dó -3302
|
| 3308 |
+
Tus -3303
|
| 3309 |
+
his -3304
|
| 3310 |
+
hon -3305
|
| 3311 |
+
iño -3306
|
| 3312 |
+
orn -3307
|
| 3313 |
+
vis -3308
|
| 3314 |
+
▁lú -3309
|
| 3315 |
+
Auto -3310
|
| 3316 |
+
Para -3311
|
| 3317 |
+
Tusa -3312
|
| 3318 |
+
ares -3313
|
| 3319 |
+
asol -3314
|
| 3320 |
+
dias -3315
|
| 3321 |
+
edia -3316
|
| 3322 |
+
hisp -3317
|
| 3323 |
+
idal -3318
|
| 3324 |
+
ider -3319
|
| 3325 |
+
idor -3320
|
| 3326 |
+
masa -3321
|
| 3327 |
+
teor -3322
|
| 3328 |
+
thon -3323
|
| 3329 |
+
tido -3324
|
| 3330 |
+
trol -3325
|
| 3331 |
+
▁Den -3326
|
| 3332 |
+
▁Eri -3327
|
| 3333 |
+
▁ele -3328
|
| 3334 |
+
▁era -3329
|
| 3335 |
+
▁fas -3330
|
| 3336 |
+
▁fes -3331
|
| 3337 |
+
▁org -3332
|
| 3338 |
+
▁rol -3333
|
| 3339 |
+
▁sex -3334
|
| 3340 |
+
Gasol -3335
|
| 3341 |
+
cioso -3336
|
| 3342 |
+
ideró -3337
|
| 3343 |
+
intro -3338
|
| 3344 |
+
ornia -3339
|
| 3345 |
+
recom -3340
|
| 3346 |
+
visar -3341
|
| 3347 |
+
ython -3342
|
| 3348 |
+
▁Bang -3343
|
| 3349 |
+
▁Char -3344
|
| 3350 |
+
▁Erik -3345
|
| 3351 |
+
▁Niño -3346
|
| 3352 |
+
▁cato -3347
|
| 3353 |
+
▁lúpu -3348
|
| 3354 |
+
Python -3349
|
| 3355 |
+
cibles -3350
|
| 3356 |
+
idalgo -3351
|
| 3357 |
+
istral -3352
|
| 3358 |
+
omedia -3353
|
| 3359 |
+
onista -3354
|
| 3360 |
+
umidor -3355
|
| 3361 |
+
▁Denom -3356
|
| 3362 |
+
▁Eriks -3357
|
| 3363 |
+
▁Qatar -3358
|
| 3364 |
+
▁amasa -3359
|
| 3365 |
+
▁enrol -3360
|
| 3366 |
+
▁fases -3361
|
| 3367 |
+
▁fundó -3362
|
| 3368 |
+
▁repas -3363
|
| 3369 |
+
▁repos -3364
|
| 3370 |
+
▁resum -3365
|
| 3371 |
+
▁retór -3366
|
| 3372 |
+
▁rodil -3367
|
| 3373 |
+
▁rojiz -3368
|
| 3374 |
+
▁sabes -3369
|
| 3375 |
+
▁salir -3370
|
| 3376 |
+
▁salud -3371
|
| 3377 |
+
▁satis -3372
|
| 3378 |
+
▁secar -3373
|
| 3379 |
+
▁singu -3374
|
| 3380 |
+
▁siqui -3375
|
| 3381 |
+
▁somos -3376
|
| 3382 |
+
▁suave -3377
|
| 3383 |
+
▁suele -3378
|
| 3384 |
+
▁surre -3379
|
| 3385 |
+
▁tarea -3380
|
| 3386 |
+
▁tocan -3381
|
| 3387 |
+
▁torta -3382
|
| 3388 |
+
▁tromp -3383
|
| 3389 |
+
▁usado -3384
|
| 3390 |
+
▁vacío -3385
|
| 3391 |
+
▁valió -3386
|
| 3392 |
+
▁varia -3387
|
| 3393 |
+
▁varía -3388
|
| 3394 |
+
▁vemos -3389
|
| 3395 |
+
▁verde -3390
|
| 3396 |
+
▁verif -3391
|
| 3397 |
+
▁verso -3392
|
| 3398 |
+
▁viaja -3393
|
| 3399 |
+
▁viaje -3394
|
| 3400 |
+
▁ético -3395
|
| 3401 |
+
▁éxito -3396
|
| 3402 |
+
▁ícono -3397
|
| 3403 |
+
▁índic -3398
|
| 3404 |
+
▁único -3399
|
| 3405 |
+
ty -3400
|
| 3406 |
+
Ín -3401
|
| 3407 |
+
Tun -3402
|
| 3408 |
+
cue -3403
|
| 3409 |
+
dom -3404
|
| 3410 |
+
nos -3405
|
| 3411 |
+
oco -3406
|
| 3412 |
+
rof -3407
|
| 3413 |
+
xar -3408
|
| 3414 |
+
▁(≈ -3409
|
| 3415 |
+
Coco -3410
|
| 3416 |
+
GPUs -3411
|
| 3417 |
+
arne -3412
|
| 3418 |
+
dome -3413
|
| 3419 |
+
ixar -3414
|
| 3420 |
+
izon -3415
|
| 3421 |
+
olor -3416
|
| 3422 |
+
oras -3417
|
| 3423 |
+
osto -3418
|
| 3424 |
+
tave -3419
|
| 3425 |
+
▁Pty -3420
|
| 3426 |
+
▁ceb -3421
|
| 3427 |
+
▁key -3422
|
| 3428 |
+
▁pis -3423
|
| 3429 |
+
María -3424
|
| 3430 |
+
Tunes -3425
|
| 3431 |
+
cisco -3426
|
| 3432 |
+
menos -3427
|
| 3433 |
+
renov -3428
|
| 3434 |
+
rofeo -3429
|
| 3435 |
+
▁Acab -3430
|
| 3436 |
+
▁Sodi -3431
|
| 3437 |
+
▁enan -3432
|
| 3438 |
+
▁keyn -3433
|
| 3439 |
+
▁nove -3434
|
| 3440 |
+
▁rock -3435
|
| 3441 |
+
Taylor -3436
|
| 3442 |
+
cademy -3437
|
| 3443 |
+
cuelas -3438
|
| 3444 |
+
izonte -3439
|
| 3445 |
+
tornos -3440
|
| 3446 |
+
ustave -3441
|
| 3447 |
+
viento -3442
|
| 3448 |
+
Índice -3443
|
| 3449 |
+
ándome -3444
|
| 3450 |
+
ómenos -3445
|
| 3451 |
+
▁Olvid -3446
|
| 3452 |
+
▁Pixar -3447
|
| 3453 |
+
▁carne -3448
|
| 3454 |
+
▁dolor -3449
|
| 3455 |
+
▁embri -3450
|
| 3456 |
+
▁expon -3451
|
| 3457 |
+
▁horas -3452
|
| 3458 |
+
▁ingen -3453
|
| 3459 |
+
▁mosto -3454
|
| 3460 |
+
Alberto -3455
|
| 3461 |
+
Algunos -3456
|
| 3462 |
+
América -3457
|
| 3463 |
+
Ariadna -3458
|
| 3464 |
+
Comedia -3459
|
| 3465 |
+
Connell -3460
|
| 3466 |
+
Energía -3461
|
| 3467 |
+
Explica -3462
|
| 3468 |
+
Ficción -3463
|
| 3469 |
+
Jalisco -3464
|
| 3470 |
+
Métodos -3465
|
| 3471 |
+
Tomoaki -3466
|
| 3472 |
+
Vicente -3467
|
| 3473 |
+
ablante -3468
|
| 3474 |
+
alistas -3469
|
| 3475 |
+
astillo -3470
|
| 3476 |
+
atación -3471
|
| 3477 |
+
ayleigh -3472
|
| 3478 |
+
biriche -3473
|
| 3479 |
+
carados -3474
|
| 3480 |
+
cifista -3475
|
| 3481 |
+
corados -3476
|
| 3482 |
+
crimina -3477
|
| 3483 |
+
cuación -3478
|
| 3484 |
+
culares -3479
|
| 3485 |
+
cuperar -3480
|
| 3486 |
+
cánicas -3481
|
| 3487 |
+
cúmulos -3482
|
| 3488 |
+
dificar -3483
|
| 3489 |
+
dmisión -3484
|
| 3490 |
+
dríguez -3485
|
| 3491 |
+
eCodeCa -3486
|
| 3492 |
+
ectados -3487
|
| 3493 |
+
ecífica -3488
|
| 3494 |
+
ediante -3489
|
| 3495 |
+
emenino -3490
|
| 3496 |
+
enguaje -3491
|
| 3497 |
+
enhower -3492
|
| 3498 |
+
entista -3493
|
| 3499 |
+
ercurio -3494
|
| 3500 |
+
ernante -3495
|
| 3501 |
+
eroides -3496
|
| 3502 |
+
esoamer -3497
|
| 3503 |
+
espejos -3498
|
| 3504 |
+
expulsa -3499
|
| 3505 |
+
asú -3500
|
| 3506 |
+
cún -3501
|
| 3507 |
+
ean -3502
|
| 3508 |
+
nas -3503
|
| 3509 |
+
pun -3504
|
| 3510 |
+
Temp -3505
|
| 3511 |
+
acer -3506
|
| 3512 |
+
asos -3507
|
| 3513 |
+
cean -3508
|
| 3514 |
+
omas -3509
|
| 3515 |
+
teca -3510
|
| 3516 |
+
ueño -3511
|
| 3517 |
+
▁All -3512
|
| 3518 |
+
▁dar -3513
|
| 3519 |
+
▁van -3514
|
| 3520 |
+
Ocean -3515
|
| 3521 |
+
Padre -3516
|
| 3522 |
+
Pasos -3517
|
| 3523 |
+
artir -3518
|
| 3524 |
+
asúch -3519
|
| 3525 |
+
cribe -3520
|
| 3526 |
+
entra -3521
|
| 3527 |
+
frica -3522
|
| 3528 |
+
hibía -3523
|
| 3529 |
+
lares -3524
|
| 3530 |
+
maico -3525
|
| 3531 |
+
punto -3526
|
| 3532 |
+
tafol -3527
|
| 3533 |
+
▁Bene -3528
|
| 3534 |
+
▁Sena -3529
|
| 3535 |
+
▁Zapa -3530
|
| 3536 |
+
▁ayer -3531
|
| 3537 |
+
▁enig -3532
|
| 3538 |
+
▁país -3533
|
| 3539 |
+
Modelo -3534
|
| 3540 |
+
Templo -3535
|
| 3541 |
+
eleste -3536
|
| 3542 |
+
poteca -3537
|
| 3543 |
+
rendas -3538
|
| 3544 |
+
África -3539
|
| 3545 |
+
▁Hacer -3540
|
| 3546 |
+
▁Santo -3541
|
| 3547 |
+
▁conme -3542
|
| 3548 |
+
▁corta -3543
|
| 3549 |
+
▁intra -3544
|
| 3550 |
+
▁mante -3545
|
| 3551 |
+
▁ritmo -3546
|
| 3552 |
+
▁serte -3547
|
| 3553 |
+
▁sueño -3548
|
| 3554 |
+
▁traza -3549
|
| 3555 |
+
asúchil -3550
|
| 3556 |
+
cializa -3551
|
| 3557 |
+
erencia -3552
|
| 3558 |
+
facción -3553
|
| 3559 |
+
fectura -3554
|
| 3560 |
+
ganizar -3555
|
| 3561 |
+
gonista -3556
|
| 3562 |
+
hatbots -3557
|
| 3563 |
+
ilarina -3558
|
| 3564 |
+
inturón -3559
|
| 3565 |
+
ipolite -3560
|
| 3566 |
+
iración -3561
|
| 3567 |
+
iraliza -3562
|
| 3568 |
+
irribon -3563
|
| 3569 |
+
istóbal -3564
|
| 3570 |
+
iversas -3565
|
| 3571 |
+
joyería -3566
|
| 3572 |
+
ladores -3567
|
| 3573 |
+
lección -3568
|
| 3574 |
+
lemaico -3569
|
| 3575 |
+
leopera -3570
|
| 3576 |
+
ligroso -3571
|
| 3577 |
+
métrica -3572
|
| 3578 |
+
necesar -3573
|
| 3579 |
+
néticos -3574
|
| 3580 |
+
núcleos -3575
|
| 3581 |
+
odefici -3576
|
| 3582 |
+
olfgang -3577
|
| 3583 |
+
omiendo -3578
|
| 3584 |
+
ongitud -3579
|
| 3585 |
+
pectiva -3580
|
| 3586 |
+
porción -3581
|
| 3587 |
+
presión -3582
|
| 3588 |
+
ptativa -3583
|
| 3589 |
+
quieren -3584
|
| 3590 |
+
reserva -3585
|
| 3591 |
+
rvatura -3586
|
| 3592 |
+
tafolio -3587
|
| 3593 |
+
taliano -3588
|
| 3594 |
+
también -3589
|
| 3595 |
+
tarista -3590
|
| 3596 |
+
tentado -3591
|
| 3597 |
+
tinente -3592
|
| 3598 |
+
tivista -3593
|
| 3599 |
+
tolones -3594
|
| 3600 |
+
trained -3595
|
| 3601 |
+
tribuyó -3596
|
| 3602 |
+
trospec -3597
|
| 3603 |
+
tunidad -3598
|
| 3604 |
+
uchados -3599
|
| 3605 |
+
Fe -3600
|
| 3606 |
+
.), -3601
|
| 3607 |
+
Bad -3602
|
| 3608 |
+
Bic -3603
|
| 3609 |
+
Cle -3604
|
| 3610 |
+
Mid -3605
|
| 3611 |
+
aco -3606
|
| 3612 |
+
air -3607
|
| 3613 |
+
min -3608
|
| 3614 |
+
ron -3609
|
| 3615 |
+
▁(+ -3610
|
| 3616 |
+
▁Un -3611
|
| 3617 |
+
Fear -3612
|
| 3618 |
+
aird -3613
|
| 3619 |
+
alen -3614
|
| 3620 |
+
ardo -3615
|
| 3621 |
+
aron -3616
|
| 3622 |
+
bora -3617
|
| 3623 |
+
essi -3618
|
| 3624 |
+
fier -3619
|
| 3625 |
+
ilia -3620
|
| 3626 |
+
isis -3621
|
| 3627 |
+
ites -3622
|
| 3628 |
+
olón -3623
|
| 3629 |
+
quea -3624
|
| 3630 |
+
real -3625
|
| 3631 |
+
tera -3626
|
| 3632 |
+
tien -3627
|
| 3633 |
+
▁Mid -3628
|
| 3634 |
+
▁Oro -3629
|
| 3635 |
+
▁tas -3630
|
| 3636 |
+
Algún -3631
|
| 3637 |
+
Clear -3632
|
| 3638 |
+
enera -3633
|
| 3639 |
+
ranch -3634
|
| 3640 |
+
ronía -3635
|
| 3641 |
+
xígen -3636
|
| 3642 |
+
▁esos -3637
|
| 3643 |
+
Genera -3638
|
| 3644 |
+
Método -3639
|
| 3645 |
+
amilia -3640
|
| 3646 |
+
colomb -3641
|
| 3647 |
+
erones -3642
|
| 3648 |
+
fianza -3643
|
| 3649 |
+
fieres -3644
|
| 3650 |
+
rearon -3645
|
| 3651 |
+
tienen -3646
|
| 3652 |
+
xígeno -3647
|
| 3653 |
+
▁Baird -3648
|
| 3654 |
+
▁Colón -3649
|
| 3655 |
+
▁Messi -3650
|
| 3656 |
+
▁Midjo -3651
|
| 3657 |
+
▁Palen -3652
|
| 3658 |
+
▁armon -3653
|
| 3659 |
+
▁dente -3654
|
| 3660 |
+
▁están -3655
|
| 3661 |
+
▁madre -3656
|
| 3662 |
+
▁ranch -3657
|
| 3663 |
+
▁tasas -3658
|
| 3664 |
+
Bichota -3659
|
| 3665 |
+
Fearles -3660
|
| 3666 |
+
borales -3661
|
| 3667 |
+
familia -3662
|
| 3668 |
+
iclismo -3663
|
| 3669 |
+
lificar -3664
|
| 3670 |
+
materia -3665
|
| 3671 |
+
ucleico -3666
|
| 3672 |
+
ucleóti -3667
|
| 3673 |
+
udaloso -3668
|
| 3674 |
+
uerrero -3669
|
| 3675 |
+
umación -3670
|
| 3676 |
+
umamoto -3671
|
| 3677 |
+
ustiano -3672
|
| 3678 |
+
videñas -3673
|
| 3679 |
+
witches -3674
|
| 3680 |
+
ámetros -3675
|
| 3681 |
+
énticas -3676
|
| 3682 |
+
ésticos -3677
|
| 3683 |
+
ísticas -3678
|
| 3684 |
+
▁Airlin -3679
|
| 3685 |
+
▁Andrés -3680
|
| 3686 |
+
▁Argent -3681
|
| 3687 |
+
▁Bancos -3682
|
| 3688 |
+
▁Barrio -3683
|
| 3689 |
+
▁Cancún -3684
|
| 3690 |
+
▁Carbon -3685
|
| 3691 |
+
▁Carran -3686
|
| 3692 |
+
▁Causas -3687
|
| 3693 |
+
▁Ciudad -3688
|
| 3694 |
+
▁Cocina -3689
|
| 3695 |
+
▁Consta -3690
|
| 3696 |
+
▁Consul -3691
|
| 3697 |
+
▁Debajo -3692
|
| 3698 |
+
▁Descas -3693
|
| 3699 |
+
▁Elisha -3694
|
| 3700 |
+
▁Engaña -3695
|
| 3701 |
+
▁Enseña -3696
|
| 3702 |
+
▁Eterno -3697
|
| 3703 |
+
▁Existo -3698
|
| 3704 |
+
▁Eólica -3699
|
| 3705 |
+
cí -3700
|
| 3706 |
+
iy -3701
|
| 3707 |
+
lí -3702
|
| 3708 |
+
Can -3703
|
| 3709 |
+
Kiy -3704
|
| 3710 |
+
Tol -3705
|
| 3711 |
+
eif -3706
|
| 3712 |
+
fre -3707
|
| 3713 |
+
ocí -3708
|
| 3714 |
+
ore -3709
|
| 3715 |
+
ple -3710
|
| 3716 |
+
rey -3711
|
| 3717 |
+
áci -3712
|
| 3718 |
+
▁(' -3713
|
| 3719 |
+
▁Ey -3714
|
| 3720 |
+
▁ad -3715
|
| 3721 |
+
▁aj -3716
|
| 3722 |
+
▁er -3717
|
| 3723 |
+
Leif -3718
|
| 3724 |
+
aces -3719
|
| 3725 |
+
chas -3720
|
| 3726 |
+
líci -3721
|
| 3727 |
+
onos -3722
|
| 3728 |
+
pple -3723
|
| 3729 |
+
tack -3724
|
| 3730 |
+
▁dej -3725
|
| 3731 |
+
Stack -3726
|
| 3732 |
+
Tolle -3727
|
| 3733 |
+
cando -3728
|
| 3734 |
+
espec -3729
|
| 3735 |
+
josos -3730
|
| 3736 |
+
lorey -3731
|
| 3737 |
+
ácido -3732
|
| 3738 |
+
▁Eyes -3733
|
| 3739 |
+
▁ajen -3734
|
| 3740 |
+
▁aven -3735
|
| 3741 |
+
▁dore -3736
|
| 3742 |
+
▁eres -3737
|
| 3743 |
+
▁rica -3738
|
| 3744 |
+
▁tuvo -3739
|
| 3745 |
+
espect -3740
|
| 3746 |
+
fuerzo -3741
|
| 3747 |
+
icarse -3742
|
| 3748 |
+
mation -3743
|
| 3749 |
+
pelado -3744
|
| 3750 |
+
quetes -3745
|
| 3751 |
+
rgenes -3746
|
| 3752 |
+
áficas -3747
|
| 3753 |
+
▁Apple -3748
|
| 3754 |
+
▁refin -3749
|
| 3755 |
+
▁tonos -3750
|
| 3756 |
+
▁vivos -3751
|
| 3757 |
+
▁única -3752
|
| 3758 |
+
espectá -3753
|
| 3759 |
+
imation -3754
|
| 3760 |
+
ráficas -3755
|
| 3761 |
+
vocando -3756
|
| 3762 |
+
írgenes -3757
|
| 3763 |
+
▁Conocí -3758
|
| 3764 |
+
▁Famosa -3759
|
| 3765 |
+
▁Filtra -3760
|
| 3766 |
+
▁Florey -3761
|
| 3767 |
+
▁Fridas -3762
|
| 3768 |
+
▁Futuro -3763
|
| 3769 |
+
▁Física -3764
|
| 3770 |
+
▁García -3765
|
| 3771 |
+
▁Giocon -3766
|
| 3772 |
+
▁Graham -3767
|
| 3773 |
+
▁Hablar -3768
|
| 3774 |
+
▁Hernán -3769
|
| 3775 |
+
▁Ignora -3770
|
| 3776 |
+
▁Invier -3771
|
| 3777 |
+
▁Juárez -3772
|
| 3778 |
+
▁Latino -3773
|
| 3779 |
+
▁Lionel -3774
|
| 3780 |
+
▁Litera -3775
|
| 3781 |
+
▁Macera -3776
|
| 3782 |
+
▁Madero -3777
|
| 3783 |
+
▁Madura -3778
|
| 3784 |
+
▁Mancha -3779
|
| 3785 |
+
▁Mesoam -3780
|
| 3786 |
+
▁Meucci -3781
|
| 3787 |
+
▁Mezcla -3782
|
| 3788 |
+
▁Neptun -3783
|
| 3789 |
+
▁Neruda -3784
|
| 3790 |
+
▁Ocasio -3785
|
| 3791 |
+
▁Oculus -3786
|
| 3792 |
+
▁Origen -3787
|
| 3793 |
+
▁Perros -3788
|
| 3794 |
+
▁Plutón -3789
|
| 3795 |
+
▁Poetas -3790
|
| 3796 |
+
▁Premio -3791
|
| 3797 |
+
▁Primer -3792
|
| 3798 |
+
▁Proces -3793
|
| 3799 |
+
▁Prueba -3794
|
| 3800 |
+
▁Reduce -3795
|
| 3801 |
+
▁Ripoll -3796
|
| 3802 |
+
▁Runner -3797
|
| 3803 |
+
▁Sancho -3798
|
| 3804 |
+
▁Taylor -3799
|
| 3805 |
+
?' -3800
|
| 3806 |
+
CP -3801
|
| 3807 |
+
IF -3802
|
| 3808 |
+
Te -3803
|
| 3809 |
+
ew -3804
|
| 3810 |
+
Blo -3805
|
| 3811 |
+
IFA -3806
|
| 3812 |
+
ewt -3807
|
| 3813 |
+
low -3808
|
| 3814 |
+
win -3809
|
| 3815 |
+
áti -3810
|
| 3816 |
+
▁ab -3811
|
| 3817 |
+
cape -3812
|
| 3818 |
+
flow -3813
|
| 3819 |
+
▁Mic -3814
|
| 3820 |
+
▁Nav -3815
|
| 3821 |
+
▁TCP -3816
|
| 3822 |
+
▁ali -3817
|
| 3823 |
+
▁cum -3818
|
| 3824 |
+
▁eso -3819
|
| 3825 |
+
▁flu -3820
|
| 3826 |
+
arwin -3821
|
| 3827 |
+
colos -3822
|
| 3828 |
+
ecero -3823
|
| 3829 |
+
ersos -3824
|
| 3830 |
+
ewton -3825
|
| 3831 |
+
iería -3826
|
| 3832 |
+
átira -3827
|
| 3833 |
+
▁FIFA -3828
|
| 3834 |
+
▁Pier -3829
|
| 3835 |
+
▁abar -3830
|
| 3836 |
+
▁asum -3831
|
| 3837 |
+
▁desh -3832
|
| 3838 |
+
▁detr -3833
|
| 3839 |
+
terios -3834
|
| 3840 |
+
▁Navar -3835
|
| 3841 |
+
▁asumi -3836
|
| 3842 |
+
▁conci -3837
|
| 3843 |
+
▁conta -3838
|
| 3844 |
+
▁flujo -3839
|
| 3845 |
+
▁marzo -3840
|
| 3846 |
+
demanda -3841
|
| 3847 |
+
ráticas -3842
|
| 3848 |
+
tambres -3843
|
| 3849 |
+
terioso -3844
|
| 3850 |
+
tocolos -3845
|
| 3851 |
+
verflow -3846
|
| 3852 |
+
▁Darwin -3847
|
| 3853 |
+
▁Escape -3848
|
| 3854 |
+
▁Newton -3849
|
| 3855 |
+
▁Pierre -3850
|
| 3856 |
+
▁Teotih -3851
|
| 3857 |
+
▁Volver -3852
|
| 3858 |
+
▁Zapata -3853
|
| 3859 |
+
▁abarca -3854
|
| 3860 |
+
▁acceso -3855
|
| 3861 |
+
▁acroba -3856
|
| 3862 |
+
▁afecto -3857
|
| 3863 |
+
▁ajenas -3858
|
| 3864 |
+
▁ajusta -3859
|
| 3865 |
+
▁alcanz -3860
|
| 3866 |
+
▁alemán -3861
|
| 3867 |
+
▁altera -3862
|
| 3868 |
+
▁amaril -3863
|
| 3869 |
+
▁aplica -3864
|
| 3870 |
+
▁asumió -3865
|
| 3871 |
+
▁atmosf -3866
|
| 3872 |
+
▁austri -3867
|
| 3873 |
+
▁aéreas -3868
|
| 3874 |
+
▁bebida -3869
|
| 3875 |
+
▁blanco -3870
|
| 3876 |
+
▁básico -3871
|
| 3877 |
+
▁cables -3872
|
| 3878 |
+
▁causan -3873
|
| 3879 |
+
▁cebada -3874
|
| 3880 |
+
▁claras -3875
|
| 3881 |
+
▁compri -3876
|
| 3882 |
+
▁conduc -3877
|
| 3883 |
+
▁consul -3878
|
| 3884 |
+
▁contac -3879
|
| 3885 |
+
▁contex -3880
|
| 3886 |
+
▁corpus -3881
|
| 3887 |
+
▁corres -3882
|
| 3888 |
+
▁costos -3883
|
| 3889 |
+
▁creado -3884
|
| 3890 |
+
▁cuerda -3885
|
| 3891 |
+
▁cumbre -3886
|
| 3892 |
+
▁cáncer -3887
|
| 3893 |
+
▁dañino -3888
|
| 3894 |
+
▁descan -3889
|
| 3895 |
+
▁detrás -3890
|
| 3896 |
+
▁discos -3891
|
| 3897 |
+
▁diseña -3892
|
| 3898 |
+
▁diseño -3893
|
| 3899 |
+
▁década -3894
|
| 3900 |
+
▁ejecut -3895
|
| 3901 |
+
▁elijas -3896
|
| 3902 |
+
▁embedd -3897
|
| 3903 |
+
▁empezó -3898
|
| 3904 |
+
▁empres -3899
|
| 3905 |
+
NA -3900
|
| 3906 |
+
Re -3901
|
| 3907 |
+
zc -3902
|
| 3908 |
+
ENA -3903
|
| 3909 |
+
ent -3904
|
| 3910 |
+
lea -3905
|
| 3911 |
+
nea -3906
|
| 3912 |
+
ort -3907
|
| 3913 |
+
zón -3908
|
| 3914 |
+
▁gl -3909
|
| 3915 |
+
RENA -3910
|
| 3916 |
+
Repu -3911
|
| 3917 |
+
cómo -3912
|
| 3918 |
+
▁hiz -3913
|
| 3919 |
+
▁lic -3914
|
| 3920 |
+
ORENA -3915
|
| 3921 |
+
cirug -3916
|
| 3922 |
+
cuent -3917
|
| 3923 |
+
ertad -3918
|
| 3924 |
+
legal -3919
|
| 3925 |
+
ortés -3920
|
| 3926 |
+
rutan -3921
|
| 3927 |
+
tarme -3922
|
| 3928 |
+
zclan -3923
|
| 3929 |
+
▁base -3924
|
| 3930 |
+
▁hizo -3925
|
| 3931 |
+
▁puro -3926
|
| 3932 |
+
MORENA -3927
|
| 3933 |
+
graria -3928
|
| 3934 |
+
ritura -3929
|
| 3935 |
+
taicos -3930
|
| 3936 |
+
tiones -3931
|
| 3937 |
+
vencia -3932
|
| 3938 |
+
▁Amade -3933
|
| 3939 |
+
▁Globo -3934
|
| 3940 |
+
▁Isaac -3935
|
| 3941 |
+
▁Notre -3936
|
| 3942 |
+
▁licor -3937
|
| 3943 |
+
▁nodos -3938
|
| 3944 |
+
▁nueva -3939
|
| 3945 |
+
▁ramas -3940
|
| 3946 |
+
▁razón -3941
|
| 3947 |
+
▁reens -3942
|
| 3948 |
+
▁segur -3943
|
| 3949 |
+
Hawking -3944
|
| 3950 |
+
cirugía -3945
|
| 3951 |
+
upuesto -3946
|
| 3952 |
+
zclando -3947
|
| 3953 |
+
▁Cortés -3948
|
| 3954 |
+
▁Morena -3949
|
| 3955 |
+
▁anular -3950
|
| 3956 |
+
▁contra -3951
|
| 3957 |
+
▁define -3952
|
| 3958 |
+
▁emplea -3953
|
| 3959 |
+
▁empuje -3954
|
| 3960 |
+
▁enanos -3955
|
| 3961 |
+
▁enfoca -3956
|
| 3962 |
+
▁episte -3957
|
| 3963 |
+
▁equipo -3958
|
| 3964 |
+
▁espesa -3959
|
| 3965 |
+
▁esquej -3960
|
| 3966 |
+
▁existe -3961
|
| 3967 |
+
▁exitos -3962
|
| 3968 |
+
▁exposi -3963
|
| 3969 |
+
▁eólica -3964
|
| 3970 |
+
▁famoso -3965
|
| 3971 |
+
▁fibras -3966
|
| 3972 |
+
▁figura -3967
|
| 3973 |
+
▁flauta -3968
|
| 3974 |
+
▁flores -3969
|
| 3975 |
+
▁formar -3970
|
| 3976 |
+
▁formas -3971
|
| 3977 |
+
▁fortal -3972
|
| 3978 |
+
▁fuerza -3973
|
| 3979 |
+
▁fusion -3974
|
| 3980 |
+
▁futuro -3975
|
| 3981 |
+
▁ganada -3976
|
| 3982 |
+
▁genoma -3977
|
| 3983 |
+
▁gratis -3978
|
| 3984 |
+
▁gratui -3979
|
| 3985 |
+
▁guiada -3980
|
| 3986 |
+
▁gustos -3981
|
| 3987 |
+
▁habían -3982
|
| 3988 |
+
▁harina -3983
|
| 3989 |
+
▁hierro -3984
|
| 3990 |
+
▁hierva -3985
|
| 3991 |
+
▁hornea -3986
|
| 3992 |
+
▁hélice -3987
|
| 3993 |
+
▁iPhone -3988
|
| 3994 |
+
▁iTunes -3989
|
| 3995 |
+
▁identi -3990
|
| 3996 |
+
▁ilegal -3991
|
| 3997 |
+
▁inició -3992
|
| 3998 |
+
▁inmers -3993
|
| 3999 |
+
▁innata -3994
|
| 4000 |
+
▁innova -3995
|
| 4001 |
+
▁interi -3996
|
| 4002 |
+
▁intrap -3997
|
| 4003 |
+
▁invern -3998
|
| 4004 |
+
▁ironía -3999
|
| 4005 |
+
Es -4000
|
| 4006 |
+
PT -4001
|
| 4007 |
+
ml -4002
|
| 4008 |
+
bel -4003
|
| 4009 |
+
olm -4004
|
| 4010 |
+
▁cá -4005
|
| 4011 |
+
▁et -4006
|
| 4012 |
+
linf -4007
|
| 4013 |
+
quem -4008
|
| 4014 |
+
rado -4009
|
| 4015 |
+
tors -4010
|
| 4016 |
+
▁Esp -4011
|
| 4017 |
+
▁GPT -4012
|
| 4018 |
+
▁Gog -4013
|
| 4019 |
+
▁arm -4014
|
| 4020 |
+
▁esc -4015
|
| 4021 |
+
▁etc -4016
|
| 4022 |
+
▁olm -4017
|
| 4023 |
+
▁vez -4018
|
| 4024 |
+
ierve -4019
|
| 4025 |
+
latón -4020
|
| 4026 |
+
llado -4021
|
| 4027 |
+
orías -4022
|
| 4028 |
+
table -4023
|
| 4029 |
+
tudes -4024
|
| 4030 |
+
▁Gogh -4025
|
| 4031 |
+
▁cáma -4026
|
| 4032 |
+
▁escu -4027
|
| 4033 |
+
▁haik -4028
|
| 4034 |
+
▁pavo -4029
|
| 4035 |
+
▁petr -4030
|
| 4036 |
+
▁reti -4031
|
| 4037 |
+
darios -4032
|
| 4038 |
+
quemar -4033
|
| 4039 |
+
ícolas -4034
|
| 4040 |
+
▁Alfon -4035
|
| 4041 |
+
▁Panza -4036
|
| 4042 |
+
▁charr -4037
|
| 4043 |
+
▁escud -4038
|
| 4044 |
+
▁estar -4039
|
| 4045 |
+
▁haiku -4040
|
| 4046 |
+
▁hones -4041
|
| 4047 |
+
▁olmec -4042
|
| 4048 |
+
▁petró -4043
|
| 4049 |
+
▁rojos -4044
|
| 4050 |
+
▁total -4045
|
| 4051 |
+
Química -4046
|
| 4052 |
+
licismo -4047
|
| 4053 |
+
linfoci -4048
|
| 4054 |
+
torsión -4049
|
| 4055 |
+
▁Espero -4050
|
| 4056 |
+
▁Hierve -4051
|
| 4057 |
+
▁Isabel -4052
|
| 4058 |
+
▁Platón -4053
|
| 4059 |
+
▁Stable -4054
|
| 4060 |
+
▁armado -4055
|
| 4061 |
+
▁cámara -4056
|
| 4062 |
+
▁célula -4057
|
| 4063 |
+
▁juegos -4058
|
| 4064 |
+
▁keynes -4059
|
| 4065 |
+
▁libres -4060
|
| 4066 |
+
▁lidera -4061
|
| 4067 |
+
▁llamas -4062
|
| 4068 |
+
▁llaves -4063
|
| 4069 |
+
▁lograr -4064
|
| 4070 |
+
▁límite -4065
|
| 4071 |
+
▁lógica -4066
|
| 4072 |
+
▁lúpulo -4067
|
| 4073 |
+
▁masiva -4068
|
| 4074 |
+
▁masivo -4069
|
| 4075 |
+
▁mejora -4070
|
| 4076 |
+
▁mental -4071
|
| 4077 |
+
▁meteor -4072
|
| 4078 |
+
▁mezcla -4073
|
| 4079 |
+
▁motiva -4074
|
| 4080 |
+
▁muerte -4075
|
| 4081 |
+
▁multiv -4076
|
| 4082 |
+
▁mágica -4077
|
| 4083 |
+
▁mágico -4078
|
| 4084 |
+
▁máximo -4079
|
| 4085 |
+
▁nanóme -4080
|
| 4086 |
+
▁normal -4081
|
| 4087 |
+
▁novela -4082
|
| 4088 |
+
▁núcleo -4083
|
| 4089 |
+
▁ocular -4084
|
| 4090 |
+
▁oferta -4085
|
| 4091 |
+
▁online -4086
|
| 4092 |
+
▁operar -4087
|
| 4093 |
+
▁partes -4088
|
| 4094 |
+
▁partir -4089
|
| 4095 |
+
▁pausas -4090
|
| 4096 |
+
▁perfec -4091
|
| 4097 |
+
▁picado -4092
|
| 4098 |
+
▁poetas -4093
|
| 4099 |
+
▁polaca -4094
|
| 4100 |
+
▁proteg -4095
|
| 4101 |
+
▁prórro -4096
|
| 4102 |
+
▁quieto -4097
|
| 4103 |
+
▁realiz -4098
|
| 4104 |
+
▁reduci -4099
|
| 4105 |
+
Da -4100
|
| 4106 |
+
Di -4101
|
| 4107 |
+
Ju -4102
|
| 4108 |
+
Si -4103
|
| 4109 |
+
ps -4104
|
| 4110 |
+
Hip -4105
|
| 4111 |
+
Pre -4106
|
| 4112 |
+
cor -4107
|
| 4113 |
+
gla -4108
|
| 4114 |
+
inm -4109
|
| 4115 |
+
laj -4110
|
| 4116 |
+
pañ -4111
|
| 4117 |
+
sen -4112
|
| 4118 |
+
▁It -4113
|
| 4119 |
+
▁mu -4114
|
| 4120 |
+
Dime -4115
|
| 4121 |
+
Hips -4116
|
| 4122 |
+
Juan -4117
|
| 4123 |
+
lade -4118
|
| 4124 |
+
lito -4119
|
| 4125 |
+
▁Pto -4120
|
| 4126 |
+
Blade -4121
|
| 4127 |
+
Datos -4122
|
| 4128 |
+
didad -4123
|
| 4129 |
+
iosos -4124
|
| 4130 |
+
pañía -4125
|
| 4131 |
+
quina -4126
|
| 4132 |
+
regla -4127
|
| 4133 |
+
ónica -4128
|
| 4134 |
+
▁Casa -4129
|
| 4135 |
+
▁tips -4130
|
| 4136 |
+
Ajusta -4131
|
| 4137 |
+
ielito -4132
|
| 4138 |
+
▁Narra -4133
|
| 4139 |
+
▁Relaj -4134
|
| 4140 |
+
▁altas -4135
|
| 4141 |
+
▁causa -4136
|
| 4142 |
+
▁infra -4137
|
| 4143 |
+
▁lucha -4138
|
| 4144 |
+
▁mujer -4139
|
| 4145 |
+
▁segun -4140
|
| 4146 |
+
Cielito -4141
|
| 4147 |
+
Siempre -4142
|
| 4148 |
+
ibrante -4143
|
| 4149 |
+
sentado -4144
|
| 4150 |
+
turales -4145
|
| 4151 |
+
▁Cervan -4146
|
| 4152 |
+
▁Moreno -4147
|
| 4153 |
+
▁cortos -4148
|
| 4154 |
+
▁debajo -4149
|
| 4155 |
+
▁reflex -4150
|
| 4156 |
+
▁refrac -4151
|
| 4157 |
+
▁regula -4152
|
| 4158 |
+
▁repaso -4153
|
| 4159 |
+
▁reposo -4154
|
| 4160 |
+
▁retiro -4155
|
| 4161 |
+
▁robots -4156
|
| 4162 |
+
▁romano -4157
|
| 4163 |
+
▁rápida -4158
|
| 4164 |
+
▁rápido -4159
|
| 4165 |
+
▁satéli -4160
|
| 4166 |
+
▁secado -4161
|
| 4167 |
+
▁sentir -4162
|
| 4168 |
+
▁siendo -4163
|
| 4169 |
+
▁siglos -4164
|
| 4170 |
+
▁simili -4165
|
| 4171 |
+
▁sinfon -4166
|
| 4172 |
+
▁sombra -4167
|
| 4173 |
+
▁susten -4168
|
| 4174 |
+
▁sátira -4169
|
| 4175 |
+
▁tablas -4170
|
| 4176 |
+
▁timbre -4171
|
| 4177 |
+
▁trofeo -4172
|
| 4178 |
+
▁turbul -4173
|
| 4179 |
+
▁términ -4174
|
| 4180 |
+
▁usadas -4175
|
| 4181 |
+
▁vatios -4176
|
| 4182 |
+
▁venció -4177
|
| 4183 |
+
▁versos -4178
|
| 4184 |
+
▁violin -4179
|
| 4185 |
+
▁visita -4180
|
| 4186 |
+
▁visión -4181
|
| 4187 |
+
▁visten -4182
|
| 4188 |
+
▁vuelta -4183
|
| 4189 |
+
▁África -4184
|
| 4190 |
+
▁átomos -4185
|
| 4191 |
+
▁óperas -4186
|
| 4192 |
+
▁óptica -4187
|
| 4193 |
+
▁únicas -4188
|
| 4194 |
+
Carolina -4189
|
| 4195 |
+
Fearless -4190
|
| 4196 |
+
Guerrero -4191
|
| 4197 |
+
Internet -4192
|
| 4198 |
+
Kiyosaki -4193
|
| 4199 |
+
Komorida -4194
|
| 4200 |
+
Mercurio -4195
|
| 4201 |
+
Mexicana -4196
|
| 4202 |
+
Provenza -4197
|
| 4203 |
+
Técnicas -4198
|
| 4204 |
+
Whenever -4199
|
| 4205 |
+
Ar -4200
|
| 4206 |
+
Há -4201
|
| 4207 |
+
IB -4202
|
| 4208 |
+
LL -4203
|
| 4209 |
+
LO -4204
|
| 4210 |
+
Mr -4205
|
| 4211 |
+
Oa -4206
|
| 4212 |
+
PC -4207
|
| 4213 |
+
Sí -4208
|
| 4214 |
+
mW -4209
|
| 4215 |
+
'). -4210
|
| 4216 |
+
ALL -4211
|
| 4217 |
+
MLO -4212
|
| 4218 |
+
Oax -4213
|
| 4219 |
+
PIB -4214
|
| 4220 |
+
lés -4215
|
| 4221 |
+
▁(~ -4216
|
| 4222 |
+
▁HT -4217
|
| 4223 |
+
▁Ra -4218
|
| 4224 |
+
AMLO -4219
|
| 4225 |
+
Hábi -4220
|
| 4226 |
+
damW -4221
|
| 4227 |
+
elle -4222
|
| 4228 |
+
esis -4223
|
| 4229 |
+
glés -4224
|
| 4230 |
+
leep -4225
|
| 4231 |
+
ocin -4226
|
| 4232 |
+
vida -4227
|
| 4233 |
+
▁HTC -4228
|
| 4234 |
+
▁IPC -4229
|
| 4235 |
+
▁fen -4230
|
| 4236 |
+
▁gri -4231
|
| 4237 |
+
Arras -4232
|
| 4238 |
+
ertos -4233
|
| 4239 |
+
genos -4234
|
| 4240 |
+
irros -4235
|
| 4241 |
+
sleep -4236
|
| 4242 |
+
▁DALL -4237
|
| 4243 |
+
▁Díaz -4238
|
| 4244 |
+
▁Rama -4239
|
| 4245 |
+
▁algo -4240
|
| 4246 |
+
▁anim -4241
|
| 4247 |
+
▁ling -4242
|
| 4248 |
+
Oaxaca -4243
|
| 4249 |
+
ahamas -4244
|
| 4250 |
+
elleza -4245
|
| 4251 |
+
ocinar -4246
|
| 4252 |
+
óptico -4247
|
| 4253 |
+
▁AdamW -4248
|
| 4254 |
+
▁alerg -4249
|
| 4255 |
+
▁lingü -4250
|
| 4256 |
+
▁manda -4251
|
| 4257 |
+
▁ondas -4252
|
| 4258 |
+
▁tesis -4253
|
| 4259 |
+
▁Únete -4254
|
| 4260 |
+
Hábitos -4255
|
| 4261 |
+
Quiénes -4256
|
| 4262 |
+
clusión -4257
|
| 4263 |
+
tógenos -4258
|
| 4264 |
+
▁Asleep -4259
|
| 4265 |
+
▁Puedes -4260
|
| 4266 |
+
▁cirros -4261
|
| 4267 |
+
▁educar -4262
|
| 4268 |
+
▁inglés -4263
|
| 4269 |
+
▁juicio -4264
|
| 4270 |
+
▁radiac -4265
|
| 4271 |
+
▁reflec -4266
|
| 4272 |
+
▁región -4267
|
| 4273 |
+
▁tamaño -4268
|
| 4274 |
+
Wolfgang -4269
|
| 4275 |
+
acciones -4270
|
| 4276 |
+
alimento -4271
|
| 4277 |
+
aspirado -4272
|
| 4278 |
+
atención -4273
|
| 4279 |
+
bustible -4274
|
| 4280 |
+
chtitlán -4275
|
| 4281 |
+
cialidad -4276
|
| 4282 |
+
ctivista -4277
|
| 4283 |
+
cuentran -4278
|
| 4284 |
+
dicional -4279
|
| 4285 |
+
ditación -4280
|
| 4286 |
+
ecesitas -4281
|
| 4287 |
+
ecomenda -4282
|
| 4288 |
+
ecquerel -4283
|
| 4289 |
+
enicilli -4284
|
| 4290 |
+
enovelas -4285
|
| 4291 |
+
entantes -4286
|
| 4292 |
+
entativa -4287
|
| 4293 |
+
enístico -4288
|
| 4294 |
+
ernoulli -4289
|
| 4295 |
+
espacito -4290
|
| 4296 |
+
estionar -4291
|
| 4297 |
+
estiones -4292
|
| 4298 |
+
francesa -4293
|
| 4299 |
+
germinar -4294
|
| 4300 |
+
gnéticas -4295
|
| 4301 |
+
gotables -4296
|
| 4302 |
+
ietzsche -4297
|
| 4303 |
+
igmentos -4298
|
| 4304 |
+
ilencios -4299
|
| 4305 |
+
!' -4300
|
| 4306 |
+
.) -4301
|
| 4307 |
+
Fr -4302
|
| 4308 |
+
td -4303
|
| 4309 |
+
Dam -4304
|
| 4310 |
+
bos -4305
|
| 4311 |
+
eor -4306
|
| 4312 |
+
psa -4307
|
| 4313 |
+
zul -4308
|
| 4314 |
+
▁yo -4309
|
| 4315 |
+
Cada -4310
|
| 4316 |
+
Dame -4311
|
| 4317 |
+
oner -4312
|
| 4318 |
+
toso -4313
|
| 4319 |
+
▁Ltd -4314
|
| 4320 |
+
▁Pop -4315
|
| 4321 |
+
▁acu -4316
|
| 4322 |
+
▁equ -4317
|
| 4323 |
+
▁see -4318
|
| 4324 |
+
Frida -4319
|
| 4325 |
+
Steve -4320
|
| 4326 |
+
ancho -4321
|
| 4327 |
+
doles -4322
|
| 4328 |
+
izada -4323
|
| 4329 |
+
parto -4324
|
| 4330 |
+
titas -4325
|
| 4331 |
+
ulbos -4326
|
| 4332 |
+
▁Azul -4327
|
| 4333 |
+
▁Copa -4328
|
| 4334 |
+
▁Peor -4329
|
| 4335 |
+
▁cemp -4330
|
| 4336 |
+
▁melo -4331
|
| 4337 |
+
▁ruta -4332
|
| 4338 |
+
▁órbi -4333
|
| 4339 |
+
enados -4334
|
| 4340 |
+
gocios -4335
|
| 4341 |
+
istoso -4336
|
| 4342 |
+
queado -4337
|
| 4343 |
+
▁Saint -4338
|
| 4344 |
+
▁Solar -4339
|
| 4345 |
+
▁corto -4340
|
| 4346 |
+
▁diáme -4341
|
| 4347 |
+
▁gusto -4342
|
| 4348 |
+
▁melod -4343
|
| 4349 |
+
egocios -4344
|
| 4350 |
+
fensivo -4345
|
| 4351 |
+
reparto -4346
|
| 4352 |
+
▁Billie -4347
|
| 4353 |
+
▁Europa -4348
|
| 4354 |
+
▁Pancho -4349
|
| 4355 |
+
▁bulbos -4350
|
| 4356 |
+
▁ensayo -4351
|
| 4357 |
+
▁reside -4352
|
| 4358 |
+
▁órbita -4353
|
| 4359 |
+
Negocios -4354
|
| 4360 |
+
imizadas -4355
|
| 4361 |
+
istencia -4356
|
| 4362 |
+
izadores -4357
|
| 4363 |
+
jercicio -4358
|
| 4364 |
+
kimberli -4359
|
| 4365 |
+
landrado -4360
|
| 4366 |
+
lementos -4361
|
| 4367 |
+
levadura -4362
|
| 4368 |
+
longitud -4363
|
| 4369 |
+
mediante -4364
|
| 4370 |
+
mitiendo -4365
|
| 4371 |
+
noticias -4366
|
| 4372 |
+
notifica -4367
|
| 4373 |
+
ofensivo -4368
|
| 4374 |
+
olosinas -4369
|
| 4375 |
+
ológicos -4370
|
| 4376 |
+
otellado -4371
|
| 4377 |
+
pagation -4372
|
| 4378 |
+
pomodoro -4373
|
| 4379 |
+
protones -4374
|
| 4380 |
+
represas -4375
|
| 4381 |
+
servando -4376
|
| 4382 |
+
taciones -4377
|
| 4383 |
+
tardecer -4378
|
| 4384 |
+
titución -4379
|
| 4385 |
+
tomático -4380
|
| 4386 |
+
tuneados -4381
|
| 4387 |
+
turbinas -4382
|
| 4388 |
+
térmicas -4383
|
| 4389 |
+
uentitán -4384
|
| 4390 |
+
xirribon -4385
|
| 4391 |
+
zapoteca -4386
|
| 4392 |
+
▁Acabado -4387
|
| 4393 |
+
▁Alfonso -4388
|
| 4394 |
+
▁Amadeus -4389
|
| 4395 |
+
▁América -4390
|
| 4396 |
+
▁Anunció -4391
|
| 4397 |
+
▁Bahamas -4392
|
| 4398 |
+
▁Bitcoin -4393
|
| 4399 |
+
▁Charles -4394
|
| 4400 |
+
▁ChatGPT -4395
|
| 4401 |
+
▁Chichén -4396
|
| 4402 |
+
▁Chihiro -4397
|
| 4403 |
+
▁Cocción -4398
|
| 4404 |
+
▁Combina -4399
|
| 4405 |
+
Ah -4400
|
| 4406 |
+
eos -4401
|
| 4407 |
+
gio -4402
|
| 4408 |
+
jor -4403
|
| 4409 |
+
▁Vi -4404
|
| 4410 |
+
erio -4405
|
| 4411 |
+
indo -4406
|
| 4412 |
+
obas -4407
|
| 4413 |
+
▁ina -4408
|
| 4414 |
+
▁you -4409
|
| 4415 |
+
Ahora -4410
|
| 4416 |
+
chado -4411
|
| 4417 |
+
digio -4412
|
| 4418 |
+
irate -4413
|
| 4419 |
+
ivera -4414
|
| 4420 |
+
pción -4415
|
| 4421 |
+
ución -4416
|
| 4422 |
+
▁Mide -4417
|
| 4423 |
+
▁Vive -4418
|
| 4424 |
+
▁come -4419
|
| 4425 |
+
▁onda -4420
|
| 4426 |
+
▁sede -4421
|
| 4427 |
+
Porque -4422
|
| 4428 |
+
udismo -4423
|
| 4429 |
+
▁Lindo -4424
|
| 4430 |
+
▁Reina -4425
|
| 4431 |
+
▁aérea -4426
|
| 4432 |
+
▁comer -4427
|
| 4433 |
+
▁hagas -4428
|
| 4434 |
+
▁lunar -4429
|
| 4435 |
+
▁mejor -4430
|
| 4436 |
+
▁parte -4431
|
| 4437 |
+
▁polen -4432
|
| 4438 |
+
▁sitio -4433
|
| 4439 |
+
ballero -4434
|
| 4440 |
+
ectadas -4435
|
| 4441 |
+
esiones -4436
|
| 4442 |
+
ilución -4437
|
| 4443 |
+
volucra -4438
|
| 4444 |
+
▁Charro -4439
|
| 4445 |
+
▁Hubble -4440
|
| 4446 |
+
▁Mejora -4441
|
| 4447 |
+
▁Pirate -4442
|
| 4448 |
+
▁Podría -4443
|
| 4449 |
+
▁Rivera -4444
|
| 4450 |
+
▁activa -4445
|
| 4451 |
+
▁consec -4446
|
| 4452 |
+
▁deseos -4447
|
| 4453 |
+
▁fueron -4448
|
| 4454 |
+
▁hablas -4449
|
| 4455 |
+
▁premia -4450
|
| 4456 |
+
▁puntos -4451
|
| 4457 |
+
erupción -4452
|
| 4458 |
+
▁Compara -4453
|
| 4459 |
+
▁Conecta -4454
|
| 4460 |
+
▁Crearon -4455
|
| 4461 |
+
▁Cultivo -4456
|
| 4462 |
+
▁Dawkins -4457
|
| 4463 |
+
▁Elimina -4458
|
| 4464 |
+
▁Erikson -4459
|
| 4465 |
+
▁Escurre -4460
|
| 4466 |
+
▁Estilos -4461
|
| 4467 |
+
▁Fleming -4462
|
| 4468 |
+
▁Fomenta -4463
|
| 4469 |
+
▁Fortino -4464
|
| 4470 |
+
▁Gherard -4465
|
| 4471 |
+
▁Giraldo -4466
|
| 4472 |
+
▁Goleman -4467
|
| 4473 |
+
▁Gustave -4468
|
| 4474 |
+
▁Hidalgo -4469
|
| 4475 |
+
▁Hobbies -4470
|
| 4476 |
+
▁Júpiter -4471
|
| 4477 |
+
▁Limitar -4472
|
| 4478 |
+
▁Maldito -4473
|
| 4479 |
+
▁Marchar -4474
|
| 4480 |
+
▁Miranda -4475
|
| 4481 |
+
▁Mistral -4476
|
| 4482 |
+
▁Muestra -4477
|
| 4483 |
+
▁Neptuno -4478
|
| 4484 |
+
▁Nuclear -4479
|
| 4485 |
+
▁Obrador -4480
|
| 4486 |
+
▁Olvidar -4481
|
| 4487 |
+
▁Padrino -4482
|
| 4488 |
+
▁Perpetu -4483
|
| 4489 |
+
▁Podrías -4484
|
| 4490 |
+
▁Precios -4485
|
| 4491 |
+
▁Primera -4486
|
| 4492 |
+
▁Quijano -4487
|
| 4493 |
+
▁Química -4488
|
| 4494 |
+
▁Resultó -4489
|
| 4495 |
+
▁Richard -4490
|
| 4496 |
+
▁Shakira -4491
|
| 4497 |
+
▁Siempre -4492
|
| 4498 |
+
▁Studios -4493
|
| 4499 |
+
▁Teorías -4494
|
| 4500 |
+
▁Terapia -4495
|
| 4501 |
+
▁Tomoaki -4496
|
| 4502 |
+
▁Térmica -4497
|
| 4503 |
+
▁Vicente -4498
|
| 4504 |
+
▁Whitman -4499
|
| 4505 |
+
ece -4500
|
| 4506 |
+
ril -4501
|
| 4507 |
+
²), -4502
|
| 4508 |
+
▁Sé -4503
|
| 4509 |
+
Luis -4504
|
| 4510 |
+
Quer -4505
|
| 4511 |
+
▁Don -4506
|
| 4512 |
+
▁Eis -4507
|
| 4513 |
+
▁Sec -4508
|
| 4514 |
+
▁Sor -4509
|
| 4515 |
+
▁aso -4510
|
| 4516 |
+
▁mal -4511
|
| 4517 |
+
▁nos -4512
|
| 4518 |
+
allar -4513
|
| 4519 |
+
cansa -4514
|
| 4520 |
+
coman -4515
|
| 4521 |
+
ectos -4516
|
| 4522 |
+
ibles -4517
|
| 4523 |
+
iende -4518
|
| 4524 |
+
ogios -4519
|
| 4525 |
+
rillo -4520
|
| 4526 |
+
▁gira -4521
|
| 4527 |
+
▁horm -4522
|
| 4528 |
+
▁timo -4523
|
| 4529 |
+
▁todo -4524
|
| 4530 |
+
Billie -4525
|
| 4531 |
+
Breves -4526
|
| 4532 |
+
incent -4527
|
| 4533 |
+
▁Reyes -4528
|
| 4534 |
+
▁convi -4529
|
| 4535 |
+
▁rendi -4530
|
| 4536 |
+
Machine -4531
|
| 4537 |
+
Querida -4532
|
| 4538 |
+
allarta -4533
|
| 4539 |
+
celente -4534
|
| 4540 |
+
dividir -4535
|
| 4541 |
+
emplado -4536
|
| 4542 |
+
iderada -4537
|
| 4543 |
+
▁Secado -4538
|
| 4544 |
+
▁asocia -4539
|
| 4545 |
+
▁añejar -4540
|
| 4546 |
+
▁brillo -4541
|
| 4547 |
+
▁ciudad -4542
|
| 4548 |
+
▁diario -4543
|
| 4549 |
+
▁divide -4544
|
| 4550 |
+
▁dureza -4545
|
| 4551 |
+
▁hormig -4546
|
| 4552 |
+
comandos -4547
|
| 4553 |
+
femenino -4548
|
| 4554 |
+
▁Escribe -4549
|
| 4555 |
+
▁Vincent -4550
|
| 4556 |
+
▁abierto -4551
|
| 4557 |
+
▁adquisi -4552
|
| 4558 |
+
▁agraria -4553
|
| 4559 |
+
▁agricul -4554
|
| 4560 |
+
▁ahorrar -4555
|
| 4561 |
+
▁ajedrez -4556
|
| 4562 |
+
▁ajustar -4557
|
| 4563 |
+
▁alcohol -4558
|
| 4564 |
+
▁algunas -4559
|
| 4565 |
+
▁alojado -4560
|
| 4566 |
+
▁altares -4561
|
| 4567 |
+
▁altitud -4562
|
| 4568 |
+
▁amargor -4563
|
| 4569 |
+
▁anafase -4564
|
| 4570 |
+
▁analiza -4565
|
| 4571 |
+
▁andante -4566
|
| 4572 |
+
▁artista -4567
|
| 4573 |
+
▁asexual -4568
|
| 4574 |
+
▁aumento -4569
|
| 4575 |
+
▁autocon -4570
|
| 4576 |
+
▁autoinm -4571
|
| 4577 |
+
▁avanzar -4572
|
| 4578 |
+
▁backpro -4573
|
| 4579 |
+
▁baladas -4574
|
| 4580 |
+
▁barrica -4575
|
| 4581 |
+
▁belleza -4576
|
| 4582 |
+
▁biomasa -4577
|
| 4583 |
+
▁blancos -4578
|
| 4584 |
+
▁bloquea -4579
|
| 4585 |
+
▁bloques -4580
|
| 4586 |
+
▁boleros -4581
|
| 4587 |
+
▁bonitas -4582
|
| 4588 |
+
▁budismo -4583
|
| 4589 |
+
▁básicas -4584
|
| 4590 |
+
▁calenta -4585
|
| 4591 |
+
▁cambian -4586
|
| 4592 |
+
▁cambios -4587
|
| 4593 |
+
▁canción -4588
|
| 4594 |
+
▁capaces -4589
|
| 4595 |
+
▁castigo -4590
|
| 4596 |
+
▁cerebro -4591
|
| 4597 |
+
▁cerveza -4592
|
| 4598 |
+
▁ciertas -4593
|
| 4599 |
+
▁cocinar -4594
|
| 4600 |
+
▁colapsa -4595
|
| 4601 |
+
▁comenzó -4596
|
| 4602 |
+
▁cometas -4597
|
| 4603 |
+
▁compues -4598
|
| 4604 |
+
▁conmemo -4599
|
| 4605 |
+
., -4600
|
| 4606 |
+
II -4601
|
| 4607 |
+
'), -4602
|
| 4608 |
+
ile -4603
|
| 4609 |
+
mad -4604
|
| 4610 |
+
try -4605
|
| 4611 |
+
▁Or -4606
|
| 4612 |
+
▁Si -4607
|
| 4613 |
+
asto -4608
|
| 4614 |
+
café -4609
|
| 4615 |
+
dita -4610
|
| 4616 |
+
iego -4611
|
| 4617 |
+
igos -4612
|
| 4618 |
+
leer -4613
|
| 4619 |
+
mpos -4614
|
| 4620 |
+
tosh -4615
|
| 4621 |
+
▁Mil -4616
|
| 4622 |
+
▁Más -4617
|
| 4623 |
+
▁VII -4618
|
| 4624 |
+
▁leg -4619
|
| 4625 |
+
▁lle -4620
|
| 4626 |
+
▁tar -4621
|
| 4627 |
+
guile -4622
|
| 4628 |
+
menor -4623
|
| 4629 |
+
taron -4624
|
| 4630 |
+
undad -4625
|
| 4631 |
+
▁Satu -4626
|
| 4632 |
+
▁Sigo -4627
|
| 4633 |
+
▁deso -4628
|
| 4634 |
+
▁lava -4629
|
| 4635 |
+
▁llev -4630
|
| 4636 |
+
▁poco -4631
|
| 4637 |
+
madera -4632
|
| 4638 |
+
trador -4633
|
| 4639 |
+
▁Diego -4634
|
| 4640 |
+
▁Edita -4635
|
| 4641 |
+
▁Murió -4636
|
| 4642 |
+
▁Satur -4637
|
| 4643 |
+
▁Steve -4638
|
| 4644 |
+
▁Vinci -4639
|
| 4645 |
+
▁infec -4640
|
| 4646 |
+
▁listo -4641
|
| 4647 |
+
▁seres -4642
|
| 4648 |
+
▁tarda -4643
|
| 4649 |
+
▁vasto -4644
|
| 4650 |
+
castigo -4645
|
| 4651 |
+
guilera -4646
|
| 4652 |
+
undador -4647
|
| 4653 |
+
vacidad -4648
|
| 4654 |
+
▁Ayudar -4649
|
| 4655 |
+
▁Formas -4650
|
| 4656 |
+
▁amigos -4651
|
| 4657 |
+
▁campos -4652
|
| 4658 |
+
▁chiles -4653
|
| 4659 |
+
▁cierta -4654
|
| 4660 |
+
▁evitan -4655
|
| 4661 |
+
▁legado -4656
|
| 4662 |
+
▁placas -4657
|
| 4663 |
+
▁viking -4658
|
| 4664 |
+
neuronas -4659
|
| 4665 |
+
riturada -4660
|
| 4666 |
+
▁Saturno -4661
|
| 4667 |
+
▁calaver -4662
|
| 4668 |
+
▁consumo -4663
|
| 4669 |
+
▁control -4664
|
| 4670 |
+
▁cosecha -4665
|
| 4671 |
+
▁country -4666
|
| 4672 |
+
▁creando -4667
|
| 4673 |
+
▁criptom -4668
|
| 4674 |
+
▁crítico -4669
|
| 4675 |
+
▁cuántas -4670
|
| 4676 |
+
▁dejando -4671
|
| 4677 |
+
▁demanda -4672
|
| 4678 |
+
▁depende -4673
|
| 4679 |
+
▁deporte -4674
|
| 4680 |
+
▁directa -4675
|
| 4681 |
+
▁dividen -4676
|
| 4682 |
+
▁dióxido -4677
|
| 4683 |
+
▁elogios -4678
|
| 4684 |
+
▁emisión -4679
|
| 4685 |
+
▁empaque -4680
|
| 4686 |
+
▁empatar -4681
|
| 4687 |
+
▁enfocar -4682
|
| 4688 |
+
▁enfoque -4683
|
| 4689 |
+
▁enrutan -4684
|
| 4690 |
+
▁equidad -4685
|
| 4691 |
+
▁escapar -4686
|
| 4692 |
+
▁escenas -4687
|
| 4693 |
+
▁especie -4688
|
| 4694 |
+
▁especta -4689
|
| 4695 |
+
▁esquema -4690
|
| 4696 |
+
▁estilos -4691
|
| 4697 |
+
▁estirar -4692
|
| 4698 |
+
▁explica -4693
|
| 4699 |
+
▁explíci -4694
|
| 4700 |
+
▁extraer -4695
|
| 4701 |
+
▁famosas -4696
|
| 4702 |
+
▁figuras -4697
|
| 4703 |
+
▁formate -4698
|
| 4704 |
+
▁formato -4699
|
| 4705 |
+
Ram -4700
|
| 4706 |
+
sin -4701
|
| 4707 |
+
▁'¡ -4702
|
| 4708 |
+
▁Tu -4703
|
| 4709 |
+
MoMA -4704
|
| 4710 |
+
acta -4705
|
| 4711 |
+
ario -4706
|
| 4712 |
+
cado -4707
|
| 4713 |
+
illa -4708
|
| 4714 |
+
rasa -4709
|
| 4715 |
+
reso -4710
|
| 4716 |
+
tive -4711
|
| 4717 |
+
ueva -4712
|
| 4718 |
+
▁Tul -4713
|
| 4719 |
+
▁ada -4714
|
| 4720 |
+
▁ahí -4715
|
| 4721 |
+
▁cel -4716
|
| 4722 |
+
▁pad -4717
|
| 4723 |
+
▁tan -4718
|
| 4724 |
+
Ramón -4719
|
| 4725 |
+
carga -4720
|
| 4726 |
+
idado -4721
|
| 4727 |
+
menes -4722
|
| 4728 |
+
xicas -4723
|
| 4729 |
+
▁Juan -4724
|
| 4730 |
+
▁deud -4725
|
| 4731 |
+
▁opor -4726
|
| 4732 |
+
▁poem -4727
|
| 4733 |
+
▁tres -4728
|
| 4734 |
+
Volver -4729
|
| 4735 |
+
mpacta -4730
|
| 4736 |
+
▁Nueva -4731
|
| 4737 |
+
▁Tulum -4732
|
| 4738 |
+
▁Villa -4733
|
| 4739 |
+
▁creci -4734
|
| 4740 |
+
▁grasa -4735
|
| 4741 |
+
▁inten -4736
|
| 4742 |
+
▁mucho -4737
|
| 4743 |
+
▁prota -4738
|
| 4744 |
+
▁quema -4739
|
| 4745 |
+
▁reloj -4740
|
| 4746 |
+
▁tenga -4741
|
| 4747 |
+
▁tiemp -4742
|
| 4748 |
+
cciones -4743
|
| 4749 |
+
usionar -4744
|
| 4750 |
+
▁comida -4745
|
| 4751 |
+
▁deudas -4746
|
| 4752 |
+
▁ofrece -4747
|
| 4753 |
+
▁padres -4748
|
| 4754 |
+
▁poemas -4749
|
| 4755 |
+
▁porque -4750
|
| 4756 |
+
▁ritmos -4751
|
| 4757 |
+
Pirámide -4752
|
| 4758 |
+
párrafos -4753
|
| 4759 |
+
teroides -4754
|
| 4760 |
+
▁Impacta -4755
|
| 4761 |
+
▁Tostado -4756
|
| 4762 |
+
▁aprende -4757
|
| 4763 |
+
▁armonía -4758
|
| 4764 |
+
▁ascenso -4759
|
| 4765 |
+
▁buscado -4760
|
| 4766 |
+
▁celular -4761
|
| 4767 |
+
▁clásico -4762
|
| 4768 |
+
▁cuidado -4763
|
| 4769 |
+
▁decirme -4764
|
| 4770 |
+
▁glucosa -4765
|
| 4771 |
+
▁gotitas -4766
|
| 4772 |
+
▁gracias -4767
|
| 4773 |
+
▁géneros -4768
|
| 4774 |
+
▁harinas -4769
|
| 4775 |
+
▁hervida -4770
|
| 4776 |
+
▁honesto -4771
|
| 4777 |
+
▁hormiga -4772
|
| 4778 |
+
▁icónico -4773
|
| 4779 |
+
▁imperio -4774
|
| 4780 |
+
▁incluso -4775
|
| 4781 |
+
▁inhibía -4776
|
| 4782 |
+
▁instruc -4777
|
| 4783 |
+
▁intensa -4778
|
| 4784 |
+
▁interna -4779
|
| 4785 |
+
▁interés -4780
|
| 4786 |
+
▁inventó -4781
|
| 4787 |
+
▁jorobas -4782
|
| 4788 |
+
▁joyería -4783
|
| 4789 |
+
▁jugador -4784
|
| 4790 |
+
▁latinas -4785
|
| 4791 |
+
▁lejanas -4786
|
| 4792 |
+
▁lejanos -4787
|
| 4793 |
+
▁lenguas -4788
|
| 4794 |
+
▁levantó -4789
|
| 4795 |
+
▁lideraz -4790
|
| 4796 |
+
▁llegado -4791
|
| 4797 |
+
▁macrófa -4792
|
| 4798 |
+
▁mandato -4793
|
| 4799 |
+
▁manteca -4794
|
| 4800 |
+
▁mantras -4795
|
| 4801 |
+
▁mejoras -4796
|
| 4802 |
+
▁melodía -4797
|
| 4803 |
+
▁mensual -4798
|
| 4804 |
+
▁metabol -4799
|
| 4805 |
+
IP -4800
|
| 4806 |
+
may -4801
|
| 4807 |
+
▁Go -4802
|
| 4808 |
+
Pero -4803
|
| 4809 |
+
Topo -4804
|
| 4810 |
+
altó -4805
|
| 4811 |
+
culo -4806
|
| 4812 |
+
vita -4807
|
| 4813 |
+
▁Amy -4808
|
| 4814 |
+
▁Big -4809
|
| 4815 |
+
▁Rec -4810
|
| 4816 |
+
▁ala -4811
|
| 4817 |
+
▁fin -4812
|
| 4818 |
+
▁hel -4813
|
| 4819 |
+
Hasta -4814
|
| 4820 |
+
Marie -4815
|
| 4821 |
+
claje -4816
|
| 4822 |
+
mayor -4817
|
| 4823 |
+
rando -4818
|
| 4824 |
+
tales -4819
|
| 4825 |
+
torio -4820
|
| 4826 |
+
ísico -4821
|
| 4827 |
+
▁Alon -4822
|
| 4828 |
+
▁Blan -4823
|
| 4829 |
+
▁Pero -4824
|
| 4830 |
+
▁Rico -4825
|
| 4831 |
+
▁cata -4826
|
| 4832 |
+
▁deja -4827
|
| 4833 |
+
ociado -4828
|
| 4834 |
+
▁Corte -4829
|
| 4835 |
+
▁Estas -4830
|
| 4836 |
+
▁Evita -4831
|
| 4837 |
+
▁Saltó -4832
|
| 4838 |
+
▁cubre -4833
|
| 4839 |
+
▁exces -4834
|
| 4840 |
+
▁notas -4835
|
| 4841 |
+
bustión -4836
|
| 4842 |
+
mejoría -4837
|
| 4843 |
+
▁Alonso -4838
|
| 4844 |
+
▁Indias -4839
|
| 4845 |
+
▁Lideró -4840
|
| 4846 |
+
▁Puerto -4841
|
| 4847 |
+
▁Robots -4842
|
| 4848 |
+
▁autobi -4843
|
| 4849 |
+
▁azules -4844
|
| 4850 |
+
▁carbón -4845
|
| 4851 |
+
▁charro -4846
|
| 4852 |
+
▁chiste -4847
|
| 4853 |
+
▁cortas -4848
|
| 4854 |
+
▁físico -4849
|
| 4855 |
+
▁soneto -4850
|
| 4856 |
+
▁viento -4851
|
| 4857 |
+
facética -4852
|
| 4858 |
+
profundo -4853
|
| 4859 |
+
realidad -4854
|
| 4860 |
+
▁Formado -4855
|
| 4861 |
+
▁Mebarak -4856
|
| 4862 |
+
▁acuñado -4857
|
| 4863 |
+
▁columna -4858
|
| 4864 |
+
▁cósmico -4859
|
| 4865 |
+
▁defores -4860
|
| 4866 |
+
▁mayores -4861
|
| 4867 |
+
▁mexicas -4862
|
| 4868 |
+
▁miembro -4863
|
| 4869 |
+
▁modific -4864
|
| 4870 |
+
▁momento -4865
|
| 4871 |
+
▁musical -4866
|
| 4872 |
+
▁máquina -4867
|
| 4873 |
+
▁médicos -4868
|
| 4874 |
+
▁ocupado -4869
|
| 4875 |
+
▁ocurrió -4870
|
| 4876 |
+
▁olmecas -4871
|
| 4877 |
+
▁orillas -4872
|
| 4878 |
+
▁oxígeno -4873
|
| 4879 |
+
▁partido -4874
|
| 4880 |
+
▁penales -4875
|
| 4881 |
+
▁permite -4876
|
| 4882 |
+
▁pintora -4877
|
| 4883 |
+
▁pionera -4878
|
| 4884 |
+
▁pionero -4879
|
| 4885 |
+
▁poblada -4880
|
| 4886 |
+
▁poblano -4881
|
| 4887 |
+
▁poderes -4882
|
| 4888 |
+
▁posadas -4883
|
| 4889 |
+
▁prefier -4884
|
| 4890 |
+
▁prehisp -4885
|
| 4891 |
+
▁produce -4886
|
| 4892 |
+
▁profase -4887
|
| 4893 |
+
▁prompts -4888
|
| 4894 |
+
▁propaga -4889
|
| 4895 |
+
▁quienes -4890
|
| 4896 |
+
▁química -4891
|
| 4897 |
+
▁rallado -4892
|
| 4898 |
+
▁recibes -4893
|
| 4899 |
+
▁recubri -4894
|
| 4900 |
+
▁reforma -4895
|
| 4901 |
+
▁remonta -4896
|
| 4902 |
+
▁represa -4897
|
| 4903 |
+
▁respeto -4898
|
| 4904 |
+
▁resumen -4899
|
| 4905 |
+
CO -4900
|
| 4906 |
+
VR -4901
|
| 4907 |
+
ige -4902
|
| 4908 |
+
ini -4903
|
| 4909 |
+
oga -4904
|
| 4910 |
+
▁(< -4905
|
| 4911 |
+
▁Do -4906
|
| 4912 |
+
agua -4907
|
| 4913 |
+
aria -4908
|
| 4914 |
+
dujo -4909
|
| 4915 |
+
ento -4910
|
| 4916 |
+
ició -4911
|
| 4917 |
+
ives -4912
|
| 4918 |
+
luye -4913
|
| 4919 |
+
▁Bad -4914
|
| 4920 |
+
▁Dol -4915
|
| 4921 |
+
▁Lie -4916
|
| 4922 |
+
▁Luz -4917
|
| 4923 |
+
▁ley -4918
|
| 4924 |
+
Daddy -4919
|
| 4925 |
+
Karol -4920
|
| 4926 |
+
deres -4921
|
| 4927 |
+
ectar -4922
|
| 4928 |
+
ierte -4923
|
| 4929 |
+
malas -4924
|
| 4930 |
+
ormir -4925
|
| 4931 |
+
penAI -4926
|
| 4932 |
+
putas -4927
|
| 4933 |
+
▁Fall -4928
|
| 4934 |
+
▁Waka -4929
|
| 4935 |
+
▁nada -4930
|
| 4936 |
+
▁yoga -4931
|
| 4937 |
+
icanas -4932
|
| 4938 |
+
torios -4933
|
| 4939 |
+
transf -4934
|
| 4940 |
+
▁Intro -4935
|
| 4941 |
+
▁Monte -4936
|
| 4942 |
+
▁elige -4937
|
| 4943 |
+
▁fluye -4938
|
| 4944 |
+
▁serie -4939
|
| 4945 |
+
▁traje -4940
|
| 4946 |
+
▁vives -4941
|
| 4947 |
+
poderes -4942
|
| 4948 |
+
rquesas -4943
|
| 4949 |
+
▁Canadá -4944
|
| 4950 |
+
▁Dormir -4945
|
| 4951 |
+
▁GitHub -4946
|
| 4952 |
+
▁Inició -4947
|
| 4953 |
+
▁Manuel -4948
|
| 4954 |
+
▁OpenAI -4949
|
| 4955 |
+
▁Vierte -4950
|
| 4956 |
+
▁bordes -4951
|
| 4957 |
+
▁básica -4952
|
| 4958 |
+
▁distra -4953
|
| 4959 |
+
▁escala -4954
|
| 4960 |
+
▁llegar -4955
|
| 4961 |
+
▁puedes -4956
|
| 4962 |
+
▁unidad -4957
|
| 4963 |
+
Gasolina -4958
|
| 4964 |
+
alerones -4959
|
| 4965 |
+
gulación -4960
|
| 4966 |
+
▁Aumenta -4961
|
| 4967 |
+
▁Dolores -4962
|
| 4968 |
+
▁Moderno -4963
|
| 4969 |
+
▁Natural -4964
|
| 4970 |
+
▁Navarro -4965
|
| 4971 |
+
▁Valadez -4966
|
| 4972 |
+
▁aumenta -4967
|
| 4973 |
+
▁ficción -4968
|
| 4974 |
+
▁financi -4969
|
| 4975 |
+
▁fotovol -4970
|
| 4976 |
+
▁polonio -4971
|
| 4977 |
+
▁resumir -4972
|
| 4978 |
+
▁retorno -4973
|
| 4979 |
+
▁retribu -4974
|
| 4980 |
+
▁revisar -4975
|
| 4981 |
+
▁rizomas -4976
|
| 4982 |
+
▁rocosas -4977
|
| 4983 |
+
▁rojizos -4978
|
| 4984 |
+
▁routers -4979
|
| 4985 |
+
▁rítmico -4980
|
| 4986 |
+
▁seguida -4981
|
| 4987 |
+
▁segundo -4982
|
| 4988 |
+
▁separar -4983
|
| 4989 |
+
▁servida -4984
|
| 4990 |
+
▁siempre -4985
|
| 4991 |
+
▁simples -4986
|
| 4992 |
+
▁solares -4987
|
| 4993 |
+
▁solista -4988
|
| 4994 |
+
▁sonidos -4989
|
| 4995 |
+
▁sonrisa -4990
|
| 4996 |
+
▁sosteni -4991
|
| 4997 |
+
▁superar -4992
|
| 4998 |
+
▁tablero -4993
|
| 4999 |
+
▁tejidos -4994
|
| 5000 |
+
▁terapia -4995
|
| 5001 |
+
▁termina -4996
|
| 5002 |
+
▁teórico -4997
|
| 5003 |
+
▁tiempos -4998
|
| 5004 |
+
▁timones -4999
|
| 5005 |
+
como -5000
|
| 5006 |
+
ings -5001
|
| 5007 |
+
▁Inc -5002
|
| 5008 |
+
▁Ins -5003
|
| 5009 |
+
tuales -5004
|
| 5010 |
+
▁Incon -5005
|
| 5011 |
+
▁radio -5006
|
| 5012 |
+
▁renac -5007
|
| 5013 |
+
inación -5008
|
| 5014 |
+
▁largos -5009
|
| 5015 |
+
▁Algunos -5010
|
| 5016 |
+
▁celeste -5011
|
| 5017 |
+
▁destino -5012
|
| 5018 |
+
▁grietas -5013
|
| 5019 |
+
▁trabajo -5014
|
| 5020 |
+
▁turbina -5015
|
| 5021 |
+
▁técnica -5016
|
| 5022 |
+
▁término -5017
|
| 5023 |
+
▁vendido -5018
|
| 5024 |
+
▁vihuela -5019
|
| 5025 |
+
▁visores -5020
|
| 5026 |
+
▁voltios -5021
|
| 5027 |
+
▁índices -5022
|
| 5028 |
+
▁órdenes -5023
|
| 5029 |
+
Animación -5024
|
| 5030 |
+
Arrasando -5025
|
| 5031 |
+
Autoayuda -5026
|
| 5032 |
+
Cleopatra -5027
|
| 5033 |
+
Delicioso -5028
|
| 5034 |
+
Despacito -5029
|
| 5035 |
+
Interstel -5030
|
| 5036 |
+
Midnights -5031
|
| 5037 |
+
Prefieres -5032
|
| 5038 |
+
Recomenda -5033
|
| 5039 |
+
alización -5034
|
| 5040 |
+
carillado -5035
|
| 5041 |
+
cendental -5036
|
| 5042 |
+
corriente -5037
|
| 5043 |
+
eCodeCamp -5038
|
| 5044 |
+
eléctrico -5039
|
| 5045 |
+
enciación -5040
|
| 5046 |
+
generador -5041
|
| 5047 |
+
golosinas -5042
|
| 5048 |
+
ilimitada -5043
|
| 5049 |
+
inización -5044
|
| 5050 |
+
istóteles -5045
|
| 5051 |
+
ladamente -5046
|
| 5052 |
+
masculino -5047
|
| 5053 |
+
mentación -5048
|
| 5054 |
+
ográficas -5049
|
| 5055 |
+
ramientas -5050
|
| 5056 |
+
ransformó -5051
|
| 5057 |
+
respuesta -5052
|
| 5058 |
+
taurativa -5053
|
| 5059 |
+
ticuerpos -5054
|
| 5060 |
+
tribución -5055
|
| 5061 |
+
▁Acapulco -5056
|
| 5062 |
+
▁Admisión -5057
|
| 5063 |
+
▁Aguilera -5058
|
| 5064 |
+
▁Airlines -5059
|
| 5065 |
+
▁Aprender -5060
|
| 5066 |
+
▁Calienta -5061
|
| 5067 |
+
▁Carranza -5062
|
| 5068 |
+
▁Castillo -5063
|
| 5069 |
+
▁Catedral -5064
|
| 5070 |
+
▁Cinturón -5065
|
| 5071 |
+
▁Conchado -5066
|
| 5072 |
+
▁Conectar -5067
|
| 5073 |
+
▁Conocida -5068
|
| 5074 |
+
▁Consiste -5069
|
| 5075 |
+
▁Consulta -5070
|
| 5076 |
+
▁Coyoacán -5071
|
| 5077 |
+
▁Descansa -5072
|
| 5078 |
+
▁Dilución -5073
|
| 5079 |
+
▁Emiliano -5074
|
| 5080 |
+
▁Escuelas -5075
|
| 5081 |
+
▁Filtrado -5076
|
| 5082 |
+
▁Gioconda -5077
|
| 5083 |
+
▁Giovanni -5078
|
| 5084 |
+
▁Internet -5079
|
| 5085 |
+
▁Invierte -5080
|
| 5086 |
+
▁Kumamoto -5081
|
| 5087 |
+
▁Lenguaje -5082
|
| 5088 |
+
▁Leonardo -5083
|
| 5089 |
+
▁Mahahual -5084
|
| 5090 |
+
▁Malteado -5085
|
| 5091 |
+
▁Mantiene -5086
|
| 5092 |
+
▁Martínez -5087
|
| 5093 |
+
▁Máscaras -5088
|
| 5094 |
+
▁Nacional -5089
|
| 5095 |
+
▁Observar -5090
|
| 5096 |
+
▁Overflow -5091
|
| 5097 |
+
▁Palenque -5092
|
| 5098 |
+
▁Perpetua -5093
|
| 5099 |
+
▁Pomodoro -5094
|
| 5100 |
+
▁Porfirio -5095
|
| 5101 |
+
▁Practica -5096
|
| 5102 |
+
▁Rayleigh -5097
|
| 5103 |
+
▁Regenera -5098
|
| 5104 |
+
▁Registra -5099
|
| 5105 |
+
▁Requiere -5100
|
| 5106 |
+
▁Saavedra -5101
|
| 5107 |
+
▁Sesiones -5102
|
| 5108 |
+
▁Sócrates -5103
|
| 5109 |
+
▁Templado -5104
|
| 5110 |
+
▁Trabajar -5105
|
| 5111 |
+
▁Vallarta -5106
|
| 5112 |
+
▁Wherever -5107
|
| 5113 |
+
▁Zipolite -5108
|
| 5114 |
+
▁acciones -5109
|
| 5115 |
+
▁adecuado -5110
|
| 5116 |
+
▁aditivos -5111
|
| 5117 |
+
▁alcanzar -5112
|
| 5118 |
+
▁alergias -5113
|
| 5119 |
+
▁almacena -5114
|
| 5120 |
+
▁amarillo -5115
|
| 5121 |
+
▁amistoso -5116
|
| 5122 |
+
▁amperios -5117
|
| 5123 |
+
▁anatomía -5118
|
| 5124 |
+
▁animales -5119
|
| 5125 |
+
▁análisis -5120
|
| 5126 |
+
▁aparente -5121
|
| 5127 |
+
▁aprenden -5122
|
| 5128 |
+
▁asciende -5123
|
| 5129 |
+
▁asociado -5124
|
| 5130 |
+
▁atómicos -5125
|
| 5131 |
+
▁aumentar -5126
|
| 5132 |
+
▁avanzado -5127
|
| 5133 |
+
▁ayudarme -5128
|
| 5134 |
+
▁azúcares -5129
|
| 5135 |
+
▁biología -5130
|
| 5136 |
+
▁borrador -5131
|
| 5137 |
+
▁calentar -5132
|
| 5138 |
+
▁calienta -5133
|
| 5139 |
+
▁caliente -5134
|
| 5140 |
+
▁capturar -5135
|
| 5141 |
+
▁causadas -5136
|
| 5142 |
+
▁cerebral -5137
|
| 5143 |
+
▁chatbots -5138
|
| 5144 |
+
▁ciclismo -5139
|
| 5145 |
+
▁claridad -5140
|
| 5146 |
+
▁colonial -5141
|
| 5147 |
+
▁colorido -5142
|
| 5148 |
+
▁combatir -5143
|
| 5149 |
+
▁combinan -5144
|
| 5150 |
+
▁comparte -5145
|
| 5151 |
+
▁compañía -5146
|
| 5152 |
+
▁complejo -5147
|
| 5153 |
+
▁completo -5148
|
| 5154 |
+
▁componer -5149
|
| 5155 |
+
▁comprime -5150
|
| 5156 |
+
▁contacto -5151
|
| 5157 |
+
▁contarme -5152
|
| 5158 |
+
▁contexto -5153
|
| 5159 |
+
▁corporal -5154
|
| 5160 |
+
▁creación -5155
|
| 5161 |
+
▁creyendo -5156
|
| 5162 |
+
▁culturas -5157
|
| 5163 |
+
▁cuántica -5158
|
| 5164 |
+
▁cálculos -5159
|
| 5165 |
+
▁defiende -5160
|
| 5166 |
+
▁dependen -5161
|
| 5167 |
+
▁descanso -5162
|
| 5168 |
+
▁describe -5163
|
| 5169 |
+
▁descrita -5164
|
| 5170 |
+
▁deshielo -5165
|
| 5171 |
+
▁difuntos -5166
|
| 5172 |
+
▁dinámica -5167
|
| 5173 |
+
▁disputas -5168
|
| 5174 |
+
▁diversas -5169
|
| 5175 |
+
▁división -5170
|
| 5176 |
+
▁diámetro -5171
|
| 5177 |
+
▁ecuación -5172
|
| 5178 |
+
▁efectivo -5173
|
| 5179 |
+
▁enciende -5174
|
| 5180 |
+
▁entornos -5175
|
| 5181 |
+
▁escudero -5176
|
| 5182 |
+
▁esfuerzo -5177
|
| 5183 |
+
▁especias -5178
|
| 5184 |
+
▁especies -5179
|
| 5185 |
+
▁esquejes -5180
|
| 5186 |
+
▁estancia -5181
|
| 5187 |
+
▁estratos -5182
|
| 5188 |
+
▁estrella -5183
|
| 5189 |
+
▁estática -5184
|
| 5190 |
+
▁estático -5185
|
| 5191 |
+
▁estético -5186
|
| 5192 |
+
▁excesiva -5187
|
| 5193 |
+
▁exitosas -5188
|
| 5194 |
+
▁exploran -5189
|
| 5195 |
+
▁expresar -5190
|
| 5196 |
+
▁extremos -5191
|
| 5197 |
+
▁familiar -5192
|
| 5198 |
+
▁fermento -5193
|
| 5199 |
+
▁filtrado -5194
|
| 5200 |
+
▁formatea -5195
|
| 5201 |
+
▁francesa -5196
|
| 5202 |
+
▁fundaron -5197
|
| 5203 |
+
▁galaxias -5198
|
| 5204 |
+
▁glóbulos -5199
|
| 5205 |
+
▁gobierno -5200
|
| 5206 |
+
▁guitarra -5201
|
| 5207 |
+
▁hispanoh -5202
|
| 5208 |
+
▁icónicas -5203
|
| 5209 |
+
▁importar -5204
|
| 5210 |
+
▁independ -5205
|
| 5211 |
+
▁influyen -5206
|
| 5212 |
+
▁iniciado -5207
|
| 5213 |
+
▁insectos -5208
|
| 5214 |
+
▁intercon -5209
|
| 5215 |
+
▁interior -5210
|
| 5216 |
+
▁internet -5211
|
| 5217 |
+
▁italiano -5212
|
| 5218 |
+
▁libertad -5213
|
| 5219 |
+
▁limitada -5214
|
| 5220 |
+
▁llamados -5215
|
| 5221 |
+
▁llevados -5216
|
| 5222 |
+
▁material -5217
|
| 5223 |
+
▁melódico -5218
|
| 5224 |
+
▁mesoamer -5219
|
| 5225 |
+
▁metafase -5220
|
| 5226 |
+
▁metáfora -5221
|
| 5227 |
+
▁milenios -5222
|
| 5228 |
+
▁modernas -5223
|
| 5229 |
+
▁moldeado -5224
|
| 5230 |
+
▁molécula -5225
|
| 5231 |
+
▁momentos -5226
|
| 5232 |
+
▁máscaras -5227
|
| 5233 |
+
▁natación -5228
|
| 5234 |
+
▁nucleóti -5229
|
| 5235 |
+
▁nuestras -5230
|
| 5236 |
+
▁ofrendas -5231
|
| 5237 |
+
▁orgánica -5232
|
| 5238 |
+
▁pacífica -5233
|
| 5239 |
+
▁palabras -5234
|
| 5240 |
+
▁paquetes -5235
|
| 5241 |
+
▁periodos -5236
|
| 5242 |
+
▁permiten -5237
|
| 5243 |
+
▁petróleo -5238
|
| 5244 |
+
▁pistilos -5239
|
| 5245 |
+
▁planchas -5240
|
| 5246 |
+
▁platillo -5241
|
| 5247 |
+
▁plenitud -5242
|
| 5248 |
+
▁poderoso -5243
|
| 5249 |
+
▁política -5244
|
| 5250 |
+
▁político -5245
|
| 5251 |
+
▁positiva -5246
|
| 5252 |
+
▁positivo -5247
|
| 5253 |
+
▁predecir -5248
|
| 5254 |
+
▁predicho -5249
|
| 5255 |
+
▁prodigio -5250
|
| 5256 |
+
▁produzca -5251
|
| 5257 |
+
▁progreso -5252
|
| 5258 |
+
▁promueve -5253
|
| 5259 |
+
▁proviene -5254
|
| 5260 |
+
▁proyecta -5255
|
| 5261 |
+
▁prórroga -5256
|
| 5262 |
+
▁químicos -5257
|
| 5263 |
+
▁ranchera -5258
|
| 5264 |
+
▁realismo -5259
|
| 5265 |
+
▁realizan -5260
|
| 5266 |
+
▁realizar -5261
|
| 5267 |
+
▁refieres -5262
|
| 5268 |
+
▁refinada -5263
|
| 5269 |
+
▁reflejan -5264
|
| 5270 |
+
▁regenera -5265
|
| 5271 |
+
▁registra -5266
|
| 5272 |
+
▁religión -5267
|
| 5273 |
+
▁reposado -5268
|
| 5274 |
+
▁requiere -5269
|
| 5275 |
+
▁responde -5270
|
| 5276 |
+
▁retroali -5271
|
| 5277 |
+
▁rodillos -5272
|
| 5278 |
+
▁salvando -5273
|
| 5279 |
+
▁semillas -5274
|
| 5280 |
+
▁sentidos -5275
|
| 5281 |
+
▁siquiera -5276
|
| 5282 |
+
▁subcampo -5277
|
| 5283 |
+
▁switches -5278
|
| 5284 |
+
▁telofase -5279
|
| 5285 |
+
▁temprano -5280
|
| 5286 |
+
▁terminar -5281
|
| 5287 |
+
▁traducir -5282
|
| 5288 |
+
▁términos -5283
|
| 5289 |
+
▁valiosos -5284
|
| 5290 |
+
▁variadas -5285
|
| 5291 |
+
▁verifica -5286
|
| 5292 |
+
▁vibrante -5287
|
| 5293 |
+
▁vikingos -5288
|
| 5294 |
+
▁violines -5289
|
| 5295 |
+
▁viraliza -5290
|
| 5296 |
+
▁vírgenes -5291
|
| 5297 |
+
Blockchain -5292
|
| 5298 |
+
Cantinflas -5293
|
| 5299 |
+
Generative -5294
|
| 5300 |
+
Reputation -5295
|
| 5301 |
+
calandrado -5296
|
| 5302 |
+
centración -5297
|
| 5303 |
+
colombinas -5298
|
| 5304 |
+
controlada -5299
|
| 5305 |
+
dióptricos -5300
|
| 5306 |
+
enicillium -5301
|
| 5307 |
+
entrenados -5302
|
| 5308 |
+
específica -5303
|
| 5309 |
+
estructura -5304
|
| 5310 |
+
ientemente -5305
|
| 5311 |
+
larización -5306
|
| 5312 |
+
leoperados -5307
|
| 5313 |
+
linfocitos -5308
|
| 5314 |
+
necesarias -5309
|
| 5315 |
+
quilibrios -5310
|
| 5316 |
+
recompensa -5311
|
| 5317 |
+
reparación -5312
|
| 5318 |
+
volucionan -5313
|
| 5319 |
+
▁Activista -5314
|
| 5320 |
+
▁Animation -5315
|
| 5321 |
+
▁Argentina -5316
|
| 5322 |
+
▁Autonomía -5317
|
| 5323 |
+
▁Becquerel -5318
|
| 5324 |
+
▁Bernoulli -5319
|
| 5325 |
+
▁Cervantes -5320
|
| 5326 |
+
▁Cleopatra -5321
|
| 5327 |
+
▁Compuesto -5322
|
| 5328 |
+
▁Conceptos -5323
|
| 5329 |
+
▁Considera -5324
|
| 5330 |
+
▁Construye -5325
|
| 5331 |
+
▁Contrasta -5326
|
| 5332 |
+
▁Cristóbal -5327
|
| 5333 |
+
▁Descubrió -5328
|
| 5334 |
+
▁Diffusion -5329
|
| 5335 |
+
▁Ejercicio -5330
|
| 5336 |
+
▁Elementos -5331
|
| 5337 |
+
▁Francisco -5332
|
| 5338 |
+
▁Huentitán -5333
|
| 5339 |
+
▁Introdujo -5334
|
| 5340 |
+
▁Investiga -5335
|
| 5341 |
+
▁Involucra -5336
|
| 5342 |
+
▁Macintosh -5337
|
| 5343 |
+
▁Mañanitas -5338
|
| 5344 |
+
▁Necesitas -5339
|
| 5345 |
+
▁Nietzsche -5340
|
| 5346 |
+
▁Obtención -5341
|
| 5347 |
+
▁Organizar -5342
|
| 5348 |
+
▁Paciencia -5343
|
| 5349 |
+
▁Padrecito -5344
|
| 5350 |
+
▁Reggaetón -5345
|
| 5351 |
+
▁Relajarte -5346
|
| 5352 |
+
▁Rodríguez -5347
|
| 5353 |
+
▁Socializa -5348
|
| 5354 |
+
▁accesible -5349
|
| 5355 |
+
▁actualiza -5350
|
| 5356 |
+
▁agregados -5351
|
| 5357 |
+
▁agrícolas -5352
|
| 5358 |
+
▁alcanzado -5353
|
| 5359 |
+
▁alimentar -5354
|
| 5360 |
+
▁almacenan -5355
|
| 5361 |
+
▁almacenar -5356
|
| 5362 |
+
▁anormales -5357
|
| 5363 |
+
▁atardecer -5358
|
| 5364 |
+
▁atracción -5359
|
| 5365 |
+
▁atraviesa -5360
|
| 5366 |
+
▁austriaco -5361
|
| 5367 |
+
▁autónomos -5362
|
| 5368 |
+
▁avanzados -5363
|
| 5369 |
+
▁aventuras -5364
|
| 5370 |
+
▁bailarina -5365
|
| 5371 |
+
▁basándose -5366
|
| 5372 |
+
▁caballero -5367
|
| 5373 |
+
▁capturado -5368
|
| 5374 |
+
▁caudaloso -5369
|
| 5375 |
+
▁cervecero -5370
|
| 5376 |
+
▁charrería -5371
|
| 5377 |
+
▁clorofila -5372
|
| 5378 |
+
▁codificar -5373
|
| 5379 |
+
▁comercial -5374
|
| 5380 |
+
▁comparada -5375
|
| 5381 |
+
▁compartir -5376
|
| 5382 |
+
▁complejos -5377
|
| 5383 |
+
▁compuesta -5378
|
| 5384 |
+
▁compuesto -5379
|
| 5385 |
+
▁conductor -5380
|
| 5386 |
+
▁confianza -5381
|
| 5387 |
+
▁conflicto -5382
|
| 5388 |
+
▁conocerte -5383
|
| 5389 |
+
▁construye -5384
|
| 5390 |
+
▁consultar -5385
|
| 5391 |
+
▁contenido -5386
|
| 5392 |
+
▁contienen -5387
|
| 5393 |
+
▁contratos -5388
|
| 5394 |
+
▁controlan -5389
|
| 5395 |
+
▁creativas -5390
|
| 5396 |
+
▁creencias -5391
|
| 5397 |
+
▁cristales -5392
|
| 5398 |
+
▁curvatura -5393
|
| 5399 |
+
▁decorados -5394
|
| 5400 |
+
▁descentra -5395
|
| 5401 |
+
▁describir -5396
|
| 5402 |
+
▁desempleo -5397
|
| 5403 |
+
▁destilada -5398
|
| 5404 |
+
▁dictadura -5399
|
| 5405 |
+
▁dispersan -5400
|
| 5406 |
+
▁distancia -5401
|
| 5407 |
+
▁económico -5402
|
| 5408 |
+
▁educación -5403
|
| 5409 |
+
▁electroma -5404
|
| 5410 |
+
▁elementos -5405
|
| 5411 |
+
▁eléctrica -5406
|
| 5412 |
+
▁enfriarse -5407
|
| 5413 |
+
▁enrollado -5408
|
| 5414 |
+
▁entrenado -5409
|
| 5415 |
+
▁estambres -5410
|
| 5416 |
+
▁estolones -5411
|
| 5417 |
+
▁estáticos -5412
|
| 5418 |
+
▁excelente -5413
|
| 5419 |
+
▁explorado -5414
|
| 5420 |
+
▁expresión -5415
|
| 5421 |
+
▁feminista -5416
|
| 5422 |
+
▁fenómenos -5417
|
| 5423 |
+
▁fermentar -5418
|
| 5424 |
+
▁flexiones -5419
|
| 5425 |
+
▁fortalece -5420
|
| 5426 |
+
▁funciones -5421
|
| 5427 |
+
▁gestionar -5422
|
| 5428 |
+
▁gramática -5423
|
| 5429 |
+
▁gratuitos -5424
|
| 5430 |
+
▁guitarrón -5425
|
| 5431 |
+
▁habitaban -5426
|
| 5432 |
+
▁hinduismo -5427
|
| 5433 |
+
▁hipocampo -5428
|
| 5434 |
+
▁histórico -5429
|
| 5435 |
+
▁horizonte -5430
|
| 5436 |
+
▁humanista -5431
|
| 5437 |
+
▁identidad -5432
|
| 5438 |
+
▁idénticas -5433
|
| 5439 |
+
▁industria -5434
|
| 5440 |
+
▁inmunidad -5435
|
| 5441 |
+
▁inmutable -5436
|
| 5442 |
+
▁inspirado -5437
|
| 5443 |
+
▁intereses -5438
|
| 5444 |
+
▁introspec -5439
|
| 5445 |
+
▁irreempla -5440
|
| 5446 |
+
▁kilobares -5441
|
| 5447 |
+
▁laborales -5442
|
| 5448 |
+
▁liderazgo -5443
|
| 5449 |
+
▁literario -5444
|
| 5450 |
+
▁maniobrar -5445
|
| 5451 |
+
▁mariachis -5446
|
| 5452 |
+
▁marketing -5447
|
| 5453 |
+
▁mecanismo -5448
|
| 5454 |
+
▁mexicanas -5449
|
| 5455 |
+
▁mezclando -5450
|
| 5456 |
+
▁monetaria -5451
|
| 5457 |
+
▁musicales -5452
|
| 5458 |
+
▁naturales -5453
|
| 5459 |
+
▁navideñas -5454
|
| 5460 |
+
▁necesario -5455
|
| 5461 |
+
▁necesidad -5456
|
| 5462 |
+
▁necesites -5457
|
| 5463 |
+
▁neutrones -5458
|
| 5464 |
+
▁organizar -5459
|
| 5465 |
+
▁pacifista -5460
|
| 5466 |
+
▁patentado -5461
|
| 5467 |
+
▁patógenos -5462
|
| 5468 |
+
▁peligroso -5463
|
| 5469 |
+
▁permitién -5464
|
| 5470 |
+
▁personaje -5465
|
| 5471 |
+
▁pigmentos -5466
|
| 5472 |
+
▁políticas -5467
|
| 5473 |
+
▁positivas -5468
|
| 5474 |
+
▁prefieren -5469
|
| 5475 |
+
▁presencia -5470
|
| 5476 |
+
▁presiones -5471
|
| 5477 |
+
▁principal -5472
|
| 5478 |
+
▁producida -5473
|
| 5479 |
+
▁propuesta -5474
|
| 5480 |
+
▁propósito -5475
|
| 5481 |
+
▁protegida -5476
|
| 5482 |
+
▁proyectos -5477
|
| 5483 |
+
▁publicada -5478
|
| 5484 |
+
▁publicado -5479
|
| 5485 |
+
▁radiación -5480
|
| 5486 |
+
▁reciclaje -5481
|
| 5487 |
+
▁recolecta -5482
|
| 5488 |
+
▁recuperar -5483
|
| 5489 |
+
▁reflexión -5484
|
| 5490 |
+
▁requieren -5485
|
| 5491 |
+
▁retóricas -5486
|
| 5492 |
+
▁romántico -5487
|
| 5493 |
+
▁satélites -5488
|
| 5494 |
+
▁seguridad -5489
|
| 5495 |
+
▁selección -5490
|
| 5496 |
+
▁sensorial -5491
|
| 5497 |
+
▁silencios -5492
|
| 5498 |
+
▁simulados -5493
|
| 5499 |
+
▁sinfonías -5494
|
| 5500 |
+
▁situación -5495
|
| 5501 |
+
▁sostenido -5496
|
| 5502 |
+
▁sustituir -5497
|
| 5503 |
+
▁terrestre -5498
|
| 5504 |
+
▁tradición -5499
|
| 5505 |
+
▁triturada -5500
|
| 5506 |
+
▁trompetas -5501
|
| 5507 |
+
▁turquesas -5502
|
| 5508 |
+
▁ubicación -5503
|
| 5509 |
+
▁universal -5504
|
| 5510 |
+
▁utilizado -5505
|
| 5511 |
+
▁versiones -5506
|
| 5512 |
+
▁visitados -5507
|
| 5513 |
+
▁volúmenes -5508
|
| 5514 |
+
Información -5509
|
| 5515 |
+
aspiradoras -5510
|
| 5516 |
+
calculadora -5511
|
| 5517 |
+
combinación -5512
|
| 5518 |
+
combustible -5513
|
| 5519 |
+
descubierta -5514
|
| 5520 |
+
espectáculo -5515
|
| 5521 |
+
kimberlitas -5516
|
| 5522 |
+
mindfulness -5517
|
| 5523 |
+
renovándome -5518
|
| 5524 |
+
sentadillas -5519
|
| 5525 |
+
▁Beneficios -5520
|
| 5526 |
+
▁Blanqueado -5521
|
| 5527 |
+
▁California -5522
|
| 5528 |
+
▁Cantinflas -5523
|
| 5529 |
+
▁Codecademy -5524
|
| 5530 |
+
▁Combustión -5525
|
| 5531 |
+
▁Compresión -5526
|
| 5532 |
+
▁Consumidor -5527
|
| 5533 |
+
▁Contribuyó -5528
|
| 5534 |
+
▁Eisenhower -5529
|
| 5535 |
+
▁Geotérmica -5530
|
| 5536 |
+
▁Gherardini -5531
|
| 5537 |
+
▁Literatura -5532
|
| 5538 |
+
▁Maceración -5533
|
| 5539 |
+
▁Maduración -5534
|
| 5540 |
+
▁Meditación -5535
|
| 5541 |
+
▁Midjourney -5536
|
| 5542 |
+
▁Movimiento -5537
|
| 5543 |
+
▁Proporción -5538
|
| 5544 |
+
▁Ptolemaico -5539
|
| 5545 |
+
▁Recomiendo -5540
|
| 5546 |
+
▁Sudamérica -5541
|
| 5547 |
+
▁Timbiriche -5542
|
| 5548 |
+
▁Venustiano -5543
|
| 5549 |
+
▁acrobacias -5544
|
| 5550 |
+
▁adaptativa -5545
|
| 5551 |
+
▁alcohólica -5546
|
| 5552 |
+
▁amplificar -5547
|
| 5553 |
+
▁aprendidos -5548
|
| 5554 |
+
▁asteroides -5549
|
| 5555 |
+
▁astronomía -5550
|
| 5556 |
+
▁automático -5551
|
| 5557 |
+
▁biológicas -5552
|
| 5558 |
+
▁blockchain -5553
|
| 5559 |
+
▁científico -5554
|
| 5560 |
+
▁climáticos -5555
|
| 5561 |
+
▁cofundador -5556
|
| 5562 |
+
▁coherencia -5557
|
| 5563 |
+
▁colombiano -5558
|
| 5564 |
+
▁combustión -5559
|
| 5565 |
+
▁comediante -5560
|
| 5566 |
+
▁conciertos -5561
|
| 5567 |
+
▁conclusión -5562
|
| 5568 |
+
▁conectadas -5563
|
| 5569 |
+
▁conexiones -5564
|
| 5570 |
+
▁constancia -5565
|
| 5571 |
+
▁construida -5566
|
| 5572 |
+
▁continente -5567
|
| 5573 |
+
▁criptográf -5568
|
| 5574 |
+
▁cuestiones -5569
|
| 5575 |
+
▁culturales -5570
|
| 5576 |
+
▁discrimina -5571
|
| 5577 |
+
▁dispersión -5572
|
| 5578 |
+
▁disponible -5573
|
| 5579 |
+
▁distorsión -5574
|
| 5580 |
+
▁distribuye -5575
|
| 5581 |
+
▁domésticos -5576
|
| 5582 |
+
▁ejercicios -5577
|
| 5583 |
+
▁elecciones -5578
|
| 5584 |
+
▁eléctricos -5579
|
| 5585 |
+
▁embeddings -5580
|
| 5586 |
+
▁emotividad -5581
|
| 5587 |
+
▁empresaria -5582
|
| 5588 |
+
▁encuentran -5583
|
| 5589 |
+
▁enigmática -5584
|
| 5590 |
+
▁entretener -5585
|
| 5591 |
+
▁erupciones -5586
|
| 5592 |
+
▁escuchados -5587
|
| 5593 |
+
▁espaciales -5588
|
| 5594 |
+
▁específica -5589
|
| 5595 |
+
▁existencia -5590
|
| 5596 |
+
▁exponentes -5591
|
| 5597 |
+
▁exposición -5592
|
| 5598 |
+
▁expresando -5593
|
| 5599 |
+
▁filosófica -5594
|
| 5600 |
+
▁financiera -5595
|
| 5601 |
+
▁fortalezas -5596
|
| 5602 |
+
▁fusionando -5597
|
| 5603 |
+
▁geotérmica -5598
|
| 5604 |
+
▁gobernante -5599
|
| 5605 |
+
▁históricas -5600
|
| 5606 |
+
▁humanoides -5601
|
| 5607 |
+
▁increíbles -5602
|
| 5608 |
+
▁individuos -5603
|
| 5609 |
+
▁industrial -5604
|
| 5610 |
+
▁infusionar -5605
|
| 5611 |
+
▁ingeniería -5606
|
| 5612 |
+
▁inmersivos -5607
|
| 5613 |
+
▁innovación -5608
|
| 5614 |
+
▁inofensivo -5609
|
| 5615 |
+
▁intraplaca -5610
|
| 5616 |
+
▁keynesiana -5611
|
| 5617 |
+
▁literatura -5612
|
| 5618 |
+
▁luchadores -5613
|
| 5619 |
+
▁macrófagos -5614
|
| 5620 |
+
▁magnéticos -5615
|
| 5621 |
+
▁metafísica -5616
|
| 5622 |
+
▁misterioso -5617
|
| 5623 |
+
▁motivación -5618
|
| 5624 |
+
▁nanómetros -5619
|
| 5625 |
+
▁narrativas -5620
|
| 5626 |
+
▁observando -5621
|
| 5627 |
+
▁optimizado -5622
|
| 5628 |
+
▁organismos -5623
|
| 5629 |
+
▁originario -5624
|
| 5630 |
+
▁partículas -5625
|
| 5631 |
+
▁parámetros -5626
|
| 5632 |
+
▁patrimonio -5627
|
| 5633 |
+
▁portafolio -5628
|
| 5634 |
+
▁prefectura -5629
|
| 5635 |
+
▁privacidad -5630
|
| 5636 |
+
▁productivo -5631
|
| 5637 |
+
▁protocolos -5632
|
| 5638 |
+
▁provocando -5633
|
| 5639 |
+
▁psicología -5634
|
| 5640 |
+
▁recomienda -5635
|
| 5641 |
+
▁reduciendo -5636
|
| 5642 |
+
▁relajantes -5637
|
| 5643 |
+
▁religiones -5638
|
| 5644 |
+
▁reparación -5639
|
| 5645 |
+
▁repetición -5640
|
| 5646 |
+
▁rotacional -5641
|
| 5647 |
+
▁rotatorios -5642
|
| 5648 |
+
▁secuencias -5643
|
| 5649 |
+
▁separación -5644
|
| 5650 |
+
▁sobreviven -5645
|
| 5651 |
+
▁sociedades -5646
|
| 5652 |
+
▁tectónicas -5647
|
| 5653 |
+
▁totalmente -5648
|
| 5654 |
+
▁traducción -5649
|
| 5655 |
+
▁transformó -5650
|
| 5656 |
+
▁turbulento -5651
|
| 5657 |
+
▁utilizando -5652
|
| 5658 |
+
▁variedades -5653
|
| 5659 |
+
▁ventajosos -5654
|
| 5660 |
+
▁volcánicas -5655
|
| 5661 |
+
Inteligencia -5656
|
| 5662 |
+
Interstellar -5657
|
| 5663 |
+
enmascarados -5658
|
| 5664 |
+
freeCodeCamp -5659
|
| 5665 |
+
inteligencia -5660
|
| 5666 |
+
introducción -5661
|
| 5667 |
+
odeficiencia -5662
|
| 5668 |
+
razonamiento -5663
|
| 5669 |
+
▁Aristóteles -5664
|
| 5670 |
+
▁Guelaguetza -5665
|
| 5671 |
+
▁Hidroeléctr -5666
|
| 5672 |
+
▁Mesoamérica -5667
|
| 5673 |
+
▁Penicillium -5668
|
| 5674 |
+
▁Respiración -5669
|
| 5675 |
+
▁Revolucionó -5670
|
| 5676 |
+
▁Telescopios -5671
|
| 5677 |
+
▁Teotihuacán -5672
|
| 5678 |
+
▁actividades -5673
|
| 5679 |
+
▁adiestrador -5674
|
| 5680 |
+
▁adquisitivo -5675
|
| 5681 |
+
▁agricultura -5676
|
| 5682 |
+
▁ampliamente -5677
|
| 5683 |
+
▁antibiótica -5678
|
| 5684 |
+
▁antibiótico -5679
|
| 5685 |
+
▁anticuerpos -5680
|
| 5686 |
+
▁astronómico -5681
|
| 5687 |
+
▁atmosférica -5682
|
| 5688 |
+
▁calaveritas -5683
|
| 5689 |
+
▁calendarios -5684
|
| 5690 |
+
▁caracteriza -5685
|
| 5691 |
+
▁catolicismo -5686
|
| 5692 |
+
▁cempasúchil -5687
|
| 5693 |
+
▁científicos -5688
|
| 5694 |
+
▁combinación -5689
|
| 5695 |
+
▁comparativa -5690
|
| 5696 |
+
▁computación -5691
|
| 5697 |
+
▁comunicarse -5692
|
| 5698 |
+
▁comunidades -5693
|
| 5699 |
+
▁conquistada -5694
|
| 5700 |
+
▁considerada -5695
|
| 5701 |
+
▁consistente -5696
|
| 5702 |
+
▁consumación -5697
|
| 5703 |
+
▁convivencia -5698
|
| 5704 |
+
▁corresponde -5699
|
| 5705 |
+
▁creatividad -5700
|
| 5706 |
+
▁crecimiento -5701
|
| 5707 |
+
▁cristalizan -5702
|
| 5708 |
+
▁desarrollar -5703
|
| 5709 |
+
▁diariamente -5704
|
| 5710 |
+
▁dimensiones -5705
|
| 5711 |
+
▁dispersando -5706
|
| 5712 |
+
▁disponibles -5707
|
| 5713 |
+
▁dispositivo -5708
|
| 5714 |
+
▁electrónica -5709
|
| 5715 |
+
▁embotellado -5710
|
| 5716 |
+
▁embriología -5711
|
| 5717 |
+
▁encadenados -5712
|
| 5718 |
+
▁específicos -5713
|
| 5719 |
+
▁evolucionan -5714
|
| 5720 |
+
▁experiencia -5715
|
| 5721 |
+
▁experimento -5716
|
| 5722 |
+
▁formaciones -5717
|
| 5723 |
+
▁funcionando -5718
|
| 5724 |
+
▁generadores -5719
|
| 5725 |
+
▁globalmente -5720
|
| 5726 |
+
▁habilidades -5721
|
| 5727 |
+
▁helenístico -5722
|
| 5728 |
+
▁implementan -5723
|
| 5729 |
+
▁inagotables -5724
|
| 5730 |
+
▁infecciones -5725
|
| 5731 |
+
▁influyentes -5726
|
| 5732 |
+
▁inteligente -5727
|
| 5733 |
+
▁interpretar -5728
|
| 5734 |
+
▁invernadero -5729
|
| 5735 |
+
▁metabolizar -5730
|
| 5736 |
+
▁mindfulness -5731
|
| 5737 |
+
▁modificadas -5732
|
| 5738 |
+
▁monetarista -5733
|
| 5739 |
+
▁multiversos -5734
|
| 5740 |
+
▁necesidades -5735
|
| 5741 |
+
▁normalmente -5736
|
| 5742 |
+
▁nucleótidos -5737
|
| 5743 |
+
▁oportunidad -5738
|
| 5744 |
+
▁pensamiento -5739
|
| 5745 |
+
▁persistente -5740
|
| 5746 |
+
▁perspectiva -5741
|
| 5747 |
+
▁predecibles -5742
|
| 5748 |
+
▁presupuesto -5743
|
| 5749 |
+
▁principales -5744
|
| 5750 |
+
▁prioridades -5745
|
| 5751 |
+
▁profundidad -5746
|
| 5752 |
+
▁programados -5747
|
| 5753 |
+
▁reensamblan -5748
|
| 5754 |
+
▁reflectores -5749
|
| 5755 |
+
▁refractores -5750
|
| 5756 |
+
▁rendimiento -5751
|
| 5757 |
+
▁repetitivas -5752
|
| 5758 |
+
▁responsable -5753
|
| 5759 |
+
▁retributiva -5754
|
| 5760 |
+
▁sentimiento -5755
|
| 5761 |
+
▁sexualmente -5756
|
| 5762 |
+
▁similitudes -5757
|
| 5763 |
+
▁sobreajuste -5758
|
| 5764 |
+
▁superficies -5759
|
| 5765 |
+
▁telenovelas -5760
|
| 5766 |
+
▁temperatura -5761
|
| 5767 |
+
▁transmisión -5762
|
| 5768 |
+
▁tratamiento -5763
|
| 5769 |
+
▁variaciones -5764
|
| 5770 |
+
▁videojuegos -5765
|
| 5771 |
+
transferencia -5766
|
| 5772 |
+
▁Constitución -5767
|
| 5773 |
+
▁Denominación -5768
|
| 5774 |
+
▁Regeneración -5769
|
| 5775 |
+
▁Tenochtitlán -5770
|
| 5776 |
+
▁activaciones -5771
|
| 5777 |
+
▁alteraciones -5772
|
| 5778 |
+
▁anonimizadas -5773
|
| 5779 |
+
▁aplicaciones -5774
|
| 5780 |
+
▁asexualmente -5775
|
| 5781 |
+
▁asociaciones -5776
|
| 5782 |
+
▁astronómicos -5777
|
| 5783 |
+
▁audiblemente -5778
|
| 5784 |
+
▁civilización -5779
|
| 5785 |
+
▁comunicación -5780
|
| 5786 |
+
▁condensación -5781
|
| 5787 |
+
▁conmemorando -5782
|
| 5788 |
+
▁contabilidad -5783
|
| 5789 |
+
▁contextuales -5784
|
| 5790 |
+
▁contribución -5785
|
| 5791 |
+
▁democráticas -5786
|
| 5792 |
+
▁desoxirribon -5787
|
| 5793 |
+
▁directamente -5788
|
| 5794 |
+
▁dispositivos -5789
|
| 5795 |
+
▁distribución -5790
|
| 5796 |
+
▁distributiva -5791
|
| 5797 |
+
▁ejecutándose -5792
|
| 5798 |
+
▁especialidad -5793
|
| 5799 |
+
▁festividades -5794
|
| 5800 |
+
▁generalizado -5795
|
| 5801 |
+
▁generalmente -5796
|
| 5802 |
+
▁herramientas -5797
|
| 5803 |
+
▁individuales -5798
|
| 5804 |
+
▁innecesarias -5799
|
| 5805 |
+
▁inteligentes -5800
|
| 5806 |
+
▁interpretado -5801
|
| 5807 |
+
▁lingüísticas -5802
|
| 5808 |
+
▁polinización -5803
|
| 5809 |
+
▁programación -5804
|
| 5810 |
+
▁proporcional -5805
|
| 5811 |
+
▁proporcionan -5806
|
| 5812 |
+
▁protagonista -5807
|
| 5813 |
+
▁psicológicas -5808
|
| 5814 |
+
▁razonamiento -5809
|
| 5815 |
+
▁regenerables -5810
|
| 5816 |
+
▁renacentista -5811
|
| 5817 |
+
▁restaurativa -5812
|
| 5818 |
+
▁satisfacción -5813
|
| 5819 |
+
▁significados -5814
|
| 5820 |
+
▁simulaciones -5815
|
| 5821 |
+
▁singularidad -5816
|
| 5822 |
+
▁surrealistas -5817
|
| 5823 |
+
▁sustentación -5818
|
| 5824 |
+
▁teleoperados -5819
|
| 5825 |
+
▁temperaturas -5820
|
| 5826 |
+
▁transparente -5821
|
| 5827 |
+
▁tratamientos -5822
|
| 5828 |
+
▁trazabilidad -5823
|
| 5829 |
+
notificaciones -5824
|
| 5830 |
+
▁Carbonatación -5825
|
| 5831 |
+
▁Incondicional -5826
|
| 5832 |
+
▁Inscripciones -5827
|
| 5833 |
+
▁Macroeconomía -5828
|
| 5834 |
+
▁Microeconomía -5829
|
| 5835 |
+
▁Procesamiento -5830
|
| 5836 |
+
▁adecuadamente -5831
|
| 5837 |
+
▁autoinmunidad -5832
|
| 5838 |
+
▁autorretratos -5833
|
| 5839 |
+
▁calentamiento -5834
|
| 5840 |
+
▁concentración -5835
|
| 5841 |
+
▁consecuencias -5836
|
| 5842 |
+
▁controladores -5837
|
| 5843 |
+
▁criptomonedas -5838
|
| 5844 |
+
▁culturalmente -5839
|
| 5845 |
+
▁deforestación -5840
|
| 5846 |
+
▁desarrollador -5841
|
| 5847 |
+
▁desarrollados -5842
|
| 5848 |
+
▁descontrolada -5843
|
| 5849 |
+
▁descripciones -5844
|
| 5850 |
+
▁distracciones -5845
|
| 5851 |
+
▁epistemología -5846
|
| 5852 |
+
▁especializada -5847
|
| 5853 |
+
▁fotoeléctrico -5848
|
| 5854 |
+
▁fotovoltaicos -5849
|
| 5855 |
+
▁fundamentales -5850
|
| 5856 |
+
▁fundamentaron -5851
|
| 5857 |
+
▁genéticamente -5852
|
| 5858 |
+
▁gratuitamente -5853
|
| 5859 |
+
▁imparcialidad -5854
|
| 5860 |
+
▁instrucciones -5855
|
| 5861 |
+
▁investigación -5856
|
| 5862 |
+
▁multifacética -5857
|
| 5863 |
+
▁normalización -5858
|
| 5864 |
+
▁optimizadores -5859
|
| 5865 |
+
▁perfectamente -5860
|
| 5866 |
+
▁precolombinas -5861
|
| 5867 |
+
▁prehispánicas -5862
|
| 5868 |
+
▁principiantes -5863
|
| 5869 |
+
▁programadores -5864
|
| 5870 |
+
▁proporcionado -5865
|
| 5871 |
+
▁radiactividad -5866
|
| 5872 |
+
▁recubrimiento -5867
|
| 5873 |
+
▁reemplazarlas -5868
|
| 5874 |
+
▁reproductores -5869
|
| 5875 |
+
▁secuenciación -5870
|
| 5876 |
+
▁suscripciones -5871
|
| 5877 |
+
▁transacciones -5872
|
| 5878 |
+
▁transmitiendo -5873
|
| 5879 |
+
▁trascendental -5874
|
| 5880 |
+
Recomendaciones -5875
|
| 5881 |
+
▁Desequilibrios -5876
|
| 5882 |
+
▁Hidroeléctrica -5877
|
| 5883 |
+
▁arquitectónico -5878
|
| 5884 |
+
▁autoconciencia -5879
|
| 5885 |
+
▁característico -5880
|
| 5886 |
+
▁catadióptricos -5881
|
| 5887 |
+
▁constantemente -5882
|
| 5888 |
+
▁detalladamente -5883
|
| 5889 |
+
▁espectaculares -5884
|
| 5890 |
+
▁explícitamente -5885
|
| 5891 |
+
▁funcionamiento -5886
|
| 5892 |
+
▁hidroeléctrica -5887
|
| 5893 |
+
▁históricamente -5888
|
| 5894 |
+
▁implementación -5889
|
| 5895 |
+
▁increíblemente -5890
|
| 5896 |
+
▁introspectivas -5891
|
| 5897 |
+
▁mesoamericanas -5892
|
| 5898 |
+
▁meteorológicos -5893
|
| 5899 |
+
▁permitiéndoles -5894
|
| 5900 |
+
▁regularización -5895
|
| 5901 |
+
▁representantes -5896
|
| 5902 |
+
▁representativa -5897
|
| 5903 |
+
▁sostenibilidad -5898
|
| 5904 |
+
▁Descascarillado -5899
|
| 5905 |
+
▁actualizaciones -5900
|
| 5906 |
+
▁arquitectónicas -5901
|
| 5907 |
+
▁autobiográficas -5902
|
| 5908 |
+
▁autorregulación -5903
|
| 5909 |
+
▁backpropagation -5904
|
| 5910 |
+
▁desarrolladores -5905
|
| 5911 |
+
▁descentralizado -5906
|
| 5912 |
+
▁discriminatorio -5907
|
| 5913 |
+
▁hidroeléctricas -5908
|
| 5914 |
+
▁hispanohablante -5909
|
| 5915 |
+
▁individualmente -5910
|
| 5916 |
+
▁infraestructura -5911
|
| 5917 |
+
▁interconectados -5912
|
| 5918 |
+
▁investigaciones -5913
|
| 5919 |
+
▁irreemplazables -5914
|
| 5920 |
+
GPU -5915
|
| 5921 |
+
Haw -5916
|
| 5922 |
+
Wak -5917
|
| 5923 |
+
baj -5918
|
| 5924 |
+
ezó -5919
|
| 5925 |
+
grá -5920
|
| 5926 |
+
hih -5921
|
| 5927 |
+
hts -5922
|
| 5928 |
+
iGL -5923
|
| 5929 |
+
mys -5924
|
| 5930 |
+
nez -5925
|
| 5931 |
+
pej -5926
|
| 5932 |
+
rne -5927
|
| 5933 |
+
tbo -5928
|
| 5934 |
+
ube -5929
|
| 5935 |
+
álc -5930
|
| 5936 |
+
édu -5931
|
| 5937 |
+
índ -5932
|
| 5938 |
+
íne -5933
|
| 5939 |
+
ósf -5934
|
| 5940 |
+
ósi -5935
|
| 5941 |
+
▁Ka -5936
|
| 5942 |
+
▁Ku -5937
|
| 5943 |
+
▁Wa -5938
|
| 5944 |
+
▁úl -5939
|
| 5945 |
+
Ajus -5940
|
| 5946 |
+
Cleo -5941
|
| 5947 |
+
Garc -5942
|
| 5948 |
+
Mach -5943
|
| 5949 |
+
Thal -5944
|
| 5950 |
+
achi -5945
|
| 5951 |
+
ahor -5946
|
| 5952 |
+
anke -5947
|
| 5953 |
+
ardw -5948
|
| 5954 |
+
atir -5949
|
| 5955 |
+
aved -5950
|
| 5956 |
+
blec -5951
|
| 5957 |
+
canz -5952
|
| 5958 |
+
carb -5953
|
| 5959 |
+
cena -5954
|
| 5960 |
+
cleo -5955
|
| 5961 |
+
clip -5956
|
| 5962 |
+
comb -5957
|
| 5963 |
+
curs -5958
|
| 5964 |
+
dful -5959
|
| 5965 |
+
dula -5960
|
| 5966 |
+
ermi -5961
|
| 5967 |
+
ever -5962
|
| 5968 |
+
ezar -5963
|
| 5969 |
+
gang -5964
|
| 5970 |
+
germ -5965
|
| 5971 |
+
gric -5966
|
| 5972 |
+
hiro -5967
|
| 5973 |
+
ibil -5968
|
| 5974 |
+
icho -5969
|
| 5975 |
+
indf -5970
|
| 5976 |
+
inám -5971
|
| 5977 |
+
kins -5972
|
| 5978 |
+
legó -5973
|
| 5979 |
+
leno -5974
|
| 5980 |
+
lgún -5975
|
| 5981 |
+
limi -5976
|
| 5982 |
+
llos -5977
|
| 5983 |
+
lock -5978
|
| 5984 |
+
mita -5979
|
| 5985 |
+
mósf -5980
|
| 5986 |
+
ndic -5981
|
| 5987 |
+
nell -5982
|
| 5988 |
+
nerg -5983
|
| 5989 |
+
ness -5984
|
| 5990 |
+
nete -5985
|
| 5991 |
+
neur -5986
|
| 5992 |
+
nima -5987
|
| 5993 |
+
oard -5988
|
| 5994 |
+
ocar -5989
|
| 5995 |
+
olvo -5990
|
| 5996 |
+
orne -5991
|
| 5997 |
+
osak -5992
|
| 5998 |
+
osof -5993
|
| 5999 |
+
otre -5994
|
| 6000 |
+
pano -5995
|
| 6001 |
+
pias -5996
|
| 6002 |
+
prox -5997
|
| 6003 |
+
ptom -5998
|
| 6004 |
+
rabó -5999
|
| 6005 |
+
Job -6000
|
| 6006 |
+
Tay -6001
|
| 6007 |
+
Zip -6002
|
| 6008 |
+
ayu -6003
|
| 6009 |
+
imi -6004
|
| 6010 |
+
obo -6005
|
| 6011 |
+
▁ja -6006
|
| 6012 |
+
ayas -6007
|
| 6013 |
+
ayle -6008
|
| 6014 |
+
ober -6009
|
| 6015 |
+
paño -6010
|
| 6016 |
+
penA -6011
|
| 6017 |
+
ramm -6012
|
| 6018 |
+
rden -6013
|
| 6019 |
+
rgos -6014
|
| 6020 |
+
rizó -6015
|
| 6021 |
+
rías -6016
|
| 6022 |
+
sche -6017
|
| 6023 |
+
sius -6018
|
| 6024 |
+
tGPT -6019
|
| 6025 |
+
taja -6020
|
| 6026 |
+
tinf -6021
|
| 6027 |
+
tmos -6022
|
| 6028 |
+
trem -6023
|
| 6029 |
+
uana -6024
|
| 6030 |
+
urne -6025
|
| 6031 |
+
uscó -6026
|
| 6032 |
+
után -6027
|
| 6033 |
+
vann -6028
|
| 6034 |
+
vidu -6029
|
| 6035 |
+
érea -6030
|
| 6036 |
+
íble -6031
|
| 6037 |
+
óptr -6032
|
| 6038 |
+
ósil -6033
|
| 6039 |
+
▁And -6034
|
| 6040 |
+
▁Bit -6035
|
| 6041 |
+
▁Daw -6036
|
| 6042 |
+
▁Emi -6037
|
| 6043 |
+
▁FIF -6038
|
| 6044 |
+
▁Git -6039
|
| 6045 |
+
▁Job -6040
|
| 6046 |
+
▁Kah -6041
|
| 6047 |
+
▁Lou -6042
|
| 6048 |
+
▁Nob -6043
|
| 6049 |
+
▁Obs -6044
|
| 6050 |
+
▁Rip -6045
|
| 6051 |
+
▁RoP -6046
|
| 6052 |
+
▁Rod -6047
|
| 6053 |
+
▁atm -6048
|
| 6054 |
+
▁bai -6049
|
| 6055 |
+
▁ciu -6050
|
| 6056 |
+
▁coh -6051
|
| 6057 |
+
▁fav -6052
|
| 6058 |
+
▁geo -6053
|
| 6059 |
+
▁gru -6054
|
| 6060 |
+
▁hag -6055
|
| 6061 |
+
▁idi -6056
|
| 6062 |
+
▁jaz -6057
|
| 6063 |
+
▁jue -6058
|
| 6064 |
+
▁jus -6059
|
| 6065 |
+
▁kar -6060
|
| 6066 |
+
▁neg -6061
|
| 6067 |
+
▁sat -6062
|
| 6068 |
+
▁éxi -6063
|
| 6069 |
+
Algun -6064
|
| 6070 |
+
Komor -6065
|
| 6071 |
+
abían -6066
|
| 6072 |
+
achis -6067
|
| 6073 |
+
acróf -6068
|
| 6074 |
+
ahren -6069
|
| 6075 |
+
amoso -6070
|
| 6076 |
+
ankee -6071
|
| 6077 |
+
anuel -6072
|
| 6078 |
+
ardwa -6073
|
| 6079 |
+
asiva -6074
|
| 6080 |
+
biana -6075
|
| 6081 |
+
bonuc -6076
|
| 6082 |
+
capul -6077
|
| 6083 |
+
cares -6078
|
| 6084 |
+
casti -6079
|
| 6085 |
+
cenan -6080
|
| 6086 |
+
chtit -6081
|
| 6087 |
+
cicio -6082
|
| 6088 |
+
cirme -6083
|
| 6089 |
+
cismo -6084
|
| 6090 |
+
decir -6085
|
| 6091 |
+
depen -6086
|
| 6092 |
+
derna -6087
|
| 6093 |
+
drías -6088
|
| 6094 |
+
eCode -6089
|
| 6095 |
+
ebara -6090
|
| 6096 |
+
ebral -6091
|
| 6097 |
+
enció -6092
|
| 6098 |
+
enden -6093
|
| 6099 |
+
entaj -6094
|
| 6100 |
+
entir -6095
|
| 6101 |
+
erram -6096
|
| 6102 |
+
erros -6097
|
| 6103 |
+
escas -6098
|
| 6104 |
+
exión -6099
|
| 6105 |
+
ebr -6100
|
| 6106 |
+
fér -6101
|
| 6107 |
+
neu -6102
|
| 6108 |
+
nov -6103
|
| 6109 |
+
nse -6104
|
| 6110 |
+
pós -6105
|
| 6111 |
+
web -6106
|
| 6112 |
+
óse -6107
|
| 6113 |
+
ebra -6108
|
| 6114 |
+
ereb -6109
|
| 6115 |
+
orob -6110
|
| 6116 |
+
trod -6111
|
| 6117 |
+
ueno -6112
|
| 6118 |
+
▁Tér -6113
|
| 6119 |
+
▁aut -6114
|
| 6120 |
+
▁diá -6115
|
| 6121 |
+
▁dió -6116
|
| 6122 |
+
▁sim -6117
|
| 6123 |
+
cados -6118
|
| 6124 |
+
dedor -6119
|
| 6125 |
+
ecuen -6120
|
| 6126 |
+
escan -6121
|
| 6127 |
+
exual -6122
|
| 6128 |
+
ficie -6123
|
| 6129 |
+
forma -6124
|
| 6130 |
+
ganiz -6125
|
| 6131 |
+
gunta -6126
|
| 6132 |
+
hiles -6127
|
| 6133 |
+
hower -6128
|
| 6134 |
+
huela -6129
|
| 6135 |
+
iachi -6130
|
| 6136 |
+
ideoj -6131
|
| 6137 |
+
ierva -6132
|
| 6138 |
+
iffus -6133
|
| 6139 |
+
iguel -6134
|
| 6140 |
+
ilera -6135
|
| 6141 |
+
ilimi -6136
|
| 6142 |
+
ilish -6137
|
| 6143 |
+
iloso -6138
|
| 6144 |
+
imada -6139
|
| 6145 |
+
incen -6140
|
| 6146 |
+
inste -6141
|
| 6147 |
+
iobra -6142
|
| 6148 |
+
ional -6143
|
| 6149 |
+
ionar -6144
|
| 6150 |
+
iovan -6145
|
| 6151 |
+
irado -6146
|
| 6152 |
+
irali -6147
|
| 6153 |
+
istil -6148
|
| 6154 |
+
itmos -6149
|
| 6155 |
+
janas -6150
|
| 6156 |
+
ladas -6151
|
| 6157 |
+
lague -6152
|
| 6158 |
+
lazar -6153
|
| 6159 |
+
legar -6154
|
| 6160 |
+
lexan -6155
|
| 6161 |
+
licto -6156
|
| 6162 |
+
limát -6157
|
| 6163 |
+
mazon -6158
|
| 6164 |
+
metro -6159
|
| 6165 |
+
mocra -6160
|
| 6166 |
+
mplia -6161
|
| 6167 |
+
mágen -6162
|
| 6168 |
+
nante -6163
|
| 6169 |
+
obier -6164
|
| 6170 |
+
ograr -6165
|
| 6171 |
+
olcan -6166
|
| 6172 |
+
olmec -6167
|
| 6173 |
+
omano -6168
|
| 6174 |
+
omati -6169
|
| 6175 |
+
omone -6170
|
| 6176 |
+
ompen -6171
|
| 6177 |
+
onías -6172
|
| 6178 |
+
orena -6173
|
| 6179 |
+
oreno -6174
|
| 6180 |
+
orido -6175
|
| 6181 |
+
pecíf -6176
|
| 6182 |
+
pende -6177
|
| 6183 |
+
petas -6178
|
| 6184 |
+
ponib -6179
|
| 6185 |
+
ponsa -6180
|
| 6186 |
+
propa -6181
|
| 6187 |
+
pulsa -6182
|
| 6188 |
+
ransp -6183
|
| 6189 |
+
rbina -6184
|
| 6190 |
+
▁ -6185
|
| 6191 |
+
e -6186
|
| 6192 |
+
a -6187
|
| 6193 |
+
o -6188
|
| 6194 |
+
i -6189
|
| 6195 |
+
n -6190
|
| 6196 |
+
s -6191
|
| 6197 |
+
r -6192
|
| 6198 |
+
c -6193
|
| 6199 |
+
t -6194
|
| 6200 |
+
l -6195
|
| 6201 |
+
d -6196
|
| 6202 |
+
u -6197
|
| 6203 |
+
m -6198
|
| 6204 |
+
p -6199
|
| 6205 |
+
, -6200
|
| 6206 |
+
. -6201
|
| 6207 |
+
g -6202
|
| 6208 |
+
y -6203
|
| 6209 |
+
b -6204
|
| 6210 |
+
f -6205
|
| 6211 |
+
v -6206
|
| 6212 |
+
) -6207
|
| 6213 |
+
ó -6208
|
| 6214 |
+
h -6209
|
| 6215 |
+
é -6210
|
| 6216 |
+
( -6211
|
| 6217 |
+
' -6212
|
| 6218 |
+
C -6213
|
| 6219 |
+
z -6214
|
| 6220 |
+
? -6215
|
| 6221 |
+
¿ -6216
|
| 6222 |
+
M -6217
|
| 6223 |
+
í -6218
|
| 6224 |
+
1 -6219
|
| 6225 |
+
á -6220
|
| 6226 |
+
E -6221
|
| 6227 |
+
P -6222
|
| 6228 |
+
L -6223
|
| 6229 |
+
x -6224
|
| 6230 |
+
j -6225
|
| 6231 |
+
q -6226
|
| 6232 |
+
T -6227
|
| 6233 |
+
A -6228
|
| 6234 |
+
S -6229
|
| 6235 |
+
Q -6230
|
| 6236 |
+
0 -6231
|
| 6237 |
+
2 -6232
|
| 6238 |
+
: -6233
|
| 6239 |
+
I -6234
|
| 6240 |
+
9 -6235
|
| 6241 |
+
- -6236
|
| 6242 |
+
5 -6237
|
| 6243 |
+
D -6238
|
| 6244 |
+
R -6239
|
| 6245 |
+
ú -6240
|
| 6246 |
+
G -6241
|
| 6247 |
+
F -6242
|
| 6248 |
+
ñ -6243
|
| 6249 |
+
3 -6244
|
| 6250 |
+
8 -6245
|
| 6251 |
+
N -6246
|
| 6252 |
+
k -6247
|
| 6253 |
+
7 -6248
|
| 6254 |
+
B -6249
|
| 6255 |
+
4 -6250
|
| 6256 |
+
6 -6251
|
| 6257 |
+
H -6252
|
| 6258 |
+
! -6253
|
| 6259 |
+
V -6254
|
| 6260 |
+
¡ -6255
|
| 6261 |
+
w -6256
|
| 6262 |
+
U -6257
|
| 6263 |
+
O -6258
|
| 6264 |
+
/ -6259
|
| 6265 |
+
W -6260
|
| 6266 |
+
J -6261
|
| 6267 |
+
K -6262
|
| 6268 |
+
Y -6263
|
| 6269 |
+
° -6264
|
| 6270 |
+
~ -6265
|
| 6271 |
+
= -6266
|
| 6272 |
+
Z -6267
|
| 6273 |
+
² -6268
|
| 6274 |
+
+ -6269
|
| 6275 |
+
; -6270
|
| 6276 |
+
< -6271
|
| 6277 |
+
Á -6272
|
| 6278 |
+
Í -6273
|
| 6279 |
+
Ú -6274
|
| 6280 |
+
ü -6275
|
| 6281 |
+
≈ -6276
|
tokenizer.py
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import sentencepiece as spm
|
| 2 |
+
import os
|
| 3 |
+
import json
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
class MTPTokenizer:
|
| 7 |
+
"""Tokenizer using SentencePiece BPE - Optimizado para formato instruction-response"""
|
| 8 |
+
|
| 9 |
+
def __init__(self, model_path=None):
|
| 10 |
+
self.sp = None
|
| 11 |
+
self.model_path = model_path
|
| 12 |
+
|
| 13 |
+
if model_path and os.path.exists(model_path):
|
| 14 |
+
self.load(model_path)
|
| 15 |
+
|
| 16 |
+
def train(self, corpus_path, vocab_size=4000, model_prefix='mtp_tokenizer'):
|
| 17 |
+
"""Train SentencePiece BPE tokenizer en corpus con formato JSONL"""
|
| 18 |
+
|
| 19 |
+
# Extraer texto de corpus JSONL
|
| 20 |
+
texts = []
|
| 21 |
+
print(f" → Procesando corpus para entrenar tokenizer...")
|
| 22 |
+
|
| 23 |
+
with open(corpus_path, 'r', encoding='utf-8') as f:
|
| 24 |
+
for line_num, line in enumerate(f, 1):
|
| 25 |
+
line = line.strip()
|
| 26 |
+
if not line:
|
| 27 |
+
continue
|
| 28 |
+
|
| 29 |
+
try:
|
| 30 |
+
data = json.loads(line)
|
| 31 |
+
|
| 32 |
+
# Agregar todos los campos de texto disponibles
|
| 33 |
+
if 'instruction' in data:
|
| 34 |
+
texts.append(data['instruction'].strip())
|
| 35 |
+
if 'context' in data and data['context'].strip():
|
| 36 |
+
texts.append(data['context'].strip())
|
| 37 |
+
if 'response' in data:
|
| 38 |
+
texts.append(data['response'].strip())
|
| 39 |
+
|
| 40 |
+
except json.JSONDecodeError:
|
| 41 |
+
continue
|
| 42 |
+
|
| 43 |
+
# Filtrar textos vacíos
|
| 44 |
+
texts = [t for t in texts if t and t.strip()]
|
| 45 |
+
|
| 46 |
+
if not texts:
|
| 47 |
+
raise ValueError("No se encontraron textos válidos en el corpus")
|
| 48 |
+
|
| 49 |
+
# Guardar archivo temporal
|
| 50 |
+
temp_file = 'temp_corpus.txt'
|
| 51 |
+
with open(temp_file, 'w', encoding='utf-8') as f:
|
| 52 |
+
for text in texts:
|
| 53 |
+
f.write(text + '\n')
|
| 54 |
+
|
| 55 |
+
# Estadísticas
|
| 56 |
+
total_chars = sum(len(text) for text in texts)
|
| 57 |
+
max_vocab = min(vocab_size, max(256, int(total_chars * 0.15))) # Heurística mejorada
|
| 58 |
+
|
| 59 |
+
print(f" → Corpus stats: {len(texts)} textos, {total_chars} caracteres")
|
| 60 |
+
print(f" → Vocabulario ajustado: {max_vocab} (solicitado: {vocab_size})")
|
| 61 |
+
|
| 62 |
+
# Parámetros optimizados para Q&A
|
| 63 |
+
spm.SentencePieceTrainer.train(
|
| 64 |
+
input=temp_file,
|
| 65 |
+
model_prefix=model_prefix,
|
| 66 |
+
vocab_size=max_vocab,
|
| 67 |
+
model_type='bpe',
|
| 68 |
+
pad_id=0,
|
| 69 |
+
unk_id=1,
|
| 70 |
+
bos_id=2,
|
| 71 |
+
eos_id=3,
|
| 72 |
+
character_coverage=1.0,
|
| 73 |
+
normalization_rule_name='identity', # No normalizar para mantener formato
|
| 74 |
+
num_threads=4,
|
| 75 |
+
split_digits=True,
|
| 76 |
+
allow_whitespace_only_pieces=False,
|
| 77 |
+
byte_fallback=False,
|
| 78 |
+
max_sentencepiece_length=16,
|
| 79 |
+
add_dummy_prefix=False, # Importante para mantener inicio de textos
|
| 80 |
+
remove_extra_whitespaces=False # Mantener formato exacto
|
| 81 |
+
)
|
| 82 |
+
|
| 83 |
+
# Limpiar
|
| 84 |
+
os.remove(temp_file)
|
| 85 |
+
|
| 86 |
+
# Cargar modelo entrenado
|
| 87 |
+
self.model_path = f"{model_prefix}.model"
|
| 88 |
+
self.load(self.model_path)
|
| 89 |
+
|
| 90 |
+
print(f"✓ Tokenizer entrenado: {self.vocab_size()} tokens")
|
| 91 |
+
print(f"✓ Modelo guardado: {self.model_path}")
|
| 92 |
+
|
| 93 |
+
def load(self, model_path):
|
| 94 |
+
"""Load trained tokenizer"""
|
| 95 |
+
self.sp = spm.SentencePieceProcessor()
|
| 96 |
+
self.sp.load(model_path)
|
| 97 |
+
self.model_path = model_path
|
| 98 |
+
|
| 99 |
+
def encode(self, text):
|
| 100 |
+
"""Encode text to token IDs"""
|
| 101 |
+
if self.sp is None:
|
| 102 |
+
raise ValueError("Tokenizer not loaded. Train or load a model first.")
|
| 103 |
+
return self.sp.encode_as_ids(text)
|
| 104 |
+
|
| 105 |
+
def decode(self, ids):
|
| 106 |
+
"""Decode token IDs to text"""
|
| 107 |
+
if self.sp is None:
|
| 108 |
+
raise ValueError("Tokenizer not loaded. Train or load a model first.")
|
| 109 |
+
return self.sp.decode_ids(ids)
|
| 110 |
+
|
| 111 |
+
def vocab_size(self):
|
| 112 |
+
"""Get vocabulary size"""
|
| 113 |
+
if self.sp is None:
|
| 114 |
+
return 0
|
| 115 |
+
return self.sp.get_piece_size()
|
| 116 |
+
|
| 117 |
+
def bos_id(self):
|
| 118 |
+
"""Beginning of sentence token ID"""
|
| 119 |
+
return self.sp.bos_id()
|
| 120 |
+
|
| 121 |
+
def eos_id(self):
|
| 122 |
+
"""End of sentence token ID"""
|
| 123 |
+
return self.sp.eos_id()
|
| 124 |
+
|
| 125 |
+
def pad_id(self):
|
| 126 |
+
"""Padding token ID"""
|
| 127 |
+
return self.sp.pad_id()
|
| 128 |
+
|
| 129 |
+
def unk_id(self):
|
| 130 |
+
"""Unknown token ID"""
|
| 131 |
+
return self.sp.unk_id()
|