diff --git a/.gitignore b/.gitignore index 82ca924..5cdb8e0 100644 --- a/.gitignore +++ b/.gitignore @@ -135,4 +135,5 @@ dmypy.json /.idea/ .DS_Store -wandb \ No newline at end of file +wandb +*.sh diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ea0ddcf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": true, + "python.testing.pytestEnabled": false, + "python.testing.unittestArgs": [ + "-v", + "-s", + "./tests", + "-p", + "*test*.py" + ] +} \ No newline at end of file diff --git a/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py b/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py index 8a0908c..a5948fa 100644 --- a/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py +++ b/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py @@ -162,3 +162,4 @@ def zero(self) -> SddFormula: def reset(self): self.all_facts = FastList() + self.manager.garbage_collect() diff --git a/deepsoftlog/data/__init__.py b/deepsoftlog/data/__init__.py index ccd9bed..cc9a65e 100644 --- a/deepsoftlog/data/__init__.py +++ b/deepsoftlog/data/__init__.py @@ -3,7 +3,6 @@ from .query import Query from ..logic.soft_term import SoftTerm, TensorTerm - def load_tsv_file(filename: str): with open(filename, "r") as f: return [line.strip().split("\t") for line in f.readlines()] @@ -19,3 +18,7 @@ def data_to_prolog(rows, name="r", **kwargs): def to_prolog_image(img): return SoftTerm(Expr("lenet5", TensorTerm(img))) + + +def to_prolog_text(text): + return SoftTerm(Expr("roberta", TensorTerm(text))) diff --git a/deepsoftlog/embeddings/embedding_store.py b/deepsoftlog/embeddings/embedding_store.py index 6c20cf3..28a4f54 100644 --- a/deepsoftlog/embeddings/embedding_store.py +++ b/deepsoftlog/embeddings/embedding_store.py @@ -7,7 +7,7 @@ from ..parser.vocabulary import Vocabulary from .distance import embedding_similarity from .initialize_vector import Initializer -from ..logic.soft_term import TensorTerm +from ..logic.soft_term import TensorTerm, TextTerm from .nn_models import EmbeddingFunctor from deepsoftlog.algebraic_prover.terms.expression import Expr @@ -53,7 +53,7 @@ def forward(self, term: Expr): return e def _embed_constant(self, term: Expr): - if isinstance(term, TensorTerm): + if isinstance(term, TensorTerm) or isinstance(term, TextTerm): return term.get_tensor().to(self.device) name = term.functor @@ -70,16 +70,28 @@ def _embed_functor(self, functor: Expr): def clear_cache(self): self._cache = dict() + if "('roberta', 1)" in self.functor_embeddings.keys(): + self.functor_embeddings["('roberta', 1)"].clear_cache() + if "('text', 1)" in self.functor_embeddings.keys(): + self.functor_embeddings["('text', 1)"].clear_cache() def to(self, device): self.device = device return super().to(device) + def get_soft_unification_matrix(self, distance_metric: str, names): + n = len(names) + matrix = torch.zeros(n, n) + for i, c1 in enumerate(names): + for j, c2 in enumerate(names): + e1, e2 = self.constant_embeddings[c1], self.constant_embeddings[c2] + matrix[i, j] = embedding_similarity(e1, e2, distance_metric) # log probabilities + return matrix.detach().numpy() def create_embedding_store(config, vocab_sources: Iterable) -> EmbeddingStore: ndim = config['embedding_dimensions'] vocabulary = create_vocabulary(vocab_sources) - initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim) + initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim, config.get("text_embedding_mode"), config.get("freeze_layers")) store = EmbeddingStore(ndim, initializer, vocabulary) return store diff --git a/deepsoftlog/embeddings/initialize_vector.py b/deepsoftlog/embeddings/initialize_vector.py index f51bc09..a521e72 100644 --- a/deepsoftlog/embeddings/initialize_vector.py +++ b/deepsoftlog/embeddings/initialize_vector.py @@ -3,18 +3,22 @@ from torch import Tensor from torch import nn -from ..embeddings.nn_models import LeNet5 +from ..embeddings.nn_models import LeNet5, RobertaBase, BaselineTextEmbedder SPECIAL_MODELS = { ("lenet5", 1): LeNet5, } - +SPECIAL_PRETRAINED_MODELS = { + ("roberta", 1): RobertaBase, +} class Initializer: - def __init__(self, model: nn.Module, init_mode: str, ndim: int): + def __init__(self, model: nn.Module, init_mode: str, ndim: int, text_embedding_mode: str = None, freeze_layers: int = 12): self.ndim = ndim self.init_mode = init_mode self.model = model + self.text_embedding_mode = text_embedding_mode + self.freeze_layers = freeze_layers def __call__(self, x) -> Tensor | nn.Module: if isinstance(x, str): @@ -36,8 +40,12 @@ def _initialize_constant(self, name: str) -> Tensor: return embedding def _initialize_functor(self, name: str, arity: int) -> nn.Module: + if name == "text" and arity == 1: + return RobertaBase(self.ndim) if self.text_embedding_mode == "LM" else BaselineTextEmbedder(self.ndim) if (name, arity) in SPECIAL_MODELS: return SPECIAL_MODELS[(name, arity)](self.ndim) + if (name, arity) in SPECIAL_PRETRAINED_MODELS: # Pretrained models have the freeze_layers argument + return SPECIAL_PRETRAINED_MODELS[(name, arity)](self.ndim, freeze_layers=self.freeze_layers) return self.model(arity, self.ndim) diff --git a/deepsoftlog/embeddings/nn_models.py b/deepsoftlog/embeddings/nn_models.py index 98505e5..5257563 100644 --- a/deepsoftlog/embeddings/nn_models.py +++ b/deepsoftlog/embeddings/nn_models.py @@ -1,100 +1,205 @@ import torch -from torch import nn +from torch import nn, Tensor +from transformers import AutoTokenizer, AutoModel class AdditionFunctor(nn.Module): - def __init__(self, *args): - super().__init__() + def __init__(self, *args): + super().__init__() - def forward(self, x): - result = _add_probs(x[0], x[1]) - for t in x[2:]: - result = _add_probs(result, t) - return result + def forward(self, x): + result = _add_probs(x[0], x[1]) + for t in x[2:]: + result = _add_probs(result, t) + return result def _add_probs(x1, x2): - result = torch.zeros(10).to(x1.device) - for i in range(10): - result += x1[i] * torch.roll(x2, i, 0) - return result + result = torch.zeros(10).to(x1.device) + for i in range(10): + result += x1[i] * torch.roll(x2, i, 0) + return result class CarryFunctor(nn.Module): - def __init__(self, *args): - super().__init__() + def __init__(self, *args): + super().__init__() - def forward(self, x): - c1 = _carry_probs(x[0], x[1]) - if len(x) == 2: - return c1 - a1 = _add_probs(x[0], x[1]) - c2 = _carry_probs(a1, x[2]) - result = torch.zeros(10).to(c1.device) - result[0] = c1[0] * c2[0] - result[1] = 1 - result[0] - return result + def forward(self, x): + c1 = _carry_probs(x[0], x[1]) + if len(x) == 2: + return c1 + a1 = _add_probs(x[0], x[1]) + c2 = _carry_probs(a1, x[2]) + result = torch.zeros(10).to(c1.device) + result[0] = c1[0] * c2[0] + result[1] = 1 - result[0] + return result def _carry_probs(x1, x2): - result = torch.zeros(10).to(x1.device) - result[0] = (torch.cumsum(x2, 0).flip((0,)) * x1).sum() - result[1] = 1 - result[0] - return result + result = torch.zeros(10).to(x1.device) + result[0] = (torch.cumsum(x2, 0).flip((0,)) * x1).sum() + result[1] = 1 - result[0] + return result class EmbeddingFunctor(nn.Module): - def __init__(self, arity=1, ndims=128): - super().__init__() - hidden_dims = max(128, ndims) - self.model = nn.Sequential( - nn.Linear(arity * ndims, hidden_dims), - nn.LayerNorm(hidden_dims), - nn.ReLU(True), - nn.Linear(hidden_dims, hidden_dims), - nn.ReLU(True), - nn.Linear(hidden_dims, ndims), - ) - self.activation = torch.nn.Softmax(dim=0) - - def forward(self, x): - x = self.model(x.flatten()) - return self.activation(x) + def __init__(self, arity=1, ndims=128): + super().__init__() + hidden_dims = max(128, ndims) + self.model = nn.Sequential( + nn.Linear(arity * ndims, hidden_dims), + nn.LayerNorm(hidden_dims), + nn.ReLU(True), + nn.Linear(hidden_dims, hidden_dims), + nn.ReLU(True), + nn.Linear(hidden_dims, ndims), + ) + self.activation = torch.nn.Softmax(dim=0) + + def forward(self, x): + x = self.model(x.flatten()) + return self.activation(x) class LeNet5(nn.Module): - """ - LeNet5. A small convolutional network. - """ - - def __init__(self, output_features=10): - super().__init__() - self.encoder = nn.Sequential( - nn.Conv2d(1, 6, 5), # 1 28 28 -> 6 24 24 - nn.MaxPool2d(2, 2), # 6 24 24 -> 6 12 12 - nn.ReLU(True), - nn.Conv2d(6, 16, 5), # 6 12 12 -> 16 8 8 - nn.MaxPool2d(2, 2), # 16 8 8 -> 16 4 4 - nn.ReLU(True), - ) - self.classifier = nn.Sequential( - nn.Linear(16 * 4 * 4, 120), - nn.ReLU(), - nn.Linear(120, 84), - nn.ReLU(), - nn.Linear(84, output_features), - ) - self.activation = torch.nn.Softmax(dim=0) - - def forward(self, x): - x = self.encoder(x) - x = x.view(-1, 16 * 4 * 4) - x = self.classifier(x)[0] - return self.activation(x) - + """ + LeNet5. A small convolutional network. + """ + + def __init__(self, output_features=10): + super().__init__() + self.encoder = nn.Sequential( + nn.Conv2d(1, 6, 5), # 1 28 28 -> 6 24 24 + nn.MaxPool2d(2, 2), # 6 24 24 -> 6 12 12 + nn.ReLU(True), + nn.Conv2d(6, 16, 5), # 6 12 12 -> 16 8 8 + nn.MaxPool2d(2, 2), # 16 8 8 -> 16 4 4 + nn.ReLU(True), + ) + self.classifier = nn.Sequential( + nn.Linear(16 * 4 * 4, 120), + nn.ReLU(), + nn.Linear(120, 84), + nn.ReLU(), + nn.Linear(84, output_features), + ) + self.activation = torch.nn.Softmax(dim=0) + + def forward(self, x): + x = self.encoder(x) + x = x.view(-1, 16 * 4 * 4) + x = self.classifier(x)[0] + return self.activation(x) + #return + +MULTIPLIER = 6364136223846793005 +INCREMENT = 1 +MODULUS = 2**64 + +def hash_tensor(x: Tensor) -> Tensor: + assert x.dtype == torch.int64 + while x.ndim > 0: + x = _reduce_last_axis(x) + return x.item() + +@torch.no_grad() +def _reduce_last_axis(x: Tensor) -> Tensor: + assert x.dtype == torch.int64 + acc = torch.zeros_like(x[..., 0]) + for i in range(x.shape[-1]): + acc *= MULTIPLIER + acc += INCREMENT + acc += x[..., i] + # acc %= MODULUS # Not really necessary. + return acc + +class RobertaBase(nn.Module): + """ + https://huggingface.co/FacebookAI/roberta-base + """ + + def __init__(self, ndims=100, freeze_layers=12): + super().__init__() + self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") + self.model = AutoModel.from_pretrained("xlm-roberta-base") + for name,param in self.model.encoder.named_parameters(): + if int(name.split(".")[1]) < freeze_layers: # Roberta-XLM has layers 0-11 + param.requires_grad = False + self.output_layer = nn.Linear(768, ndims) + self.embedding_cache = {} + self.counter = 0 + + def half_precision(self): # not used + self.model.half() + + for layer in self.model.modules(): + if isinstance(layer, nn.BatchNorm2d): + layer.float() + if isinstance(layer, nn.LayerNorm): + layer.float() + + def forward(self, x): + if hash_tensor(x) not in self.embedding_cache: + self.embedding_cache[hash_tensor(x)] = self._forward(x) + + return self.embedding_cache[hash_tensor(x)] + + def _forward(self, x): + tokens = x[:, 0, :] + attention_mask = x[:, 1, :] + + embedding = self.model(tokens[:, :512], attention_mask[:, :512]) # max context length is 512 + pooler_output = embedding.pooler_output + + return torch.softmax(self.output_layer(pooler_output), dim=1) + + def clear_cache(self): + self.embedding_cache = {} + +class BaselineTextEmbedder(nn.Module): + def __init__(self, ndim: int): + super().__init__() + self.tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") + self.word_embedding_store = TokenEmbeddingStore(ndim, len(self.tokenizer.get_vocab())) + + def __call__(self, x): + tokens = x[:, 0, :] + attention_mask = x[:, 1, :] + return self.word_embedding_store.get_sentence_embedding(tokens, attention_mask) + + def clear_cache(self): + pass + + +class TokenEmbeddingStore(nn.Module): + """ + Stores the embeddings words. + """ + def __init__(self, ndim: int, nb_tokens: int): + super().__init__() + self.ndim = ndim + self.nb_tokens = nb_tokens + + self.embeddings = torch.randn((nb_tokens, ndim)) + self.device_set = False + + print(f"- Initializing {nb_tokens} word embeddings of size {ndim}") + + def get_embeddings(self, idxs): + return self.embeddings[idxs] + + def get_sentence_embedding(self, idxs, mask): + if not self.device_set: + self.embeddings = self.embeddings.to(idxs.device) + self.device_set = True + + return torch.mean(self.embeddings[torch.masked_select(idxs, (mask==1))], dim=0) if __name__ == "__main__": - model = CarryFunctor() - t = [[0, 0, .2, .2, 0, 0, 0, 0, 0, .6], [0, .8, 0, 0, 0, 0, 0, .1, .1, 0]] - t = torch.Tensor(t) - print(model(t)) + model = RobertaBase() + tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") + ts = list([torch.tensor(x) for x in tokenizer(["Hello, my dog is cute.", "Hello, my cat is cute."]).values()]) + embedding = model(torch.stack(ts, dim=1)) + print(embedding) diff --git a/deepsoftlog/experiments/countries/countries.py b/deepsoftlog/experiments/countries/countries.py index 860849b..a765e47 100644 --- a/deepsoftlog/experiments/countries/countries.py +++ b/deepsoftlog/experiments/countries/countries.py @@ -1,11 +1,23 @@ import torch from deepsoftlog.experiments.countries.dataset import generate_prolog_files, get_test_dataloader, get_train_dataloader, get_val_dataloader +from deepsoftlog.experiments.countries.visualise import visualise_matrix, get_located_in_matrix, COUNTRIES from deepsoftlog.training import load_program, load_config from deepsoftlog.training.logger import WandbLogger from deepsoftlog.training.loss import nll_loss, get_optimizer from deepsoftlog.training.trainer import Trainer +def visualise(trainer, logger, cfg): + # visualise task + region_matrix, subregion_matrix = get_located_in_matrix(cfg.name) + fig1 = visualise_matrix(region_matrix, COUNTRIES) + fig2 = visualise_matrix(subregion_matrix, COUNTRIES) + logger.log_fig(fig1, name="region matrix") + logger.log_fig(fig2, name="subregion matrix") + # visualise soft unification scores + names, matrix = trainer.program.get_soft_unification_matrix() + fig = visualise_matrix(matrix, names) + logger.log_fig(fig, name="similarity matrix") def train(cfg): cfg = load_config(cfg) @@ -24,6 +36,7 @@ def train(cfg): trainer.val_dataloader = eval_dataloader trainer.train(cfg) trainer.eval(get_test_dataloader()) + visualise(trainer, logger, cfg) def eval(folder: str): @@ -36,6 +49,7 @@ def eval(folder: str): trainer.max_branching = cfg['max_branching'] trainer.max_depth = cfg['max_depth'] trainer.eval(eval_dataloader) + #visualise(trainer, logger, cfg) if __name__ == "__main__": diff --git a/deepsoftlog/experiments/countries/visualise.py b/deepsoftlog/experiments/countries/visualise.py new file mode 100644 index 0000000..159be29 --- /dev/null +++ b/deepsoftlog/experiments/countries/visualise.py @@ -0,0 +1,104 @@ +from functools import reduce +from pathlib import Path + +import numpy as np +from matplotlib import pyplot as plt + +COUNTRIES = ['rwanda', 'djibouti', 'kenya', 'seychelles', 'uganda', 'tanzania', 'mayotte', 'réunion', 'zambia', 'madagascar', 'eritrea', 'somalia', 'ethiopia', 'burundi', 'zimbabwe', 'mauritius', 'malawi', 'british_indian_ocean_territory', 'comoros', 'mozambique', 'são_tomé_and_príncipe', 'angola', 'equatorial_guinea', 'dr_congo', 'chad', 'cameroon', 'central_african_republic', 'gabon', 'republic_of_the_congo', 'south_sudan', 'egypt', 'western_sahara', 'morocco', 'libya', 'tunisia', 'algeria', 'sudan', 'swaziland', 'south_africa', 'namibia', 'botswana', 'lesotho', 'gambia', 'sierra_leone', 'benin', 'mauritania', 'liberia', 'togo', 'cape_verde', 'burkina_faso', 'senegal', 'ivory_coast', 'guinea', 'ghana', 'guinea-bissau', 'mali', 'nigeria', 'niger', 'turks_and_caicos_islands', 'jamaica', 'sint_maarten', 'martinique', 'united_states_virgin_islands', 'cuba', 'curaçao', 'bahamas', 'dominican_republic', 'aruba', 'montserrat', 'dominica', 'haiti', 'trinidad_and_tobago', 'anguilla', 'saint_kitts_and_nevis', 'saint_lucia', 'barbados', 'puerto_rico', 'guadeloupe', 'cayman_islands', 'saint_barthélemy', 'grenada', 'saint_vincent_and_the_grenadines', 'antigua_and_barbuda', 'saint_martin', 'british_virgin_islands', 'panama', 'nicaragua', 'honduras', 'costa_rica', 'el_salvador', 'guatemala', 'belize', 'canada', 'united_states', 'saint_pierre_and_miquelon', 'mexico', 'bermuda', 'united_states_minor_outlying_islands', 'greenland', 'peru', 'bolivia', 'chile', 'french_guiana', 'suriname', 'falkland_islands', 'guyana', 'ecuador', 'brazil', 'uruguay', 'south_georgia', 'colombia', 'argentina', 'paraguay', 'venezuela', 'kazakhstan', 'turkmenistan', 'uzbekistan', 'kyrgyzstan', 'tajikistan', 'macau', 'hong_kong', 'taiwan', 'north_korea', 'japan', 'mongolia', 'south_korea', 'china', 'philippines', 'myanmar', 'indonesia', 'laos', 'brunei', 'thailand', 'timor-leste', 'cambodia', 'singapore', 'vietnam', 'malaysia', 'bangladesh', 'afghanistan', 'maldives', 'sri_lanka', 'nepal', 'india', 'pakistan', 'iran', 'bhutan', 'qatar', 'iraq', 'azerbaijan', 'oman', 'yemen', 'bahrain', 'kuwait', 'israel', 'lebanon', 'turkey', 'syria', 'saudi_arabia', 'jordan', 'armenia', 'united_arab_emirates', 'georgia', 'palestine', 'slovakia', 'czechia', 'poland', 'romania', 'russia', 'hungary', 'cyprus', 'kosovo', 'bulgaria', 'ukraine', 'belarus', 'moldova', 'denmark', 'norway', 'ireland', 'finland', 'isle_of_man', 'åland_islands', 'svalbard_and_jan_mayen', 'united_kingdom', 'faroe_islands', 'estonia', 'jersey', 'iceland', 'guernsey', 'latvia', 'sweden', 'lithuania', 'serbia', 'vatican_city', 'montenegro', 'albania', 'andorra', 'italy', 'greece', 'spain', 'san_marino', 'gibraltar', 'bosnia_and_herzegovina', 'macedonia', 'malta', 'slovenia', 'portugal', 'croatia', 'switzerland', 'liechtenstein', 'monaco', 'germany', 'netherlands', 'luxembourg', 'belgium', 'austria', 'france', 'australia', 'norfolk_island', 'new_zealand', 'christmas_island', 'cocos_keeling_islands', 'new_caledonia', 'vanuatu', 'solomon_islands', 'fiji', 'papua_new_guinea', 'marshall_islands', 'kiribati', 'palau', 'micronesia', 'northern_mariana_islands', 'guam', 'nauru', 'samoa', 'niue', 'tonga', 'pitcairn_islands', 'french_polynesia', 'wallis_and_futuna', 'american_samoa', 'cook_islands', 'tokelau', 'tuvalu'] +SUBREGIONS = ['eastern_africa', 'middle_africa', 'northern_africa','southern_africa', 'western_africa' , 'caribbean', 'central_america', 'northern_america', 'south_america', 'central_asia', 'eastern_asia', 'south-eastern_asia', 'southern_asia', 'western_asia','central_europe', 'eastern_europe', 'northern_europe', 'southern_europe', 'western_europe', 'australia_and_new_zealand', 'melanesia', 'micronesia', 'polynesia'] +REGIONS = ['africa', 'americas', 'asia', 'europe', 'oceania'] + +def visualise_matrix(matrix, names): + idxs = [list(names).index(c) for c in filter(lambda x: x in names, COUNTRIES)] + matrix = matrix[idxs][:, idxs] + fig, ax = plt.subplots(figsize=(8, 6)) + cax = ax.matshow(matrix, cmap='viridis') + fig.colorbar(cax) + return fig + +def get_located_in(kg): + subregion_dict = {} + region_dict = {} + + for subregion in SUBREGIONS: + subregion_dict[subregion] = {y[0] for y in filter(lambda x: x[2] == subregion, kg)} + + for region in REGIONS: + region_dict[region] = {y[0] for y in filter(lambda x: x[2] == region, kg)} + + return region_dict, subregion_dict + +def get_full_kg(): + base_path = Path(__file__).parent / 'data' + with open(base_path / 'raw' / 'countries_S0.tsv', 'r') as f: + full_kg = [tuple(line.strip().split('\t')) for line in f.readlines()] + + with open(base_path / 'raw' / 'val.tsv', 'r') as f: + full_kg += [tuple(line.strip().split('\t')) for line in f.readlines()] + + with open(base_path / 'raw' / 'test.tsv', 'r') as f: + full_kg += [tuple(line.strip().split('\t')) for line in f.readlines()] + + return get_located_in(full_kg) + +def get_task_kg(task_name): + base_path = Path(__file__).parent / 'data' + with open(base_path / 'raw' / f'countries_{task_name}.tsv', 'r') as f: + task_kg = [tuple(line.strip().split('\t')) for line in f.readlines()] + + return get_located_in(task_kg) + +def make_region_matrices(): + region_matrix = np.zeros((len(COUNTRIES), len(COUNTRIES))) + subregion_matrix = np.zeros((len(COUNTRIES), len(COUNTRIES))) + + all_regions, all_subregions = get_full_kg() + + all_regions_closed = all_regions.copy() + for region in all_regions: + for subregion in SUBREGIONS: + if subregion in all_regions[region]: + all_regions_closed[region].update(all_subregions[subregion]) + + offset = 0 + for region in all_regions: + all_regions_filtered = list(filter(lambda x: x in COUNTRIES, all_regions_closed[region])) + length = len(all_regions_filtered) + region_matrix[offset:offset + length, offset:offset + length] = 1 + offset += length + + offset = 0 + for subregion in all_subregions: + length = len(all_subregions[subregion]) + subregion_matrix[offset:offset + length, offset:offset + length] = 1 + offset += length + + return region_matrix, subregion_matrix + +def get_located_in_matrix(task_name): + region_dict, subregion_dict = get_task_kg(task_name) + + region_matrix, subregion_matrix = make_region_matrices() + + for country in COUNTRIES: + if not any(country in region_dict[region] for region in region_dict): + region_matrix[COUNTRIES.index(country),:] = 0 + region_matrix[:,COUNTRIES.index(country)] = 0 + if not any(country in subregion_dict[subregion] for subregion in subregion_dict): + subregion_matrix[COUNTRIES.index(country),:] = 0 + subregion_matrix[:,COUNTRIES.index(country)] = 0 + + return region_matrix, subregion_matrix + +if __name__ == "__main__": + TASK = "S3" + + region_matrix, subregion_matrix = get_located_in_matrix(TASK) + + fig1 = visualise_matrix(region_matrix, COUNTRIES) + fig2 = visualise_matrix(subregion_matrix, COUNTRIES) + fig1.suptitle(f"Region Matrix {TASK}") + fig2.suptitle(f"Subregion Matrix {TASK}") + + plt.show() + diff --git a/deepsoftlog/experiments/mentions_countries/config.yaml b/deepsoftlog/experiments/mentions_countries/config.yaml new file mode 100644 index 0000000..f582077 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/config.yaml @@ -0,0 +1,20 @@ +project: mentions_countries +verbose: true +data_subset: null +semantics: sdd2 + +# optimization +optimizer: AdamW +embedding_learning_rate: 0.01 +functor_learning_rate: 0.0001 +batch_size: 4 +nb_epochs: 6 +grad_clip: null +max_proofs: null +max_depth: 2 +max_branching: 4 + +# embeddings +embedding_dimensions: 100 +embedding_initialization: sphere +embedding_metric: angle \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S0.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S0.tsv new file mode 100644 index 0000000..febf1b9 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S0.tsv @@ -0,0 +1,463 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands locatedIn western_europe +turkey locatedIn western_asia +angola locatedIn middle_africa +angola locatedIn africa +armenia locatedIn western_asia +armenia locatedIn asia +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +zambia locatedIn eastern_africa +zambia locatedIn africa +cyprus locatedIn eastern_europe +cyprus locatedIn europe +ireland locatedIn northern_europe +ireland locatedIn europe +burundi locatedIn eastern_africa +burundi locatedIn africa +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +sierra_leone locatedIn western_africa +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland locatedIn eastern_europe +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan locatedIn southern_asia +argentina locatedIn south_america +argentina locatedIn americas +cuba locatedIn caribbean +cuba locatedIn americas +serbia locatedIn southern_europe +czechia locatedIn eastern_europe +czechia locatedIn europe +nicaragua locatedIn central_america +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +slovakia locatedIn central_europe +mozambique locatedIn eastern_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +colombia locatedIn south_america +colombia locatedIn americas +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo locatedIn middle_africa +saudi_arabia locatedIn western_asia +el_salvador locatedIn central_america +el_salvador locatedIn americas +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana locatedIn south_america +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +germany locatedIn western_europe +burkina_faso locatedIn western_africa +tanzania locatedIn eastern_africa +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +norway locatedIn northern_europe +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +suriname locatedIn south_america +suriname locatedIn americas +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt locatedIn northern_africa +bulgaria locatedIn eastern_europe +guinea locatedIn western_africa +guinea locatedIn africa +spain locatedIn southern_europe +costa_rica locatedIn central_america +costa_rica locatedIn americas +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +romania locatedIn eastern_europe +romania locatedIn europe +san_marino locatedIn southern_europe +san_marino locatedIn europe +mauritania locatedIn western_africa +mauritania locatedIn africa +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar locatedIn south-eastern_asia +iraq locatedIn western_asia +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan locatedIn central_asia +botswana locatedIn southern_africa +botswana locatedIn africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +sri_lanka locatedIn southern_asia +belgium locatedIn western_europe +belgium locatedIn europe +qatar locatedIn western_asia +qatar locatedIn asia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +india locatedIn southern_asia +india locatedIn asia +morocco locatedIn northern_africa +kenya locatedIn eastern_africa +kenya locatedIn africa +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +ghana locatedIn western_africa +tajikistan locatedIn central_asia +tajikistan locatedIn asia +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +nauru locatedIn micronesia +nauru locatedIn oceania +thailand locatedIn south-eastern_asia +sudan locatedIn northern_africa +chad locatedIn middle_africa +chad locatedIn africa +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +zimbabwe locatedIn eastern_africa +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +libya locatedIn northern_africa +libya locatedIn africa +bhutan locatedIn southern_asia +bhutan locatedIn asia +macau locatedIn eastern_asia +macau locatedIn asia +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +north_korea locatedIn eastern_asia +latvia locatedIn northern_europe +latvia locatedIn europe +oman locatedIn western_asia +oman locatedIn asia +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +israel locatedIn western_asia +israel locatedIn asia +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +saint_martin locatedIn caribbean +saint_martin locatedIn americas +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +denmark locatedIn northern_europe +bermuda locatedIn northern_america +bermuda locatedIn americas +chile locatedIn south_america +kosovo locatedIn eastern_europe +kosovo locatedIn europe +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea locatedIn eastern_africa +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +niger locatedIn western_africa +niger locatedIn africa +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +estonia locatedIn northern_europe +estonia locatedIn europe +greece locatedIn southern_europe +greece locatedIn europe +senegal locatedIn western_africa +senegal locatedIn africa +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco locatedIn western_europe +djibouti locatedIn eastern_africa +indonesia locatedIn south-eastern_asia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +macedonia locatedIn southern_europe +macedonia locatedIn europe +tunisia locatedIn northern_africa +tunisia locatedIn africa +ecuador locatedIn south_america +brazil locatedIn south_america +brazil locatedIn americas +paraguay locatedIn south_america +paraguay locatedIn americas +finland locatedIn northern_europe +finland locatedIn europe +jordan locatedIn western_asia +timor-leste locatedIn south-eastern_asia +montenegro locatedIn southern_europe +montenegro locatedIn europe +peru locatedIn south_america +peru locatedIn americas +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan locatedIn central_asia +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +switzerland locatedIn western_europe +switzerland locatedIn europe +austria locatedIn western_europe +austria locatedIn europe +hungary locatedIn eastern_europe +malawi locatedIn eastern_africa +malawi locatedIn africa +hong_kong locatedIn eastern_asia +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +albania locatedIn southern_europe +albania locatedIn europe +kuwait locatedIn western_asia +kuwait locatedIn asia +south_africa locatedIn southern_africa +south_africa locatedIn africa +haiti locatedIn caribbean +haiti locatedIn americas +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +sweden locatedIn northern_europe +sweden locatedIn europe +mexico locatedIn northern_america +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +guatemala locatedIn central_america +south_korea locatedIn eastern_asia +south_korea locatedIn asia +moldova locatedIn eastern_europe +moldova locatedIn europe +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus locatedIn eastern_europe +bangladesh locatedIn southern_asia +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +luxembourg locatedIn western_europe +luxembourg locatedIn europe +italy locatedIn southern_europe +italy locatedIn europe +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +honduras locatedIn central_america +honduras locatedIn americas +mali locatedIn western_africa +mali locatedIn africa +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +french_guiana locatedIn south_america +yemen locatedIn western_asia +yemen locatedIn asia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela locatedIn south_america +grenada locatedIn caribbean +grenada locatedIn americas +united_states locatedIn northern_america +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +gabon locatedIn middle_africa +gabon locatedIn africa +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +palestine locatedIn western_asia +palestine locatedIn asia +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +mongolia locatedIn eastern_asia +mongolia locatedIn asia +lithuania locatedIn northern_europe +lithuania locatedIn europe +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1.tsv new file mode 100644 index 0000000..3c9f1ca --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1.tsv @@ -0,0 +1,1111 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands locatedIn western_europe +netherlands neighborOf germany +netherlands neighborOf belgium +turkey locatedIn western_asia +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola locatedIn africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia locatedIn asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia locatedIn africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi locatedIn africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone locatedIn western_africa +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland locatedIn eastern_europe +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan locatedIn southern_asia +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina locatedIn americas +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia locatedIn southern_europe +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia locatedIn europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua locatedIn central_america +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +canada neighborOf united_states +slovakia locatedIn central_europe +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique locatedIn eastern_africa +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia locatedIn americas +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo locatedIn middle_africa +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia locatedIn western_asia +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador locatedIn americas +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana locatedIn south_america +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany locatedIn western_europe +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso locatedIn western_africa +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania locatedIn eastern_africa +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +belize neighborOf guatemala +belize neighborOf mexico +norway locatedIn northern_europe +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname locatedIn americas +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt locatedIn northern_africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria locatedIn eastern_europe +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea locatedIn africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain locatedIn southern_europe +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica locatedIn americas +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania locatedIn europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar locatedIn south-eastern_asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq locatedIn western_asia +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan locatedIn central_asia +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana locatedIn africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka locatedIn southern_asia +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium locatedIn europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar locatedIn asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india locatedIn asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco locatedIn northern_africa +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya locatedIn africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana locatedIn western_africa +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan locatedIn asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand locatedIn south-eastern_asia +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan locatedIn northern_africa +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad locatedIn africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe locatedIn eastern_africa +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya locatedIn africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +papua_new_guinea neighborOf indonesia +north_korea locatedIn eastern_asia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia locatedIn europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman locatedIn asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel locatedIn asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark locatedIn northern_europe +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile locatedIn south_america +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo locatedIn europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea locatedIn eastern_africa +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger locatedIn africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece locatedIn europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco locatedIn western_europe +monaco neighborOf france +djibouti locatedIn eastern_africa +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia locatedIn south-eastern_asia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia locatedIn europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador locatedIn south_america +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil locatedIn americas +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland locatedIn europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan locatedIn western_asia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste locatedIn south-eastern_asia +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro locatedIn europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru locatedIn americas +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan locatedIn central_asia +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland locatedIn europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria locatedIn europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary locatedIn eastern_europe +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi locatedIn africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong locatedIn eastern_asia +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait locatedIn asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa locatedIn africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden locatedIn europe +sweden neighborOf norway +sweden neighborOf finland +mexico locatedIn northern_america +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala locatedIn central_america +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea locatedIn asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus locatedIn eastern_europe +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh locatedIn southern_asia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg locatedIn europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras locatedIn americas +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali locatedIn africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana locatedIn south_america +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen locatedIn asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela locatedIn south_america +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states locatedIn northern_america +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon locatedIn africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania locatedIn europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv new file mode 100644 index 0000000..61ad124 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv @@ -0,0 +1,1111 @@ +text(पलाउ) locatedIn text(Micronesië) +text(Palaos) locatedIn text(Oceania) +text(Maldives) locatedIn text(Asia:del:Sur) +text(Malediven) locatedIn text(Asia) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(汶莱) locatedIn text(亞洲) +text(ब्रुनेई) neighborOf text(Malasia) +text(जापान) locatedIn text(Oost-Azië) +text(اليابان) locatedIn text(آسيا) +text(荷蘭) locatedIn text(西欧) +text(Netherlands) neighborOf text(Germany) +text(هولندا) neighborOf text(Belgium) +text(Turquía) locatedIn text(पश्चिमी:एशिया) +text(Turkey) neighborOf text(亞美尼亞) +text(तुर्की) neighborOf text(أذربيجان) +text(Turkije) neighborOf text(ईरान) +text(土耳其) neighborOf text(希腊) +text(تركيا) neighborOf text(格鲁吉亚) +text(Turquía) neighborOf text(Bulgarije) +text(Turkey) neighborOf text(Iraq) +text(तुर्की) neighborOf text(Syrië) +text(أنغولا) locatedIn text(Central:Africa) +text(Angola) locatedIn text(अफ्रीका) +text(अंगोला) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) neighborOf text(纳米比亚) +text(Angola) neighborOf text(贊比亞) +text(安哥拉) neighborOf text(剛果共和國) +text(Armenia) locatedIn text(Zuidwest-Azië) +text(أرمينيا) locatedIn text(एशिया) +text(Armenië) neighborOf text(Georgia) +text(Armenia) neighborOf text(Azerbeidzjan) +text(आर्मीनिया) neighborOf text(Irán) +text(亞美尼亞) neighborOf text(Turkije) +text(अण्टीगुआ:और:बारबूडा) locatedIn text(Caribe) +text(Antigua:y:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(非洲) +text(एस्वातीनी) neighborOf text(Zuid-Afrika) +text(Eswatini) neighborOf text(Mozambique) +text(Wallis:and:Futuna) locatedIn text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) locatedIn text(Oceanië) +text(उरुग्वे) locatedIn text(América:del:Sur) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(ब्राज़ील) +text(Zambia) locatedIn text(东部非洲) +text(Zambia) locatedIn text(إفريقيا) +text(زامبيا) neighborOf text(تنزانيا) +text(ज़ाम्बिया) neighborOf text(موزمبيق) +text(Zambia) neighborOf text(República:Democrática:del:Congo) +text(贊比亞) neighborOf text(أنغولا) +text(Zambia) neighborOf text(بوتسوانا) +text(Zambia) neighborOf text(زيمبابوي) +text(زامبيا) neighborOf text(Namibia) +text(ज़ाम्बिया) neighborOf text(馬拉威) +text(塞浦路斯) locatedIn text(पूर्वी:यूरोप) +text(Chipre) locatedIn text(أوروبا) +text(Cyprus) neighborOf text(英国) +text(Reino:Unido) locatedIn text(Northern:Europe) +text(英国) locatedIn text(欧洲) +text(Verenigd:Koninkrijk) neighborOf text(Verenigd:Koninkrijk) +text(蒲隆地) locatedIn text(África:Oriental) +text(Burundi) locatedIn text(Africa) +text(बुरुण्डी) neighborOf text(Congo-Kinshasa) +text(Burundi) neighborOf text(卢旺达) +text(Burundi) neighborOf text(Tanzania) +text(República:Centroafricana) locatedIn text(मध्य:अफ्रीका) +text(मध्य:अफ़्रीकी:गणराज्य) locatedIn text(África) +text(中非共和國) neighborOf text(Tsjaad) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Congo-Brazzaville) +text(Central:African:Republic) neighborOf text(Democratic:Republic:of:the:Congo) +text(Centraal-Afrikaanse:Republiek) neighborOf text(दक्षिण:सूडान) +text(República:Centroafricana) neighborOf text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(सूडान) +text(Tonga) locatedIn text(玻里尼西亞) +text(टोंगा) locatedIn text(大洋洲) +text(कोत:दिव्वार) locatedIn text(غرب:إفريقيا) +text(科特迪瓦) locatedIn text(Afrika) +text(Ivoorkust) neighborOf text(布吉納法索) +text(Costa:de:Marfil) neighborOf text(Ghana) +text(Ivory:Coast) neighborOf text(Liberia) +text(ساحل:العاج) neighborOf text(Mali) +text(कोत:दिव्वार) neighborOf text(गिनी) +text(سيراليون) locatedIn text(पश्चिमी:अफ्रीका) +text(Sierra:Leone) neighborOf text(Liberia) +text(Sierra:Leone) neighborOf text(Guinee) +text(مايوت) locatedIn text(पूर्वी:अफ्रीका) +text(Mayotte) locatedIn text(अफ्रीका) +text(波蘭) locatedIn text(Oost-Europa) +text(Poland) neighborOf text(ألمانيا) +text(पोलैंड) neighborOf text(Ucrania) +text(بولندا) neighborOf text(स्लोवाकिया) +text(Polonia) neighborOf text(Belarus) +text(Polen) neighborOf text(Russia) +text(波蘭) neighborOf text(立陶宛) +text(Poland) neighborOf text(चेक:गणराज्य) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(Azië) +text(Kazajistán) neighborOf text(तुर्कमेनिस्तान) +text(哈萨克斯坦) neighborOf text(República:Popular:China) +text(Kazakhstan) neighborOf text(Kyrgyzstan) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(Asia) +text(乌兹别克斯坦) neighborOf text(أفغانستان) +text(Uzbekistán) neighborOf text(Turkmenistán) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(किर्गिज़स्तान) +text(Uzbekistan) neighborOf text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) locatedIn text(الكاريبي) +text(Turks-:en:Caicoseilanden) locatedIn text(Amerika) +text(Nueva:Caledonia) locatedIn text(Melanesia) +text(كاليدونيا:الجديدة) locatedIn text(أوقيانوسيا) +text(पाकिस्तान) locatedIn text(Zuid-Azië) +text(Pakistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(باكستان) neighborOf text(阿富汗) +text(巴基斯坦) neighborOf text(伊朗) +text(Pakistan) neighborOf text(भारत) +text(अर्जेण्टीना) locatedIn text(दक्षिण:अमेरिका) +text(Argentinië) locatedIn text(América) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chile) +text(Argentina) neighborOf text(البرازيل) +text(阿根廷) neighborOf text(巴拉圭) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(加勒比地区) +text(Cuba) locatedIn text(Americas) +text(Servië) locatedIn text(Europa:del:Sur) +text(सर्बिया) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(صربيا) neighborOf text(Kosovo) +text(Serbia) neighborOf text(Bosnië:en:Herzegovina) +text(塞爾維亞) neighborOf text(क्रोएशिया) +text(Servië) neighborOf text(المجر) +text(सर्बिया) neighborOf text(बुल्गारिया) +text(Serbia) neighborOf text(Romania) +text(捷克) locatedIn text(Eastern:Europe) +text(Czech:Republic) locatedIn text(Europa) +text(Tsjechië) neighborOf text(德國) +text(جمهورية:التشيك) neighborOf text(ऑस्ट्रिया) +text(República:Checa) neighborOf text(पोलैंड) +text(चेक:गणराज्य) neighborOf text(سلوفاكيا) +text(निकारागुआ) locatedIn text(中美洲) +text(Nicaragua) neighborOf text(Honduras) +text(尼加拉瓜) neighborOf text(Costa:Rica) +text(فيتنام) locatedIn text(दक्षिण:पूर्व:एशिया) +text(वियतनाम) locatedIn text(Asia) +text(Vietnam) neighborOf text(Cambodja) +text(Vietnam) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(紐埃) locatedIn text(Polynesië) +text(Niue) locatedIn text(Oceanía) +text(Canada) locatedIn text(North:America) +text(Canada) locatedIn text(أمريكتان) +text(कनाडा) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Slowakije) locatedIn text(मध्य:यूरोप) +text(Slovakia) neighborOf text(烏克蘭) +text(Eslovaquia) neighborOf text(بولندا) +text(斯洛伐克) neighborOf text(奧地利) +text(स्लोवाकिया) neighborOf text(Hungary) +text(سلوفاكيا) neighborOf text(捷克) +text(Mozambique) locatedIn text(East:Africa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(津巴布韦) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(مالاوي) +text(Mozambique) neighborOf text(South:Africa) +text(Aruba) locatedIn text(कैरिबिया) +text(阿魯巴) locatedIn text(美洲) +text(Bolivia) locatedIn text(Zuid-Amerika) +text(Bolivia) locatedIn text(महाअमेरिका) +text(बोलिविया) neighborOf text(Chili) +text(بوليفيا) neighborOf text(Brasil) +text(玻利維亞) neighborOf text(पैराग्वे) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(South:America) +text(哥伦比亚) locatedIn text(Amerika) +text(Colombia) neighborOf text(الإكوادور) +text(कोलम्बिया) neighborOf text(Brazil) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(Venezuela) +text(Colombia) neighborOf text(بيرو) +text(فيجي) locatedIn text(Melanesia) +text(Fiyi) locatedIn text(ओशिआनिया) +text(Republic:of:the:Congo) locatedIn text(中部非洲) +text(कांगो:गणराज्य) neighborOf text(Gabon) +text(República:del:Congo) neighborOf text(刚果民主共和国) +text(جمهورية:الكونغو) neighborOf text(Angola) +text(剛果共和國) neighborOf text(Cameroon) +text(Congo-Brazzaville) neighborOf text(中非共和國) +text(सउदी:अरब) locatedIn text(Asia:Occidental) +text(Saudi:Arabia) neighborOf text(卡塔尔) +text(Saoedi-Arabië) neighborOf text(संयुक्त:अरब:अमीरात) +text(Arabia:Saudí) neighborOf text(जॉर्डन) +text(沙特阿拉伯) neighborOf text(اليمن) +text(السعودية) neighborOf text(ओमान) +text(सउदी:अरब) neighborOf text(科威特) +text(Saudi:Arabia) neighborOf text(Irak) +text(El:Salvador) locatedIn text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) locatedIn text(América) +text(السلفادور) neighborOf text(Guatemala) +text(薩爾瓦多) neighborOf text(हॉण्डुरस) +text(مدغشقر) locatedIn text(شرق:إفريقيا) +text(馬達加斯加) locatedIn text(非洲) +text(أستراليا) locatedIn text(nan) +text(ऑस्ट्रेलिया) locatedIn text(Oceania) +text(Namibia) locatedIn text(Zuidelijk:Afrika) +text(ناميبيا) locatedIn text(إفريقيا) +text(नामीबिया) neighborOf text(贊比亞) +text(Namibië) neighborOf text(अंगोला) +text(纳米比亚) neighborOf text(Sudáfrica) +text(Namibia) neighborOf text(Botswana) +text(توفالو) locatedIn text(Polinesia) +text(Tuvalu) locatedIn text(Oceanië) +text(nan) locatedIn text(उत्तरी:यूरोप) +text(Svalbard:y:Jan:Mayen) locatedIn text(यूरोप) +text(Isle:of:Man) locatedIn text(Noord-Europa) +text(Isla:de:Man) locatedIn text(Europe) +text(गयाना) locatedIn text(أمريكا:الجنوبية) +text(圭亚那) neighborOf text(巴西) +text(Guyana) neighborOf text(सूरीनाम) +text(غيانا) neighborOf text(فنزويلا) +text(Vaticaanstad) locatedIn text(南欧) +text(Ciudad:del:Vaticano) locatedIn text(Europa) +text(الفاتيكان) neighborOf text(Italy) +text(英屬印度洋領地) locatedIn text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) locatedIn text(Africa) +text(نيجيريا) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(Nigeria) neighborOf text(Chad) +text(Nigeria) neighborOf text(Niger) +text(नाइजीरिया) neighborOf text(Camerún) +text(奈及利亞) neighborOf text(Benin) +text(जर्मनी) locatedIn text(पश्चिमी:यूरोप) +text(Duitsland) neighborOf text(डेनमार्क) +text(Alemania) neighborOf text(Nederland) +text(Germany) neighborOf text(Polonia) +text(ألمانيا) neighborOf text(लक्ज़मबर्ग) +text(德國) neighborOf text(比利時) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Czech:Republic) +text(Burkina:Faso) locatedIn text(西非) +text(Burkina:Faso) neighborOf text(टोगो) +text(بوركينا:فاسو) neighborOf text(Benín) +text(Burkina:Faso) neighborOf text(Niger) +text(बुर्किना:फासो) neighborOf text(घाना) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(तंज़ानिया) locatedIn text(东部非洲) +text(坦桑尼亞) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(تنزانيا) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Tanzania) neighborOf text(Kenia) +text(Tanzania) neighborOf text(Rwanda) +text(तंज़ानिया) neighborOf text(Zambia) +text(坦桑尼亞) neighborOf text(Malawi) +text(Tanzania) neighborOf text(بوروندي) +text(Islas:Marianas:del:Norte) locatedIn text(密克羅尼西亞群島) +text(جزر:ماريانا:الشمالية) locatedIn text(大洋洲) +text(Belize) locatedIn text(Central:America) +text(बेलीज़) locatedIn text(Americas) +text(Belice) neighborOf text(危地马拉) +text(بليز) neighborOf text(المكسيك) +text(Noruega) locatedIn text(Europa:del:Norte) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(芬蘭) +text(Noorwegen) neighborOf text(俄罗斯) +text(Cocoseilanden) locatedIn text(nan) +text(Cocos:(Keeling):Islands) locatedIn text(أوقيانوسيا) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(亞洲) +text(Laos) neighborOf text(People's:Republic:of:China) +text(لاوس) neighborOf text(كمبوديا) +text(老撾) neighborOf text(Myanmar) +text(Laos) neighborOf text(越南) +text(Laos) neighborOf text(تايلاند) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) locatedIn text(North:Africa) +text(撒拉威阿拉伯民主共和國) locatedIn text(Afrika) +text(Sahrawi:Arabische:Democratische:Republiek) neighborOf text(Algeria) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) neighborOf text(Mauritania) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(Marokko) +text(Suriname) locatedIn text(南美洲) +text(Surinam) locatedIn text(أمريكتان) +text(蘇利南) neighborOf text(Brazilië) +text(سورينام) neighborOf text(Frans-Guyana) +text(Suriname) neighborOf text(Guyana) +text(聖誕島) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) locatedIn text(Oceanía) +text(साओ:तोमे:और:प्रिन्सिपी) locatedIn text(Centraal-Afrika) +text(Santo:Tomé:y:Príncipe) locatedIn text(अफ्रीका) +text(مصر) locatedIn text(उत्तर:अफ़्रीका) +text(Egypt) neighborOf text(利比亞) +text(मिस्र) neighborOf text(以色列) +text(Egipto) neighborOf text(苏丹) +text(بلغاريا) locatedIn text(东欧) +text(保加利亚) neighborOf text(北马其顿) +text(Bulgaria) neighborOf text(土耳其) +text(Bulgaria) neighborOf text(اليونان) +text(Bulgarije) neighborOf text(صربيا) +text(बुल्गारिया) neighborOf text(羅馬尼亞) +text(几内亚) locatedIn text(África:Occidental) +text(Guinea) locatedIn text(非洲) +text(غينيا) neighborOf text(غينيا:بيساو) +text(Guinea) neighborOf text(Sierra:Leona) +text(गिनी) neighborOf text(مالي) +text(Guinee) neighborOf text(लाइबेरिया) +text(几内亚) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(स्पेन) locatedIn text(أوروبا:الجنوبية) +text(西班牙) neighborOf text(Marruecos) +text(Spain) neighborOf text(जिब्राल्टर) +text(Spanje) neighborOf text(Andorra) +text(إسبانيا) neighborOf text(Francia) +text(España) neighborOf text(البرتغال) +text(كوستاريكا) locatedIn text(أمريكا:الوسطى) +text(Costa:Rica) locatedIn text(美洲) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(نيكاراغوا) +text(माल्टा) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(أوروبا) +text(Portugal) locatedIn text(Southern:Europe) +text(Portugal) locatedIn text(欧洲) +text(Portugal) neighborOf text(स्पेन) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) locatedIn text(Europa) +text(रोमानिया) neighborOf text(युक्रेन) +text(Rumania) neighborOf text(匈牙利) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(بلغاريا) +text(Roemenië) neighborOf text(Serbia) +text(سان:مارينو) locatedIn text(Zuid-Europa) +text(圣马力诺) locatedIn text(यूरोप) +text(San:Marino) neighborOf text(إيطاليا) +text(موريتانيا) locatedIn text(West-Afrika) +text(मॉरीतानिया) locatedIn text(إفريقيا) +text(Mauritanië) neighborOf text(阿爾及利亞) +text(毛里塔尼亞) neighborOf text(Mali) +text(Mauritania) neighborOf text(República:Árabe:Saharaui:Democrática) +text(Mauritania) neighborOf text(Senegal) +text(Trinidad:y:Tobago) locatedIn text(Caribbean) +text(Trinidad:en:Tobago) locatedIn text(महाअमेरिका) +text(Baréin) locatedIn text(西亚) +text(Bahrain) locatedIn text(آسيا) +text(म्यान्मार) locatedIn text(东南亚) +text(Myanmar) neighborOf text(印度) +text(ميانمار) neighborOf text(Bangladesh) +text(緬甸) neighborOf text(中华人民共和国) +text(Birmania) neighborOf text(लाओस) +text(Myanmar) neighborOf text(Thailand) +text(العراق) locatedIn text(West:Asia) +text(इराक) neighborOf text(تركيا) +text(Irak) neighborOf text(Saoedi-Arabië) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordan) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(南乔治亚和南桑威奇群岛) locatedIn text(América:del:Sur) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) locatedIn text(Amerika) +text(آيسلندا) locatedIn text(北歐) +text(Islandia) locatedIn text(Europe) +text(कांगो:लोकतान्त्रिक:गणराज्य) locatedIn text(África:Central) +text(República:Democrática:del:Congo) locatedIn text(Africa) +text(Congo-Kinshasa) neighborOf text(Uganda) +text(Democratic:Republic:of:the:Congo) neighborOf text(تنزانيا) +text(刚果民主共和国) neighborOf text(Republic:of:the:Congo) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Angola) +text(República:Democrática:del:Congo) neighborOf text(रवाण्डा) +text(Congo-Kinshasa) neighborOf text(Sudán:del:Sur) +text(Democratic:Republic:of:the:Congo) neighborOf text(Zambia) +text(刚果民主共和国) neighborOf text(蒲隆地) +text(Seychellen) locatedIn text(África:Oriental) +text(Seychelles) locatedIn text(África) +text(Kirgizië) locatedIn text(मध्य:एशिया) +text(Kirguistán) neighborOf text(الصين) +text(吉尔吉斯斯坦) neighborOf text(Kazajistán) +text(قرغيزستان) neighborOf text(Tajikistan) +text(Kyrgyzstan) neighborOf text(أوزبكستان) +text(波札那) locatedIn text(Southern:Africa) +text(Botsuana) locatedIn text(Afrika) +text(Botswana) neighborOf text(ज़िम्बाब्वे) +text(बोत्सवाना) neighborOf text(Namibia) +text(بوتسوانا) neighborOf text(زامبيا) +text(Botswana) neighborOf text(جنوب:إفريقيا) +text(جزر:فارو) locatedIn text(أوروبا:الشمالية) +text(Faeröer) locatedIn text(Europa) +text(Jamaica) locatedIn text(Caraïben) +text(Jamaica) locatedIn text(América) +text(ساموا:الأمريكية) locatedIn text(Polynesia) +text(Amerikaans-Samoa) locatedIn text(ओशिआनिया) +text(लेसोथो) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(अफ्रीका) +text(ليسوتو) neighborOf text(南非) +text(سريلانكا) locatedIn text(جنوب:آسيا) +text(श्रीलंका) neighborOf text(India) +text(बेल्जियम) locatedIn text(West-Europa) +text(Bélgica) locatedIn text(أوروبا) +text(بلجيكا) neighborOf text(ألمانيا) +text(België) neighborOf text(卢森堡) +text(Belgium) neighborOf text(فرنسا) +text(比利時) neighborOf text(नीदरलैण्ड) +text(Qatar) locatedIn text(غرب:آسيا) +text(Catar) locatedIn text(एशिया) +text(क़तर) neighborOf text(Arabia:Saudí) +text(جزر:سليمان) locatedIn text(ميلانيزيا) +text(Solomon:Islands) locatedIn text(Oceania) +text(敘利亞) locatedIn text(पश्चिमी:एशिया) +text(سوريا) locatedIn text(Azië) +text(सीरिया) neighborOf text(Israel) +text(Siria) neighborOf text(Turquía) +text(Syrië) neighborOf text(Jordania) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(दक्षिण:एशिया) +text(الهند) locatedIn text(Asia) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(भारत) neighborOf text(Bhutan) +text(印度) neighborOf text(बांग्लादेश) +text(India) neighborOf text(República:Popular:China) +text(India) neighborOf text(尼泊爾) +text(الهند) neighborOf text(म्यान्मार) +text(India) neighborOf text(Pakistán) +text(भारत) neighborOf text(Sri:Lanka) +text(Morocco) locatedIn text(Norte:de:África) +text(المغرب) neighborOf text(Argelia) +text(मोरक्को) neighborOf text(西班牙) +text(摩洛哥) neighborOf text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Kenia) locatedIn text(पूर्वी:अफ्रीका) +text(Kenya) locatedIn text(非洲) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(الصومال) +text(Kenia) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(埃塞俄比亚) +text(Zuid-Soedan) locatedIn text(وسط:إفريقيا) +text(جنوب:السودان) locatedIn text(إفريقيا) +text(South:Sudan) neighborOf text(Oeganda) +text(दक्षिण:सूडान) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Sudán:del:Sur) neighborOf text(Kenya) +text(南蘇丹) neighborOf text(Central:African:Republic) +text(Zuid-Soedan) neighborOf text(Soedan) +text(جنوب:السودان) neighborOf text(इथियोपिया) +text(Ghana) locatedIn text(غرب:إفريقيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(توغو) +text(Tadzjikistan) locatedIn text(Asia:Central) +text(طاجيكستان) locatedIn text(Asia) +text(ताजीकिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Tayikistán) neighborOf text(किर्गिज़स्तान) +text(塔吉克斯坦) neighborOf text(Afghanistan) +text(Tajikistan) neighborOf text(乌兹别克斯坦) +text(جزر:مارشال) locatedIn text(Micronesia) +text(Marshalleilanden) locatedIn text(Oceanië) +text(कैमरुन) locatedIn text(Central:Africa) +text(喀麦隆) locatedIn text(Africa) +text(الكاميرون) neighborOf text(تشاد) +text(Kameroen) neighborOf text(कांगो:गणराज्य) +text(Cameroon) neighborOf text(Gabón) +text(Camerún) neighborOf text(赤道几内亚) +text(कैमरुन) neighborOf text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) neighborOf text(نيجيريا) +text(ناورو) locatedIn text(Micronesia) +text(Nauru) locatedIn text(大洋洲) +text(थाईलैंड) locatedIn text(Southeast:Asia) +text(泰國) neighborOf text(柬埔寨) +text(Tailandia) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(تايلاند) neighborOf text(मलेशिया) +text(السودان) locatedIn text(شمال:إفريقيا) +text(Sudan) neighborOf text(乍得) +text(Sudán) neighborOf text(Libya) +text(सूडान) neighborOf text(South:Sudan) +text(苏丹) neighborOf text(إرتريا) +text(Soedan) neighborOf text(República:Centroafricana) +text(السودان) neighborOf text(Egypte) +text(Sudan) neighborOf text(Ethiopië) +text(चाड) locatedIn text(मध्य:अफ्रीका) +text(Chad) locatedIn text(África) +text(Tsjaad) neighborOf text(Libia) +text(Chad) neighborOf text(尼日尔) +text(تشاد) neighborOf text(दक्षिण:सूडान) +text(乍得) neighborOf text(الكاميرون) +text(चाड) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) neighborOf text(Nigeria) +text(فانواتو) locatedIn text(मॅलानिशिया) +text(वानूआटू) locatedIn text(أوقيانوسيا) +text(Cape:Verde) locatedIn text(पश्चिमी:अफ्रीका) +text(Kaapverdië) locatedIn text(Afrika) +text(फ़ॉकलैंड:द्वीपसमूह) locatedIn text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) locatedIn text(Americas) +text(利比里亞) locatedIn text(West:Africa) +text(ليبيريا) locatedIn text(अफ्रीका) +text(Liberia) neighborOf text(Ivory:Coast) +text(Liberia) neighborOf text(塞拉利昂) +text(Liberia) neighborOf text(غينيا) +text(Cambodia) locatedIn text(جنوب:شرق:آسيا) +text(Camboya) locatedIn text(亞洲) +text(कम्बोडिया) neighborOf text(فيتنام) +text(Cambodja) neighborOf text(Thailand) +text(كمبوديا) neighborOf text(لاوس) +text(Zimbabwe) locatedIn text(East:Africa) +text(Zimbabwe) neighborOf text(ज़ाम्बिया) +text(Zimbabue) neighborOf text(दक्षिण:अफ़्रीका) +text(زيمبابوي) neighborOf text(波札那) +text(津巴布韦) neighborOf text(मोज़ाम्बीक) +text(Comoras) locatedIn text(شرق:إفريقيا) +text(Comoros) locatedIn text(非洲) +text(غوام) locatedIn text(ميكرونيسيا) +text(गुआम) locatedIn text(Oceanía) +text(巴哈馬) locatedIn text(Caribe) +text(बहामास) locatedIn text(أمريكتان) +text(लेबनॉन) locatedIn text(Zuidwest-Azië) +text(Libanon) locatedIn text(آسيا) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Saint:Martin) locatedIn text(الكاريبي) +text(圣马丁岛) locatedIn text(美洲) +text(سانت:مارتن) neighborOf text(法屬聖馬丁) +text(Ethiopia) locatedIn text(Oost-Afrika) +text(Etiopía) locatedIn text(إفريقيا) +text(إثيوبيا) neighborOf text(सोमालिया) +text(埃塞俄比亚) neighborOf text(कीनिया) +text(इथियोपिया) neighborOf text(Eritrea) +text(Ethiopië) neighborOf text(Sudán:del:Sur) +text(Ethiopia) neighborOf text(جيبوتي) +text(Etiopía) neighborOf text(Sudán) +text(جزر:العذراء:التابعة:الولايات:المتحدة) locatedIn text(加勒比地区) +text(Islas:Vírgenes:de:los:Estados:Unidos) locatedIn text(महाअमेरिका) +text(Guinea-Bisáu) locatedIn text(西非) +text(Guinea-Bissau) locatedIn text(Africa) +text(畿內亞比紹) neighborOf text(Guinea) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(लीबिया) locatedIn text(北部非洲) +text(Libië) locatedIn text(África) +text(ليبيا) neighborOf text(Tsjaad) +text(利比亞) neighborOf text(تونس) +text(Libya) neighborOf text(नाइजर) +text(Libia) neighborOf text(الجزائر) +text(लीबिया) neighborOf text(埃及) +text(Libië) neighborOf text(सूडान) +text(Bhutan) locatedIn text(South:Asia) +text(भूटान) locatedIn text(एशिया) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(印度) +text(मकाउ) locatedIn text(पूर्वी:एशिया) +text(ماكاو) locatedIn text(Azië) +text(Macau) neighborOf text(People's:Republic:of:China) +text(法屬玻里尼西亞) locatedIn text(بولنيزيا) +text(फ़्रान्सीसी:पॉलिनेशिया) locatedIn text(ओशिआनिया) +text(Somalia) locatedIn text(东部非洲) +text(索馬里) locatedIn text(Afrika) +text(Somalië) neighborOf text(जिबूती) +text(Somalia) neighborOf text(肯尼亚) +text(الصومال) neighborOf text(إثيوبيا) +text(سان:بارتيلمي) locatedIn text(कैरिबिया) +text(Saint:Barthélemy) locatedIn text(Amerika) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) locatedIn text(欧洲) +text(Rusland) neighborOf text(أوكرانيا) +text(Russia) neighborOf text(Wit-Rusland) +text(रूस) neighborOf text(中华人民共和国) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Polen) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(Lithuania) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Noord-Korea) +text(روسيا) neighborOf text(فنلندا) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(لاتفيا) +text(Russia) neighborOf text(جورجيا) +text(Nieuw-Zeeland) locatedIn text(nan) +text(新西兰) locatedIn text(Oceania) +text(Panamá) locatedIn text(Centraal-Amerika) +text(Panama) locatedIn text(América) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(巴布亚新几内亚) locatedIn text(美拉尼西亞) +text(पापुआ:न्यू:गिनी) locatedIn text(Oceanië) +text(بابوا:غينيا:الجديدة) neighborOf text(Indonesia) +text(Corea:del:Norte) locatedIn text(Asia:Oriental) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(Corea:del:Sur) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Latvia) locatedIn text(Northern:Europe) +text(拉脫維亞) locatedIn text(Europa) +text(Letonia) neighborOf text(Lituania) +text(लातविया) neighborOf text(بيلاروس) +text(Letland) neighborOf text(俄罗斯) +text(لاتفيا) neighborOf text(Estonia) +text(阿曼) locatedIn text(Asia:Occidental) +text(Oman) locatedIn text(Asia) +text(Omán) neighborOf text(沙特阿拉伯) +text(Oman) neighborOf text(Yemen) +text(سلطنة:عمان) neighborOf text(阿拉伯联合酋长国) +text(سان:بيير:وميكلون) locatedIn text(Noord-Amerika) +text(圣皮埃尔和密克隆) locatedIn text(Americas) +text(Martinique) locatedIn text(Caribbean) +text(مارتينيك) locatedIn text(أمريكتان) +text(यूनाइटेड:किंगडम) locatedIn text(उत्तरी:यूरोप) +text(Reino:Unido) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(यूनाइटेड:किंगडम) +text(इज़राइल) locatedIn text(西亚) +text(Israël) locatedIn text(Asia) +text(إسرائيل) neighborOf text(لبنان) +text(以色列) neighborOf text(مصر) +text(Israel) neighborOf text(الأردن) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Noord-Europa) +text(澤西) locatedIn text(Europe) +text(Pitcairneilanden) locatedIn text(पोलीनेशिया) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(大洋洲) +text(Togo) locatedIn text(África:Occidental) +text(Togo) locatedIn text(अफ्रीका) +text(Togo) neighborOf text(بوركينا:فاسو) +text(多哥) neighborOf text(Ghana) +text(टोगो) neighborOf text(बेनिन) +text(Kiribati) locatedIn text(माइक्रोनीशिया) +text(Kiribati) locatedIn text(أوقيانوسيا) +text(إيران) locatedIn text(南亚) +text(Iran) locatedIn text(亞洲) +text(ईरान) neighborOf text(Afghanistan) +text(Irán) neighborOf text(Turkmenistan) +text(伊朗) neighborOf text(Turkey) +text(Iran) neighborOf text(Armenia) +text(إيران) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(पाकिस्तान) +text(ईरान) neighborOf text(Irak) +text(Saint-Martin) locatedIn text(Caraïben) +text(San:Martín) locatedIn text(美洲) +text(Sint-Maarten) neighborOf text(San:Martín) +text(多明尼加) locatedIn text(Caribe) +text(جمهورية:الدومينيكان) locatedIn text(महाअमेरिका) +text(Dominicaanse:Republiek) neighborOf text(Haití) +text(الدنمارك) locatedIn text(Europa:del:Norte) +text(Denemarken) neighborOf text(德國) +text(百慕大) locatedIn text(北美洲) +text(برمودا) locatedIn text(Amerika) +text(智利) locatedIn text(Zuid-Amerika) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(كوسوفو) locatedIn text(पूर्वी:यूरोप) +text(科索沃) locatedIn text(Europa) +text(Kosovo) neighborOf text(塞爾維亞) +text(कोसोवो:गणराज्य) neighborOf text(阿爾巴尼亞) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(Kosovo) neighborOf text(Montenegro) +text(聖克里斯多福及尼維斯) locatedIn text(الكاريبي) +text(San:Cristóbal:y:Nieves) locatedIn text(América) +text(Eritrea) locatedIn text(África:Oriental) +text(इरित्रिया) neighborOf text(吉布提) +text(厄立特里亞) neighborOf text(苏丹) +text(Eritrea) neighborOf text(埃塞俄比亚) +text(भूमध्यरेखीय:गिनी) locatedIn text(中部非洲) +text(Guinea:Ecuatorial) locatedIn text(非洲) +text(Equatorial:Guinea) neighborOf text(加蓬) +text(غينيا:الاستوائية) neighborOf text(Kameroen) +text(Níger) locatedIn text(West-Afrika) +text(النيجر) locatedIn text(إفريقيا) +text(Niger) neighborOf text(Chad) +text(Niger) neighborOf text(ليبيا) +text(尼日尔) neighborOf text(Burkina:Faso) +text(नाइजर) neighborOf text(Benin) +text(Níger) neighborOf text(马里) +text(النيجر) neighborOf text(अल्जीरिया) +text(Niger) neighborOf text(Nigeria) +text(अंगुइला) locatedIn text(加勒比地区) +text(أنغويلا) locatedIn text(Americas) +text(Ruanda) locatedIn text(पूर्वी:अफ्रीका) +text(Rwanda) locatedIn text(Africa) +text(رواندا) neighborOf text(Burundi) +text(卢旺达) neighborOf text(Tanzania) +text(Rwanda) neighborOf text(烏干達) +text(रवाण्डा) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) locatedIn text(West:Asia) +text(Verenigde:Arabische:Emiraten) locatedIn text(آسيا) +text(United:Arab:Emirates) neighborOf text(ओमान) +text(Emiratos:Árabes:Unidos) neighborOf text(السعودية) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(أوروبا) +text(Estonia) neighborOf text(Latvia) +text(愛沙尼亞) neighborOf text(روسيا) +text(Greece) locatedIn text(Europa:del:Sur) +text(यूनान) locatedIn text(欧洲) +text(Griekenland) neighborOf text(保加利亚) +text(Grecia) neighborOf text(अल्बानिया) +text(希腊) neighborOf text(North:Macedonia) +text(اليونان) neighborOf text(तुर्की) +text(Senegal) locatedIn text(غرب:إفريقيا) +text(सेनेगल) locatedIn text(África) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(موريتانيا) +text(Senegal) neighborOf text(माली) +text(塞内加尔) neighborOf text(गाम्बिया) +text(Senegal) neighborOf text(गिनी) +text(गुआदेलूप) locatedIn text(कैरिबिया) +text(Guadeloupe) locatedIn text(أمريكتان) +text(Mónaco) locatedIn text(Europa:Occidental) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) locatedIn text(East:Africa) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(सोमालिया) +text(جيبوتي) neighborOf text(इथियोपिया) +text(Indonesië) locatedIn text(Sudeste:Asiático) +text(इंडोनेशिया) neighborOf text(Papoea-Nieuw-Guinea) +text(Indonesia) neighborOf text(تيمور:الشرقية) +text(印度尼西亚) neighborOf text(ماليزيا) +text(Britse:Maagdeneilanden) locatedIn text(Caribbean) +text(British:Virgin:Islands) locatedIn text(美洲) +text(Cook:Islands) locatedIn text(玻里尼西亞) +text(कुक:द्वीपसमूह) locatedIn text(Oceanía) +text(युगाण्डा) locatedIn text(شرق:إفريقيا) +text(Uganda) locatedIn text(Afrika) +text(Uganda) neighborOf text(तंज़ानिया) +text(أوغندا) neighborOf text(República:Democrática:del:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(南蘇丹) +text(युगाण्डा) neighborOf text(Ruanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) locatedIn text(Europa) +text(Macedonia:del:Norte) neighborOf text(كوسوفو) +text(北马其顿) neighborOf text(Greece) +text(Noord-Macedonië) neighborOf text(Albanië) +text(North:Macedonia) neighborOf text(Servië) +text(مقدونيا:الشمالية) neighborOf text(Bulgaria) +text(Túnez) locatedIn text(Noord-Afrika) +text(突尼西亞) locatedIn text(अफ्रीका) +text(Tunisia) neighborOf text(利比亞) +text(ट्यूनिशिया) neighborOf text(Algerije) +text(Ecuador) locatedIn text(South:America) +text(Ecuador) neighborOf text(पेरू) +text(厄瓜多尔) neighborOf text(Colombia) +text(ब्राज़ील) locatedIn text(أمريكا:الجنوبية) +text(البرازيل) locatedIn text(महाअमेरिका) +text(Brasil) neighborOf text(बोलिविया) +text(Brazil) neighborOf text(कोलम्बिया) +text(巴西) neighborOf text(Paraguay) +text(Brazilië) neighborOf text(الأوروغواي) +text(ब्राज़ील) neighborOf text(फ़्रान्सीसी:गुयाना) +text(البرازيل) neighborOf text(सूरीनाम) +text(Brasil) neighborOf text(委內瑞拉) +text(Brazil) neighborOf text(Argentina) +text(巴西) neighborOf text(Guyana) +text(Brazilië) neighborOf text(秘鲁) +text(باراغواي) locatedIn text(南美洲) +text(Paraguay) locatedIn text(Amerika) +text(Paraguay) neighborOf text(Argentina) +text(巴拉圭) neighborOf text(ब्राज़ील) +text(पैराग्वे) neighborOf text(بوليفيا) +text(Finland) locatedIn text(أوروبا:الشمالية) +text(फ़िनलैण्ड) locatedIn text(यूरोप) +text(Finlandia) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(芬蘭) neighborOf text(Rusia) +text(約旦) locatedIn text(غرب:آسيا) +text(Jordanië) neighborOf text(सउदी:अरब) +text(जॉर्डन) neighborOf text(इज़राइल) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(Siria) +text(Timor:Oriental) locatedIn text(दक्षिण:पूर्व:एशिया) +text(東帝汶) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) locatedIn text(Europe) +text(Montenegro) neighborOf text(科索沃) +text(Montenegro) neighborOf text(Bosnia:y:Herzegovina) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(सर्बिया) +text(الجبل:الأسود) neighborOf text(Albania) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) locatedIn text(América) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(البرازيل) +text(Peru) neighborOf text(كولومبيا) +text(मॉण्टसेराट) locatedIn text(Caraïben) +text(مونتسيرات) locatedIn text(Americas) +text(Oekraïne) locatedIn text(Oost-Europa) +text(Ukraine) locatedIn text(Europa) +text(Ucrania) neighborOf text(Slowakije) +text(烏克蘭) neighborOf text(白俄羅斯) +text(युक्रेन) neighborOf text(波蘭) +text(أوكرانيا) neighborOf text(Rusland) +text(Oekraïne) neighborOf text(Hongarije) +text(Ukraine) neighborOf text(Moldova) +text(Ucrania) neighborOf text(رومانيا) +text(دومينيكا) locatedIn text(Caribe) +text(Dominica) locatedIn text(أمريكتان) +text(تركمانستان) locatedIn text(آسيا:الوسطى) +text(土庫曼斯坦) neighborOf text(Kazakhstan) +text(Turkmenistan) neighborOf text(Afganistán) +text(तुर्कमेनिस्तान) neighborOf text(Uzbekistán) +text(Turkmenistán) neighborOf text(Irán) +text(根西) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(أوروبا) +text(Gibraltar) locatedIn text(दक्षिणी:यूरोप) +text(Gibraltar) locatedIn text(欧洲) +text(直布羅陀) neighborOf text(Spain) +text(स्विट्ज़रलैण्ड) locatedIn text(أوروبا:الغربية) +text(瑞士) locatedIn text(Europa) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(意大利) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(Western:Europe) +text(النمسا) locatedIn text(यूरोप) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(Slovakia) +text(Austria) neighborOf text(Slovenia) +text(Austria) neighborOf text(Italië) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(हंगरी) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(Tsjechië) +text(Hungría) locatedIn text(Eastern:Europe) +text(المجر) neighborOf text(烏克蘭) +text(Hungary) neighborOf text(Eslovaquia) +text(匈牙利) neighborOf text(स्लोवेनिया) +text(Hongarije) neighborOf text(Croatia) +text(हंगरी) neighborOf text(Austria) +text(Hungría) neighborOf text(Serbia) +text(المجر) neighborOf text(रोमानिया) +text(Malawi) locatedIn text(Oost-Afrika) +text(मलावी) locatedIn text(非洲) +text(Malaui) neighborOf text(Zambia) +text(馬拉威) neighborOf text(坦桑尼亞) +text(مالاوي) neighborOf text(莫桑比克) +text(香港) locatedIn text(東亞) +text(Hongkong) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(西欧) +text(Liechtenstein) locatedIn text(Europe) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(الكاريبي) +text(बारबाडोस) locatedIn text(美洲) +text(Georgië) locatedIn text(पश्चिमी:एशिया) +text(Georgia) locatedIn text(एशिया) +text(जॉर्जिया) neighborOf text(أرمينيا) +text(格鲁吉亚) neighborOf text(阿塞拜疆) +text(Georgia) neighborOf text(Russia) +text(جورجيا) neighborOf text(Turkije) +text(Albania) locatedIn text(Southern:Europe) +text(ألبانيا) locatedIn text(Europa) +text(阿爾巴尼亞) neighborOf text(蒙特內哥羅) +text(अल्बानिया) neighborOf text(उत्तर:मैसिडोनिया) +text(Albanië) neighborOf text(Kosovo) +text(Albania) neighborOf text(यूनान) +text(Kuwait) locatedIn text(Zuidwest-Azië) +text(कुवैत) locatedIn text(Azië) +text(Koeweit) neighborOf text(Saudi:Arabia) +text(الكويت) neighborOf text(Iraq) +text(Zuid-Afrika) locatedIn text(南部非洲) +text(South:Africa) locatedIn text(إفريقيا) +text(Sudáfrica) neighborOf text(Mozambique) +text(جنوب:إفريقيا) neighborOf text(Botsuana) +text(南非) neighborOf text(إسواتيني) +text(दक्षिण:अफ़्रीका) neighborOf text(ज़िम्बाब्वे) +text(Zuid-Afrika) neighborOf text(ناميبيا) +text(South:Africa) neighborOf text(Lesotho) +text(Haïti) locatedIn text(加勒比地区) +text(Haiti) locatedIn text(महाअमेरिका) +text(हैती) neighborOf text(डोमिनिकन:गणराज्य) +text(أفغانستان) locatedIn text(Asia:del:Sur) +text(阿富汗) locatedIn text(Asia) +text(अफ़्ग़ानिस्तान) neighborOf text(Turkmenistan) +text(Afghanistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(Tadzjikistan) +text(Afganistán) neighborOf text(Oezbekistan) +text(أفغانستان) neighborOf text(伊朗) +text(阿富汗) neighborOf text(Pakistan) +text(سنغافورة) locatedIn text(Zuidoost-Azië) +text(Singapore) locatedIn text(Asia) +text(貝南) locatedIn text(पश्चिमी:अफ्रीका) +text(بنين) locatedIn text(Africa) +text(Benin) neighborOf text(Niger) +text(Benín) neighborOf text(बुर्किना:फासो) +text(बेनिन) neighborOf text(توغو) +text(Benin) neighborOf text(Nigeria) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(奥兰) locatedIn text(أوروبا) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) locatedIn text(欧洲) +text(كرواتيا) neighborOf text(斯洛文尼亞) +text(क्रोएशिया) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(Kroatië) neighborOf text(Hungary) +text(Croatia) neighborOf text(صربيا) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) locatedIn text(Europa) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(فنلندا) +text(墨西哥) locatedIn text(أمريكا:الشمالية) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(Estados:Unidos) +text(Mexico) neighborOf text(ग्वाटेमाला) +text(格陵兰) locatedIn text(América:del:Norte) +text(Groenland) locatedIn text(Amerika) +text(Pitcairneilanden) locatedIn text(Australia:and:New:Zealand) +text(جزر:بيتكيرن) locatedIn text(ओशिआनिया) +text(Nepal) locatedIn text(Zuid-Azië) +text(Nepal) locatedIn text(亞洲) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(نيبال) neighborOf text(India) +text(غواتيمالا) locatedIn text(América:Central) +text(Guatemala) neighborOf text(Belize) +text(Guatemala) neighborOf text(El:Salvador) +text(Guatemala) neighborOf text(मेक्सिको) +text(危地马拉) neighborOf text(هندوراس) +text(大韩民国) locatedIn text(شرق:آسيا) +text(South:Korea) locatedIn text(آسيا) +text(كوريا:الجنوبية) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(东欧) +text(摩爾多瓦) locatedIn text(यूरोप) +text(مولدوفا) neighborOf text(युक्रेन) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(东部非洲) +text(موريشيوس) locatedIn text(África) +text(बेलारूस) locatedIn text(أوروبا:الشرقية) +text(Bielorrusia) neighborOf text(أوكرانيا) +text(Belarus) neighborOf text(Poland) +text(Wit-Rusland) neighborOf text(Litouwen) +text(بيلاروس) neighborOf text(रूस) +text(白俄羅斯) neighborOf text(拉脫維亞) +text(بنغلاديش) locatedIn text(جنوب:آسيا) +text(Bangladés) neighborOf text(ميانمار) +text(孟加拉國) neighborOf text(India) +text(馬來西亞) locatedIn text(东南亚) +text(Maleisië) locatedIn text(एशिया) +text(Malaysia) neighborOf text(थाईलैंड) +text(Malasia) neighborOf text(Indonesia) +text(मलेशिया) neighborOf text(Brunéi) +text(البوسنة:والهرسك) locatedIn text(Europa:del:Sur) +text(波斯尼亚和黑塞哥维那) locatedIn text(Europe) +text(Bosnia:and:Herzegovina) neighborOf text(Serbia) +text(Bosnië:en:Herzegovina) neighborOf text(克羅地亞) +text(Bosnia:y:Herzegovina) neighborOf text(Montenegro) +text(لوكسمبورغ) locatedIn text(पश्चिमी:यूरोप) +text(Luxembourg) locatedIn text(Europa) +text(Luxemburgo) neighborOf text(Alemania) +text(Luxemburg) neighborOf text(बेल्जियम) +text(लक्ज़मबर्ग) neighborOf text(Frankrijk) +text(Italia) locatedIn text(南欧) +text(इटली) locatedIn text(أوروبا) +text(Italy) neighborOf text(Eslovenia) +text(إيطاليا) neighborOf text(Zwitserland) +text(意大利) neighborOf text(Oostenrijk) +text(Italië) neighborOf text(France) +text(Italia) neighborOf text(Vatican:City) +text(इटली) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(Asia:Occidental) +text(أذربيجان) locatedIn text(Azië) +text(Azerbeidzjan) neighborOf text(土耳其) +text(Azerbaiyán) neighborOf text(Armenië) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Iran) +text(अज़रबैजान) neighborOf text(Georgië) +text(洪都拉斯) locatedIn text(中美洲) +text(Honduras) locatedIn text(América) +text(Honduras) neighborOf text(ग्वाटेमाला) +text(Honduras) neighborOf text(Nicaragua) +text(हॉण्डुरस) neighborOf text(El:Salvador) +text(Mali) locatedIn text(West:Africa) +text(Mali) locatedIn text(Afrika) +text(مالي) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinee) +text(马里) neighborOf text(मॉरीतानिया) +text(माली) neighborOf text(尼日尔) +text(Mali) neighborOf text(सेनेगल) +text(Mali) neighborOf text(Algeria) +text(مالي) neighborOf text(ساحل:العاج) +text(中華民國) locatedIn text(East:Asia) +text(تايوان) locatedIn text(Asia) +text(阿爾及利亞) locatedIn text(North:Africa) +text(Argelia) locatedIn text(अफ्रीका) +text(الجزائر) neighborOf text(Libya) +text(अल्जीरिया) neighborOf text(Tunesië) +text(Algerije) neighborOf text(Mauritanië) +text(Algeria) neighborOf text(Marokko) +text(阿爾及利亞) neighborOf text(नाइजर) +text(Argelia) neighborOf text(Mali) +text(الجزائر) neighborOf text(撒拉威阿拉伯民主共和國) +text(French:Guiana) locatedIn text(दक्षिण:अमेरिका) +text(غويانا:الفرنسية) neighborOf text(Brasil) +text(法屬圭亞那) neighborOf text(Suriname) +text(Jemen) locatedIn text(西亚) +text(也门) locatedIn text(Asia) +text(Yemen) neighborOf text(阿曼) +text(यमन) neighborOf text(Saoedi-Arabië) +text(पोर्टो:रीको) locatedIn text(कैरिबिया) +text(بورتوريكو) locatedIn text(Americas) +text(San:Vicente:y:las:Granadinas) locatedIn text(Caribbean) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) locatedIn text(أمريكتان) +text(Venezuela) locatedIn text(Zuid-Amerika) +text(वेनेज़ुएला) neighborOf text(Brazil) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(Granada) locatedIn text(Caraïben) +text(ग्रेनाडा) locatedIn text(美洲) +text(الولايات:المتحدة) locatedIn text(उत्तर:अमेरिका) +text(Verenigde:Staten) neighborOf text(كندا) +text(美國) neighborOf text(المكسيك) +text(托克劳) locatedIn text(Polynesië) +text(Tokelau) locatedIn text(Oceania) +text(Slovenië) locatedIn text(أوروبا:الجنوبية) +text(سلوفينيا) locatedIn text(欧洲) +text(Slovenia) neighborOf text(النمسا) +text(स्लोवेनिया) neighborOf text(كرواتيا) +text(斯洛文尼亞) neighborOf text(Italy) +text(Eslovenia) neighborOf text(匈牙利) +text(Filipijnen) locatedIn text(Southeast:Asia) +text(Philippines) locatedIn text(亞洲) +text(Micronesië) locatedIn text(密克羅尼西亞群島) +text(Micronesia) locatedIn text(Oceanië) +text(People's:Republic:of:China) locatedIn text(Oost-Azië) +text(中华人民共和国) locatedIn text(آسيا) +text(الصين) neighborOf text(अफ़्ग़ानिस्तान) +text(República:Popular:China) neighborOf text(Bután) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Macao) +text(Volksrepubliek:China) neighborOf text(الهند) +text(People's:Republic:of:China) neighborOf text(كازاخستان) +text(中华人民共和国) neighborOf text(Kirgizië) +text(الصين) neighborOf text(طاجيكستان) +text(República:Popular:China) neighborOf text(老撾) +text(चीनी:जनवादी:गणराज्य) neighborOf text(روسيا) +text(Volksrepubliek:China) neighborOf text(Noord-Korea) +text(People's:Republic:of:China) neighborOf text(緬甸) +text(中华人民共和国) neighborOf text(باكستان) +text(الصين) neighborOf text(Mongolia) +text(República:Popular:China) neighborOf text(Hong:Kong) +text(चीनी:जनवादी:गणराज्य) neighborOf text(वियतनाम) +text(Gabon) locatedIn text(Centraal-Afrika) +text(الغابون) locatedIn text(非洲) +text(गबॉन) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(República:del:Congo) +text(Gabón) neighborOf text(Cameroon) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) locatedIn text(North:America) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) locatedIn text(महाअमेरिका) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) locatedIn text(Europa) +text(Andorra) neighborOf text(Spanje) +text(अण्डोरा) neighborOf text(Francia) +text(萨摩亚) locatedIn text(Polinesia) +text(Samoa) locatedIn text(大洋洲) +text(غامبيا) locatedIn text(西非) +text(Gambia) locatedIn text(إفريقيا) +text(Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(West:Asia) +text(Pedro:Miguel) locatedIn text(एशिया) +text(nan) neighborOf text(الأردن) +text(nan) neighborOf text(Egypt) +text(Pedro:Miguel) neighborOf text(Israël) +text(Réunion) locatedIn text(África:Oriental) +text(Reunión) locatedIn text(Africa) +text(فرنسا) locatedIn text(West-Europa) +text(फ़्रान्स) locatedIn text(यूरोप) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(卢森堡) +text(France) neighborOf text(إيطاليا) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(موناكو) +text(法國) neighborOf text(Bélgica) +text(Frankrijk) neighborOf text(إسبانيا) +text(منغوليا) locatedIn text(पूर्वी:एशिया) +text(蒙古國) locatedIn text(Azië) +text(Mongolië) neighborOf text(Volksrepubliek:China) +text(मंगोलिया) neighborOf text(Rusia) +text(लिथुआनिया) locatedIn text(Europa:del:Norte) +text(ليتوانيا) locatedIn text(Europe) +text(立陶宛) neighborOf text(पोलैंड) +text(Lithuania) neighborOf text(Letonia) +text(Lituania) neighborOf text(बेलारूस) +text(Litouwen) neighborOf text(Rusland) +text(جزر:كايمان) locatedIn text(Caribe) +text(Islas:Caimán) locatedIn text(Amerika) +text(Santa:Lucía) locatedIn text(الكاريبي) +text(सेंट:लूसिया) locatedIn text(América) +text(कुराकाओ) locatedIn text(加勒比地区) +text(库拉索) locatedIn text(Americas) +text(कैरिबिया) locatedIn text(أمريكتان) +text(दक्षिण:एशिया) locatedIn text(Asia) +text(África:Central) locatedIn text(África) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(أوروبا) +text(غرب:آسيا) locatedIn text(Asia) +text(South:America) locatedIn text(美洲) +text(Polynesia) locatedIn text(أوقيانوسيا) +text(nan) locatedIn text(Oceanía) +text(Europa:Occidental) locatedIn text(欧洲) +text(पूर्वी:अफ्रीका) locatedIn text(Afrika) +text(África:Occidental) locatedIn text(अफ्रीका) +text(Europa:Oriental) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(महाअमेरिका) +text(Noord-Amerika) locatedIn text(Amerika) +text(جنوب:شرق:آسيا) locatedIn text(亞洲) +text(África:austral) locatedIn text(非洲) +text(Asia:Oriental) locatedIn text(آسيا) +text(उत्तर:अफ़्रीका) locatedIn text(إفريقيا) +text(Melanesië) locatedIn text(ओशिआनिया) +text(Micronesia) locatedIn text(Oceania) +text(Central:Asia) locatedIn text(एशिया) +text(Europa:Central) locatedIn text(यूरोप) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv new file mode 100644 index 0000000..1cf89a8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv @@ -0,0 +1,1111 @@ +text(Palau) text(is:positioned:in) text(密克羅尼西亞群島) +text(Palau) text(was:sited:in) text(ओशिआनिया) +text(मालदीव) text(is:sited:in) text(جنوب:آسيا) +text(Malediven) text(was:localized:in) text(Asia) +text(汶莱) text(is:localized:in) text(Sudeste:Asiático) +text(Brunei) text(was:present:in) text(亞洲) +text(بروناي) text(was:a:neighboring:country:of) text(ماليزيا) +text(日本) text(is:present:in) text(पूर्वी:एशिया) +text(اليابان) text(is:still:in) text(آسيا) +text(荷蘭) text(was:still:in) text(Europa:Occidental) +text(नीदरलैण्ड) text(neighbors:with) text(ألمانيا) +text(Países:Bajos) text(was:a:neighbor:of) text(بلجيكا) +text(تركيا) text(was:currently:in) text(पश्चिमी:एशिया) +text(तुर्की) text(is:a:neighbor:of) text(أرمينيا) +text(Turquía) text(is:a:neighboring:state:to) text(अज़रबैजान) +text(土耳其) text(was:a:neighboring:state:to) text(ईरान) +text(Turkije) text(borders:with) text(Greece) +text(Turkey) text(borders) text(جورجيا) +text(تركيا) text(is:butted:against) text(保加利亚) +text(तुर्की) text(was:butted:against) text(Irak) +text(Turquía) text(was:adjacent:to) text(Syria) +text(Angola) text(is:currently:in) text(中部非洲) +text(Angola) text(is:placed:in) text(África) +text(安哥拉) text(is:adjacent:to) text(刚果民主共和国) +text(أنغولا) text(neighbors) text(纳米比亚) +text(अंगोला) text(is:a:neighboring:country:of) text(Zambia) +text(Angola) text(was:a:neighboring:country:of) text(República:del:Congo) +text(Armenia) text(was:placed:in) text(西亚) +text(Armenië) text(can:be:found:in) text(एशिया) +text(आर्मीनिया) text(neighbors:with) text(जॉर्जिया) +text(Armenia) text(was:a:neighbor:of) text(阿塞拜疆) +text(亞美尼亞) text(is:a:neighbor:of) text(Iran) +text(أرمينيا) text(is:a:neighboring:state:to) text(土耳其) +text(Antigua:and:Barbuda) text(was:situated:in) text(加勒比地区) +text(Antigua:en:Barbuda) text(is:situated:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:located:in) text(南部非洲) +text(斯威士兰) text(was:located:in) text(अफ्रीका) +text(Eswatini) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Swaziland) text(borders:with) text(Mozambique) +text(Wallis:y:Futuna) text(can:be:found:in) text(Polynesia) +text(Wallis:en:Futuna) text(was:positioned:in) text(أوقيانوسيا) +text(उरुग्वे) text(is:positioned:in) text(América:del:Sur) +text(الأوروغواي) text(was:sited:in) text(Amerika) +text(烏拉圭) text(borders) text(Argentina) +text(Uruguay) text(is:butted:against) text(Brazil) +text(Zambia) text(is:sited:in) text(شرق:إفريقيا) +text(زامبيا) text(was:localized:in) text(إفريقيا) +text(Zambia) text(was:butted:against) text(Tanzania) +text(ज़ाम्बिया) text(was:adjacent:to) text(Mozambique) +text(贊比亞) text(is:adjacent:to) text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) text(neighbors) text(Angola) +text(Zambia) text(is:a:neighboring:country:of) text(Botswana) +text(زامبيا) text(was:a:neighboring:country:of) text(Zimbabwe) +text(Zambia) text(neighbors:with) text(Namibië) +text(ज़ाम्बिया) text(was:a:neighbor:of) text(Malaui) +text(قبرص) text(is:localized:in) text(东欧) +text(Chipre) text(was:present:in) text(欧洲) +text(Cyprus) text(is:a:neighbor:of) text(Verenigd:Koninkrijk) +text(Reino:Unido) text(is:present:in) text(Europa:del:Norte) +text(United:Kingdom) text(is:still:in) text(Europa) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:state:to) text(المملكة:المتحدة) +text(Burundi) text(was:still:in) text(Oost-Afrika) +text(蒲隆地) text(was:currently:in) text(非洲) +text(Burundi) text(was:a:neighboring:state:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(बुरुण्डी) text(borders:with) text(卢旺达) +text(بوروندي) text(borders) text(Tanzania) +text(جمهورية:إفريقيا:الوسطى) text(is:currently:in) text(Central:Africa) +text(República:Centroafricana) text(is:placed:in) text(Africa) +text(Centraal-Afrikaanse:Republiek) text(is:butted:against) text(乍得) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:butted:against) text(Congo-Brazzaville) +text(中非共和國) text(was:adjacent:to) text(Congo-Kinshasa) +text(Central:African:Republic) text(is:adjacent:to) text(South:Sudan) +text(جمهورية:إفريقيا:الوسطى) text(neighbors) text(الكاميرون) +text(República:Centroafricana) text(is:a:neighboring:country:of) text(Soedan) +text(Tonga) text(was:placed:in) text(Polynesië) +text(Tonga) text(can:be:found:in) text(Oceanía) +text(Ivoorkust) text(was:situated:in) text(África:Occidental) +text(ساحل:العاج) text(is:situated:in) text(Afrika) +text(Ivory:Coast) text(was:a:neighboring:country:of) text(Burkina:Faso) +text(Costa:de:Marfil) text(neighbors:with) text(غانا) +text(कोत:दिव्वार) text(was:a:neighbor:of) text(Liberia) +text(科特迪瓦) text(is:a:neighbor:of) text(Mali) +text(Ivoorkust) text(is:a:neighboring:state:to) text(Guinea) +text(Sierra:Leone) text(is:located:in) text(غرب:إفريقيا) +text(Sierra:Leone) text(was:a:neighboring:state:to) text(लाइबेरिया) +text(塞拉利昂) text(borders:with) text(غينيا) +text(Mayotte) text(was:located:in) text(पूर्वी:अफ्रीका) +text(मेयोट) text(can:be:found:in) text(África) +text(Polonia) text(was:positioned:in) text(Eastern:Europe) +text(पोलैंड) text(borders) text(जर्मनी) +text(Polen) text(is:butted:against) text(Ukraine) +text(波蘭) text(was:butted:against) text(स्लोवाकिया) +text(Poland) text(was:adjacent:to) text(Wit-Rusland) +text(بولندا) text(is:adjacent:to) text(रूस) +text(Polonia) text(neighbors) text(Lituania) +text(पोलैंड) text(is:a:neighboring:country:of) text(Tsjechië) +text(कज़ाख़िस्तान) text(is:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(was:sited:in) text(Asia) +text(Kazachstan) text(was:a:neighboring:country:of) text(تركمانستان) +text(哈萨克斯坦) text(neighbors:with) text(الصين) +text(كازاخستان) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Kazakhstan) text(is:a:neighbor:of) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:a:neighboring:state:to) text(روسيا) +text(उज़्बेकिस्तान) text(is:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(was:localized:in) text(Azië) +text(Uzbekistan) text(was:a:neighboring:state:to) text(أفغانستان) +text(أوزبكستان) text(borders:with) text(तुर्कमेनिस्तान) +text(Oezbekistan) text(borders) text(Kazajistán) +text(Uzbekistán) text(is:butted:against) text(قرغيزستان) +text(उज़्बेकिस्तान) text(was:butted:against) text(طاجيكستان) +text(Turks:and:Caicos:Islands) text(is:localized:in) text(Caraïben) +text(特克斯和凯科斯群岛) text(was:present:in) text(América) +text(नया:कैलेडोनिया) text(is:present:in) text(ميلانيزيا) +text(新喀里多尼亞) text(is:still:in) text(大洋洲) +text(巴基斯坦) text(was:still:in) text(南亚) +text(باكستان) text(was:adjacent:to) text(People's:Republic:of:China) +text(पाकिस्तान) text(is:adjacent:to) text(Afghanistan) +text(Pakistan) text(neighbors) text(伊朗) +text(Pakistan) text(is:a:neighboring:country:of) text(الهند) +text(Argentina) text(was:currently:in) text(South:America) +text(阿根廷) text(is:currently:in) text(أمريكتان) +text(Argentinië) text(was:a:neighboring:country:of) text(Bolivia) +text(अर्जेण्टीना) text(neighbors:with) text(चिली) +text(الأرجنتين) text(was:a:neighbor:of) text(ब्राज़ील) +text(Argentina) text(is:a:neighbor:of) text(पैराग्वे) +text(Argentina) text(is:a:neighboring:state:to) text(Uruguay) +text(Cuba) text(is:placed:in) text(कैरिबिया) +text(كوبا) text(was:placed:in) text(Americas) +text(सर्बिया) text(can:be:found:in) text(أوروبا:الجنوبية) +text(صربيا) text(was:a:neighboring:state:to) text(Macedonia:del:Norte) +text(Serbia) text(borders:with) text(蒙特內哥羅) +text(塞爾維亞) text(borders) text(Kosovo) +text(Servië) text(is:butted:against) text(Bosnië:en:Herzegovina) +text(Serbia) text(was:butted:against) text(كرواتيا) +text(सर्बिया) text(was:adjacent:to) text(المجر) +text(صربيا) text(is:adjacent:to) text(बुल्गारिया) +text(Serbia) text(neighbors) text(羅馬尼亞) +text(República:Checa) text(was:situated:in) text(पूर्वी:यूरोप) +text(捷克) text(is:situated:in) text(यूरोप) +text(Czech:Republic) text(is:a:neighboring:country:of) text(Germany) +text(चेक:गणराज्य) text(was:a:neighboring:country:of) text(Austria) +text(جمهورية:التشيك) text(neighbors:with) text(Polen) +text(Tsjechië) text(was:a:neighbor:of) text(Eslovaquia) +text(Nicaragua) text(is:located:in) text(Central:America) +text(Nicaragua) text(is:a:neighbor:of) text(Honduras) +text(尼加拉瓜) text(is:a:neighboring:state:to) text(Costa:Rica) +text(वियतनाम) text(was:located:in) text(جنوب:شرق:آسيا) +text(فيتنام) text(can:be:found:in) text(Asia) +text(Vietnam) text(was:a:neighboring:state:to) text(Camboya) +text(越南) text(borders:with) text(لاوس) +text(Vietnam) text(borders) text(Volksrepubliek:China) +text(Niue) text(was:positioned:in) text(Polinesia) +text(紐埃) text(is:positioned:in) text(Oceanië) +text(Canadá) text(was:sited:in) text(أمريكا:الشمالية) +text(加拿大) text(is:sited:in) text(美洲) +text(कनाडा) text(is:butted:against) text(Estados:Unidos) +text(Slovakia) text(was:localized:in) text(Europa:Central) +text(斯洛伐克) text(was:butted:against) text(युक्रेन) +text(سلوفاكيا) text(was:adjacent:to) text(波蘭) +text(Slowakije) text(is:adjacent:to) text(奧地利) +text(स्लोवाकिया) text(neighbors) text(Hungary) +text(Eslovaquia) text(is:a:neighboring:country:of) text(República:Checa) +text(موزمبيق) text(is:localized:in) text(东部非洲) +text(मोज़ाम्बीक) text(was:a:neighboring:country:of) text(坦桑尼亞) +text(莫桑比克) text(neighbors:with) text(Esuatini) +text(Mozambique) text(was:a:neighbor:of) text(ज़िम्बाब्वे) +text(Mozambique) text(is:a:neighbor:of) text(贊比亞) +text(Mozambique) text(is:a:neighboring:state:to) text(Malawi) +text(موزمبيق) text(was:a:neighboring:state:to) text(दक्षिण:अफ़्रीका) +text(阿魯巴) text(was:present:in) text(Caribe) +text(Aruba) text(is:present:in) text(महाअमेरिका) +text(Bolivia) text(is:still:in) text(أمريكا:الجنوبية) +text(Bolivia) text(was:still:in) text(Amerika) +text(玻利維亞) text(borders:with) text(智利) +text(बोलिविया) text(borders) text(البرازيل) +text(بوليفيا) text(is:butted:against) text(Paraguay) +text(Bolivia) text(was:butted:against) text(阿根廷) +text(Bolivia) text(was:adjacent:to) text(بيرو) +text(Colombia) text(was:currently:in) text(दक्षिण:अमेरिका) +text(كولومبيا) text(is:currently:in) text(América) +text(Colombia) text(is:adjacent:to) text(الإكوادور) +text(कोलम्बिया) text(neighbors) text(巴西) +text(哥伦比亚) text(is:a:neighboring:country:of) text(Panama) +text(Colombia) text(was:a:neighboring:country:of) text(فنزويلا) +text(Colombia) text(neighbors:with) text(Peru) +text(Fiji) text(is:placed:in) text(美拉尼西亞) +text(Fiji) text(was:placed:in) text(Oceania) +text(Republic:of:the:Congo) text(can:be:found:in) text(मध्य:अफ्रीका) +text(جمهورية:الكونغو) text(was:a:neighbor:of) text(गबॉन) +text(剛果共和國) text(is:a:neighbor:of) text(Democratic:Republic:of:the:Congo) +text(कांगो:गणराज्य) text(is:a:neighboring:state:to) text(Angola) +text(República:del:Congo) text(was:a:neighboring:state:to) text(喀麦隆) +text(Congo-Brazzaville) text(borders:with) text(Centraal-Afrikaanse:Republiek) +text(السعودية) text(was:situated:in) text(Zuidwest-Azië) +text(沙特阿拉伯) text(borders) text(क़तर) +text(Saudi:Arabia) text(is:butted:against) text(United:Arab:Emirates) +text(सउदी:अरब) text(was:butted:against) text(الأردن) +text(Arabia:Saudí) text(was:adjacent:to) text(也门) +text(Saoedi-Arabië) text(is:adjacent:to) text(阿曼) +text(السعودية) text(neighbors) text(कुवैत) +text(沙特阿拉伯) text(is:a:neighboring:country:of) text(Irak) +text(السلفادور) text(is:situated:in) text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) text(is:located:in) text(أمريكتان) +text(El:Salvador) text(was:a:neighboring:country:of) text(Guatemala) +text(El:Salvador) text(neighbors:with) text(هندوراس) +text(मेडागास्कर) text(was:located:in) text(East:Africa) +text(馬達加斯加) text(can:be:found:in) text(अफ्रीका) +text(Australia) text(was:positioned:in) text(Australia:and:New:Zealand) +text(Australia) text(is:positioned:in) text(ओशिआनिया) +text(नामीबिया) text(was:sited:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(is:sited:in) text(إفريقيا) +text(ناميبيا) text(was:a:neighbor:of) text(Zambia) +text(Namibia) text(is:a:neighbor:of) text(安哥拉) +text(纳米比亚) text(is:a:neighboring:state:to) text(南非) +text(Namibië) text(was:a:neighboring:state:to) text(Botswana) +text(तुवालू) text(was:localized:in) text(玻里尼西亞) +text(Tuvalu) text(is:localized:in) text(أوقيانوسيا) +text(斯瓦巴和扬马延) text(was:present:in) text(Noord-Europa) +text(Spitsbergen:en:Jan:Mayen) text(is:present:in) text(أوروبا) +text(马恩岛) text(is:still:in) text(उत्तरी:यूरोप) +text(आइल:ऑफ़:मैन) text(was:still:in) text(Europe) +text(Guyana) text(was:currently:in) text(Zuid-Amerika) +text(Guyana) text(borders:with) text(Brasil) +text(Guyana) text(borders) text(Surinam) +text(圭亚那) text(is:butted:against) text(Venezuela) +text(Ciudad:del:Vaticano) text(is:currently:in) text(Zuid-Europa) +text(वैटिकन:नगर) text(is:placed:in) text(Europa) +text(Vaticaanstad) text(was:butted:against) text(意大利) +text(Territorio:Británico:del:Océano:Índico) text(was:placed:in) text(África:Oriental) +text(إقليم:المحيط:الهندي:البريطاني) text(can:be:found:in) text(非洲) +text(नाइजीरिया) text(was:situated:in) text(West-Afrika) +text(Nigeria) text(is:situated:in) text(Africa) +text(نيجيريا) text(was:adjacent:to) text(Chad) +text(Nigeria) text(is:adjacent:to) text(नाइजर) +text(Nigeria) text(neighbors) text(Kameroen) +text(奈及利亞) text(is:a:neighboring:country:of) text(Benin) +text(Duitsland) text(is:located:in) text(पश्चिमी:यूरोप) +text(Alemania) text(was:a:neighboring:country:of) text(Denmark) +text(德國) text(neighbors:with) text(هولندا) +text(ألمانيا) text(was:a:neighbor:of) text(Poland) +text(जर्मनी) text(is:a:neighbor:of) text(لوكسمبورغ) +text(Germany) text(is:a:neighboring:state:to) text(Belgium) +text(Duitsland) text(was:a:neighboring:state:to) text(Switzerland) +text(Alemania) text(borders:with) text(Austria) +text(德國) text(borders) text(Frankrijk) +text(ألمانيا) text(is:butted:against) text(捷克) +text(Burkina:Faso) text(was:located:in) text(पश्चिमी:अफ्रीका) +text(Burkina:Faso) text(was:butted:against) text(Togo) +text(布吉納法索) text(was:adjacent:to) text(बेनिन) +text(बुर्किना:फासो) text(is:adjacent:to) text(النيجر) +text(بوركينا:فاسو) text(neighbors) text(Ghana) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(مالي) +text(Burkina:Faso) text(was:a:neighboring:country:of) text(ساحل:العاج) +text(तंज़ानिया) text(can:be:found:in) text(شرق:إفريقيا) +text(Tanzania) text(neighbors:with) text(Uganda) +text(تنزانيا) text(was:a:neighbor:of) text(मोज़ाम्बीक) +text(Tanzania) text(is:a:neighbor:of) text(República:Democrática:del:Congo) +text(Tanzania) text(is:a:neighboring:state:to) text(Kenia) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Rwanda) +text(तंज़ानिया) text(borders:with) text(Zambia) +text(Tanzania) text(borders) text(مالاوي) +text(تنزانيا) text(is:butted:against) text(Burundi) +text(Noordelijke:Marianen) text(was:positioned:in) text(माइक्रोनीशिया) +text(北马里亚纳群岛) text(is:positioned:in) text(Oceanía) +text(Belize) text(was:sited:in) text(أمريكا:الوسطى) +text(伯利兹) text(is:sited:in) text(Americas) +text(بليز) text(was:butted:against) text(危地马拉) +text(Belice) text(was:adjacent:to) text(Mexico) +text(नॉर्वे) text(was:localized:in) text(أوروبا:الشمالية) +text(Norway) text(is:adjacent:to) text(Suecia) +text(挪威) text(neighbors) text(Finland) +text(النرويج) text(is:a:neighboring:country:of) text(俄罗斯) +text(科科斯(基林)群島) text(is:localized:in) text(nan) +text(Cocoseilanden) text(was:present:in) text(大洋洲) +text(Laos) text(is:present:in) text(东南亚) +text(लाओस) text(is:still:in) text(亞洲) +text(老撾) text(was:a:neighboring:country:of) text(中华人民共和国) +text(Laos) text(neighbors:with) text(Cambodja) +text(Laos) text(was:a:neighbor:of) text(緬甸) +text(لاوس) text(is:a:neighbor:of) text(Vietnam) +text(Laos) text(is:a:neighboring:state:to) text(थाईलैंड) +text(撒拉威阿拉伯民主共和國) text(was:still:in) text(北部非洲) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(was:currently:in) text(Afrika) +text(República:Árabe:Saharaui:Democrática) text(was:a:neighboring:state:to) text(अल्जीरिया) +text(Sahrawi:Arab:Democratic:Republic) text(borders:with) text(मॉरीतानिया) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(borders) text(Marokko) +text(蘇利南) text(is:currently:in) text(南美洲) +text(Suriname) text(is:placed:in) text(美洲) +text(سورينام) text(is:butted:against) text(Brazilië) +text(सूरीनाम) text(was:butted:against) text(غويانا:الفرنسية) +text(Suriname) text(was:adjacent:to) text(गयाना) +text(Isla:de:Navidad) text(was:placed:in) text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) text(can:be:found:in) text(Oceanië) +text(Santo:Tomé:y:Príncipe) text(was:situated:in) text(وسط:إفريقيا) +text(圣多美和普林西比) text(is:situated:in) text(África) +text(Egypt) text(is:located:in) text(شمال:إفريقيا) +text(मिस्र) text(is:adjacent:to) text(利比亞) +text(Egipto) text(neighbors) text(以色列) +text(埃及) text(is:a:neighboring:country:of) text(السودان) +text(Bulgaria) text(was:located:in) text(Europa:Oriental) +text(Bulgarije) text(was:a:neighboring:country:of) text(North:Macedonia) +text(بلغاريا) text(neighbors:with) text(Turkije) +text(Bulgaria) text(was:a:neighbor:of) text(希腊) +text(保加利亚) text(is:a:neighbor:of) text(塞爾維亞) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(Rumania) +text(Guinea) text(can:be:found:in) text(西非) +text(गिनी) text(was:positioned:in) text(अफ्रीका) +text(Guinee) text(was:a:neighboring:state:to) text(Guinea-Bissau) +text(几内亚) text(borders:with) text(سيراليون) +text(Guinea) text(borders) text(माली) +text(غينيا) text(is:butted:against) text(ليبيريا) +text(Guinea) text(was:butted:against) text(Senegal) +text(गिनी) text(was:adjacent:to) text(Ivory:Coast) +text(Spanje) text(is:positioned:in) text(Europa:del:Sur) +text(西班牙) text(is:adjacent:to) text(Morocco) +text(Spain) text(neighbors) text(Gibraltar) +text(स्पेन) text(is:a:neighboring:country:of) text(أندورا) +text(España) text(was:a:neighboring:country:of) text(فرنسا) +text(إسبانيا) text(neighbors:with) text(पुर्तगाल) +text(कोस्टा:रीका) text(was:sited:in) text(América:Central) +text(哥斯达黎加) text(is:sited:in) text(महाअमेरिका) +text(Costa:Rica) text(was:a:neighbor:of) text(Panama) +text(Costa:Rica) text(is:a:neighbor:of) text(Nicaragua) +text(馬耳他) text(was:localized:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:localized:in) text(欧洲) +text(Portugal) text(was:present:in) text(南欧) +text(Portugal) text(is:present:in) text(Europa) +text(البرتغال) text(is:a:neighboring:state:to) text(Spanje) +text(Romania) text(is:still:in) text(Oost-Europa) +text(रोमानिया) text(was:still:in) text(यूरोप) +text(Roemenië) text(was:a:neighboring:state:to) text(Oekraïne) +text(رومانيا) text(borders:with) text(匈牙利) +text(羅馬尼亞) text(borders) text(Moldova) +text(Rumania) text(is:butted:against) text(Bulgaria) +text(Romania) text(was:butted:against) text(Servië) +text(圣马力诺) text(was:currently:in) text(Southern:Europe) +text(San:Marino) text(is:currently:in) text(أوروبا) +text(سان:مارينو) text(was:adjacent:to) text(इटली) +text(毛里塔尼亞) text(is:placed:in) text(West:Africa) +text(Mauritania) text(was:placed:in) text(إفريقيا) +text(موريتانيا) text(is:adjacent:to) text(الجزائر) +text(Mauritanië) text(neighbors) text(Mali) +text(Mauritania) text(is:a:neighboring:country:of) text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) text(was:a:neighboring:country:of) text(塞内加尔) +text(ترينيداد:وتوباغو) text(can:be:found:in) text(Caribbean) +text(Trinidad:en:Tobago) text(was:situated:in) text(Amerika) +text(Bahrein) text(is:situated:in) text(Asia:Occidental) +text(Baréin) text(is:located:in) text(آسيا) +text(Birmania) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Myanmar) text(neighbors:with) text(India) +text(म्यान्मार) text(was:a:neighbor:of) text(Bangladesh) +text(Myanmar) text(is:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(ميانمار) text(is:a:neighboring:state:to) text(लाओस) +text(緬甸) text(was:a:neighboring:state:to) text(Thailand) +text(伊拉克) text(can:be:found:in) text(West:Asia) +text(العراق) text(borders:with) text(Turkey) +text(इराक) text(borders) text(Saudi:Arabia) +text(Iraq) text(is:butted:against) text(إيران) +text(Irak) text(was:butted:against) text(Jordan) +text(Irak) text(was:adjacent:to) text(Kuwait) +text(伊拉克) text(is:adjacent:to) text(Siria) +text(South:Georgia:and:the:South:Sandwich:Islands) text(was:positioned:in) text(América:del:Sur) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) text(is:positioned:in) text(América) +text(آيسلندا) text(was:sited:in) text(北歐) +text(IJsland) text(is:sited:in) text(Europe) +text(刚果民主共和国) text(was:localized:in) text(África:Central) +text(جمهورية:الكونغو:الديمقراطية) text(is:localized:in) text(非洲) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(neighbors) text(Oeganda) +text(Congo-Kinshasa) text(is:a:neighboring:country:of) text(Tanzania) +text(Democratic:Republic:of:the:Congo) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(República:Democrática:del:Congo) text(neighbors:with) text(मध्य:अफ़्रीकी:गणराज्य) +text(刚果民主共和国) text(was:a:neighbor:of) text(أنغولا) +text(جمهورية:الكونغو:الديمقراطية) text(is:a:neighbor:of) text(Rwanda) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(is:a:neighboring:state:to) text(Sudán:del:Sur) +text(Congo-Kinshasa) text(was:a:neighboring:state:to) text(زامبيا) +text(Democratic:Republic:of:the:Congo) text(borders:with) text(Burundi) +text(Seychelles) text(was:present:in) text(Oost-Afrika) +text(सेशेल्स) text(is:present:in) text(Africa) +text(किर्गिज़स्तान) text(is:still:in) text(Asia:Central) +text(Kirgizië) text(borders) text(República:Popular:China) +text(Kirguistán) text(is:butted:against) text(Kazachstan) +text(吉尔吉斯斯坦) text(was:butted:against) text(ताजीकिस्तान) +text(Kyrgyzstan) text(was:adjacent:to) text(乌兹别克斯坦) +text(波札那) text(was:still:in) text(Zuidelijk:Afrika) +text(बोत्सवाना) text(was:currently:in) text(Afrika) +text(Botsuana) text(is:adjacent:to) text(Zimbabue) +text(بوتسوانا) text(neighbors) text(नामीबिया) +text(Botswana) text(is:a:neighboring:country:of) text(Zambia) +text(Botswana) text(was:a:neighboring:country:of) text(South:Africa) +text(फ़रो:द्वीपसमूह) text(is:currently:in) text(Northern:Europe) +text(Faroe:Islands) text(is:placed:in) text(Europa) +text(Jamaica) text(was:placed:in) text(الكاريبي) +text(جامايكا) text(can:be:found:in) text(أمريكتان) +text(美屬薩摩亞) text(was:situated:in) text(بولنيزيا) +text(American:Samoa) text(is:situated:in) text(Oceania) +text(ليسوتو) text(is:located:in) text(África:austral) +text(Lesotho) text(was:located:in) text(África) +text(लेसोथो) text(neighbors:with) text(Sudáfrica) +text(سريلانكا) text(can:be:found:in) text(दक्षिण:एशिया) +text(Sri:Lanka) text(was:a:neighbor:of) text(भारत) +text(België) text(was:positioned:in) text(Western:Europe) +text(比利時) text(is:positioned:in) text(欧洲) +text(बेल्जियम) text(is:a:neighbor:of) text(जर्मनी) +text(Bélgica) text(is:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(بلجيكا) text(was:a:neighboring:state:to) text(Francia) +text(Belgium) text(borders:with) text(Netherlands) +text(Catar) text(was:sited:in) text(غرب:آسيا) +text(卡塔尔) text(is:sited:in) text(एशिया) +text(Qatar) text(borders) text(सउदी:अरब) +text(Solomon:Islands) text(was:localized:in) text(Melanesië) +text(सोलोमन:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(सीरिया) text(was:present:in) text(पश्चिमी:एशिया) +text(敘利亞) text(is:present:in) text(Asia) +text(Syrië) text(is:butted:against) text(Israël) +text(سوريا) text(was:butted:against) text(تركيا) +text(Syria) text(was:adjacent:to) text(Jordanië) +text(Siria) text(is:adjacent:to) text(लेबनॉन) +text(सीरिया) text(neighbors) text(العراق) +text(印度) text(is:still:in) text(Asia:del:Sur) +text(India) text(was:still:in) text(Azië) +text(India) text(is:a:neighboring:country:of) text(阿富汗) +text(الهند) text(was:a:neighboring:country:of) text(Bután) +text(India) text(neighbors:with) text(Bangladesh) +text(भारत) text(was:a:neighbor:of) text(الصين) +text(印度) text(is:a:neighbor:of) text(Nepal) +text(India) text(is:a:neighboring:state:to) text(Birmania) +text(India) text(was:a:neighboring:state:to) text(Pakistán) +text(الهند) text(borders:with) text(斯里蘭卡) +text(मोरक्को) text(was:currently:in) text(उत्तर:अफ़्रीका) +text(Marruecos) text(borders) text(阿爾及利亞) +text(المغرب) text(is:butted:against) text(西班牙) +text(摩洛哥) text(was:butted:against) text(撒拉威阿拉伯民主共和國) +text(Kenya) text(is:currently:in) text(पूर्वी:अफ्रीका) +text(肯尼亚) text(is:placed:in) text(अफ्रीका) +text(كينيا) text(was:adjacent:to) text(युगाण्डा) +text(Kenia) text(is:adjacent:to) text(Tanzania) +text(कीनिया) text(neighbors) text(Somalia) +text(Kenia) text(is:a:neighboring:country:of) text(جنوب:السودان) +text(Kenya) text(was:a:neighboring:country:of) text(إثيوبيا) +text(दक्षिण:सूडान) text(was:placed:in) text(Centraal-Afrika) +text(Zuid-Soedan) text(can:be:found:in) text(إفريقيا) +text(南蘇丹) text(neighbors:with) text(Uganda) +text(South:Sudan) text(was:a:neighbor:of) text(República:Democrática:del:Congo) +text(Sudán:del:Sur) text(is:a:neighbor:of) text(肯尼亚) +text(جنوب:السودان) text(is:a:neighboring:state:to) text(中非共和國) +text(दक्षिण:सूडान) text(was:a:neighboring:state:to) text(सूडान) +text(Zuid-Soedan) text(borders:with) text(Ethiopië) +text(Ghana) text(was:situated:in) text(África:Occidental) +text(घाना) text(borders) text(Burkina:Faso) +text(Ghana) text(is:butted:against) text(Costa:de:Marfil) +text(迦納) text(was:butted:against) text(टोगो) +text(塔吉克斯坦) text(is:situated:in) text(中亚) +text(Tadzjikistan) text(is:located:in) text(Asia) +text(Tajikistan) text(was:adjacent:to) text(People's:Republic:of:China) +text(Tayikistán) text(is:adjacent:to) text(قرغيزستان) +text(طاجيكستان) text(neighbors) text(Afganistán) +text(ताजीकिस्तान) text(is:a:neighboring:country:of) text(Uzbekistan) +text(馬紹爾群島) text(was:located:in) text(ميكرونيسيا) +text(Islas:Marshall) text(can:be:found:in) text(أوقيانوسيا) +text(कैमरुन) text(was:positioned:in) text(中部非洲) +text(Camerún) text(is:positioned:in) text(非洲) +text(Cameroon) text(was:a:neighboring:country:of) text(Chad) +text(الكاميرون) text(neighbors:with) text(جمهورية:الكونغو) +text(喀麦隆) text(was:a:neighbor:of) text(Gabón) +text(Kameroen) text(is:a:neighbor:of) text(भूमध्यरेखीय:गिनी) +text(कैमरुन) text(is:a:neighboring:state:to) text(Central:African:Republic) +text(Camerún) text(was:a:neighboring:state:to) text(नाइजीरिया) +text(ناورو) text(was:sited:in) text(Micronesia) +text(Nauru) text(is:sited:in) text(Oceanía) +text(تايلاند) text(was:localized:in) text(Southeast:Asia) +text(Thailand) text(borders:with) text(Cambodia) +text(Tailandia) text(borders) text(Myanmar) +text(泰國) text(is:butted:against) text(老撾) +text(थाईलैंड) text(was:butted:against) text(馬來西亞) +text(苏丹) text(is:localized:in) text(North:Africa) +text(Sudán) text(was:adjacent:to) text(Tsjaad) +text(Sudan) text(is:adjacent:to) text(Libia) +text(Soedan) text(neighbors) text(南蘇丹) +text(السودان) text(is:a:neighboring:country:of) text(厄立特里亞) +text(सूडान) text(was:a:neighboring:country:of) text(جمهورية:إفريقيا:الوسطى) +text(苏丹) text(neighbors:with) text(Egypte) +text(Sudán) text(was:a:neighbor:of) text(इथियोपिया) +text(تشاد) text(was:present:in) text(Central:Africa) +text(चाड) text(is:present:in) text(Africa) +text(乍得) text(is:a:neighbor:of) text(ليبيا) +text(Chad) text(is:a:neighboring:state:to) text(Níger) +text(Chad) text(was:a:neighboring:state:to) text(South:Sudan) +text(Tsjaad) text(borders:with) text(Cameroon) +text(تشاد) text(borders) text(República:Centroafricana) +text(चाड) text(is:butted:against) text(Nigeria) +text(Vanuatu) text(is:still:in) text(Melanesia) +text(فانواتو) text(was:still:in) text(大洋洲) +text(Cabo:Verde) text(was:currently:in) text(غرب:إفريقيا) +text(佛得角) text(is:currently:in) text(Afrika) +text(Falklandeilanden) text(is:placed:in) text(South:America) +text(फ़ॉकलैंड:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Liberia) text(can:be:found:in) text(West-Afrika) +text(Liberia) text(was:situated:in) text(África) +text(利比里亞) text(was:butted:against) text(कोत:दिव्वार) +text(Liberia) text(was:adjacent:to) text(Sierra:Leona) +text(लाइबेरिया) text(is:adjacent:to) text(Guinee) +text(柬埔寨) text(is:situated:in) text(Zuidoost-Azië) +text(كمبوديا) text(is:located:in) text(亞洲) +text(कम्बोडिया) text(neighbors) text(वियतनाम) +text(Camboya) text(is:a:neighboring:country:of) text(Thailand) +text(Cambodja) text(was:a:neighboring:country:of) text(Laos) +text(Zimbabwe) text(was:located:in) text(东部非洲) +text(زيمبابوي) text(neighbors:with) text(ज़ाम्बिया) +text(津巴布韦) text(was:a:neighbor:of) text(Zuid-Afrika) +text(Zimbabwe) text(is:a:neighbor:of) text(波札那) +text(ज़िम्बाब्वे) text(is:a:neighboring:state:to) text(莫桑比克) +text(Comoren) text(can:be:found:in) text(East:Africa) +text(Comoros) text(was:positioned:in) text(अफ्रीका) +text(غوام) text(is:positioned:in) text(Micronesia) +text(गुआम) text(was:sited:in) text(Oceanië) +text(جزر:البهاما) text(is:sited:in) text(加勒比地区) +text(Bahama's) text(was:localized:in) text(美洲) +text(Lebanon) text(is:localized:in) text(西亚) +text(Líbano) text(was:present:in) text(آسيا) +text(لبنان) text(was:a:neighboring:state:to) text(इज़राइल) +text(Libanon) text(borders:with) text(敘利亞) +text(圣马丁岛) text(is:present:in) text(Caraïben) +text(San:Martín) text(is:still:in) text(महाअमेरिका) +text(سانت:مارتن) text(borders) text(Sint-Maarten) +text(埃塞俄比亚) text(was:still:in) text(África:Oriental) +text(Etiopía) text(was:currently:in) text(إفريقيا) +text(Ethiopia) text(is:butted:against) text(सोमालिया) +text(إثيوبيا) text(was:butted:against) text(كينيا) +text(Ethiopië) text(was:adjacent:to) text(Eritrea) +text(इथियोपिया) text(is:adjacent:to) text(Sudán:del:Sur) +text(埃塞俄比亚) text(neighbors) text(吉布提) +text(Etiopía) text(is:a:neighboring:country:of) text(Sudan) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) text(is:currently:in) text(कैरिबिया) +text(United:States:Virgin:Islands) text(is:placed:in) text(Amerika) +text(गिनी-बिसाऊ) text(was:placed:in) text(पश्चिमी:अफ्रीका) +text(Guinee-Bissau) text(can:be:found:in) text(非洲) +text(畿內亞比紹) text(was:a:neighboring:country:of) text(几内亚) +text(غينيا:بيساو) text(neighbors:with) text(السنغال) +text(लीबिया) text(was:situated:in) text(Noord-Afrika) +text(Libië) text(is:situated:in) text(Africa) +text(Libya) text(was:a:neighbor:of) text(乍得) +text(利比亞) text(is:a:neighbor:of) text(Túnez) +text(Libia) text(is:a:neighboring:state:to) text(Niger) +text(ليبيا) text(was:a:neighboring:state:to) text(Algerije) +text(लीबिया) text(borders:with) text(مصر) +text(Libië) text(borders) text(Soedan) +text(भूटान) text(is:located:in) text(Zuid-Azië) +text(بوتان) text(was:located:in) text(एशिया) +text(Bhutan) text(is:butted:against) text(Volksrepubliek:China) +text(不丹) text(was:butted:against) text(India) +text(澳門) text(can:be:found:in) text(Asia:Oriental) +text(Macau) text(was:positioned:in) text(Asia) +text(Macau) text(was:adjacent:to) text(中华人民共和国) +text(بولنيزيا:الفرنسية) text(is:positioned:in) text(पोलीनेशिया) +text(Polinesia:Francesa) text(was:sited:in) text(Oceania) +text(الصومال) text(is:sited:in) text(شرق:إفريقيا) +text(Somalia) text(was:localized:in) text(Afrika) +text(Somalië) text(is:adjacent:to) text(Djibouti) +text(索馬里) text(neighbors) text(Kenia) +text(Somalia) text(is:a:neighboring:country:of) text(Ethiopia) +text(Saint-Barthélemy) text(is:localized:in) text(Caribe) +text(سان:بارتيلمي) text(was:present:in) text(América) +text(Rusia) text(is:present:in) text(أوروبا:الشرقية) +text(Russia) text(is:still:in) text(Europa) +text(Rusland) text(was:a:neighboring:country:of) text(أوكرانيا) +text(रूस) text(neighbors:with) text(بيلاروس) +text(روسيا) text(was:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) text(is:a:neighbor:of) text(哈萨克斯坦) +text(Rusia) text(is:a:neighboring:state:to) text(Noruega) +text(Russia) text(was:a:neighboring:state:to) text(بولندا) +text(Rusland) text(borders:with) text(Azerbaiyán) +text(रूस) text(borders) text(Litouwen) +text(روسيا) text(is:butted:against) text(إستونيا) +text(俄罗斯) text(was:butted:against) text(Corea:del:Norte) +text(Rusia) text(was:adjacent:to) text(芬蘭) +text(Russia) text(is:adjacent:to) text(Mongolië) +text(Rusland) text(neighbors) text(لاتفيا) +text(रूस) text(is:a:neighboring:country:of) text(Georgia) +text(新西兰) text(was:still:in) text(nan) +text(न्यूज़ीलैंड) text(was:currently:in) text(ओशिआनिया) +text(पनामा) text(is:currently:in) text(中美洲) +text(بنما) text(is:placed:in) text(أمريكتان) +text(Panamá) text(was:a:neighboring:country:of) text(كوستاريكا) +text(巴拿馬) text(neighbors:with) text(كولومبيا) +text(بابوا:غينيا:الجديدة) text(was:placed:in) text(Melanesia) +text(Papoea-Nieuw-Guinea) text(can:be:found:in) text(أوقيانوسيا) +text(巴布亚新几内亚) text(was:a:neighbor:of) text(Indonesia) +text(North:Korea) text(was:situated:in) text(東亞) +text(朝鮮民主主義人民共和國) text(is:a:neighbor:of) text(República:Popular:China) +text(उत्तर:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الجنوبية) +text(Noord-Korea) text(was:a:neighboring:state:to) text(روسيا) +text(Letland) text(is:situated:in) text(Europa:del:Norte) +text(लातविया) text(is:located:in) text(यूरोप) +text(Latvia) text(borders:with) text(लिथुआनिया) +text(Letonia) text(borders) text(बेलारूस) +text(拉脫維亞) text(is:butted:against) text(俄罗斯) +text(لاتفيا) text(was:butted:against) text(愛沙尼亞) +text(Oman) text(was:located:in) text(Zuidwest-Azië) +text(Omán) text(can:be:found:in) text(Azië) +text(Oman) text(was:adjacent:to) text(Arabia:Saudí) +text(ओमान) text(is:adjacent:to) text(اليمن) +text(سلطنة:عمان) text(neighbors) text(Emiratos:Árabes:Unidos) +text(Saint-Pierre:en:Miquelon) text(was:positioned:in) text(América:del:Norte) +text(سان:بيير:وميكلون) text(is:positioned:in) text(Americas) +text(Martinique) text(was:sited:in) text(Caribbean) +text(مارتينيك) text(is:sited:in) text(美洲) +text(United:Kingdom) text(was:localized:in) text(Noord-Europa) +text(英国) text(is:localized:in) text(أوروبا) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:country:of) text(英国) +text(إسرائيل) text(was:present:in) text(Asia:Occidental) +text(Israel) text(is:present:in) text(Asia) +text(Israel) text(was:a:neighboring:country:of) text(黎巴嫩) +text(以色列) text(neighbors:with) text(Egypt) +text(Israël) text(was:a:neighbor:of) text(जॉर्डन) +text(इज़राइल) text(is:a:neighbor:of) text(Syrië) +text(Jersey) text(is:still:in) text(उत्तरी:यूरोप) +text(جيرزي) text(was:still:in) text(Europe) +text(皮特凯恩群岛) text(was:currently:in) text(Polynesia) +text(Islas:Pitcairn) text(is:currently:in) text(Oceanía) +text(多哥) text(is:placed:in) text(西非) +text(Togo) text(was:placed:in) text(África) +text(Togo) text(is:a:neighboring:state:to) text(布吉納法索) +text(توغو) text(was:a:neighboring:state:to) text(غانا) +text(Togo) text(borders:with) text(貝南) +text(吉里巴斯) text(can:be:found:in) text(Micronesië) +text(Kiribati) text(was:situated:in) text(大洋洲) +text(Irán) text(is:situated:in) text(South:Asia) +text(Iran) text(is:located:in) text(亞洲) +text(ईरान) text(borders) text(Afghanistan) +text(Iran) text(is:butted:against) text(土庫曼斯坦) +text(伊朗) text(was:butted:against) text(तुर्की) +text(إيران) text(was:adjacent:to) text(Armenia) +text(Irán) text(is:adjacent:to) text(Azerbaijan) +text(Iran) text(neighbors) text(巴基斯坦) +text(ईरान) text(is:a:neighboring:country:of) text(इराक) +text(法屬聖馬丁) text(was:located:in) text(الكاريبي) +text(Saint-Martin) text(can:be:found:in) text(महाअमेरिका) +text(تجمع:سان:مارتين) text(was:a:neighboring:country:of) text(Sint:Maarten) +text(Dominican:Republic) text(was:positioned:in) text(加勒比地区) +text(جمهورية:الدومينيكان) text(is:positioned:in) text(Amerika) +text(República:Dominicana) text(neighbors:with) text(हैती) +text(Dinamarca) text(was:sited:in) text(أوروبا:الشمالية) +text(Denemarken) text(was:a:neighbor:of) text(Germany) +text(Bermuda) text(is:sited:in) text(उत्तर:अमेरिका) +text(बरमूडा) text(was:localized:in) text(América) +text(Chili) text(is:localized:in) text(أمريكا:الجنوبية) +text(Chile) text(is:a:neighbor:of) text(Argentinië) +text(تشيلي) text(is:a:neighboring:state:to) text(Bolivia) +text(Chile) text(was:a:neighboring:state:to) text(Perú) +text(科索沃) text(was:present:in) text(东欧) +text(Kosovo) text(is:present:in) text(Europa) +text(कोसोवो:गणराज्य) text(borders:with) text(Serbia) +text(Kosovo) text(borders) text(अल्बानिया) +text(كوسوفو) text(is:butted:against) text(مقدونيا:الشمالية) +text(Kosovo) text(was:butted:against) text(मॉन्टेनीग्रो) +text(सन्त:किट्स:और:नेविस) text(is:still:in) text(Caraïben) +text(Saint:Kitts:and:Nevis) text(was:still:in) text(أمريكتان) +text(Eritrea) text(was:currently:in) text(Oost-Afrika) +text(Eritrea) text(was:adjacent:to) text(Yibuti) +text(इरित्रिया) text(is:adjacent:to) text(السودان) +text(إرتريا) text(neighbors) text(إثيوبيا) +text(赤道几内亚) text(is:currently:in) text(मध्य:अफ्रीका) +text(غينيا:الاستوائية) text(is:placed:in) text(अफ्रीका) +text(Equatorial:Guinea) text(is:a:neighboring:country:of) text(Gabon) +text(Equatoriaal-Guinea) text(was:a:neighboring:country:of) text(الكاميرون) +text(Niger) text(was:placed:in) text(West:Africa) +text(尼日尔) text(can:be:found:in) text(إفريقيا) +text(नाइजर) text(neighbors:with) text(Chad) +text(النيجر) text(was:a:neighbor:of) text(Libya) +text(Níger) text(is:a:neighbor:of) text(बुर्किना:फासो) +text(Niger) text(is:a:neighboring:state:to) text(Benin) +text(Niger) text(was:a:neighboring:state:to) text(Mali) +text(尼日尔) text(borders:with) text(Algeria) +text(नाइजर) text(borders) text(نيجيريا) +text(Anguilla) text(was:situated:in) text(कैरिबिया) +text(安圭拉) text(is:situated:in) text(Americas) +text(रवाण्डा) text(is:located:in) text(पूर्वी:अफ्रीका) +text(رواندا) text(was:located:in) text(非洲) +text(Ruanda) text(is:butted:against) text(蒲隆地) +text(卢旺达) text(was:butted:against) text(坦桑尼亞) +text(Rwanda) text(was:adjacent:to) text(烏干達) +text(Rwanda) text(is:adjacent:to) text(刚果民主共和国) +text(الإمارات:العربية:المتحدة) text(can:be:found:in) text(West:Asia) +text(阿拉伯联合酋长国) text(was:positioned:in) text(آسيا) +text(संयुक्त:अरब:अमीरात) text(neighbors) text(阿曼) +text(Verenigde:Arabische:Emiraten) text(is:a:neighboring:country:of) text(Saoedi-Arabië) +text(Estonia) text(is:positioned:in) text(北歐) +text(एस्टोनिया) text(was:sited:in) text(欧洲) +text(Estonia) text(was:a:neighboring:country:of) text(Letland) +text(Estland) text(neighbors:with) text(Rusia) +text(Griekenland) text(is:sited:in) text(أوروبا:الجنوبية) +text(Grecia) text(was:localized:in) text(Europa) +text(اليونان) text(was:a:neighbor:of) text(Bulgarije) +text(यूनान) text(is:a:neighbor:of) text(ألبانيا) +text(Greece) text(is:a:neighboring:state:to) text(उत्तर:मैसिडोनिया) +text(希腊) text(was:a:neighboring:state:to) text(Turquía) +text(Senegal) text(is:localized:in) text(África:Occidental) +text(Senegal) text(was:present:in) text(Africa) +text(सेनेगल) text(borders:with) text(Guinea-Bisáu) +text(Senegal) text(borders) text(毛里塔尼亞) +text(塞内加尔) text(is:butted:against) text(马里) +text(السنغال) text(was:butted:against) text(غامبيا) +text(Senegal) text(was:adjacent:to) text(Guinea) +text(瓜德羅普) text(is:present:in) text(Caribe) +text(Guadalupe) text(is:still:in) text(美洲) +text(Mónaco) text(was:still:in) text(أوروبا:الغربية) +text(摩納哥) text(is:adjacent:to) text(法國) +text(جيبوتي) text(was:currently:in) text(东部非洲) +text(Djibouti) text(neighbors) text(厄立特里亞) +text(जिबूती) text(is:a:neighboring:country:of) text(सोमालिया) +text(吉布提) text(was:a:neighboring:country:of) text(Ethiopië) +text(Indonesia) text(is:currently:in) text(Sudeste:Asiático) +text(इंडोनेशिया) text(neighbors:with) text(Papua:New:Guinea) +text(إندونيسيا) text(was:a:neighbor:of) text(Timor:Oriental) +text(Indonesië) text(is:a:neighbor:of) text(मलेशिया) +text(British:Virgin:Islands) text(is:placed:in) text(Caribbean) +text(جزر:عذراء:بريطانية) text(was:placed:in) text(महाअमेरिका) +text(कुक:द्वीपसमूह) text(can:be:found:in) text(Polynesië) +text(Cookeilanden) text(was:situated:in) text(Oceanië) +text(أوغندا) text(is:situated:in) text(East:Africa) +text(Uganda) text(is:located:in) text(Afrika) +text(Oeganda) text(is:a:neighboring:state:to) text(तंज़ानिया) +text(युगाण्डा) text(was:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Uganda) text(borders:with) text(कीनिया) +text(烏干達) text(borders) text(جنوب:السودان) +text(أوغندا) text(is:butted:against) text(रवाण्डा) +text(Noord-Macedonië) text(was:located:in) text(Zuid-Europa) +text(北马其顿) text(can:be:found:in) text(यूरोप) +text(Macedonia:del:Norte) text(was:butted:against) text(科索沃) +text(North:Macedonia) text(was:adjacent:to) text(Griekenland) +text(مقدونيا:الشمالية) text(is:adjacent:to) text(Albanië) +text(उत्तर:मैसिडोनिया) text(neighbors) text(सर्बिया) +text(Noord-Macedonië) text(is:a:neighboring:country:of) text(بلغاريا) +text(ट्यूनिशिया) text(was:positioned:in) text(Norte:de:África) +text(突尼西亞) text(is:positioned:in) text(África) +text(Tunesië) text(was:a:neighboring:country:of) text(利比亞) +text(Tunisia) text(neighbors:with) text(Argelia) +text(Ecuador) text(was:sited:in) text(दक्षिण:अमेरिका) +text(Ecuador) text(was:a:neighbor:of) text(पेरू) +text(厄瓜多尔) text(is:a:neighbor:of) text(Colombia) +text(Brazil) text(is:sited:in) text(Zuid-Amerika) +text(ब्राज़ील) text(was:localized:in) text(Amerika) +text(البرازيل) text(is:a:neighboring:state:to) text(玻利維亞) +text(巴西) text(was:a:neighboring:state:to) text(कोलम्बिया) +text(Brasil) text(borders:with) text(Paraguay) +text(Brazilië) text(borders) text(Uruguay) +text(Brazil) text(is:butted:against) text(Frans-Guyana) +text(ब्राज़ील) text(was:butted:against) text(Surinam) +text(البرازيل) text(was:adjacent:to) text(委內瑞拉) +text(巴西) text(is:adjacent:to) text(अर्जेण्टीना) +text(Brasil) text(neighbors) text(غيانا) +text(Brazilië) text(is:a:neighboring:country:of) text(Peru) +text(باراغواي) text(is:localized:in) text(南美洲) +text(巴拉圭) text(was:present:in) text(América) +text(Paraguay) text(was:a:neighboring:country:of) text(الأرجنتين) +text(पैराग्वे) text(neighbors:with) text(Brazil) +text(Paraguay) text(was:a:neighbor:of) text(बोलिविया) +text(Finland) text(is:present:in) text(Northern:Europe) +text(फ़िनलैण्ड) text(is:still:in) text(أوروبا) +text(فنلندا) text(is:a:neighbor:of) text(Noorwegen) +text(Finlandia) text(is:a:neighboring:state:to) text(स्वीडन) +text(Finland) text(was:a:neighboring:state:to) text(Russia) +text(約旦) text(was:still:in) text(غرب:آسيا) +text(Jordania) text(borders:with) text(السعودية) +text(الأردن) text(borders) text(إسرائيل) +text(Jordan) text(is:butted:against) text(Iraq) +text(Jordanië) text(was:butted:against) text(سوريا) +text(पूर्वी:तिमोर) text(was:currently:in) text(جنوب:شرق:آسيا) +text(Timor-Leste) text(was:adjacent:to) text(印度尼西亚) +text(Montenegro) text(is:currently:in) text(Europa:del:Sur) +text(Montenegro) text(is:placed:in) text(Europe) +text(الجبل:الأسود) text(is:adjacent:to) text(Kosovo) +text(Montenegro) text(neighbors) text(बोस्निया:और:हर्ज़ेगोविना) +text(蒙特內哥羅) text(is:a:neighboring:country:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(was:a:neighboring:country:of) text(صربيا) +text(Montenegro) text(neighbors:with) text(阿爾巴尼亞) +text(秘鲁) text(was:placed:in) text(América:del:Sur) +text(بيرو) text(can:be:found:in) text(أمريكتان) +text(Peru) text(was:a:neighbor:of) text(Ecuador) +text(Perú) text(is:a:neighbor:of) text(بوليفيا) +text(पेरू) text(is:a:neighboring:state:to) text(चिली) +text(Peru) text(was:a:neighboring:state:to) text(ब्राज़ील) +text(秘鲁) text(borders:with) text(哥伦比亚) +text(मॉण्टसेराट) text(was:situated:in) text(الكاريبي) +text(蒙塞拉特島) text(is:situated:in) text(Americas) +text(烏克蘭) text(is:located:in) text(Eastern:Europe) +text(Ucrania) text(was:located:in) text(Europa) +text(Ukraine) text(borders) text(Slovakia) +text(युक्रेन) text(is:butted:against) text(白俄羅斯) +text(Oekraïne) text(was:butted:against) text(Polonia) +text(أوكرانيا) text(was:adjacent:to) text(Rusland) +text(烏克蘭) text(is:adjacent:to) text(हंगरी) +text(Ucrania) text(neighbors) text(摩爾多瓦) +text(Ukraine) text(is:a:neighboring:country:of) text(रोमानिया) +text(डोमिनिका) text(can:be:found:in) text(加勒比地区) +text(Dominica) text(was:positioned:in) text(美洲) +text(Turkmenistan) text(is:positioned:in) text(Centraal-Azië) +text(Turkmenistan) text(was:a:neighboring:country:of) text(كازاخستان) +text(Turkmenistán) text(neighbors:with) text(अफ़्ग़ानिस्तान) +text(تركمانستان) text(was:a:neighbor:of) text(أوزبكستان) +text(तुर्कमेनिस्तान) text(is:a:neighbor:of) text(Iran) +text(غيرنزي) text(was:sited:in) text(Europa:del:Norte) +text(Guernsey) text(is:sited:in) text(欧洲) +text(直布羅陀) text(was:localized:in) text(दक्षिणी:यूरोप) +text(जिब्राल्टर) text(is:localized:in) text(Europa) +text(Gibraltar) text(is:a:neighboring:state:to) text(Spain) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(West-Europa) +text(瑞士) text(is:present:in) text(यूरोप) +text(Zwitserland) text(was:a:neighboring:state:to) text(Duitsland) +text(سويسرا) text(borders:with) text(إيطاليا) +text(Suiza) text(borders) text(النمسا) +text(Switzerland) text(is:butted:against) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(was:butted:against) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:still:in) text(西欧) +text(Oostenrijk) text(was:still:in) text(أوروبا) +text(Austria) text(was:adjacent:to) text(Alemania) +text(奧地利) text(is:adjacent:to) text(斯洛伐克) +text(Austria) text(neighbors) text(स्लोवेनिया) +text(النمسا) text(is:a:neighboring:country:of) text(Italy) +text(ऑस्ट्रिया) text(was:a:neighboring:country:of) text(瑞士) +text(Oostenrijk) text(neighbors:with) text(Hongarije) +text(Austria) text(was:a:neighbor:of) text(Liechtenstein) +text(奧地利) text(is:a:neighbor:of) text(Czech:Republic) +text(Hungría) text(was:currently:in) text(पूर्वी:यूरोप) +text(المجر) text(is:a:neighboring:state:to) text(युक्रेन) +text(Hungary) text(was:a:neighboring:state:to) text(سلوفاكيا) +text(匈牙利) text(borders:with) text(Eslovenia) +text(हंगरी) text(borders) text(Croatia) +text(Hongarije) text(is:butted:against) text(Austria) +text(Hungría) text(was:butted:against) text(Serbia) +text(المجر) text(was:adjacent:to) text(Roemenië) +text(मलावी) text(is:currently:in) text(África:Oriental) +text(Malawi) text(is:placed:in) text(अफ्रीका) +text(馬拉威) text(is:adjacent:to) text(贊比亞) +text(Malaui) text(neighbors) text(Tanzania) +text(Malawi) text(is:a:neighboring:country:of) text(Mozambique) +text(香港) text(was:placed:in) text(East:Asia) +text(Hong:Kong) text(was:a:neighboring:country:of) text(الصين) +text(Liechtenstein) text(can:be:found:in) text(Europa:Occidental) +text(Liechtenstein) text(was:situated:in) text(Europe) +text(ليختنشتاين) text(neighbors:with) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(was:a:neighbor:of) text(النمسا) +text(Barbados) text(is:situated:in) text(Caraïben) +text(Barbados) text(is:located:in) text(महाअमेरिका) +text(格鲁吉亚) text(was:located:in) text(पश्चिमी:एशिया) +text(Georgië) text(can:be:found:in) text(एशिया) +text(Georgia) text(is:a:neighbor:of) text(Armenië) +text(جورجيا) text(is:a:neighboring:state:to) text(Azerbeidzjan) +text(जॉर्जिया) text(was:a:neighboring:state:to) text(रूस) +text(Georgia) text(borders:with) text(土耳其) +text(Albania) text(was:positioned:in) text(南欧) +text(Albania) text(is:positioned:in) text(Europa) +text(अल्बानिया) text(borders) text(Montenegro) +text(ألبانيا) text(is:butted:against) text(北马其顿) +text(Albanië) text(was:butted:against) text(कोसोवो:गणराज्य) +text(阿爾巴尼亞) text(was:adjacent:to) text(Grecia) +text(科威特) text(was:sited:in) text(西亚) +text(الكويت) text(is:sited:in) text(Asia) +text(Koeweit) text(is:adjacent:to) text(沙特阿拉伯) +text(Kuwait) text(neighbors) text(Irak) +text(جنوب:إفريقيا) text(was:localized:in) text(إفريقيا:الجنوبية) +text(दक्षिण:अफ़्रीका) text(is:localized:in) text(إفريقيا) +text(南非) text(is:a:neighboring:country:of) text(Mozambique) +text(South:Africa) text(was:a:neighboring:country:of) text(बोत्सवाना) +text(Sudáfrica) text(neighbors:with) text(إسواتيني) +text(Zuid-Afrika) text(was:a:neighbor:of) text(Zimbabue) +text(جنوب:إفريقيا) text(is:a:neighbor:of) text(Namibia) +text(दक्षिण:अफ़्रीका) text(is:a:neighboring:state:to) text(Lesoto) +text(Haïti) text(was:present:in) text(कैरिबिया) +text(Haití) text(is:present:in) text(Amerika) +text(海地) text(was:a:neighboring:state:to) text(डोमिनिकन:गणराज्य) +text(أفغانستان) text(is:still:in) text(جنوب:آسيا) +text(Afghanistan) text(was:still:in) text(Azië) +text(阿富汗) text(borders:with) text(土庫曼斯坦) +text(Afganistán) text(borders) text(People's:Republic:of:China) +text(Afghanistan) text(is:butted:against) text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) text(was:butted:against) text(Oezbekistan) +text(أفغانستان) text(was:adjacent:to) text(伊朗) +text(Afghanistan) text(is:adjacent:to) text(باكستان) +text(سنغافورة) text(was:currently:in) text(东南亚) +text(新加坡) text(is:currently:in) text(Asia) +text(بنين) text(is:placed:in) text(غرب:إفريقيا) +text(Benín) text(was:placed:in) text(非洲) +text(Benin) text(neighbors) text(النيجر) +text(बेनिन) text(is:a:neighboring:country:of) text(بوركينا:فاسو) +text(貝南) text(was:a:neighboring:country:of) text(टोगो) +text(Benin) text(neighbors:with) text(Nigeria) +text(奥兰) text(can:be:found:in) text(Noord-Europa) +text(Åland) text(was:situated:in) text(欧洲) +text(Croacia) text(is:situated:in) text(Southern:Europe) +text(克羅地亞) text(is:located:in) text(Europa) +text(क्रोएशिया) text(was:a:neighbor:of) text(Slovenië) +text(كرواتيا) text(is:a:neighbor:of) text(Bosnia:and:Herzegovina) +text(Kroatië) text(is:a:neighboring:state:to) text(Hungary) +text(Croatia) text(was:a:neighboring:state:to) text(塞爾維亞) +text(Croacia) text(borders:with) text(الجبل:الأسود) +text(Zweden) text(was:located:in) text(उत्तरी:यूरोप) +text(Sweden) text(can:be:found:in) text(यूरोप) +text(السويد) text(borders) text(नॉर्वे) +text(瑞典) text(is:butted:against) text(芬蘭) +text(México) text(was:positioned:in) text(North:America) +text(मेक्सिको) text(was:butted:against) text(Belize) +text(墨西哥) text(was:adjacent:to) text(美國) +text(المكسيك) text(is:adjacent:to) text(Guatemala) +text(Greenland) text(is:positioned:in) text(北美洲) +text(ग्रीनलैण्ड) text(was:sited:in) text(América) +text(جزر:بيتكيرن) text(is:sited:in) text(nan) +text(Islas:Pitcairn) text(was:localized:in) text(Oceania) +text(नेपाल) text(is:localized:in) text(南亚) +text(نيبال) text(was:present:in) text(亞洲) +text(Nepal) text(neighbors) text(Volksrepubliek:China) +text(尼泊爾) text(is:a:neighboring:country:of) text(भारत) +text(Guatemala) text(is:present:in) text(Centraal-Amerika) +text(ग्वाटेमाला) text(was:a:neighboring:country:of) text(बेलीज़) +text(غواتيمالا) text(neighbors:with) text(薩爾瓦多) +text(Guatemala) text(was:a:neighbor:of) text(Mexico) +text(危地马拉) text(is:a:neighbor:of) text(Honduras) +text(大韩民国) text(is:still:in) text(شرق:آسيا) +text(Corea:del:Sur) text(was:still:in) text(آسيا) +text(दक्षिण:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(Europa:Oriental) +text(Moldavia) text(is:currently:in) text(أوروبا) +text(مولدوفا) text(was:a:neighboring:state:to) text(Oekraïne) +text(मोल्डोवा) text(borders:with) text(رومانيا) +text(موريشيوس) text(is:placed:in) text(شرق:إفريقيا) +text(Mauricio) text(was:placed:in) text(Africa) +text(Belarus) text(can:be:found:in) text(Oost-Europa) +text(Bielorrusia) text(borders) text(أوكرانيا) +text(Wit-Rusland) text(is:butted:against) text(पोलैंड) +text(بيلاروس) text(was:butted:against) text(ليتوانيا) +text(बेलारूस) text(was:adjacent:to) text(روسيا) +text(白俄羅斯) text(is:adjacent:to) text(लातविया) +text(孟加拉國) text(was:situated:in) text(दक्षिण:एशिया) +text(Bangladés) text(neighbors) text(म्यान्मार) +text(بنغلاديش) text(is:a:neighboring:country:of) text(印度) +text(Malaysia) text(is:situated:in) text(दक्षिण:पूर्व:एशिया) +text(Malasia) text(is:located:in) text(एशिया) +text(Maleisië) text(was:a:neighboring:country:of) text(تايلاند) +text(ماليزيا) text(neighbors:with) text(Indonesia) +text(馬來西亞) text(was:a:neighbor:of) text(ब्रुनेई) +text(البوسنة:والهرسك) text(was:located:in) text(أوروبا:الجنوبية) +text(Bosnia:y:Herzegovina) text(can:be:found:in) text(Europe) +text(波斯尼亚和黑塞哥维那) text(is:a:neighbor:of) text(Servië) +text(Bosnië:en:Herzegovina) text(is:a:neighboring:state:to) text(克羅地亞) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:a:neighboring:state:to) text(Montenegro) +text(Luxembourg) text(was:positioned:in) text(पश्चिमी:यूरोप) +text(Luxemburg) text(is:positioned:in) text(Europa) +text(卢森堡) text(borders:with) text(德國) +text(Luxemburgo) text(borders) text(België) +text(لوكسمبورغ) text(is:butted:against) text(France) +text(Italië) text(was:sited:in) text(Zuid-Europa) +text(Italia) text(is:sited:in) text(欧洲) +text(意大利) text(was:butted:against) text(Slovenia) +text(इटली) text(was:adjacent:to) text(سويسرا) +text(إيطاليا) text(is:adjacent:to) text(ऑस्ट्रिया) +text(Italy) text(neighbors) text(Frankrijk) +text(Italië) text(is:a:neighboring:country:of) text(Vatican:City) +text(Italia) text(was:a:neighboring:country:of) text(सान:मारिनो) +text(أذربيجان) text(was:localized:in) text(Zuidwest-Azië) +text(अज़रबैजान) text(is:localized:in) text(Asia) +text(阿塞拜疆) text(neighbors:with) text(Turkije) +text(Azerbaiyán) text(was:a:neighbor:of) text(आर्मीनिया) +text(Azerbaijan) text(is:a:neighbor:of) text(俄罗斯) +text(Azerbeidzjan) text(is:a:neighboring:state:to) text(إيران) +text(أذربيجان) text(was:a:neighboring:state:to) text(格鲁吉亚) +text(Honduras) text(was:present:in) text(Central:America) +text(洪都拉斯) text(is:present:in) text(أمريكتان) +text(हॉण्डुरस) text(borders:with) text(Guatemala) +text(Honduras) text(borders) text(نيكاراغوا) +text(هندوراس) text(is:butted:against) text(El:Salvador) +text(Mali) text(is:still:in) text(West-Afrika) +text(مالي) text(was:still:in) text(Afrika) +text(माली) text(was:butted:against) text(Burkina:Faso) +text(Mali) text(was:adjacent:to) text(غينيا) +text(Mali) text(is:adjacent:to) text(Mauritania) +text(马里) text(neighbors) text(Níger) +text(Mali) text(is:a:neighboring:country:of) text(Senegal) +text(مالي) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(माली) text(neighbors:with) text(科特迪瓦) +text(República:de:China) text(was:currently:in) text(Oost-Azië) +text(चीनी:गणराज्य) text(is:currently:in) text(Azië) +text(الجزائر) text(is:placed:in) text(北部非洲) +text(阿爾及利亞) text(was:placed:in) text(África) +text(Algerije) text(was:a:neighbor:of) text(Libia) +text(Algeria) text(is:a:neighbor:of) text(تونس) +text(Argelia) text(is:a:neighboring:state:to) text(موريتانيا) +text(अल्जीरिया) text(was:a:neighboring:state:to) text(Marokko) +text(الجزائر) text(borders:with) text(Niger) +text(阿爾及利亞) text(borders) text(Mali) +text(Algerije) text(is:butted:against) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(फ़्रान्सीसी:गुयाना) text(can:be:found:in) text(South:America) +text(法屬圭亞那) text(was:butted:against) text(البرازيل) +text(French:Guiana) text(was:adjacent:to) text(蘇利南) +text(Jemen) text(was:situated:in) text(Asia:Occidental) +text(Yemen) text(is:situated:in) text(Asia) +text(Yemen) text(is:adjacent:to) text(Oman) +text(यमन) text(neighbors) text(Saudi:Arabia) +text(Puerto:Rico) text(is:located:in) text(Caribe) +text(पोर्टो:रीको) text(was:located:in) text(Americas) +text(Saint:Vincent:en:de:Grenadines) text(can:be:found:in) text(Caribbean) +text(Saint:Vincent:and:the:Grenadines) text(was:positioned:in) text(美洲) +text(वेनेज़ुएला) text(is:positioned:in) text(أمريكا:الجنوبية) +text(Venezuela) text(is:a:neighboring:country:of) text(巴西) +text(Venezuela) text(was:a:neighboring:country:of) text(Guyana) +text(فنزويلا) text(neighbors:with) text(Colombia) +text(Granada) text(was:sited:in) text(الكاريبي) +text(ग्रेनाडा) text(is:sited:in) text(महाअमेरिका) +text(الولايات:المتحدة) text(was:localized:in) text(Noord-Amerika) +text(Verenigde:Staten) text(was:a:neighbor:of) text(Canada) +text(United:States) text(is:a:neighbor:of) text(Mexico) +text(Tokelau) text(is:localized:in) text(Polinesia) +text(टोकेलाऊ) text(was:present:in) text(ओशिआनिया) +text(سلوفينيا) text(is:present:in) text(Europa:del:Sur) +text(斯洛文尼亞) text(is:still:in) text(Europa) +text(स्लोवेनिया) text(is:a:neighboring:state:to) text(Oostenrijk) +text(Eslovenia) text(was:a:neighboring:state:to) text(क्रोएशिया) +text(Slovenië) text(borders:with) text(意大利) +text(Slovenia) text(borders) text(匈牙利) +text(Filipinas) text(was:still:in) text(Southeast:Asia) +text(菲律賓) text(was:currently:in) text(亞洲) +text(密克羅尼西亞群島) text(is:currently:in) text(माइक्रोनीशिया) +text(ميكرونيسيا) text(is:placed:in) text(أوقيانوسيا) +text(中华人民共和国) text(was:placed:in) text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) text(can:be:found:in) text(آسيا) +text(República:Popular:China) text(is:butted:against) text(阿富汗) +text(الصين) text(was:butted:against) text(Bhutan) +text(People's:Republic:of:China) text(was:adjacent:to) text(मकाउ) +text(Volksrepubliek:China) text(is:adjacent:to) text(India) +text(中华人民共和国) text(neighbors) text(Kazakhstan) +text(चीनी:जनवादी:गणराज्य) text(is:a:neighboring:country:of) text(किर्गिज़स्तान) +text(República:Popular:China) text(was:a:neighboring:country:of) text(Tadzjikistan) +text(الصين) text(neighbors:with) text(Laos) +text(People's:Republic:of:China) text(was:a:neighbor:of) text(Rusia) +text(Volksrepubliek:China) text(is:a:neighbor:of) text(Corea:del:Norte) +text(中华人民共和国) text(is:a:neighboring:state:to) text(Myanmar) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:state:to) text(पाकिस्तान) +text(República:Popular:China) text(borders:with) text(मंगोलिया) +text(الصين) text(borders) text(هونغ:كونغ) +text(People's:Republic:of:China) text(is:butted:against) text(فيتنام) +text(Gabon) text(was:situated:in) text(وسط:إفريقيا) +text(加蓬) text(is:situated:in) text(अफ्रीका) +text(الغابون) text(was:butted:against) text(Guinea:Ecuatorial) +text(गबॉन) text(was:adjacent:to) text(剛果共和國) +text(Gabón) text(is:adjacent:to) text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) text(is:located:in) text(أمريكا:الشمالية) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) text(was:located:in) text(Amerika) +text(Andorra) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(Andorra) text(was:positioned:in) text(यूरोप) +text(安道尔) text(neighbors) text(स्पेन) +text(Andorra) text(is:a:neighboring:country:of) text(فرنسا) +text(समोआ) text(is:positioned:in) text(玻里尼西亞) +text(ساموا) text(was:sited:in) text(Oceanía) +text(गाम्बिया) text(is:sited:in) text(पश्चिमी:अफ्रीका) +text(Gambia) text(was:localized:in) text(إفريقيا) +text(Gambia) text(was:a:neighboring:country:of) text(सेनेगल) +text(nan) text(is:localized:in) text(West:Asia) +text(Pedro:Miguel) text(was:present:in) text(एशिया) +text(nan) text(neighbors:with) text(जॉर्डन) +text(Pedro:Miguel) text(was:a:neighbor:of) text(मिस्र) +text(nan) text(is:a:neighbor:of) text(Israel) +text(रेयूनियों) text(is:present:in) text(Oost-Afrika) +text(Réunion) text(is:still:in) text(非洲) +text(Francia) text(was:still:in) text(Western:Europe) +text(法國) text(was:currently:in) text(أوروبا) +text(फ़्रान्स) text(is:a:neighboring:state:to) text(ألمانيا) +text(France) text(was:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(Frankrijk) text(borders:with) text(इटली) +text(فرنسا) text(borders) text(अण्डोरा) +text(Francia) text(is:butted:against) text(Suiza) +text(法國) text(was:butted:against) text(Monaco) +text(फ़्रान्स) text(was:adjacent:to) text(比利時) +text(France) text(is:adjacent:to) text(España) +text(منغوليا) text(is:currently:in) text(Asia:Oriental) +text(Mongolia) text(is:placed:in) text(Asia) +text(蒙古國) text(neighbors) text(Volksrepubliek:China) +text(Mongolia) text(is:a:neighboring:country:of) text(Russia) +text(立陶宛) text(was:placed:in) text(أوروبا:الشمالية) +text(Lithuania) text(can:be:found:in) text(Europe) +text(Lituania) text(was:a:neighboring:country:of) text(Polen) +text(Litouwen) text(neighbors:with) text(Latvia) +text(लिथुआनिया) text(was:a:neighbor:of) text(Belarus) +text(ليتوانيا) text(is:a:neighbor:of) text(Rusland) +text(Islas:Caimán) text(was:situated:in) text(加勒比地区) +text(開曼群島) text(is:situated:in) text(América) +text(सेंट:लूसिया) text(is:located:in) text(Caraïben) +text(Saint:Lucia) text(was:located:in) text(أمريكتان) +text(कुराकाओ) text(can:be:found:in) text(कैरिबिया) +text(كوراساو) text(was:positioned:in) text(Americas) +text(Caribe) text(is:positioned:in) text(美洲) +text(Asia:del:Sur) text(was:sited:in) text(Azië) +text(África:Central) text(is:sited:in) text(Africa) +text(北歐) text(was:localized:in) text(Europa) +text(南欧) text(is:localized:in) text(欧洲) +text(غرب:آسيا) text(was:present:in) text(Asia) +text(दक्षिण:अमेरिका) text(is:present:in) text(महाअमेरिका) +text(بولنيزيا) text(is:still:in) text(大洋洲) +text(nan) text(was:still:in) text(Oceanië) +text(أوروبا:الغربية) text(was:currently:in) text(Europa) +text(पूर्वी:अफ्रीका) text(is:currently:in) text(Afrika) +text(西非) text(is:placed:in) text(África) +text(أوروبا:الشرقية) text(was:placed:in) text(यूरोप) +text(केंद्रीय:अमेरिका) text(can:be:found:in) text(Amerika) +text(América:del:Norte) text(was:situated:in) text(América) +text(Zuidoost-Azië) text(is:situated:in) text(亞洲) +text(Southern:Africa) text(is:located:in) text(अफ्रीका) +text(東亞) text(was:located:in) text(آسيا) +text(شمال:إفريقيا) text(can:be:found:in) text(إفريقيا) +text(मॅलानिशिया) text(was:positioned:in) text(Oceania) +text(Micronesia) text(is:positioned:in) text(ओशिआनिया) +text(मध्य:एशिया) text(was:sited:in) text(एशिया) +text(Central:Europe) text(is:sited:in) text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv new file mode 100644 index 0000000..d6d5727 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv @@ -0,0 +1,1111 @@ +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(was:localized:in) asia +brunei text(is:localized:in) south-eastern_asia +brunei text(was:present:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(is:present:in) eastern_asia +japan text(is:still:in) asia +netherlands text(was:still:in) western_europe +netherlands text(neighbors:with) germany +netherlands text(was:a:neighbor:of) belgium +turkey text(was:currently:in) western_asia +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(borders) georgia +turkey text(is:butted:against) bulgaria +turkey text(was:butted:against) iraq +turkey text(was:adjacent:to) syria +angola text(is:currently:in) middle_africa +angola text(is:placed:in) africa +angola text(is:adjacent:to) dr_congo +angola text(neighbors) namibia +angola text(is:a:neighboring:country:of) zambia +angola text(was:a:neighboring:country:of) republic_of_the_congo +armenia text(was:placed:in) western_asia +armenia text(can:be:found:in) asia +armenia text(neighbors:with) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey +antigua_and_barbuda text(was:situated:in) caribbean +antigua_and_barbuda text(is:situated:in) americas +swaziland text(is:located:in) southern_africa +swaziland text(was:located:in) africa +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(can:be:found:in) polynesia +wallis_and_futuna text(was:positioned:in) oceania +uruguay text(is:positioned:in) south_america +uruguay text(was:sited:in) americas +uruguay text(borders) argentina +uruguay text(is:butted:against) brazil +zambia text(is:sited:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(was:butted:against) tanzania +zambia text(was:adjacent:to) mozambique +zambia text(is:adjacent:to) dr_congo +zambia text(neighbors) angola +zambia text(is:a:neighboring:country:of) botswana +zambia text(was:a:neighboring:country:of) zimbabwe +zambia text(neighbors:with) namibia +zambia text(was:a:neighbor:of) malawi +cyprus text(is:localized:in) eastern_europe +cyprus text(was:present:in) europe +cyprus text(is:a:neighbor:of) united_kingdom +ireland text(is:present:in) northern_europe +ireland text(is:still:in) europe +ireland text(is:a:neighboring:state:to) united_kingdom +burundi text(was:still:in) eastern_africa +burundi text(was:currently:in) africa +burundi text(was:a:neighboring:state:to) dr_congo +burundi text(borders:with) rwanda +burundi text(borders) tanzania +central_african_republic text(is:currently:in) middle_africa +central_african_republic text(is:placed:in) africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(was:adjacent:to) dr_congo +central_african_republic text(is:adjacent:to) south_sudan +central_african_republic text(neighbors) cameroon +central_african_republic text(is:a:neighboring:country:of) sudan +tonga text(was:placed:in) polynesia +tonga text(can:be:found:in) oceania +ivory_coast text(was:situated:in) western_africa +ivory_coast text(is:situated:in) africa +ivory_coast text(was:a:neighboring:country:of) burkina_faso +ivory_coast text(neighbors:with) ghana +ivory_coast text(was:a:neighbor:of) liberia +ivory_coast text(is:a:neighbor:of) mali +ivory_coast text(is:a:neighboring:state:to) guinea +sierra_leone text(is:located:in) western_africa +sierra_leone text(was:a:neighboring:state:to) liberia +sierra_leone text(borders:with) guinea +mayotte text(was:located:in) eastern_africa +mayotte text(can:be:found:in) africa +poland text(was:positioned:in) eastern_europe +poland text(borders) germany +poland text(is:butted:against) ukraine +poland text(was:butted:against) slovakia +poland text(was:adjacent:to) belarus +poland text(is:adjacent:to) russia +poland text(neighbors) lithuania +poland text(is:a:neighboring:country:of) czechia +kazakhstan text(is:positioned:in) central_asia +kazakhstan text(was:sited:in) asia +kazakhstan text(was:a:neighboring:country:of) turkmenistan +kazakhstan text(neighbors:with) china +kazakhstan text(was:a:neighbor:of) kyrgyzstan +kazakhstan text(is:a:neighbor:of) uzbekistan +kazakhstan text(is:a:neighboring:state:to) russia +uzbekistan text(is:sited:in) central_asia +uzbekistan text(was:localized:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(borders) kazakhstan +uzbekistan text(is:butted:against) kyrgyzstan +uzbekistan text(was:butted:against) tajikistan +turks_and_caicos_islands text(is:localized:in) caribbean +turks_and_caicos_islands text(was:present:in) americas +new_caledonia text(is:present:in) melanesia +new_caledonia text(is:still:in) oceania +pakistan text(was:still:in) southern_asia +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan +pakistan text(neighbors) iran +pakistan text(is:a:neighboring:country:of) india +argentina text(was:currently:in) south_america +argentina text(is:currently:in) americas +argentina text(was:a:neighboring:country:of) bolivia +argentina text(neighbors:with) chile +argentina text(was:a:neighbor:of) brazil +argentina text(is:a:neighbor:of) paraguay +argentina text(is:a:neighboring:state:to) uruguay +cuba text(is:placed:in) caribbean +cuba text(was:placed:in) americas +serbia text(can:be:found:in) southern_europe +serbia text(was:a:neighboring:state:to) macedonia +serbia text(borders:with) montenegro +serbia text(borders) kosovo +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(was:adjacent:to) hungary +serbia text(is:adjacent:to) bulgaria +serbia text(neighbors) romania +czechia text(was:situated:in) eastern_europe +czechia text(is:situated:in) europe +czechia text(is:a:neighboring:country:of) germany +czechia text(was:a:neighboring:country:of) austria +czechia text(neighbors:with) poland +czechia text(was:a:neighbor:of) slovakia +nicaragua text(is:located:in) central_america +nicaragua text(is:a:neighbor:of) honduras +nicaragua text(is:a:neighboring:state:to) costa_rica +vietnam text(was:located:in) south-eastern_asia +vietnam text(can:be:found:in) asia +vietnam text(was:a:neighboring:state:to) cambodia +vietnam text(borders:with) laos +vietnam text(borders) china +niue text(was:positioned:in) polynesia +niue text(is:positioned:in) oceania +canada text(was:sited:in) northern_america +canada text(is:sited:in) americas +canada text(is:butted:against) united_states +slovakia text(was:localized:in) central_europe +slovakia text(was:butted:against) ukraine +slovakia text(was:adjacent:to) poland +slovakia text(is:adjacent:to) austria +slovakia text(neighbors) hungary +slovakia text(is:a:neighboring:country:of) czechia +mozambique text(is:localized:in) eastern_africa +mozambique text(was:a:neighboring:country:of) tanzania +mozambique text(neighbors:with) swaziland +mozambique text(was:a:neighbor:of) zimbabwe +mozambique text(is:a:neighbor:of) zambia +mozambique text(is:a:neighboring:state:to) malawi +mozambique text(was:a:neighboring:state:to) south_africa +aruba text(was:present:in) caribbean +aruba text(is:present:in) americas +bolivia text(is:still:in) south_america +bolivia text(was:still:in) americas +bolivia text(borders:with) chile +bolivia text(borders) brazil +bolivia text(is:butted:against) paraguay +bolivia text(was:butted:against) argentina +bolivia text(was:adjacent:to) peru +colombia text(was:currently:in) south_america +colombia text(is:currently:in) americas +colombia text(is:adjacent:to) ecuador +colombia text(neighbors) brazil +colombia text(is:a:neighboring:country:of) panama +colombia text(was:a:neighboring:country:of) venezuela +colombia text(neighbors:with) peru +fiji text(is:placed:in) melanesia +fiji text(was:placed:in) oceania +republic_of_the_congo text(can:be:found:in) middle_africa +republic_of_the_congo text(was:a:neighbor:of) gabon +republic_of_the_congo text(is:a:neighbor:of) dr_congo +republic_of_the_congo text(is:a:neighboring:state:to) angola +republic_of_the_congo text(was:a:neighboring:state:to) cameroon +republic_of_the_congo text(borders:with) central_african_republic +saudi_arabia text(was:situated:in) western_asia +saudi_arabia text(borders) qatar +saudi_arabia text(is:butted:against) united_arab_emirates +saudi_arabia text(was:butted:against) jordan +saudi_arabia text(was:adjacent:to) yemen +saudi_arabia text(is:adjacent:to) oman +saudi_arabia text(neighbors) kuwait +saudi_arabia text(is:a:neighboring:country:of) iraq +el_salvador text(is:situated:in) central_america +el_salvador text(is:located:in) americas +el_salvador text(was:a:neighboring:country:of) guatemala +el_salvador text(neighbors:with) honduras +madagascar text(was:located:in) eastern_africa +madagascar text(can:be:found:in) africa +australia text(was:positioned:in) australia_and_new_zealand +australia text(is:positioned:in) oceania +namibia text(was:sited:in) southern_africa +namibia text(is:sited:in) africa +namibia text(was:a:neighbor:of) zambia +namibia text(is:a:neighbor:of) angola +namibia text(is:a:neighboring:state:to) south_africa +namibia text(was:a:neighboring:state:to) botswana +tuvalu text(was:localized:in) polynesia +tuvalu text(is:localized:in) oceania +svalbard_and_jan_mayen text(was:present:in) northern_europe +svalbard_and_jan_mayen text(is:present:in) europe +isle_of_man text(is:still:in) northern_europe +isle_of_man text(was:still:in) europe +guyana text(was:currently:in) south_america +guyana text(borders:with) brazil +guyana text(borders) suriname +guyana text(is:butted:against) venezuela +vatican_city text(is:currently:in) southern_europe +vatican_city text(is:placed:in) europe +vatican_city text(was:butted:against) italy +british_indian_ocean_territory text(was:placed:in) eastern_africa +british_indian_ocean_territory text(can:be:found:in) africa +nigeria text(was:situated:in) western_africa +nigeria text(is:situated:in) africa +nigeria text(was:adjacent:to) chad +nigeria text(is:adjacent:to) niger +nigeria text(neighbors) cameroon +nigeria text(is:a:neighboring:country:of) benin +germany text(is:located:in) western_europe +germany text(was:a:neighboring:country:of) denmark +germany text(neighbors:with) netherlands +germany text(was:a:neighbor:of) poland +germany text(is:a:neighbor:of) luxembourg +germany text(is:a:neighboring:state:to) belgium +germany text(was:a:neighboring:state:to) switzerland +germany text(borders:with) austria +germany text(borders) france +germany text(is:butted:against) czechia +burkina_faso text(was:located:in) western_africa +burkina_faso text(was:butted:against) togo +burkina_faso text(was:adjacent:to) benin +burkina_faso text(is:adjacent:to) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:a:neighboring:country:of) mali +burkina_faso text(was:a:neighboring:country:of) ivory_coast +tanzania text(can:be:found:in) eastern_africa +tanzania text(neighbors:with) uganda +tanzania text(was:a:neighbor:of) mozambique +tanzania text(is:a:neighbor:of) dr_congo +tanzania text(is:a:neighboring:state:to) kenya +tanzania text(was:a:neighboring:state:to) rwanda +tanzania text(borders:with) zambia +tanzania text(borders) malawi +tanzania text(is:butted:against) burundi +northern_mariana_islands text(was:positioned:in) micronesia +northern_mariana_islands text(is:positioned:in) oceania +belize text(was:sited:in) central_america +belize text(is:sited:in) americas +belize text(was:butted:against) guatemala +belize text(was:adjacent:to) mexico +norway text(was:localized:in) northern_europe +norway text(is:adjacent:to) sweden +norway text(neighbors) finland +norway text(is:a:neighboring:country:of) russia +cocos_keeling_islands text(is:localized:in) australia_and_new_zealand +cocos_keeling_islands text(was:present:in) oceania +laos text(is:present:in) south-eastern_asia +laos text(is:still:in) asia +laos text(was:a:neighboring:country:of) china +laos text(neighbors:with) cambodia +laos text(was:a:neighbor:of) myanmar +laos text(is:a:neighbor:of) vietnam +laos text(is:a:neighboring:state:to) thailand +western_sahara text(was:still:in) northern_africa +western_sahara text(was:currently:in) africa +western_sahara text(was:a:neighboring:state:to) algeria +western_sahara text(borders:with) mauritania +western_sahara text(borders) morocco +suriname text(is:currently:in) south_america +suriname text(is:placed:in) americas +suriname text(is:butted:against) brazil +suriname text(was:butted:against) french_guiana +suriname text(was:adjacent:to) guyana +christmas_island text(was:placed:in) australia_and_new_zealand +christmas_island text(can:be:found:in) oceania +são_tomé_and_príncipe text(was:situated:in) middle_africa +são_tomé_and_príncipe text(is:situated:in) africa +egypt text(is:located:in) northern_africa +egypt text(is:adjacent:to) libya +egypt text(neighbors) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:located:in) eastern_europe +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(neighbors:with) turkey +bulgaria text(was:a:neighbor:of) greece +bulgaria text(is:a:neighbor:of) serbia +bulgaria text(is:a:neighboring:state:to) romania +guinea text(can:be:found:in) western_africa +guinea text(was:positioned:in) africa +guinea text(was:a:neighboring:state:to) guinea-bissau +guinea text(borders:with) sierra_leone +guinea text(borders) mali +guinea text(is:butted:against) liberia +guinea text(was:butted:against) senegal +guinea text(was:adjacent:to) ivory_coast +spain text(is:positioned:in) southern_europe +spain text(is:adjacent:to) morocco +spain text(neighbors) gibraltar +spain text(is:a:neighboring:country:of) andorra +spain text(was:a:neighboring:country:of) france +spain text(neighbors:with) portugal +costa_rica text(was:sited:in) central_america +costa_rica text(is:sited:in) americas +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(was:localized:in) southern_europe +malta text(is:localized:in) europe +portugal text(was:present:in) southern_europe +portugal text(is:present:in) europe +portugal text(is:a:neighboring:state:to) spain +romania text(is:still:in) eastern_europe +romania text(was:still:in) europe +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(borders) moldova +romania text(is:butted:against) bulgaria +romania text(was:butted:against) serbia +san_marino text(was:currently:in) southern_europe +san_marino text(is:currently:in) europe +san_marino text(was:adjacent:to) italy +mauritania text(is:placed:in) western_africa +mauritania text(was:placed:in) africa +mauritania text(is:adjacent:to) algeria +mauritania text(neighbors) mali +mauritania text(is:a:neighboring:country:of) western_sahara +mauritania text(was:a:neighboring:country:of) senegal +trinidad_and_tobago text(can:be:found:in) caribbean +trinidad_and_tobago text(was:situated:in) americas +bahrain text(is:situated:in) western_asia +bahrain text(is:located:in) asia +myanmar text(was:located:in) south-eastern_asia +myanmar text(neighbors:with) india +myanmar text(was:a:neighbor:of) bangladesh +myanmar text(is:a:neighbor:of) china +myanmar text(is:a:neighboring:state:to) laos +myanmar text(was:a:neighboring:state:to) thailand +iraq text(can:be:found:in) western_asia +iraq text(borders:with) turkey +iraq text(borders) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(was:adjacent:to) kuwait +iraq text(is:adjacent:to) syria +south_georgia text(was:positioned:in) south_america +south_georgia text(is:positioned:in) americas +iceland text(was:sited:in) northern_europe +iceland text(is:sited:in) europe +dr_congo text(was:localized:in) middle_africa +dr_congo text(is:localized:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:a:neighboring:country:of) tanzania +dr_congo text(was:a:neighboring:country:of) republic_of_the_congo +dr_congo text(neighbors:with) central_african_republic +dr_congo text(was:a:neighbor:of) angola +dr_congo text(is:a:neighbor:of) rwanda +dr_congo text(is:a:neighboring:state:to) south_sudan +dr_congo text(was:a:neighboring:state:to) zambia +dr_congo text(borders:with) burundi +seychelles text(was:present:in) eastern_africa +seychelles text(is:present:in) africa +kyrgyzstan text(is:still:in) central_asia +kyrgyzstan text(borders) china +kyrgyzstan text(is:butted:against) kazakhstan +kyrgyzstan text(was:butted:against) tajikistan +kyrgyzstan text(was:adjacent:to) uzbekistan +botswana text(was:still:in) southern_africa +botswana text(was:currently:in) africa +botswana text(is:adjacent:to) zimbabwe +botswana text(neighbors) namibia +botswana text(is:a:neighboring:country:of) zambia +botswana text(was:a:neighboring:country:of) south_africa +faroe_islands text(is:currently:in) northern_europe +faroe_islands text(is:placed:in) europe +jamaica text(was:placed:in) caribbean +jamaica text(can:be:found:in) americas +american_samoa text(was:situated:in) polynesia +american_samoa text(is:situated:in) oceania +lesotho text(is:located:in) southern_africa +lesotho text(was:located:in) africa +lesotho text(neighbors:with) south_africa +sri_lanka text(can:be:found:in) southern_asia +sri_lanka text(was:a:neighbor:of) india +belgium text(was:positioned:in) western_europe +belgium text(is:positioned:in) europe +belgium text(is:a:neighbor:of) germany +belgium text(is:a:neighboring:state:to) luxembourg +belgium text(was:a:neighboring:state:to) france +belgium text(borders:with) netherlands +qatar text(was:sited:in) western_asia +qatar text(is:sited:in) asia +qatar text(borders) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(is:butted:against) israel +syria text(was:butted:against) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon +syria text(neighbors) iraq +india text(is:still:in) southern_asia +india text(was:still:in) asia +india text(is:a:neighboring:country:of) afghanistan +india text(was:a:neighboring:country:of) bhutan +india text(neighbors:with) bangladesh +india text(was:a:neighbor:of) china +india text(is:a:neighbor:of) nepal +india text(is:a:neighboring:state:to) myanmar +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(was:currently:in) northern_africa +morocco text(borders) algeria +morocco text(is:butted:against) spain +morocco text(was:butted:against) western_sahara +kenya text(is:currently:in) eastern_africa +kenya text(is:placed:in) africa +kenya text(was:adjacent:to) uganda +kenya text(is:adjacent:to) tanzania +kenya text(neighbors) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(was:placed:in) middle_africa +south_sudan text(can:be:found:in) africa +south_sudan text(neighbors:with) uganda +south_sudan text(was:a:neighbor:of) dr_congo +south_sudan text(is:a:neighbor:of) kenya +south_sudan text(is:a:neighboring:state:to) central_african_republic +south_sudan text(was:a:neighboring:state:to) sudan +south_sudan text(borders:with) ethiopia +ghana text(was:situated:in) western_africa +ghana text(borders) burkina_faso +ghana text(is:butted:against) ivory_coast +ghana text(was:butted:against) togo +tajikistan text(is:situated:in) central_asia +tajikistan text(is:located:in) asia +tajikistan text(was:adjacent:to) china +tajikistan text(is:adjacent:to) kyrgyzstan +tajikistan text(neighbors) afghanistan +tajikistan text(is:a:neighboring:country:of) uzbekistan +marshall_islands text(was:located:in) micronesia +marshall_islands text(can:be:found:in) oceania +cameroon text(was:positioned:in) middle_africa +cameroon text(is:positioned:in) africa +cameroon text(was:a:neighboring:country:of) chad +cameroon text(neighbors:with) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(was:sited:in) micronesia +nauru text(is:sited:in) oceania +thailand text(was:localized:in) south-eastern_asia +thailand text(borders:with) cambodia +thailand text(borders) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:localized:in) northern_africa +sudan text(was:adjacent:to) chad +sudan text(is:adjacent:to) libya +sudan text(neighbors) south_sudan +sudan text(is:a:neighboring:country:of) eritrea +sudan text(was:a:neighboring:country:of) central_african_republic +sudan text(neighbors:with) egypt +sudan text(was:a:neighbor:of) ethiopia +chad text(was:present:in) middle_africa +chad text(is:present:in) africa +chad text(is:a:neighbor:of) libya +chad text(is:a:neighboring:state:to) niger +chad text(was:a:neighboring:state:to) south_sudan +chad text(borders:with) cameroon +chad text(borders) central_african_republic +chad text(is:butted:against) nigeria +vanuatu text(is:still:in) melanesia +vanuatu text(was:still:in) oceania +cape_verde text(was:currently:in) western_africa +cape_verde text(is:currently:in) africa +falkland_islands text(is:placed:in) south_america +falkland_islands text(was:placed:in) americas +liberia text(can:be:found:in) western_africa +liberia text(was:situated:in) africa +liberia text(was:butted:against) ivory_coast +liberia text(was:adjacent:to) sierra_leone +liberia text(is:adjacent:to) guinea +cambodia text(is:situated:in) south-eastern_asia +cambodia text(is:located:in) asia +cambodia text(neighbors) vietnam +cambodia text(is:a:neighboring:country:of) thailand +cambodia text(was:a:neighboring:country:of) laos +zimbabwe text(was:located:in) eastern_africa +zimbabwe text(neighbors:with) zambia +zimbabwe text(was:a:neighbor:of) south_africa +zimbabwe text(is:a:neighbor:of) botswana +zimbabwe text(is:a:neighboring:state:to) mozambique +comoros text(can:be:found:in) eastern_africa +comoros text(was:positioned:in) africa +guam text(is:positioned:in) micronesia +guam text(was:sited:in) oceania +bahamas text(is:sited:in) caribbean +bahamas text(was:localized:in) americas +lebanon text(is:localized:in) western_asia +lebanon text(was:present:in) asia +lebanon text(was:a:neighboring:state:to) israel +lebanon text(borders:with) syria +sint_maarten text(is:present:in) caribbean +sint_maarten text(is:still:in) americas +sint_maarten text(borders) saint_martin +ethiopia text(was:still:in) eastern_africa +ethiopia text(was:currently:in) africa +ethiopia text(is:butted:against) somalia +ethiopia text(was:butted:against) kenya +ethiopia text(was:adjacent:to) eritrea +ethiopia text(is:adjacent:to) south_sudan +ethiopia text(neighbors) djibouti +ethiopia text(is:a:neighboring:country:of) sudan +united_states_virgin_islands text(is:currently:in) caribbean +united_states_virgin_islands text(is:placed:in) americas +guinea-bissau text(was:placed:in) western_africa +guinea-bissau text(can:be:found:in) africa +guinea-bissau text(was:a:neighboring:country:of) guinea +guinea-bissau text(neighbors:with) senegal +libya text(was:situated:in) northern_africa +libya text(is:situated:in) africa +libya text(was:a:neighbor:of) chad +libya text(is:a:neighbor:of) tunisia +libya text(is:a:neighboring:state:to) niger +libya text(was:a:neighboring:state:to) algeria +libya text(borders:with) egypt +libya text(borders) sudan +bhutan text(is:located:in) southern_asia +bhutan text(was:located:in) asia +bhutan text(is:butted:against) china +bhutan text(was:butted:against) india +macau text(can:be:found:in) eastern_asia +macau text(was:positioned:in) asia +macau text(was:adjacent:to) china +french_polynesia text(is:positioned:in) polynesia +french_polynesia text(was:sited:in) oceania +somalia text(is:sited:in) eastern_africa +somalia text(was:localized:in) africa +somalia text(is:adjacent:to) djibouti +somalia text(neighbors) kenya +somalia text(is:a:neighboring:country:of) ethiopia +saint_barthélemy text(is:localized:in) caribbean +saint_barthélemy text(was:present:in) americas +russia text(is:present:in) eastern_europe +russia text(is:still:in) europe +russia text(was:a:neighboring:country:of) ukraine +russia text(neighbors:with) belarus +russia text(was:a:neighbor:of) china +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) poland +russia text(borders:with) azerbaijan +russia text(borders) lithuania +russia text(is:butted:against) estonia +russia text(was:butted:against) north_korea +russia text(was:adjacent:to) finland +russia text(is:adjacent:to) mongolia +russia text(neighbors) latvia +russia text(is:a:neighboring:country:of) georgia +new_zealand text(was:still:in) australia_and_new_zealand +new_zealand text(was:currently:in) oceania +panama text(is:currently:in) central_america +panama text(is:placed:in) americas +panama text(was:a:neighboring:country:of) costa_rica +panama text(neighbors:with) colombia +papua_new_guinea text(was:placed:in) melanesia +papua_new_guinea text(can:be:found:in) oceania +papua_new_guinea text(was:a:neighbor:of) indonesia +north_korea text(was:situated:in) eastern_asia +north_korea text(is:a:neighbor:of) china +north_korea text(is:a:neighboring:state:to) south_korea +north_korea text(was:a:neighboring:state:to) russia +latvia text(is:situated:in) northern_europe +latvia text(is:located:in) europe +latvia text(borders:with) lithuania +latvia text(borders) belarus +latvia text(is:butted:against) russia +latvia text(was:butted:against) estonia +oman text(was:located:in) western_asia +oman text(can:be:found:in) asia +oman text(was:adjacent:to) saudi_arabia +oman text(is:adjacent:to) yemen +oman text(neighbors) united_arab_emirates +saint_pierre_and_miquelon text(was:positioned:in) northern_america +saint_pierre_and_miquelon text(is:positioned:in) americas +martinique text(was:sited:in) caribbean +martinique text(is:sited:in) americas +united_kingdom text(was:localized:in) northern_europe +united_kingdom text(is:localized:in) europe +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:present:in) western_asia +israel text(is:present:in) asia +israel text(was:a:neighboring:country:of) lebanon +israel text(neighbors:with) egypt +israel text(was:a:neighbor:of) jordan +israel text(is:a:neighbor:of) syria +jersey text(is:still:in) northern_europe +jersey text(was:still:in) europe +pitcairn_islands text(was:currently:in) polynesia +pitcairn_islands text(is:currently:in) oceania +togo text(is:placed:in) western_africa +togo text(was:placed:in) africa +togo text(is:a:neighboring:state:to) burkina_faso +togo text(was:a:neighboring:state:to) ghana +togo text(borders:with) benin +kiribati text(can:be:found:in) micronesia +kiribati text(was:situated:in) oceania +iran text(is:situated:in) southern_asia +iran text(is:located:in) asia +iran text(borders) afghanistan +iran text(is:butted:against) turkmenistan +iran text(was:butted:against) turkey +iran text(was:adjacent:to) armenia +iran text(is:adjacent:to) azerbaijan +iran text(neighbors) pakistan +iran text(is:a:neighboring:country:of) iraq +saint_martin text(was:located:in) caribbean +saint_martin text(can:be:found:in) americas +saint_martin text(was:a:neighboring:country:of) sint_maarten +dominican_republic text(was:positioned:in) caribbean +dominican_republic text(is:positioned:in) americas +dominican_republic text(neighbors:with) haiti +denmark text(was:sited:in) northern_europe +denmark text(was:a:neighbor:of) germany +bermuda text(is:sited:in) northern_america +bermuda text(was:localized:in) americas +chile text(is:localized:in) south_america +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru +kosovo text(was:present:in) eastern_europe +kosovo text(is:present:in) europe +kosovo text(borders:with) serbia +kosovo text(borders) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +saint_kitts_and_nevis text(is:still:in) caribbean +saint_kitts_and_nevis text(was:still:in) americas +eritrea text(was:currently:in) eastern_africa +eritrea text(was:adjacent:to) djibouti +eritrea text(is:adjacent:to) sudan +eritrea text(neighbors) ethiopia +equatorial_guinea text(is:currently:in) middle_africa +equatorial_guinea text(is:placed:in) africa +equatorial_guinea text(is:a:neighboring:country:of) gabon +equatorial_guinea text(was:a:neighboring:country:of) cameroon +niger text(was:placed:in) western_africa +niger text(can:be:found:in) africa +niger text(neighbors:with) chad +niger text(was:a:neighbor:of) libya +niger text(is:a:neighbor:of) burkina_faso +niger text(is:a:neighboring:state:to) benin +niger text(was:a:neighboring:state:to) mali +niger text(borders:with) algeria +niger text(borders) nigeria +anguilla text(was:situated:in) caribbean +anguilla text(is:situated:in) americas +rwanda text(is:located:in) eastern_africa +rwanda text(was:located:in) africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(was:adjacent:to) uganda +rwanda text(is:adjacent:to) dr_congo +united_arab_emirates text(can:be:found:in) western_asia +united_arab_emirates text(was:positioned:in) asia +united_arab_emirates text(neighbors) oman +united_arab_emirates text(is:a:neighboring:country:of) saudi_arabia +estonia text(is:positioned:in) northern_europe +estonia text(was:sited:in) europe +estonia text(was:a:neighboring:country:of) latvia +estonia text(neighbors:with) russia +greece text(is:sited:in) southern_europe +greece text(was:localized:in) europe +greece text(was:a:neighbor:of) bulgaria +greece text(is:a:neighbor:of) albania +greece text(is:a:neighboring:state:to) macedonia +greece text(was:a:neighboring:state:to) turkey +senegal text(is:localized:in) western_africa +senegal text(was:present:in) africa +senegal text(borders:with) guinea-bissau +senegal text(borders) mauritania +senegal text(is:butted:against) mali +senegal text(was:butted:against) gambia +senegal text(was:adjacent:to) guinea +guadeloupe text(is:present:in) caribbean +guadeloupe text(is:still:in) americas +monaco text(was:still:in) western_europe +monaco text(is:adjacent:to) france +djibouti text(was:currently:in) eastern_africa +djibouti text(neighbors) eritrea +djibouti text(is:a:neighboring:country:of) somalia +djibouti text(was:a:neighboring:country:of) ethiopia +indonesia text(is:currently:in) south-eastern_asia +indonesia text(neighbors:with) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +british_virgin_islands text(is:placed:in) caribbean +british_virgin_islands text(was:placed:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:situated:in) oceania +uganda text(is:situated:in) eastern_africa +uganda text(is:located:in) africa +uganda text(is:a:neighboring:state:to) tanzania +uganda text(was:a:neighboring:state:to) dr_congo +uganda text(borders:with) kenya +uganda text(borders) south_sudan +uganda text(is:butted:against) rwanda +macedonia text(was:located:in) southern_europe +macedonia text(can:be:found:in) europe +macedonia text(was:butted:against) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania +macedonia text(neighbors) serbia +macedonia text(is:a:neighboring:country:of) bulgaria +tunisia text(was:positioned:in) northern_africa +tunisia text(is:positioned:in) africa +tunisia text(was:a:neighboring:country:of) libya +tunisia text(neighbors:with) algeria +ecuador text(was:sited:in) south_america +ecuador text(was:a:neighbor:of) peru +ecuador text(is:a:neighbor:of) colombia +brazil text(is:sited:in) south_america +brazil text(was:localized:in) americas +brazil text(is:a:neighboring:state:to) bolivia +brazil text(was:a:neighboring:state:to) colombia +brazil text(borders:with) paraguay +brazil text(borders) uruguay +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(was:adjacent:to) venezuela +brazil text(is:adjacent:to) argentina +brazil text(neighbors) guyana +brazil text(is:a:neighboring:country:of) peru +paraguay text(is:localized:in) south_america +paraguay text(was:present:in) americas +paraguay text(was:a:neighboring:country:of) argentina +paraguay text(neighbors:with) brazil +paraguay text(was:a:neighbor:of) bolivia +finland text(is:present:in) northern_europe +finland text(is:still:in) europe +finland text(is:a:neighbor:of) norway +finland text(is:a:neighboring:state:to) sweden +finland text(was:a:neighboring:state:to) russia +jordan text(was:still:in) western_asia +jordan text(borders:with) saudi_arabia +jordan text(borders) israel +jordan text(is:butted:against) iraq +jordan text(was:butted:against) syria +timor-leste text(was:currently:in) south-eastern_asia +timor-leste text(was:adjacent:to) indonesia +montenegro text(is:currently:in) southern_europe +montenegro text(is:placed:in) europe +montenegro text(is:adjacent:to) kosovo +montenegro text(neighbors) bosnia_and_herzegovina +montenegro text(is:a:neighboring:country:of) croatia +montenegro text(was:a:neighboring:country:of) serbia +montenegro text(neighbors:with) albania +peru text(was:placed:in) south_america +peru text(can:be:found:in) americas +peru text(was:a:neighbor:of) ecuador +peru text(is:a:neighbor:of) bolivia +peru text(is:a:neighboring:state:to) chile +peru text(was:a:neighboring:state:to) brazil +peru text(borders:with) colombia +montserrat text(was:situated:in) caribbean +montserrat text(is:situated:in) americas +ukraine text(is:located:in) eastern_europe +ukraine text(was:located:in) europe +ukraine text(borders) slovakia +ukraine text(is:butted:against) belarus +ukraine text(was:butted:against) poland +ukraine text(was:adjacent:to) russia +ukraine text(is:adjacent:to) hungary +ukraine text(neighbors) moldova +ukraine text(is:a:neighboring:country:of) romania +dominica text(can:be:found:in) caribbean +dominica text(was:positioned:in) americas +turkmenistan text(is:positioned:in) central_asia +turkmenistan text(was:a:neighboring:country:of) kazakhstan +turkmenistan text(neighbors:with) afghanistan +turkmenistan text(was:a:neighbor:of) uzbekistan +turkmenistan text(is:a:neighbor:of) iran +guernsey text(was:sited:in) northern_europe +guernsey text(is:sited:in) europe +gibraltar text(was:localized:in) southern_europe +gibraltar text(is:localized:in) europe +gibraltar text(is:a:neighboring:state:to) spain +switzerland text(was:present:in) western_europe +switzerland text(is:present:in) europe +switzerland text(was:a:neighboring:state:to) germany +switzerland text(borders:with) italy +switzerland text(borders) austria +switzerland text(is:butted:against) france +switzerland text(was:butted:against) liechtenstein +austria text(is:still:in) western_europe +austria text(was:still:in) europe +austria text(was:adjacent:to) germany +austria text(is:adjacent:to) slovakia +austria text(neighbors) slovenia +austria text(is:a:neighboring:country:of) italy +austria text(was:a:neighboring:country:of) switzerland +austria text(neighbors:with) hungary +austria text(was:a:neighbor:of) liechtenstein +austria text(is:a:neighbor:of) czechia +hungary text(was:currently:in) eastern_europe +hungary text(is:a:neighboring:state:to) ukraine +hungary text(was:a:neighboring:state:to) slovakia +hungary text(borders:with) slovenia +hungary text(borders) croatia +hungary text(is:butted:against) austria +hungary text(was:butted:against) serbia +hungary text(was:adjacent:to) romania +malawi text(is:currently:in) eastern_africa +malawi text(is:placed:in) africa +malawi text(is:adjacent:to) zambia +malawi text(neighbors) tanzania +malawi text(is:a:neighboring:country:of) mozambique +hong_kong text(was:placed:in) eastern_asia +hong_kong text(was:a:neighboring:country:of) china +liechtenstein text(can:be:found:in) western_europe +liechtenstein text(was:situated:in) europe +liechtenstein text(neighbors:with) switzerland +liechtenstein text(was:a:neighbor:of) austria +barbados text(is:situated:in) caribbean +barbados text(is:located:in) americas +georgia text(was:located:in) western_asia +georgia text(can:be:found:in) asia +georgia text(is:a:neighbor:of) armenia +georgia text(is:a:neighboring:state:to) azerbaijan +georgia text(was:a:neighboring:state:to) russia +georgia text(borders:with) turkey +albania text(was:positioned:in) southern_europe +albania text(is:positioned:in) europe +albania text(borders) montenegro +albania text(is:butted:against) macedonia +albania text(was:butted:against) kosovo +albania text(was:adjacent:to) greece +kuwait text(was:sited:in) western_asia +kuwait text(is:sited:in) asia +kuwait text(is:adjacent:to) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(was:localized:in) southern_africa +south_africa text(is:localized:in) africa +south_africa text(is:a:neighboring:country:of) mozambique +south_africa text(was:a:neighboring:country:of) botswana +south_africa text(neighbors:with) swaziland +south_africa text(was:a:neighbor:of) zimbabwe +south_africa text(is:a:neighbor:of) namibia +south_africa text(is:a:neighboring:state:to) lesotho +haiti text(was:present:in) caribbean +haiti text(is:present:in) americas +haiti text(was:a:neighboring:state:to) dominican_republic +afghanistan text(is:still:in) southern_asia +afghanistan text(was:still:in) asia +afghanistan text(borders:with) turkmenistan +afghanistan text(borders) china +afghanistan text(is:butted:against) tajikistan +afghanistan text(was:butted:against) uzbekistan +afghanistan text(was:adjacent:to) iran +afghanistan text(is:adjacent:to) pakistan +singapore text(was:currently:in) south-eastern_asia +singapore text(is:currently:in) asia +benin text(is:placed:in) western_africa +benin text(was:placed:in) africa +benin text(neighbors) niger +benin text(is:a:neighboring:country:of) burkina_faso +benin text(was:a:neighboring:country:of) togo +benin text(neighbors:with) nigeria +åland_islands text(can:be:found:in) northern_europe +åland_islands text(was:situated:in) europe +croatia text(is:situated:in) southern_europe +croatia text(is:located:in) europe +croatia text(was:a:neighbor:of) slovenia +croatia text(is:a:neighbor:of) bosnia_and_herzegovina +croatia text(is:a:neighboring:state:to) hungary +croatia text(was:a:neighboring:state:to) serbia +croatia text(borders:with) montenegro +sweden text(was:located:in) northern_europe +sweden text(can:be:found:in) europe +sweden text(borders) norway +sweden text(is:butted:against) finland +mexico text(was:positioned:in) northern_america +mexico text(was:butted:against) belize +mexico text(was:adjacent:to) united_states +mexico text(is:adjacent:to) guatemala +greenland text(is:positioned:in) northern_america +greenland text(was:sited:in) americas +norfolk_island text(is:sited:in) australia_and_new_zealand +norfolk_island text(was:localized:in) oceania +nepal text(is:localized:in) southern_asia +nepal text(was:present:in) asia +nepal text(neighbors) china +nepal text(is:a:neighboring:country:of) india +guatemala text(is:present:in) central_america +guatemala text(was:a:neighboring:country:of) belize +guatemala text(neighbors:with) el_salvador +guatemala text(was:a:neighbor:of) mexico +guatemala text(is:a:neighbor:of) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:a:neighboring:state:to) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:a:neighboring:state:to) ukraine +moldova text(borders:with) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(can:be:found:in) eastern_europe +belarus text(borders) ukraine +belarus text(is:butted:against) poland +belarus text(was:butted:against) lithuania +belarus text(was:adjacent:to) russia +belarus text(is:adjacent:to) latvia +bangladesh text(was:situated:in) southern_asia +bangladesh text(neighbors) myanmar +bangladesh text(is:a:neighboring:country:of) india +malaysia text(is:situated:in) south-eastern_asia +malaysia text(is:located:in) asia +malaysia text(was:a:neighboring:country:of) thailand +malaysia text(neighbors:with) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(was:located:in) southern_europe +bosnia_and_herzegovina text(can:be:found:in) europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(was:positioned:in) western_europe +luxembourg text(is:positioned:in) europe +luxembourg text(borders:with) germany +luxembourg text(borders) belgium +luxembourg text(is:butted:against) france +italy text(was:sited:in) southern_europe +italy text(is:sited:in) europe +italy text(was:butted:against) slovenia +italy text(was:adjacent:to) switzerland +italy text(is:adjacent:to) austria +italy text(neighbors) france +italy text(is:a:neighboring:country:of) vatican_city +italy text(was:a:neighboring:country:of) san_marino +azerbaijan text(was:localized:in) western_asia +azerbaijan text(is:localized:in) asia +azerbaijan text(neighbors:with) turkey +azerbaijan text(was:a:neighbor:of) armenia +azerbaijan text(is:a:neighbor:of) russia +azerbaijan text(is:a:neighboring:state:to) iran +azerbaijan text(was:a:neighboring:state:to) georgia +honduras text(was:present:in) central_america +honduras text(is:present:in) americas +honduras text(borders:with) guatemala +honduras text(borders) nicaragua +honduras text(is:butted:against) el_salvador +mali text(is:still:in) western_africa +mali text(was:still:in) africa +mali text(was:butted:against) burkina_faso +mali text(was:adjacent:to) guinea +mali text(is:adjacent:to) mauritania +mali text(neighbors) niger +mali text(is:a:neighboring:country:of) senegal +mali text(was:a:neighboring:country:of) algeria +mali text(neighbors:with) ivory_coast +taiwan text(was:currently:in) eastern_asia +taiwan text(is:currently:in) asia +algeria text(is:placed:in) northern_africa +algeria text(was:placed:in) africa +algeria text(was:a:neighbor:of) libya +algeria text(is:a:neighbor:of) tunisia +algeria text(is:a:neighboring:state:to) mauritania +algeria text(was:a:neighboring:state:to) morocco +algeria text(borders:with) niger +algeria text(borders) mali +algeria text(is:butted:against) western_sahara +french_guiana text(can:be:found:in) south_america +french_guiana text(was:butted:against) brazil +french_guiana text(was:adjacent:to) suriname +yemen text(was:situated:in) western_asia +yemen text(is:situated:in) asia +yemen text(is:adjacent:to) oman +yemen text(neighbors) saudi_arabia +puerto_rico text(is:located:in) caribbean +puerto_rico text(was:located:in) americas +saint_vincent_and_the_grenadines text(can:be:found:in) caribbean +saint_vincent_and_the_grenadines text(was:positioned:in) americas +venezuela text(is:positioned:in) south_america +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(neighbors:with) colombia +grenada text(was:sited:in) caribbean +grenada text(is:sited:in) americas +united_states text(was:localized:in) northern_america +united_states text(was:a:neighbor:of) canada +united_states text(is:a:neighbor:of) mexico +tokelau text(is:localized:in) polynesia +tokelau text(was:present:in) oceania +slovenia text(is:present:in) southern_europe +slovenia text(is:still:in) europe +slovenia text(is:a:neighboring:state:to) austria +slovenia text(was:a:neighboring:state:to) croatia +slovenia text(borders:with) italy +slovenia text(borders) hungary +philippines text(was:still:in) south-eastern_asia +philippines text(was:currently:in) asia +micronesia text(is:currently:in) micronesia +micronesia text(is:placed:in) oceania +china text(was:placed:in) eastern_asia +china text(can:be:found:in) asia +china text(is:butted:against) afghanistan +china text(was:butted:against) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india +china text(neighbors) kazakhstan +china text(is:a:neighboring:country:of) kyrgyzstan +china text(was:a:neighboring:country:of) tajikistan +china text(neighbors:with) laos +china text(was:a:neighbor:of) russia +china text(is:a:neighbor:of) north_korea +china text(is:a:neighboring:state:to) myanmar +china text(was:a:neighboring:state:to) pakistan +china text(borders:with) mongolia +china text(borders) hong_kong +china text(is:butted:against) vietnam +gabon text(was:situated:in) middle_africa +gabon text(is:situated:in) africa +gabon text(was:butted:against) equatorial_guinea +gabon text(was:adjacent:to) republic_of_the_congo +gabon text(is:adjacent:to) cameroon +united_states_minor_outlying_islands text(is:located:in) northern_america +united_states_minor_outlying_islands text(was:located:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:positioned:in) europe +andorra text(neighbors) spain +andorra text(is:a:neighboring:country:of) france +samoa text(is:positioned:in) polynesia +samoa text(was:sited:in) oceania +gambia text(is:sited:in) western_africa +gambia text(was:localized:in) africa +gambia text(was:a:neighboring:country:of) senegal +palestine text(is:localized:in) western_asia +palestine text(was:present:in) asia +palestine text(neighbors:with) jordan +palestine text(was:a:neighbor:of) egypt +palestine text(is:a:neighbor:of) israel +réunion text(is:present:in) eastern_africa +réunion text(is:still:in) africa +france text(was:still:in) western_europe +france text(was:currently:in) europe +france text(is:a:neighboring:state:to) germany +france text(was:a:neighboring:state:to) luxembourg +france text(borders:with) italy +france text(borders) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) monaco +france text(was:adjacent:to) belgium +france text(is:adjacent:to) spain +mongolia text(is:currently:in) eastern_asia +mongolia text(is:placed:in) asia +mongolia text(neighbors) china +mongolia text(is:a:neighboring:country:of) russia +lithuania text(was:placed:in) northern_europe +lithuania text(can:be:found:in) europe +lithuania text(was:a:neighboring:country:of) poland +lithuania text(neighbors:with) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(was:situated:in) caribbean +cayman_islands text(is:situated:in) americas +saint_lucia text(is:located:in) caribbean +saint_lucia text(was:located:in) americas +curaçao text(can:be:found:in) caribbean +curaçao text(was:positioned:in) americas +caribbean text(is:positioned:in) americas +southern_asia text(was:sited:in) asia +middle_africa text(is:sited:in) africa +northern_europe text(was:localized:in) europe +southern_europe text(is:localized:in) europe +western_asia text(was:present:in) asia +south_america text(is:present:in) americas +polynesia text(is:still:in) oceania +australia_and_new_zealand text(was:still:in) oceania +western_europe text(was:currently:in) europe +eastern_africa text(is:currently:in) africa +western_africa text(is:placed:in) africa +eastern_europe text(was:placed:in) europe +central_america text(can:be:found:in) americas +northern_america text(was:situated:in) americas +south-eastern_asia text(is:situated:in) asia +southern_africa text(is:located:in) africa +eastern_asia text(was:located:in) asia +northern_africa text(can:be:found:in) africa +melanesia text(was:positioned:in) oceania +micronesia text(is:positioned:in) oceania +central_asia text(was:sited:in) asia +central_europe text(is:sited:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2.tsv new file mode 100644 index 0000000..1b3641f --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2.tsv @@ -0,0 +1,1063 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands neighborOf germany +netherlands neighborOf belgium +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola locatedIn africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia locatedIn asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia locatedIn africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi locatedIn africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina locatedIn americas +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia locatedIn europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +canada neighborOf united_states +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia locatedIn americas +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador locatedIn americas +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +belize neighborOf guatemala +belize neighborOf mexico +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname locatedIn americas +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea locatedIn africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica locatedIn americas +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania locatedIn europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana locatedIn africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium locatedIn europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar locatedIn asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india locatedIn asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya locatedIn africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan locatedIn asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad locatedIn africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya locatedIn africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +papua_new_guinea neighborOf indonesia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia locatedIn europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman locatedIn asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel locatedIn asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo locatedIn europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger locatedIn africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece locatedIn europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco neighborOf france +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia locatedIn europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil locatedIn americas +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland locatedIn europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro locatedIn europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru locatedIn americas +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland locatedIn europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria locatedIn europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi locatedIn africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait locatedIn asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa locatedIn africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden locatedIn europe +sweden neighborOf norway +sweden neighborOf finland +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea locatedIn asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg locatedIn europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras locatedIn americas +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali locatedIn africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen locatedIn asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon locatedIn africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania locatedIn europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv new file mode 100644 index 0000000..770f4a3 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv @@ -0,0 +1,1063 @@ +text(帛琉) locatedIn text(ميكرونيسيا) +text(Palau) locatedIn text(Oceanië) +text(馬爾代夫) locatedIn text(South:Asia) +text(المالديف) locatedIn text(Azië) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(بروناي) locatedIn text(Asia) +text(Brunei) neighborOf text(ماليزيا) +text(Japón) locatedIn text(東亞) +text(Japan) locatedIn text(Asia) +text(Países:Bajos) neighborOf text(ألمانيا) +text(荷蘭) neighborOf text(بلجيكا) +text(تركيا) neighborOf text(Armenia) +text(Turquía) neighborOf text(أذربيجان) +text(Turkey) neighborOf text(إيران) +text(तुर्की) neighborOf text(Griekenland) +text(Turkije) neighborOf text(Georgia) +text(土耳其) neighborOf text(Bulgaria) +text(تركيا) neighborOf text(Irak) +text(Turquía) neighborOf text(Syrië) +text(Angola) locatedIn text(وسط:إفريقيا) +text(安哥拉) locatedIn text(Africa) +text(أنغولا) neighborOf text(Congo-Kinshasa) +text(Angola) neighborOf text(नामीबिया) +text(अंगोला) neighborOf text(贊比亞) +text(Angola) neighborOf text(جمهورية:الكونغو) +text(आर्मीनिया) locatedIn text(पश्चिमी:एशिया) +text(亞美尼亞) locatedIn text(亞洲) +text(Armenia) neighborOf text(जॉर्जिया) +text(أرمينيا) neighborOf text(Azerbeidzjan) +text(Armenië) neighborOf text(Iran) +text(Armenia) neighborOf text(Turkey) +text(Antigua:en:Barbuda) locatedIn text(Caribbean) +text(安提瓜和巴布达) locatedIn text(América) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(África) +text(एस्वातीनी) neighborOf text(Sudáfrica) +text(Eswatini) neighborOf text(موزمبيق) +text(Wallis:y:Futuna) locatedIn text(بولنيزيا) +text(Wallis:en:Futuna) locatedIn text(大洋洲) +text(उरुग्वे) locatedIn text(أمريكا:الجنوبية) +text(Uruguay) locatedIn text(Americas) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(巴西) +text(Zambia) locatedIn text(East:Africa) +text(Zambia) locatedIn text(Afrika) +text(زامبيا) neighborOf text(Tanzania) +text(ज़ाम्बिया) neighborOf text(Mozambique) +text(Zambia) neighborOf text(Democratic:Republic:of:the:Congo) +text(贊比亞) neighborOf text(Angola) +text(Zambia) neighborOf text(Botswana) +text(Zambia) neighborOf text(Zimbabwe) +text(زامبيا) neighborOf text(Namibië) +text(ज़ाम्बिया) neighborOf text(Malawi) +text(قبرص) locatedIn text(पूर्वी:यूरोप) +text(Cyprus) locatedIn text(Europe) +text(साइप्रस) neighborOf text(United:Kingdom) +text(المملكة:المتحدة) locatedIn text(أوروبا:الشمالية) +text(United:Kingdom) locatedIn text(Europa) +text(Reino:Unido) neighborOf text(英国) +text(बुरुण्डी) locatedIn text(شرق:إفريقيا) +text(Burundi) locatedIn text(अफ्रीका) +text(Burundi) neighborOf text(刚果民主共和国) +text(بوروندي) neighborOf text(Rwanda) +text(蒲隆地) neighborOf text(تنزانيا) +text(中非共和國) locatedIn text(Central:Africa) +text(جمهورية:إفريقيا:الوسطى) locatedIn text(非洲) +text(Central:African:Republic) neighborOf text(تشاد) +text(Centraal-Afrikaanse:Republiek) neighborOf text(剛果共和國) +text(República:Centroafricana) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(Zuid-Soedan) +text(中非共和國) neighborOf text(Camerún) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Soedan) +text(Tonga) locatedIn text(पोलीनेशिया) +text(東加) locatedIn text(أوقيانوسيا) +text(कोत:दिव्वार) locatedIn text(West-Afrika) +text(科特迪瓦) locatedIn text(إفريقيا) +text(Ivoorkust) neighborOf text(Burkina:Faso) +text(Costa:de:Marfil) neighborOf text(घाना) +text(Ivory:Coast) neighborOf text(लाइबेरिया) +text(ساحل:العاج) neighborOf text(马里) +text(कोत:दिव्वार) neighborOf text(几内亚) +text(सिएरा:लियोन) neighborOf text(利比里亞) +text(سيراليون) neighborOf text(Guinea) +text(Mayotte) locatedIn text(Oost-Afrika) +text(马约特) locatedIn text(Africa) +text(بولندا) neighborOf text(德國) +text(Polonia) neighborOf text(Oekraïne) +text(Polen) neighborOf text(斯洛伐克) +text(波蘭) neighborOf text(Bielorrusia) +text(Poland) neighborOf text(Russia) +text(पोलैंड) neighborOf text(लिथुआनिया) +text(بولندا) neighborOf text(جمهورية:التشيك) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(آسيا) +text(Kazajistán) neighborOf text(تركمانستان) +text(哈萨克斯坦) neighborOf text(People's:Republic:of:China) +text(Kazakhstan) neighborOf text(Kirguistán) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(एशिया) +text(乌兹别克斯坦) neighborOf text(Afghanistan) +text(Uzbekistán) neighborOf text(土庫曼斯坦) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(吉尔吉斯斯坦) +text(Uzbekistan) neighborOf text(ताजीकिस्तान) +text(Islas:Turcas:y:Caicos) locatedIn text(Caraïben) +text(Turks:and:Caicos:Islands) locatedIn text(أمريكتان) +text(नया:कैलेडोनिया) locatedIn text(Melanesia) +text(New:Caledonia) locatedIn text(Oceanía) +text(巴基斯坦) neighborOf text(中华人民共和国) +text(Pakistan) neighborOf text(Afghanistan) +text(Pakistán) neighborOf text(ईरान) +text(पाकिस्तान) neighborOf text(India) +text(अर्जेण्टीना) locatedIn text(南美洲) +text(Argentinië) locatedIn text(美洲) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazilië) +text(阿根廷) neighborOf text(Paraguay) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(كوبا) locatedIn text(Caribe) +text(古巴) locatedIn text(महाअमेरिका) +text(塞爾維亞) neighborOf text(Macedonia:del:Norte) +text(Servië) neighborOf text(मॉन्टेनीग्रो) +text(सर्बिया) neighborOf text(कोसोवो:गणराज्य) +text(Serbia) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(صربيا) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hongarije) +text(塞爾維亞) neighborOf text(Bulgarije) +text(Servië) neighborOf text(Romania) +text(República:Checa) locatedIn text(Oost-Europa) +text(चेक:गणराज्य) locatedIn text(أوروبا) +text(捷克) neighborOf text(जर्मनी) +text(Czech:Republic) neighborOf text(ऑस्ट्रिया) +text(Tsjechië) neighborOf text(Polonia) +text(جمهورية:التشيك) neighborOf text(स्लोवाकिया) +text(Nicaragua) neighborOf text(هندوراس) +text(निकारागुआ) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(दक्षिण:पूर्व:एशिया) +text(Vietnam) locatedIn text(Azië) +text(Vietnam) neighborOf text(柬埔寨) +text(越南) neighborOf text(Laos) +text(فيتنام) neighborOf text(الصين) +text(نييوي) locatedIn text(玻里尼西亞) +text(निउए) locatedIn text(ओशिआनिया) +text(加拿大) locatedIn text(北美洲) +text(Canadá) locatedIn text(Amerika) +text(Canada) neighborOf text(United:States) +text(سلوفاكيا) neighborOf text(Ukraine) +text(Slowakije) neighborOf text(Polen) +text(Slovakia) neighborOf text(奧地利) +text(Eslovaquia) neighborOf text(हंगरी) +text(斯洛伐克) neighborOf text(República:Checa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(Zimbabwe) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(Malawi) +text(Mozambique) neighborOf text(جنوب:إفريقيا) +text(Aruba) locatedIn text(الكاريبي) +text(Aruba) locatedIn text(América) +text(Bolivia) locatedIn text(América:del:Sur) +text(Bolivia) locatedIn text(Americas) +text(बोलिविया) neighborOf text(智利) +text(بوليفيا) neighborOf text(ब्राज़ील) +text(玻利維亞) neighborOf text(باراغواي) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(दक्षिण:अमेरिका) +text(哥伦比亚) locatedIn text(أمريكتان) +text(Colombia) neighborOf text(ईक्वाडोर) +text(कोलम्बिया) neighborOf text(البرازيل) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(Fiji) locatedIn text(Melanesia) +text(Fiji) locatedIn text(Oceania) +text(Congo-Brazzaville) neighborOf text(加蓬) +text(Republic:of:the:Congo) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(कांगो:गणराज्य) neighborOf text(安哥拉) +text(República:del:Congo) neighborOf text(कैमरुन) +text(جمهورية:الكونغو) neighborOf text(Central:African:Republic) +text(Arabia:Saudí) neighborOf text(Qatar) +text(沙特阿拉伯) neighborOf text(संयुक्त:अरब:अमीरात) +text(السعودية) neighborOf text(約旦) +text(सउदी:अरब) neighborOf text(اليمن) +text(Saudi:Arabia) neighborOf text(Oman) +text(Saoedi-Arabië) neighborOf text(科威特) +text(Arabia:Saudí) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) locatedIn text(美洲) +text(السلفادور) neighborOf text(غواتيمالا) +text(薩爾瓦多) neighborOf text(洪都拉斯) +text(Madagascar) locatedIn text(东部非洲) +text(मेडागास्कर) locatedIn text(África) +text(Australia) locatedIn text(nan) +text(Australia) locatedIn text(Oceanië) +text(纳米比亚) locatedIn text(Zuidelijk:Afrika) +text(Namibia) locatedIn text(Afrika) +text(Namibia) neighborOf text(贊比亞) +text(ناميبيا) neighborOf text(أنغولا) +text(नामीबिया) neighborOf text(南非) +text(Namibië) neighborOf text(बोत्सवाना) +text(Tuvalu) locatedIn text(Polynesië) +text(तुवालू) locatedIn text(大洋洲) +text(斯瓦巴和扬马延) locatedIn text(Northern:Europe) +text(Spitsbergen:en:Jan:Mayen) locatedIn text(欧洲) +text(Man) locatedIn text(उत्तरी:यूरोप) +text(جزيرة:مان) locatedIn text(Europa) +text(圭亚那) neighborOf text(Brasil) +text(Guyana) neighborOf text(Surinam) +text(غيانا) neighborOf text(委內瑞拉) +text(वैटिकन:नगर) locatedIn text(Zuid-Europa) +text(梵蒂岡城國) locatedIn text(यूरोप) +text(Vaticaanstad) neighborOf text(意大利) +text(British:Indian:Ocean:Territory) locatedIn text(África:Oriental) +text(Territorio:Británico:del:Océano:Índico) locatedIn text(अफ्रीका) +text(नाइजीरिया) locatedIn text(غرب:إفريقيا) +text(奈及利亞) locatedIn text(非洲) +text(نيجيريا) neighborOf text(乍得) +text(Nigeria) neighborOf text(Níger) +text(Nigeria) neighborOf text(喀麦隆) +text(Nigeria) neighborOf text(貝南) +text(Duitsland) neighborOf text(Denmark) +text(Alemania) neighborOf text(Netherlands) +text(Germany) neighborOf text(波蘭) +text(ألمانيا) neighborOf text(لوكسمبورغ) +text(德國) neighborOf text(België) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(चेक:गणराज्य) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(بنين) +text(Burkina:Faso) neighborOf text(النيجر) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(माली) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(Tanzania) neighborOf text(Uganda) +text(तंज़ानिया) neighborOf text(Mozambique) +text(坦桑尼亞) neighborOf text(República:Democrática:del:Congo) +text(Tanzania) neighborOf text(Kenia) +text(تنزانيا) neighborOf text(رواندا) +text(Tanzania) neighborOf text(Zambia) +text(Tanzania) neighborOf text(मलावी) +text(तंज़ानिया) neighborOf text(Burundi) +text(उत्तरी:मारियाना:द्वीप) locatedIn text(माइक्रोनीशिया) +text(Noordelijke:Marianen) locatedIn text(أوقيانوسيا) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) locatedIn text(महाअमेरिका) +text(Belice) neighborOf text(Guatemala) +text(بليز) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finland) +text(Noorwegen) neighborOf text(俄罗斯) +text(جزر:كوكوس) locatedIn text(nan) +text(कोकोस:(कीलिंग):द्वीपसमूह) locatedIn text(Oceanía) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(Asia) +text(Laos) neighborOf text(República:Popular:China) +text(لاوس) neighborOf text(Cambodia) +text(老撾) neighborOf text(Birmania) +text(Laos) neighborOf text(वियतनाम) +text(Laos) neighborOf text(泰國) +text(Sahrawi:Arabische:Democratische:Republiek) locatedIn text(Norte:de:África) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) locatedIn text(إفريقيا) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(अल्जीरिया) +text(República:Árabe:Saharaui:Democrática) neighborOf text(毛里塔尼亞) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(Marruecos) +text(蘇利南) locatedIn text(Zuid-Amerika) +text(سورينام) locatedIn text(Amerika) +text(Suriname) neighborOf text(Brazil) +text(सूरीनाम) neighborOf text(Guayana:Francesa) +text(Suriname) neighborOf text(Guyana) +text(Isla:de:Navidad) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) locatedIn text(ओशिआनिया) +text(São:Tomé:and:Príncipe) locatedIn text(मध्य:अफ्रीका) +text(ساو:تومي:وبرينسيب) locatedIn text(Africa) +text(मिस्र) neighborOf text(Libia) +text(Egipto) neighborOf text(إسرائيل) +text(Egypte) neighborOf text(السودان) +text(बुल्गारिया) neighborOf text(北马其顿) +text(بلغاريا) neighborOf text(तुर्की) +text(保加利亚) neighborOf text(Grecia) +text(Bulgaria) neighborOf text(सर्बिया) +text(Bulgaria) neighborOf text(羅馬尼亞) +text(غينيا) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea) locatedIn text(África) +text(गिनी) neighborOf text(غينيا:بيساو) +text(Guinee) neighborOf text(Sierra:Leone) +text(几内亚) neighborOf text(Mali) +text(Guinea) neighborOf text(ليبيريا) +text(غينيا) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(España) neighborOf text(Morocco) +text(स्पेन) neighborOf text(جبل:طارق) +text(西班牙) neighborOf text(Andorra) +text(Spain) neighborOf text(Francia) +text(Spanje) neighborOf text(पुर्तगाल) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) locatedIn text(América) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(Nicaragua) +text(مالطا) locatedIn text(Europa:del:Sur) +text(Malta) locatedIn text(Europe) +text(葡萄牙) locatedIn text(南欧) +text(البرتغال) locatedIn text(Europa) +text(Portugal) neighborOf text(إسبانيا) +text(Roemenië) locatedIn text(Eastern:Europe) +text(رومانيا) locatedIn text(أوروبا) +text(रोमानिया) neighborOf text(Ucrania) +text(Rumania) neighborOf text(Hungría) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(Bulgarije) +text(Roemenië) neighborOf text(Serbia) +text(सान:मारिनो) locatedIn text(أوروبا:الجنوبية) +text(San:Marino) locatedIn text(欧洲) +text(سان:مارينو) neighborOf text(Italië) +text(Mauritania) locatedIn text(West:Africa) +text(Mauritania) locatedIn text(Afrika) +text(موريتانيا) neighborOf text(Algerije) +text(मॉरीतानिया) neighborOf text(Mali) +text(Mauritanië) neighborOf text(撒拉威阿拉伯民主共和國) +text(毛里塔尼亞) neighborOf text(Senegal) +text(त्रिनिदाद:और:टोबैगो) locatedIn text(加勒比地区) +text(ترينيداد:وتوباغو) locatedIn text(Americas) +text(巴林) locatedIn text(Zuidwest-Azië) +text(बहरीन) locatedIn text(Asia) +text(Myanmar) neighborOf text(भारत) +text(म्यान्मार) neighborOf text(Bangladesh) +text(Myanmar) neighborOf text(चीनी:जनवादी:गणराज्य) +text(ميانمار) neighborOf text(लाओस) +text(緬甸) neighborOf text(Tailandia) +text(इराक) neighborOf text(Turkije) +text(Irak) neighborOf text(沙特阿拉伯) +text(伊拉克) neighborOf text(Irán) +text(Iraq) neighborOf text(Jordanië) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(South:Georgia:and:the:South:Sandwich:Islands) locatedIn text(South:America) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) locatedIn text(أمريكتان) +text(冰島) locatedIn text(Noord-Europa) +text(IJsland) locatedIn text(Europa) +text(Congo-Kinshasa) locatedIn text(中部非洲) +text(Democratic:Republic:of:the:Congo) locatedIn text(अफ्रीका) +text(刚果民主共和国) neighborOf text(Uganda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(坦桑尼亞) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(剛果共和國) +text(República:Democrática:del:Congo) neighborOf text(Centraal-Afrikaanse:Republiek) +text(Congo-Kinshasa) neighborOf text(Angola) +text(Democratic:Republic:of:the:Congo) neighborOf text(卢旺达) +text(刚果民主共和国) neighborOf text(جنوب:السودان) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Zambia) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(बुरुण्डी) +text(塞舌尔) locatedIn text(पूर्वी:अफ्रीका) +text(सेशेल्स) locatedIn text(非洲) +text(قرغيزستان) neighborOf text(Volksrepubliek:China) +text(Kyrgyzstan) neighborOf text(Kazajistán) +text(किर्गिज़स्तान) neighborOf text(Tayikistán) +text(Kirgizië) neighborOf text(أوزبكستان) +text(بوتسوانا) locatedIn text(Southern:Africa) +text(Botswana) locatedIn text(إفريقيا) +text(波札那) neighborOf text(Zimbabue) +text(Botsuana) neighborOf text(纳米比亚) +text(Botswana) neighborOf text(زامبيا) +text(बोत्सवाना) neighborOf text(दक्षिण:अफ़्रीका) +text(फ़रो:द्वीपसमूह) locatedIn text(Europa:del:Norte) +text(法罗群岛) locatedIn text(यूरोप) +text(Jamaica) locatedIn text(कैरिबिया) +text(जमैका) locatedIn text(美洲) +text(Samoa:Americana) locatedIn text(Polinesia) +text(अमेरिकी:समोआ) locatedIn text(Oceania) +text(莱索托) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesoto) locatedIn text(Africa) +text(लेसोथो) neighborOf text(Zuid-Afrika) +text(Sri:Lanka) neighborOf text(印度) +text(Belgium) locatedIn text(أوروبا:الغربية) +text(比利時) locatedIn text(Europe) +text(बेल्जियम) neighborOf text(ألمانيا) +text(Bélgica) neighborOf text(Luxembourg) +text(بلجيكا) neighborOf text(فرنسا) +text(België) neighborOf text(هولندا) +text(قطر) locatedIn text(Asia:Occidental) +text(卡塔尔) locatedIn text(亞洲) +text(Qatar) neighborOf text(السعودية) +text(Islas:Salomón) locatedIn text(ميلانيزيا) +text(所罗门群岛) locatedIn text(Oceanië) +text(敘利亞) locatedIn text(西亚) +text(سوريا) locatedIn text(آسيا) +text(सीरिया) neighborOf text(以色列) +text(Siria) neighborOf text(土耳其) +text(Syrië) neighborOf text(जॉर्डन) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(南亚) +text(India) locatedIn text(एशिया) +text(الهند) neighborOf text(Afganistán) +text(India) neighborOf text(Bhutan) +text(भारत) neighborOf text(Bangladesh) +text(印度) neighborOf text(People's:Republic:of:China) +text(India) neighborOf text(नेपाल) +text(India) neighborOf text(Birmania) +text(الهند) neighborOf text(Pakistan) +text(India) neighborOf text(斯里蘭卡) +text(المغرب) neighborOf text(Algeria) +text(मोरक्को) neighborOf text(España) +text(摩洛哥) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(Kenia) locatedIn text(East:Africa) +text(Kenya) locatedIn text(África) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(Somalia) +text(Kenia) neighborOf text(South:Sudan) +text(Kenia) neighborOf text(Ethiopië) +text(दक्षिण:सूडान) locatedIn text(Centraal-Afrika) +text(Sudán:del:Sur) locatedIn text(Afrika) +text(南蘇丹) neighborOf text(Oeganda) +text(Zuid-Soedan) neighborOf text(República:Democrática:del:Congo) +text(جنوب:السودان) neighborOf text(Kenya) +text(South:Sudan) neighborOf text(República:Centroafricana) +text(दक्षिण:सूडान) neighborOf text(Sudan) +text(Sudán:del:Sur) neighborOf text(Ethiopia) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(Togo) +text(塔吉克斯坦) locatedIn text(मध्य:एशिया) +text(Tajikistan) locatedIn text(Azië) +text(Tadzjikistan) neighborOf text(中华人民共和国) +text(طاجيكستان) neighborOf text(Kirguistán) +text(ताजीकिस्तान) neighborOf text(أفغانستان) +text(Tayikistán) neighborOf text(乌兹别克斯坦) +text(Islas:Marshall) locatedIn text(Micronesië) +text(Marshall:Islands) locatedIn text(大洋洲) +text(الكاميرون) locatedIn text(África:Central) +text(Kameroen) locatedIn text(अफ्रीका) +text(Cameroon) neighborOf text(चाड) +text(Camerún) neighborOf text(Congo-Brazzaville) +text(कैमरुन) neighborOf text(Gabon) +text(喀麦隆) neighborOf text(赤道几内亚) +text(الكاميرون) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Kameroen) neighborOf text(नाइजीरिया) +text(नौरु) locatedIn text(密克羅尼西亞群島) +text(瑙鲁) locatedIn text(أوقيانوسيا) +text(Thailand) neighborOf text(Camboya) +text(تايلاند) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(थाईलैंड) neighborOf text(馬來西亞) +text(Sudán) neighborOf text(Chad) +text(सूडान) neighborOf text(लीबिया) +text(苏丹) neighborOf text(南蘇丹) +text(Soedan) neighborOf text(Eritrea) +text(السودان) neighborOf text(中非共和國) +text(Sudan) neighborOf text(埃及) +text(Sudán) neighborOf text(Etiopía) +text(Tsjaad) locatedIn text(وسط:إفريقيا) +text(Chad) locatedIn text(非洲) +text(تشاد) neighborOf text(Libië) +text(乍得) neighborOf text(Niger) +text(चाड) neighborOf text(Zuid-Soedan) +text(Chad) neighborOf text(Cameroon) +text(Tsjaad) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Chad) neighborOf text(奈及利亞) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(萬那杜) locatedIn text(Oceanía) +text(الرأس:الأخضر) locatedIn text(西非) +text(佛得角) locatedIn text(إفريقيا) +text(Islas:Malvinas) locatedIn text(أمريكا:الجنوبية) +text(福克蘭群島) locatedIn text(महाअमेरिका) +text(Liberia) locatedIn text(África:Occidental) +text(Liberia) locatedIn text(Africa) +text(Liberia) neighborOf text(Ivory:Coast) +text(लाइबेरिया) neighborOf text(Sierra:Leone) +text(利比里亞) neighborOf text(गिनी) +text(कम्बोडिया) locatedIn text(东南亚) +text(Cambodja) locatedIn text(Asia) +text(كمبوديا) neighborOf text(Vietnam) +text(柬埔寨) neighborOf text(泰國) +text(Cambodia) neighborOf text(لاوس) +text(زيمبابوي) neighborOf text(ज़ाम्बिया) +text(津巴布韦) neighborOf text(South:Africa) +text(ज़िम्बाब्वे) neighborOf text(بوتسوانا) +text(Zimbabwe) neighborOf text(मोज़ाम्बीक) +text(جزر:القمر) locatedIn text(شرق:إفريقيا) +text(कोमोरोस) locatedIn text(África) +text(Guam) locatedIn text(Micronesia) +text(關島) locatedIn text(ओशिआनिया) +text(The:Bahamas) locatedIn text(Caribbean) +text(جزر:البهاما) locatedIn text(Amerika) +text(लेबनॉन) locatedIn text(West:Asia) +text(Libanon) locatedIn text(Asia) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Sint:Maarten) locatedIn text(Caraïben) +text(सेंट:मार्टिन) locatedIn text(América) +text(Saint:Martin) neighborOf text(सेंट:मार्टिन:की:सामूहिकता) +text(إثيوبيا) locatedIn text(Oost-Afrika) +text(埃塞俄比亚) locatedIn text(Afrika) +text(इथियोपिया) neighborOf text(索馬里) +text(Ethiopië) neighborOf text(कीनिया) +text(Ethiopia) neighborOf text(Eritrea) +text(Etiopía) neighborOf text(جنوب:السودان) +text(إثيوبيا) neighborOf text(जिबूती) +text(埃塞俄比亚) neighborOf text(सूडान) +text(美屬維爾京群島) locatedIn text(Caribe) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(Guinea-Bisáu) locatedIn text(West-Afrika) +text(Guinea-Bissau) locatedIn text(अफ्रीका) +text(畿內亞比紹) neighborOf text(Guinee) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(ليبيا) locatedIn text(شمال:إفريقيا) +text(利比亞) locatedIn text(非洲) +text(Libya) neighborOf text(تشاد) +text(Libia) neighborOf text(تونس) +text(लीबिया) neighborOf text(Niger) +text(Libië) neighborOf text(阿爾及利亞) +text(ليبيا) neighborOf text(مصر) +text(利比亞) neighborOf text(苏丹) +text(Bhutan) locatedIn text(Asia:del:Sur) +text(भूटान) locatedIn text(亞洲) +text(不丹) neighborOf text(الصين) +text(بوتان) neighborOf text(भारत) +text(澳門) locatedIn text(شرق:آسيا) +text(Macau) locatedIn text(آسيا) +text(मकाउ) neighborOf text(República:Popular:China) +text(Frans-Polynesië) locatedIn text(Polynesia) +text(French:Polynesia) locatedIn text(Oceania) +text(Somalië) locatedIn text(东部非洲) +text(Somalia) locatedIn text(إفريقيا) +text(الصومال) neighborOf text(吉布提) +text(सोमालिया) neighborOf text(肯尼亚) +text(Somalia) neighborOf text(इथियोपिया) +text(सेंट:बार्थेलेमी) locatedIn text(الكاريبي) +text(Saint-Barthélemy) locatedIn text(أمريكتان) +text(روسيا) locatedIn text(东欧) +text(Rusia) locatedIn text(Europa) +text(Rusland) neighborOf text(烏克蘭) +text(Russia) neighborOf text(Belarus) +text(रूस) neighborOf text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Poland) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(ليتوانيا) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Corea:del:Norte) +text(روسيا) neighborOf text(फ़िनलैण्ड) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(लातविया) +text(Russia) neighborOf text(格鲁吉亚) +text(نيوزيلندا) locatedIn text(nan) +text(New:Zealand) locatedIn text(Oceanië) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(美洲) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(Papua:New:Guinea) locatedIn text(美拉尼西亞) +text(Papúa:Nueva:Guinea) locatedIn text(大洋洲) +text(巴布亚新几内亚) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(Volksrepubliek:China) +text(كوريا:الشمالية) neighborOf text(Zuid-Korea) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Letland) locatedIn text(北歐) +text(لاتفيا) locatedIn text(أوروبا) +text(Latvia) neighborOf text(立陶宛) +text(拉脫維亞) neighborOf text(Wit-Rusland) +text(Letonia) neighborOf text(俄罗斯) +text(लातविया) neighborOf text(Estonia) +text(Omán) locatedIn text(غرب:آسيا) +text(Oman) locatedIn text(एशिया) +text(سلطنة:عمان) neighborOf text(सउदी:अरब) +text(ओमान) neighborOf text(Yemen) +text(阿曼) neighborOf text(阿拉伯联合酋长国) +text(सन्त:पियर:और:मिकलान) locatedIn text(أمريكا:الشمالية) +text(San:Pedro:y:Miquelón) locatedIn text(महाअमेरिका) +text(मार्टीनिक) locatedIn text(加勒比地区) +text(馬提尼克) locatedIn text(Amerika) +text(Verenigd:Koninkrijk) locatedIn text(أوروبا:الشمالية) +text(यूनाइटेड:किंगडम) locatedIn text(欧洲) +text(Reino:Unido) neighborOf text(英国) +text(Israel) locatedIn text(पश्चिमी:एशिया) +text(इज़राइल) locatedIn text(Azië) +text(Israël) neighborOf text(لبنان) +text(إسرائيل) neighborOf text(Egypt) +text(以色列) neighborOf text(Jordan) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Northern:Europe) +text(Jersey) locatedIn text(Europa) +text(Islas:Pitcairn) locatedIn text(بولنيزيا) +text(جزر:بيتكيرن) locatedIn text(أوقيانوسيا) +text(Togo) locatedIn text(غرب:إفريقيا) +text(多哥) locatedIn text(Africa) +text(टोगो) neighborOf text(بوركينا:فاسو) +text(توغو) neighborOf text(Ghana) +text(Togo) neighborOf text(Benin) +text(كيريباتي) locatedIn text(Micronesia) +text(Kiribati) locatedIn text(Oceanía) +text(伊朗) locatedIn text(Zuid-Azië) +text(Iran) locatedIn text(Asia) +text(إيران) neighborOf text(阿富汗) +text(Iran) neighborOf text(Turkmenistan) +text(ईरान) neighborOf text(تركيا) +text(Irán) neighborOf text(आर्मीनिया) +text(伊朗) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(باكستان) +text(إيران) neighborOf text(Irak) +text(تجمع:سان:مارتين) locatedIn text(कैरिबिया) +text(法屬聖馬丁) locatedIn text(América) +text(Saint-Martin) neighborOf text(圣马丁岛) +text(República:Dominicana) locatedIn text(Caribbean) +text(Dominican:Republic) locatedIn text(Americas) +text(多明尼加) neighborOf text(هايتي) +text(丹麥) neighborOf text(德國) +text(बरमूडा) locatedIn text(América:del:Norte) +text(Bermuda) locatedIn text(أمريكتان) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(أوروبا:الشرقية) +text(Kosovo) locatedIn text(यूरोप) +text(كوسوفو) neighborOf text(صربيا) +text(科索沃) neighborOf text(Albania) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(कोसोवो:गणराज्य) neighborOf text(Montenegro) +text(सन्त:किट्स:और:नेविस) locatedIn text(Caraïben) +text(Saint:Kitts:en:Nevis) locatedIn text(美洲) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(Soedan) +text(Eritrea) neighborOf text(Ethiopië) +text(भूमध्यरेखीय:गिनी) locatedIn text(Central:Africa) +text(Guinea:Ecuatorial) locatedIn text(África) +text(Equatorial:Guinea) neighborOf text(الغابون) +text(غينيا:الاستوائية) neighborOf text(Camerún) +text(尼日尔) locatedIn text(पश्चिमी:अफ्रीका) +text(नाइजर) locatedIn text(Afrika) +text(Níger) neighborOf text(乍得) +text(النيجر) neighborOf text(Libya) +text(Niger) neighborOf text(Burkina:Faso) +text(Niger) neighborOf text(Benín) +text(尼日尔) neighborOf text(مالي) +text(नाइजर) neighborOf text(Argelia) +text(Níger) neighborOf text(نيجيريا) +text(Anguila) locatedIn text(Caribe) +text(Anguilla) locatedIn text(महाअमेरिका) +text(Rwanda) locatedIn text(África:Oriental) +text(रवाण्डा) locatedIn text(अफ्रीका) +text(Ruanda) neighborOf text(Burundi) +text(Rwanda) neighborOf text(تنزانيا) +text(رواندا) neighborOf text(烏干達) +text(卢旺达) neighborOf text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) locatedIn text(Zuidwest-Azië) +text(Verenigde:Arabische:Emiraten) locatedIn text(Asia) +text(United:Arab:Emirates) neighborOf text(Oman) +text(Emiratos:Árabes:Unidos) neighborOf text(Saudi:Arabia) +text(Estland) locatedIn text(उत्तरी:यूरोप) +text(एस्टोनिया) locatedIn text(Europe) +text(Estonia) neighborOf text(Letland) +text(愛沙尼亞) neighborOf text(روسيا) +text(希腊) locatedIn text(दक्षिणी:यूरोप) +text(اليونان) locatedIn text(Europa) +text(Greece) neighborOf text(बुल्गारिया) +text(यूनान) neighborOf text(ألبانيا) +text(Griekenland) neighborOf text(North:Macedonia) +text(Grecia) neighborOf text(Turquía) +text(Senegal) locatedIn text(West:Africa) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritania) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(岡比亞) +text(Senegal) neighborOf text(几内亚) +text(Guadeloupe) locatedIn text(الكاريبي) +text(Guadalupe) locatedIn text(Amerika) +text(मोनाको) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(索馬里) +text(جيبوتي) neighborOf text(Ethiopia) +text(इंडोनेशिया) neighborOf text(पापुआ:न्यू:गिनी) +text(Indonesia) neighborOf text(Timor-Leste) +text(印度尼西亚) neighborOf text(Maleisië) +text(جزر:عذراء:بريطانية) locatedIn text(加勒比地区) +text(英屬維爾京群島) locatedIn text(América) +text(Islas:Cook) locatedIn text(पोलीनेशिया) +text(جزر:كوك) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(पूर्वी:अफ्रीका) +text(Uganda) locatedIn text(إفريقيا) +text(Uganda) neighborOf text(Tanzania) +text(أوغندا) neighborOf text(Democratic:Republic:of:the:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(South:Sudan) +text(युगाण्डा) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(Southern:Europe) +text(उत्तर:मैसिडोनिया) locatedIn text(أوروبا) +text(Macedonia:del:Norte) neighborOf text(Kosovo) +text(北马其顿) neighborOf text(希腊) +text(Noord-Macedonië) neighborOf text(阿爾巴尼亞) +text(North:Macedonia) neighborOf text(Serbia) +text(مقدونيا:الشمالية) neighborOf text(بلغاريا) +text(Túnez) locatedIn text(北部非洲) +text(突尼西亞) locatedIn text(Africa) +text(Tunisia) neighborOf text(Libia) +text(ट्यूनिशिया) neighborOf text(الجزائر) +text(الإكوادور) neighborOf text(पेरू) +text(Ecuador) neighborOf text(Colombia) +text(巴西) locatedIn text(南美洲) +text(Brazilië) locatedIn text(Americas) +text(ब्राज़ील) neighborOf text(बोलिविया) +text(البرازيل) neighborOf text(कोलम्बिया) +text(Brasil) neighborOf text(Paraguay) +text(Brazil) neighborOf text(الأوروغواي) +text(巴西) neighborOf text(Frans-Guyana) +text(Brazilië) neighborOf text(Surinam) +text(ब्राज़ील) neighborOf text(Venezuela) +text(البرازيل) neighborOf text(Argentina) +text(Brasil) neighborOf text(Guyana) +text(Brazil) neighborOf text(秘鲁) +text(Paraguay) locatedIn text(América:del:Sur) +text(巴拉圭) locatedIn text(أمريكتان) +text(पैराग्वे) neighborOf text(Argentina) +text(Paraguay) neighborOf text(巴西) +text(باراغواي) neighborOf text(بوليفيا) +text(Finlandia) locatedIn text(Noord-Europa) +text(Finland) locatedIn text(欧洲) +text(芬蘭) neighborOf text(Norway) +text(فنلندا) neighborOf text(स्वीडन) +text(Finland) neighborOf text(Rusia) +text(Jordania) neighborOf text(Saoedi-Arabië) +text(الأردن) neighborOf text(Israel) +text(約旦) neighborOf text(伊拉克) +text(Jordanië) neighborOf text(Siria) +text(पूर्वी:तिमोर) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(Zuid-Europa) +text(蒙特內哥羅) locatedIn text(Europa) +text(Montenegro) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(البوسنة:والهرسك) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(塞爾維亞) +text(الجبل:الأسود) neighborOf text(अल्बानिया) +text(Peru) locatedIn text(दक्षिण:अमेरिका) +text(Perú) locatedIn text(美洲) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(Brazilië) +text(Peru) neighborOf text(كولومبيا) +text(Montserrat) locatedIn text(कैरिबिया) +text(Montserrat) locatedIn text(महाअमेरिका) +text(युक्रेन) locatedIn text(Europa:Oriental) +text(أوكرانيا) locatedIn text(यूरोप) +text(Oekraïne) neighborOf text(स्लोवाकिया) +text(Ukraine) neighborOf text(بيلاروس) +text(Ucrania) neighborOf text(पोलैंड) +text(烏克蘭) neighborOf text(Rusland) +text(युक्रेन) neighborOf text(المجر) +text(أوكرانيا) neighborOf text(Moldova) +text(Oekraïne) neighborOf text(رومانيا) +text(Dominica) locatedIn text(Caribbean) +text(डोमिनिका) locatedIn text(Amerika) +text(तुर्कमेनिस्तान) neighborOf text(Kazakhstan) +text(Turkmenistán) neighborOf text(अफ़्ग़ानिस्तान) +text(Turkmenistan) neighborOf text(Uzbekistán) +text(تركمانستان) neighborOf text(Iran) +text(غيرنزي) locatedIn text(Europa:del:Norte) +text(ग्वेर्नसे) locatedIn text(Europe) +text(Gibraltar) locatedIn text(Europa:del:Sur) +text(जिब्राल्टर) locatedIn text(Europa) +text(Gibraltar) neighborOf text(स्पेन) +text(स्विट्ज़रलैण्ड) locatedIn text(Western:Europe) +text(瑞士) locatedIn text(أوروبا) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(Italia) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(西欧) +text(النمسا) locatedIn text(欧洲) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(سلوفاكيا) +text(Austria) neighborOf text(Slovenië) +text(Austria) neighborOf text(इटली) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(Hungary) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(捷克) +text(匈牙利) neighborOf text(Ukraine) +text(Hongarije) neighborOf text(Slowakije) +text(हंगरी) neighborOf text(سلوفينيا) +text(Hungría) neighborOf text(Croatia) +text(المجر) neighborOf text(Austria) +text(Hungary) neighborOf text(Servië) +text(匈牙利) neighborOf text(रोमानिया) +text(Malaui) locatedIn text(East:Africa) +text(馬拉威) locatedIn text(África) +text(مالاوي) neighborOf text(Zambia) +text(Malawi) neighborOf text(Tanzania) +text(Malawi) neighborOf text(莫桑比克) +text(Hong:Kong) neighborOf text(People's:Republic:of:China) +text(ليختنشتاين) locatedIn text(पश्चिमी:यूरोप) +text(Liechtenstein) locatedIn text(Europa) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(Caraïben) +text(巴巴多斯) locatedIn text(América) +text(Georgia) locatedIn text(Asia:Occidental) +text(جورجيا) locatedIn text(亞洲) +text(Georgië) neighborOf text(亞美尼亞) +text(Georgia) neighborOf text(阿塞拜疆) +text(जॉर्जिया) neighborOf text(Russia) +text(格鲁吉亚) neighborOf text(Turkey) +text(Albanië) locatedIn text(南欧) +text(Albania) locatedIn text(यूरोप) +text(Albania) neighborOf text(蒙特內哥羅) +text(ألبانيا) neighborOf text(उत्तर:मैसिडोनिया) +text(阿爾巴尼亞) neighborOf text(كوسوفو) +text(अल्बानिया) neighborOf text(اليونان) +text(Kuwait) locatedIn text(西亚) +text(कुवैत) locatedIn text(آسيا) +text(Koeweit) neighborOf text(Arabia:Saudí) +text(الكويت) neighborOf text(Iraq) +text(Sudáfrica) locatedIn text(南部非洲) +text(جنوب:إفريقيا) locatedIn text(Afrika) +text(南非) neighborOf text(Mozambique) +text(दक्षिण:अफ़्रीका) neighborOf text(Botswana) +text(Zuid-Afrika) neighborOf text(إسواتيني) +text(South:Africa) neighborOf text(Zimbabwe) +text(Sudáfrica) neighborOf text(Namibia) +text(جنوب:إفريقيا) neighborOf text(Lesotho) +text(海地) locatedIn text(Caribe) +text(Haití) locatedIn text(Americas) +text(Haïti) neighborOf text(جمهورية:الدومينيكان) +text(Afghanistan) locatedIn text(جنوب:آسيا) +text(Afghanistan) locatedIn text(एशिया) +text(Afganistán) neighborOf text(土庫曼斯坦) +text(أفغانستان) neighborOf text(中华人民共和国) +text(阿富汗) neighborOf text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) neighborOf text(Oezbekistan) +text(Afghanistan) neighborOf text(ईरान) +text(Afghanistan) neighborOf text(巴基斯坦) +text(Singapur) locatedIn text(Southeast:Asia) +text(सिंगापुर) locatedIn text(Azië) +text(बेनिन) locatedIn text(西非) +text(Benin) locatedIn text(अफ्रीका) +text(貝南) neighborOf text(النيجر) +text(بنين) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(Benín) neighborOf text(Nigeria) +text(Åland) locatedIn text(北歐) +text(ऑलैण्ड:द्वीपसमूह) locatedIn text(Europe) +text(Croacia) locatedIn text(أوروبا:الجنوبية) +text(克羅地亞) locatedIn text(Europa) +text(كرواتيا) neighborOf text(Slovenia) +text(क्रोएशिया) neighborOf text(波斯尼亚和黑塞哥维那) +text(Kroatië) neighborOf text(Hongarije) +text(Croatia) neighborOf text(सर्बिया) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(أوروبا:الشمالية) +text(السويد) locatedIn text(أوروبا) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(फ़िनलैण्ड) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Mexico) neighborOf text(Guatemala) +text(جرينلاند) locatedIn text(उत्तर:अमेरिका) +text(Greenland) locatedIn text(أمريكتان) +text(Pitcairn:Islands) locatedIn text(Australia:and:New:Zealand) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(Oceania) +text(尼泊爾) locatedIn text(दक्षिण:एशिया) +text(Nepal) locatedIn text(Asia) +text(Nepal) neighborOf text(الصين) +text(Nepal) neighborOf text(印度) +text(Guatemala) neighborOf text(Belize) +text(危地马拉) neighborOf text(El:Salvador) +text(ग्वाटेमाला) neighborOf text(मेक्सिको) +text(غواتيمالا) neighborOf text(Honduras) +text(दक्षिण:कोरिया) locatedIn text(East:Asia) +text(Corea:del:Sur) locatedIn text(Asia) +text(大韩民国) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(पूर्वी:यूरोप) +text(摩爾多瓦) locatedIn text(欧洲) +text(مولدوفا) neighborOf text(Ucrania) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(شرق:إفريقيا) +text(毛里求斯) locatedIn text(非洲) +text(白俄羅斯) neighborOf text(烏克蘭) +text(बेलारूस) neighborOf text(بولندا) +text(Bielorrusia) neighborOf text(Lithuania) +text(Belarus) neighborOf text(रूस) +text(Wit-Rusland) neighborOf text(لاتفيا) +text(बांग्लादेश) neighborOf text(म्यान्मार) +text(بنغلاديش) neighborOf text(India) +text(Malaysia) locatedIn text(جنوب:شرق:آسيا) +text(Malasia) locatedIn text(亞洲) +text(मलेशिया) neighborOf text(Tailandia) +text(ماليزيا) neighborOf text(Indonesia) +text(馬來西亞) neighborOf text(汶莱) +text(Bosnia:and:Herzegovina) locatedIn text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) locatedIn text(Europa) +text(Bosnia:y:Herzegovina) neighborOf text(Serbia) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(克羅地亞) +text(البوسنة:والهرسك) neighborOf text(Montenegro) +text(Luxemburgo) locatedIn text(West-Europa) +text(Luxemburg) locatedIn text(यूरोप) +text(लक्ज़मबर्ग) neighborOf text(Alemania) +text(卢森堡) neighborOf text(Belgium) +text(لوكسمبورغ) neighborOf text(Frankrijk) +text(Italy) locatedIn text(Southern:Europe) +text(إيطاليا) locatedIn text(Europe) +text(意大利) neighborOf text(स्लोवेनिया) +text(Italië) neighborOf text(Zwitserland) +text(Italia) neighborOf text(Oostenrijk) +text(इटली) neighborOf text(France) +text(Italy) neighborOf text(Ciudad:del:Vaticano) +text(إيطاليا) neighborOf text(圣马力诺) +text(अज़रबैजान) locatedIn text(West:Asia) +text(أذربيجان) locatedIn text(آسيا) +text(Azerbeidzjan) neighborOf text(तुर्की) +text(Azerbaiyán) neighborOf text(Armenia) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Irán) +text(अज़रबैजान) neighborOf text(Georgia) +text(Honduras) locatedIn text(中美洲) +text(Honduras) locatedIn text(美洲) +text(हॉण्डुरस) neighborOf text(Guatemala) +text(هندوراس) neighborOf text(尼加拉瓜) +text(洪都拉斯) neighborOf text(El:Salvador) +text(马里) locatedIn text(África:Occidental) +text(माली) locatedIn text(إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinea) +text(مالي) neighborOf text(Mauritania) +text(Mali) neighborOf text(Niger) +text(马里) neighborOf text(सेनेगल) +text(माली) neighborOf text(अल्जीरिया) +text(Mali) neighborOf text(ساحل:العاج) +text(Taiwan) locatedIn text(Oost-Azië) +text(चीनी:गणराज्य) locatedIn text(एशिया) +text(Algerije) locatedIn text(Noord-Afrika) +text(Algeria) locatedIn text(Africa) +text(阿爾及利亞) neighborOf text(लीबिया) +text(Argelia) neighborOf text(Tunesië) +text(الجزائر) neighborOf text(موريتانيا) +text(अल्जीरिया) neighborOf text(Marokko) +text(Algerije) neighborOf text(Niger) +text(Algeria) neighborOf text(Mali) +text(阿爾及利亞) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(फ़्रान्सीसी:गुयाना) neighborOf text(ब्राज़ील) +text(French:Guiana) neighborOf text(蘇利南) +text(Jemen) locatedIn text(غرب:آسيا) +text(也门) locatedIn text(Azië) +text(Yemen) neighborOf text(Omán) +text(यमन) neighborOf text(沙特阿拉伯) +text(Puerto:Rico) locatedIn text(الكاريبي) +text(波多黎各) locatedIn text(महाअमेरिका) +text(سانت:فينسنت:والغرينادين) locatedIn text(加勒比地区) +text(圣文森特和格林纳丁斯) locatedIn text(Amerika) +text(वेनेज़ुएला) neighborOf text(البرازيل) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(غرينادا) locatedIn text(कैरिबिया) +text(Grenada) locatedIn text(América) +text(Estados:Unidos) neighborOf text(Canada) +text(الولايات:المتحدة) neighborOf text(المكسيك) +text(توكيلاو) locatedIn text(玻里尼西亞) +text(Tokelau) locatedIn text(Oceanië) +text(斯洛文尼亞) locatedIn text(Zuid-Europa) +text(Eslovenia) locatedIn text(Europa) +text(Slovenië) neighborOf text(النمسا) +text(سلوفينيا) neighborOf text(كرواتيا) +text(Slovenia) neighborOf text(意大利) +text(स्लोवेनिया) neighborOf text(हंगरी) +text(الفلبين) locatedIn text(Sudeste:Asiático) +text(Filipinas) locatedIn text(Asia) +text(ميكرونيسيا) locatedIn text(माइक्रोनीशिया) +text(Micronesië) locatedIn text(大洋洲) +text(República:Popular:China) locatedIn text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) locatedIn text(Asia) +text(Volksrepubliek:China) neighborOf text(Afganistán) +text(People's:Republic:of:China) neighborOf text(Bután) +text(中华人民共和国) neighborOf text(ماكاو) +text(الصين) neighborOf text(India) +text(República:Popular:China) neighborOf text(كازاخستان) +text(चीनी:जनवादी:गणराज्य) neighborOf text(吉尔吉斯斯坦) +text(Volksrepubliek:China) neighborOf text(Tajikistan) +text(People's:Republic:of:China) neighborOf text(老撾) +text(中华人民共和国) neighborOf text(روسيا) +text(الصين) neighborOf text(Noord-Korea) +text(República:Popular:China) neighborOf text(Myanmar) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Pakistan) +text(Volksrepubliek:China) neighborOf text(Mongolia) +text(People's:Republic:of:China) neighborOf text(हांगकांग) +text(中华人民共和国) neighborOf text(Vietnam) +text(गबॉन) locatedIn text(मध्य:अफ्रीका) +text(Gabon) locatedIn text(África) +text(Gabón) neighborOf text(Equatoriaal-Guinea) +text(加蓬) neighborOf text(Republic:of:the:Congo) +text(Gabon) neighborOf text(कैमरुन) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) locatedIn text(North:America) +text(United:States:Minor:Outlying:Islands) locatedIn text(Americas) +text(Andorra) locatedIn text(Europa:del:Sur) +text(安道尔) locatedIn text(أوروبا) +text(Andorra) neighborOf text(西班牙) +text(अण्डोरा) neighborOf text(Francia) +text(ساموا) locatedIn text(Polynesië) +text(Samoa) locatedIn text(أوقيانوسيا) +text(The:Gambia) locatedIn text(West-Afrika) +text(गाम्बिया) locatedIn text(Afrika) +text(غامبيا) neighborOf text(السنغال) +text(nan) locatedIn text(पश्चिमी:एशिया) +text(Pedro:Miguel) locatedIn text(亞洲) +text(Pedro:Miguel) neighborOf text(जॉर्डन) +text(nan) neighborOf text(मिस्र) +text(nan) neighborOf text(इज़राइल) +text(रेयूनियों) locatedIn text(Oost-Afrika) +text(留尼汪) locatedIn text(अफ्रीका) +text(فرنسا) locatedIn text(Europa:Occidental) +text(फ़्रान्स) locatedIn text(欧洲) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(Luxembourg) +text(France) neighborOf text(Italië) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(摩納哥) +text(法國) neighborOf text(比利時) +text(Frankrijk) neighborOf text(Spain) +text(منغوليا) locatedIn text(Asia:Oriental) +text(蒙古國) locatedIn text(آسيا) +text(Mongolië) neighborOf text(الصين) +text(मंगोलिया) neighborOf text(Rusia) +text(Lituania) locatedIn text(Northern:Europe) +text(Litouwen) locatedIn text(Europa) +text(लिथुआनिया) neighborOf text(Polonia) +text(ليتوانيا) neighborOf text(Latvia) +text(立陶宛) neighborOf text(بيلاروس) +text(Lithuania) neighborOf text(Rusland) +text(Kaaimaneilanden) locatedIn text(Caribbean) +text(開曼群島) locatedIn text(أمريكتان) +text(سانت:لوسيا) locatedIn text(Caraïben) +text(圣卢西亚) locatedIn text(美洲) +text(Curaçao) locatedIn text(Caribe) +text(كوراساو) locatedIn text(महाअमेरिका) +text(الكاريبي) locatedIn text(Amerika) +text(South:Asia) locatedIn text(एशिया) +text(中部非洲) locatedIn text(非洲) +text(उत्तरी:यूरोप) locatedIn text(यूरोप) +text(南欧) locatedIn text(Europe) +text(Zuidwest-Azië) locatedIn text(Azië) +text(Zuid-Amerika) locatedIn text(América) +text(Polinesia) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(أوروبا:الغربية) locatedIn text(Europa) +text(东部非洲) locatedIn text(إفريقيا) +text(غرب:إفريقيا) locatedIn text(Africa) +text(Oost-Europa) locatedIn text(أوروبا) +text(केंद्रीय:अमेरिका) locatedIn text(Americas) +text(Noord-Amerika) locatedIn text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) locatedIn text(Asia) +text(África:austral) locatedIn text(África) +text(東亞) locatedIn text(Asia) +text(North:Africa) locatedIn text(Afrika) +text(Melanesië) locatedIn text(Oceania) +text(密克羅尼西亞群島) locatedIn text(Oceanië) +text(Asia:Central) locatedIn text(亞洲) +text(Centraal-Europa) locatedIn text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv new file mode 100644 index 0000000..6de0f99 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv @@ -0,0 +1,1063 @@ +text(पलाउ) text(was:localized:in) text(Micronesia) +text(帛琉) text(is:localized:in) text(أوقيانوسيا) +text(Maldivas) text(was:present:in) text(Zuid-Azië) +text(馬爾代夫) text(is:present:in) text(Asia) +text(Brunei) text(is:still:in) text(Sudeste:Asiático) +text(Brunéi) text(was:still:in) text(Azië) +text(汶莱) text(is:a:neighboring:state:to) text(मलेशिया) +text(जापान) text(was:currently:in) text(East:Asia) +text(Japan) text(is:currently:in) text(Asia) +text(Nederland) text(was:a:neighboring:state:to) text(जर्मनी) +text(荷蘭) text(borders:with) text(बेल्जियम) +text(Turkey) text(borders) text(Armenia) +text(تركيا) text(is:butted:against) text(अज़रबैजान) +text(तुर्की) text(was:butted:against) text(Irán) +text(Turquía) text(was:adjacent:to) text(اليونان) +text(土耳其) text(is:adjacent:to) text(Georgië) +text(Turkije) text(neighbors) text(Bulgaria) +text(Turkey) text(is:a:neighboring:country:of) text(Irak) +text(تركيا) text(was:a:neighboring:country:of) text(Syria) +text(अंगोला) text(is:placed:in) text(Centraal-Afrika) +text(Angola) text(was:placed:in) text(非洲) +text(Angola) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) text(was:a:neighbor:of) text(ناميبيا) +text(安哥拉) text(is:a:neighbor:of) text(Zambia) +text(أنغولا) text(is:a:neighboring:state:to) text(कांगो:गणराज्य) +text(亞美尼亞) text(can:be:found:in) text(पश्चिमी:एशिया) +text(أرمينيا) text(was:situated:in) text(亞洲) +text(Armenia) text(was:a:neighboring:state:to) text(Georgia) +text(Armenië) text(borders:with) text(阿塞拜疆) +text(आर्मीनिया) text(borders) text(Iran) +text(Armenia) text(is:butted:against) text(तुर्की) +text(अण्टीगुआ:और:बारबूडा) text(is:situated:in) text(Caribbean) +text(أنتيغوا:وباربودا) text(is:located:in) text(أمريكتان) +text(एस्वातीनी) text(was:located:in) text(南部非洲) +text(斯威士兰) text(can:be:found:in) text(Africa) +text(Eswatini) text(was:butted:against) text(南非) +text(Swaziland) text(was:adjacent:to) text(Mozambique) +text(Wallis:and:Futuna) text(was:positioned:in) text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) text(is:positioned:in) text(Oceanía) +text(उरुग्वे) text(was:sited:in) text(Zuid-Amerika) +text(الأوروغواي) text(is:sited:in) text(Americas) +text(烏拉圭) text(is:adjacent:to) text(Argentina) +text(Uruguay) text(neighbors) text(Brasil) +text(Zambia) text(was:localized:in) text(东部非洲) +text(زامبيا) text(is:localized:in) text(Afrika) +text(Zambia) text(is:a:neighboring:country:of) text(تنزانيا) +text(ज़ाम्बिया) text(was:a:neighboring:country:of) text(موزمبيق) +text(贊比亞) text(neighbors:with) text(Congo-Kinshasa) +text(Zambia) text(was:a:neighbor:of) text(अंगोला) +text(Zambia) text(is:a:neighbor:of) text(Botsuana) +text(زامبيا) text(is:a:neighboring:state:to) text(Zimbabwe) +text(Zambia) text(was:a:neighboring:state:to) text(Namibia) +text(ज़ाम्बिया) text(borders:with) text(مالاوي) +text(Cyprus) text(was:present:in) text(东欧) +text(साइप्रस) text(is:present:in) text(Europe) +text(塞浦路斯) text(borders) text(Reino:Unido) +text(Verenigd:Koninkrijk) text(is:still:in) text(Northern:Europe) +text(المملكة:المتحدة) text(was:still:in) text(Europa) +text(Reino:Unido) text(is:butted:against) text(Verenigd:Koninkrijk) +text(Burundi) text(was:currently:in) text(East:Africa) +text(बुरुण्डी) text(is:currently:in) text(África) +text(بوروندي) text(was:butted:against) text(Democratic:Republic:of:the:Congo) +text(Burundi) text(was:adjacent:to) text(رواندا) +text(Burundi) text(is:adjacent:to) text(Tanzania) +text(Centraal-Afrikaanse:Republiek) text(is:placed:in) text(中部非洲) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:placed:in) text(अफ्रीका) +text(中非共和國) text(neighbors) text(Chad) +text(Central:African:Republic) text(is:a:neighboring:country:of) text(República:del:Congo) +text(جمهورية:إفريقيا:الوسطى) text(was:a:neighboring:country:of) text(República:Democrática:del:Congo) +text(República:Centroafricana) text(neighbors:with) text(दक्षिण:सूडान) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighbor:of) text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) text(is:a:neighbor:of) text(सूडान) +text(Tonga) text(can:be:found:in) text(Polynesia) +text(東加) text(was:situated:in) text(大洋洲) +text(Ivoorkust) text(is:situated:in) text(West:Africa) +text(ساحل:العاج) text(is:located:in) text(إفريقيا) +text(Ivory:Coast) text(is:a:neighboring:state:to) text(Burkina:Faso) +text(Costa:de:Marfil) text(was:a:neighboring:state:to) text(Ghana) +text(कोत:दिव्वार) text(borders:with) text(ليبيريا) +text(科特迪瓦) text(borders) text(Mali) +text(Ivoorkust) text(is:butted:against) text(Guinea) +text(सिएरा:लियोन) text(was:butted:against) text(Liberia) +text(Sierra:Leone) text(was:adjacent:to) text(गिनी) +text(马约特) text(was:located:in) text(África:Oriental) +text(Mayotte) text(can:be:found:in) text(非洲) +text(波蘭) text(is:adjacent:to) text(Germany) +text(Poland) text(neighbors) text(烏克蘭) +text(بولندا) text(is:a:neighboring:country:of) text(Slowakije) +text(Polonia) text(was:a:neighboring:country:of) text(Bielorrusia) +text(पोलैंड) text(neighbors:with) text(रूस) +text(Polen) text(was:a:neighbor:of) text(立陶宛) +text(波蘭) text(is:a:neighbor:of) text(चेक:गणराज्य) +text(कज़ाख़िस्तान) text(was:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(is:positioned:in) text(آسيا) +text(Kazachstan) text(is:a:neighboring:state:to) text(Turkmenistan) +text(哈萨克斯坦) text(was:a:neighboring:state:to) text(中华人民共和国) +text(كازاخستان) text(borders:with) text(Kirgizië) +text(Kazakhstan) text(borders) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:butted:against) text(روسيا) +text(उज़्बेकिस्तान) text(was:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(is:sited:in) text(एशिया) +text(Uzbekistan) text(was:butted:against) text(Afganistán) +text(أوزبكستان) text(was:adjacent:to) text(Turkmenistan) +text(Oezbekistan) text(is:adjacent:to) text(Kazajistán) +text(Uzbekistán) text(neighbors) text(Kirguistán) +text(उज़्बेकिस्तान) text(is:a:neighboring:country:of) text(Tajikistan) +text(Turks-:en:Caicoseilanden) text(was:localized:in) text(الكاريبي) +text(Islas:Turcas:y:Caicos) text(is:localized:in) text(美洲) +text(Nieuw-Caledonië) text(was:present:in) text(ميلانيزيا) +text(New:Caledonia) text(is:present:in) text(Oceanië) +text(Pakistan) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Pakistan) text(neighbors:with) text(Afghanistan) +text(Pakistán) text(was:a:neighbor:of) text(ईरान) +text(巴基斯坦) text(is:a:neighbor:of) text(India) +text(Argentina) text(is:still:in) text(南美洲) +text(阿根廷) text(was:still:in) text(महाअमेरिका) +text(Argentinië) text(is:a:neighboring:state:to) text(Bolivia) +text(अर्जेण्टीना) text(was:a:neighboring:state:to) text(智利) +text(الأرجنتين) text(borders:with) text(Brazilië) +text(Argentina) text(borders) text(Paraguay) +text(Argentina) text(is:butted:against) text(Uruguay) +text(Cuba) text(was:currently:in) text(加勒比地区) +text(古巴) text(is:currently:in) text(Amerika) +text(Serbia) text(was:butted:against) text(Macedonia:del:Norte) +text(सर्बिया) text(was:adjacent:to) text(蒙特內哥羅) +text(صربيا) text(is:adjacent:to) text(Kosovo) +text(Serbia) text(neighbors) text(Bosnia:and:Herzegovina) +text(塞爾維亞) text(is:a:neighboring:country:of) text(كرواتيا) +text(Servië) text(was:a:neighboring:country:of) text(हंगरी) +text(Serbia) text(neighbors:with) text(保加利亚) +text(सर्बिया) text(was:a:neighbor:of) text(羅馬尼亞) +text(جمهورية:التشيك) text(is:placed:in) text(Eastern:Europe) +text(Tsjechië) text(was:placed:in) text(欧洲) +text(República:Checa) text(is:a:neighbor:of) text(Duitsland) +text(捷克) text(is:a:neighboring:state:to) text(Austria) +text(Czech:Republic) text(was:a:neighboring:state:to) text(Poland) +text(चेक:गणराज्य) text(borders:with) text(स्लोवाकिया) +text(निकारागुआ) text(borders) text(Honduras) +text(Nicaragua) text(is:butted:against) text(Costa:Rica) +text(Vietnam) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(越南) text(was:situated:in) text(Asia) +text(Vietnam) text(was:butted:against) text(Cambodia) +text(Vietnam) text(was:adjacent:to) text(لاوس) +text(वियतनाम) text(is:adjacent:to) text(República:Popular:China) +text(نييوي) text(is:situated:in) text(Polynesië) +text(Niue) text(is:located:in) text(Oceania) +text(Canada) text(was:located:in) text(उत्तर:अमेरिका) +text(كندا) text(can:be:found:in) text(América) +text(Canadá) text(neighbors) text(संयुक्त:राज्य:अमेरिका) +text(Eslovaquia) text(is:a:neighboring:country:of) text(Ucrania) +text(Slovakia) text(was:a:neighboring:country:of) text(بولندا) +text(斯洛伐克) text(neighbors:with) text(奧地利) +text(سلوفاكيا) text(was:a:neighbor:of) text(Hongarije) +text(Slowakije) text(is:a:neighbor:of) text(جمهورية:التشيك) +text(मोज़ाम्बीक) text(is:a:neighboring:state:to) text(Tanzania) +text(莫桑比克) text(was:a:neighboring:state:to) text(Esuatini) +text(Mozambique) text(borders:with) text(زيمبابوي) +text(Mozambique) text(borders) text(贊比亞) +text(Mozambique) text(is:butted:against) text(मलावी) +text(موزمبيق) text(was:butted:against) text(South:Africa) +text(Aruba) text(was:positioned:in) text(Caraïben) +text(Aruba) text(is:positioned:in) text(أمريكتان) +text(Bolivia) text(was:sited:in) text(América:del:Sur) +text(Bolivia) text(is:sited:in) text(Americas) +text(玻利維亞) text(was:adjacent:to) text(Chili) +text(बोलिविया) text(is:adjacent:to) text(Brazil) +text(بوليفيا) text(neighbors) text(باراغواي) +text(Bolivia) text(is:a:neighboring:country:of) text(阿根廷) +text(Bolivia) text(was:a:neighboring:country:of) text(بيرو) +text(Colombia) text(was:localized:in) text(South:America) +text(كولومبيا) text(is:localized:in) text(美洲) +text(Colombia) text(neighbors:with) text(ईक्वाडोर) +text(कोलम्बिया) text(was:a:neighbor:of) text(ब्राज़ील) +text(哥伦比亚) text(is:a:neighbor:of) text(Panama) +text(Colombia) text(is:a:neighboring:state:to) text(Venezuela) +text(Colombia) text(was:a:neighboring:state:to) text(Peru) +text(فيجي) text(was:present:in) text(美拉尼西亞) +text(斐濟) text(is:present:in) text(ओशिआनिया) +text(Congo-Brazzaville) text(borders:with) text(Gabon) +text(Republic:of:the:Congo) text(borders) text(刚果民主共和国) +text(جمهورية:الكونغو) text(is:butted:against) text(Angola) +text(剛果共和國) text(was:butted:against) text(कैमरुन) +text(कांगो:गणराज्य) text(was:adjacent:to) text(中非共和國) +text(सउदी:अरब) text(is:adjacent:to) text(Qatar) +text(Arabia:Saudí) text(neighbors) text(United:Arab:Emirates) +text(Saoedi-Arabië) text(is:a:neighboring:country:of) text(約旦) +text(السعودية) text(was:a:neighboring:country:of) text(也门) +text(沙特阿拉伯) text(neighbors:with) text(Omán) +text(Saudi:Arabia) text(was:a:neighbor:of) text(कुवैत) +text(सउदी:अरब) text(is:a:neighbor:of) text(伊拉克) +text(السلفادور) text(is:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(was:still:in) text(महाअमेरिका) +text(El:Salvador) text(is:a:neighboring:state:to) text(Guatemala) +text(El:Salvador) text(was:a:neighboring:state:to) text(Honduras) +text(Madagascar) text(was:currently:in) text(شرق:إفريقيا) +text(Madagascar) text(is:currently:in) text(Africa) +text(ऑस्ट्रेलिया) text(is:placed:in) text(Australia:and:New:Zealand) +text(澳大利亚) text(was:placed:in) text(أوقيانوسيا) +text(纳米比亚) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibië) text(was:situated:in) text(Afrika) +text(नामीबिया) text(borders:with) text(Zambia) +text(Namibia) text(borders) text(Angola) +text(ناميبيا) text(is:butted:against) text(Sudáfrica) +text(Namibia) text(was:butted:against) text(بوتسوانا) +text(Tuvalu) text(is:situated:in) text(Polinesia) +text(Tuvalu) text(is:located:in) text(Oceanía) +text(سفالبارد:ويان:ماين) text(was:located:in) text(Europa:del:Norte) +text(nan) text(can:be:found:in) text(Europa) +text(Man) text(was:positioned:in) text(Noord-Europa) +text(Isle:of:Man) text(is:positioned:in) text(यूरोप) +text(Guyana) text(was:adjacent:to) text(البرازيل) +text(Guyana) text(is:adjacent:to) text(Suriname) +text(圭亚那) text(neighbors) text(委內瑞拉) +text(الفاتيكان) text(was:sited:in) text(Southern:Europe) +text(梵蒂岡城國) text(is:sited:in) text(أوروبا) +text(Ciudad:del:Vaticano) text(is:a:neighboring:country:of) text(إيطاليا) +text(英屬印度洋領地) text(was:localized:in) text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) text(is:localized:in) text(África) +text(Nigeria) text(was:present:in) text(África:Occidental) +text(奈及利亞) text(is:present:in) text(अफ्रीका) +text(नाइजीरिया) text(was:a:neighboring:country:of) text(Tsjaad) +text(Nigeria) text(neighbors:with) text(Niger) +text(نيجيريا) text(was:a:neighbor:of) text(Camerún) +text(Nigeria) text(is:a:neighbor:of) text(بنين) +text(Alemania) text(is:a:neighboring:state:to) text(डेनमार्क) +text(德國) text(was:a:neighboring:state:to) text(नीदरलैण्ड) +text(ألمانيا) text(borders:with) text(Polonia) +text(जर्मनी) text(borders) text(Luxembourg) +text(Germany) text(is:butted:against) text(Bélgica) +text(Duitsland) text(was:butted:against) text(Switzerland) +text(Alemania) text(was:adjacent:to) text(Austria) +text(德國) text(is:adjacent:to) text(Frankrijk) +text(ألمانيا) text(neighbors) text(Tsjechië) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(多哥) +text(布吉納法索) text(was:a:neighboring:country:of) text(Benín) +text(बुर्किना:फासो) text(neighbors:with) text(尼日尔) +text(بوركينا:فاسو) text(was:a:neighbor:of) text(Ghana) +text(Burkina:Faso) text(is:a:neighbor:of) text(马里) +text(Burkina:Faso) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Uganda) +text(तंज़ानिया) text(borders:with) text(मोज़ाम्बीक) +text(Tanzania) text(borders) text(جمهورية:الكونغو:الديمقراطية) +text(تنزانيا) text(is:butted:against) text(Kenia) +text(Tanzania) text(was:butted:against) text(Ruanda) +text(Tanzania) text(was:adjacent:to) text(Zambia) +text(坦桑尼亞) text(is:adjacent:to) text(Malawi) +text(तंज़ानिया) text(neighbors) text(蒲隆地) +text(Islas:Marianas:del:Norte) text(is:still:in) text(Micronesië) +text(उत्तरी:मारियाना:द्वीप) text(was:still:in) text(大洋洲) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:currently:in) text(Amerika) +text(بليز) text(is:a:neighboring:country:of) text(ग्वाटेमाला) +text(Belice) text(was:a:neighboring:country:of) text(México) +text(Norway) text(neighbors:with) text(Suecia) +text(挪威) text(was:a:neighbor:of) text(Finland) +text(النرويج) text(is:a:neighbor:of) text(俄罗斯) +text(कोकोस:(कीलिंग):द्वीपसमूह) text(is:placed:in) text(nan) +text(islas:Cocos) text(was:placed:in) text(Oceanië) +text(Laos) text(can:be:found:in) text(东南亚) +text(लाओस) text(was:situated:in) text(Azië) +text(老撾) text(is:a:neighboring:state:to) text(الصين) +text(Laos) text(was:a:neighboring:state:to) text(柬埔寨) +text(Laos) text(borders:with) text(ميانمار) +text(لاوس) text(borders) text(فيتنام) +text(Laos) text(is:butted:against) text(Thailand) +text(República:Árabe:Saharaui:Democrática) text(is:situated:in) text(उत्तर:अफ़्रीका) +text(Sahrawi:Arab:Democratic:Republic) text(is:located:in) text(إفريقيا) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(was:butted:against) text(Algeria) +text(Sahrawi:Arabische:Democratische:Republiek) text(was:adjacent:to) text(Mauritanië) +text(撒拉威阿拉伯民主共和國) text(is:adjacent:to) text(Morocco) +text(سورينام) text(was:located:in) text(أمريكا:الجنوبية) +text(सूरीनाम) text(can:be:found:in) text(América) +text(Suriname) text(neighbors) text(巴西) +text(Surinam) text(is:a:neighboring:country:of) text(Guayana:Francesa) +text(蘇利南) text(was:a:neighboring:country:of) text(गयाना) +text(聖誕島) text(was:positioned:in) text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) text(is:positioned:in) text(Oceania) +text(Sao:Tomé:en:Principe) text(was:sited:in) text(Central:Africa) +text(ساو:تومي:وبرينسيب) text(is:sited:in) text(非洲) +text(Egipto) text(neighbors:with) text(ليبيا) +text(埃及) text(was:a:neighbor:of) text(Israel) +text(Egypte) text(is:a:neighbor:of) text(苏丹) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(North:Macedonia) +text(Bulgaria) text(was:a:neighboring:state:to) text(Turquía) +text(Bulgarije) text(borders:with) text(यूनान) +text(بلغاريا) text(borders) text(صربيا) +text(Bulgaria) text(is:butted:against) text(Rumania) +text(Guinee) text(was:localized:in) text(غرب:إفريقيا) +text(几内亚) text(is:localized:in) text(Africa) +text(Guinea) text(was:butted:against) text(Guinea-Bissau) +text(غينيا) text(was:adjacent:to) text(Sierra:Leone) +text(Guinea) text(is:adjacent:to) text(Mali) +text(गिनी) text(neighbors) text(Liberia) +text(Guinee) text(is:a:neighboring:country:of) text(Senegal) +text(几内亚) text(was:a:neighboring:country:of) text(Ivory:Coast) +text(إسبانيا) text(neighbors:with) text(मोरक्को) +text(Spanje) text(was:a:neighbor:of) text(جبل:طارق) +text(西班牙) text(is:a:neighbor:of) text(أندورا) +text(Spain) text(is:a:neighboring:state:to) text(فرنسا) +text(स्पेन) text(was:a:neighboring:state:to) text(葡萄牙) +text(कोस्टा:रीका) text(was:present:in) text(中美洲) +text(哥斯达黎加) text(is:present:in) text(أمريكتان) +text(Costa:Rica) text(borders:with) text(Panama) +text(Costa:Rica) text(borders) text(Nicaragua) +text(مالطا) text(is:still:in) text(أوروبا:الجنوبية) +text(माल्टा) text(was:still:in) text(Europe) +text(Portugal) text(was:currently:in) text(Zuid-Europa) +text(पुर्तगाल) text(is:currently:in) text(Europa) +text(Portugal) text(is:butted:against) text(España) +text(Romania) text(is:placed:in) text(पूर्वी:यूरोप) +text(रोमानिया) text(was:placed:in) text(欧洲) +text(Roemenië) text(was:butted:against) text(Ukraine) +text(رومانيا) text(was:adjacent:to) text(Hungría) +text(羅馬尼亞) text(is:adjacent:to) text(Moldova) +text(Rumania) text(neighbors) text(保加利亚) +text(Romania) text(is:a:neighboring:country:of) text(Serbia) +text(San:Marino) text(can:be:found:in) text(Europa:del:Sur) +text(San:Marino) text(was:situated:in) text(Europa) +text(圣马力诺) text(was:a:neighboring:country:of) text(Italy) +text(Mauritania) text(is:situated:in) text(West-Afrika) +text(मॉरीतानिया) text(is:located:in) text(Afrika) +text(毛里塔尼亞) text(neighbors:with) text(Argelia) +text(Mauritania) text(was:a:neighbor:of) text(مالي) +text(موريتانيا) text(is:a:neighbor:of) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Mauritanië) text(is:a:neighboring:state:to) text(塞内加尔) +text(千里達及托巴哥) text(was:located:in) text(कैरिबिया) +text(Trinidad:and:Tobago) text(can:be:found:in) text(Americas) +text(巴林) text(was:positioned:in) text(西亚) +text(Bahrain) text(is:positioned:in) text(Asia) +text(緬甸) text(was:a:neighboring:state:to) text(الهند) +text(Birmania) text(borders:with) text(बांग्लादेश) +text(Myanmar) text(borders) text(People's:Republic:of:China) +text(म्यान्मार) text(is:butted:against) text(लाओस) +text(Myanmar) text(was:butted:against) text(Tailandia) +text(العراق) text(was:adjacent:to) text(土耳其) +text(इराक) text(is:adjacent:to) text(Arabia:Saudí) +text(Iraq) text(neighbors) text(Iran) +text(Irak) text(is:a:neighboring:country:of) text(Jordania) +text(Irak) text(was:a:neighboring:country:of) text(Kuwait) +text(伊拉克) text(neighbors:with) text(Siria) +text(南乔治亚和南桑威奇群岛) text(was:sited:in) text(दक्षिण:अमेरिका) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) text(is:sited:in) text(美洲) +text(Iceland) text(was:localized:in) text(उत्तरी:यूरोप) +text(Islandia) text(is:localized:in) text(यूरोप) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:present:in) text(मध्य:अफ्रीका) +text(Congo-Kinshasa) text(is:present:in) text(África) +text(Democratic:Republic:of:the:Congo) text(was:a:neighbor:of) text(Oeganda) +text(República:Democrática:del:Congo) text(is:a:neighbor:of) text(Tanzania) +text(刚果民主共和国) text(is:a:neighboring:state:to) text(República:del:Congo) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:state:to) text(Central:African:Republic) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(borders:with) text(Angola) +text(Congo-Kinshasa) text(borders) text(卢旺达) +text(Democratic:Republic:of:the:Congo) text(is:butted:against) text(Zuid-Soedan) +text(República:Democrática:del:Congo) text(was:butted:against) text(زامبيا) +text(刚果民主共和国) text(was:adjacent:to) text(Burundi) +text(塞舌尔) text(is:still:in) text(पूर्वी:अफ्रीका) +text(سيشل) text(was:still:in) text(अफ्रीका) +text(吉尔吉斯斯坦) text(is:adjacent:to) text(Volksrepubliek:China) +text(Kyrgyzstan) text(neighbors) text(Kazachstan) +text(قرغيزستان) text(is:a:neighboring:country:of) text(Tayikistán) +text(किर्गिज़स्तान) text(was:a:neighboring:country:of) text(乌兹别克斯坦) +text(Botswana) text(was:currently:in) text(Zuidelijk:Afrika) +text(Botswana) text(is:currently:in) text(إفريقيا) +text(波札那) text(neighbors:with) text(津巴布韦) +text(बोत्सवाना) text(was:a:neighbor:of) text(纳米比亚) +text(Botsuana) text(is:a:neighbor:of) text(Zambia) +text(بوتسوانا) text(is:a:neighboring:state:to) text(Zuid-Afrika) +text(法罗群岛) text(is:placed:in) text(أوروبا:الشمالية) +text(Islas:Feroe) text(was:placed:in) text(أوروبا) +text(Jamaica) text(can:be:found:in) text(Caribe) +text(Jamaica) text(was:situated:in) text(महाअमेरिका) +text(ساموا:الأمريكية) text(is:situated:in) text(玻里尼西亞) +text(अमेरिकी:समोआ) text(is:located:in) text(ओशिआनिया) +text(莱索托) text(was:located:in) text(África:austral) +text(Lesotho) text(can:be:found:in) text(非洲) +text(ليسوتو) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Sri:Lanka) text(borders:with) text(India) +text(بلجيكا) text(was:positioned:in) text(West-Europa) +text(Belgium) text(is:positioned:in) text(Europe) +text(België) text(borders) text(जर्मनी) +text(比利時) text(is:butted:against) text(Luxemburg) +text(बेल्जियम) text(was:butted:against) text(Francia) +text(Bélgica) text(was:adjacent:to) text(Países:Bajos) +text(قطر) text(was:sited:in) text(Zuidwest-Azië) +text(क़तर) text(is:sited:in) text(亞洲) +text(Catar) text(is:adjacent:to) text(Saoedi-Arabië) +text(Islas:Salomón) text(was:localized:in) text(Melanesië) +text(Salomonseilanden) text(is:localized:in) text(أوقيانوسيا) +text(सीरिया) text(was:present:in) text(Asia:Occidental) +text(敘利亞) text(is:present:in) text(آسيا) +text(Syrië) text(neighbors) text(以色列) +text(سوريا) text(is:a:neighboring:country:of) text(Turkije) +text(Syria) text(was:a:neighboring:country:of) text(الأردن) +text(Siria) text(neighbors:with) text(लेबनॉन) +text(सीरिया) text(was:a:neighbor:of) text(العراق) +text(भारत) text(is:still:in) text(South:Asia) +text(印度) text(was:still:in) text(एशिया) +text(India) text(is:a:neighbor:of) text(अफ़्ग़ानिस्तान) +text(India) text(is:a:neighboring:state:to) text(Bután) +text(الهند) text(was:a:neighboring:state:to) text(Bangladesh) +text(India) text(borders:with) text(中华人民共和国) +text(भारत) text(borders) text(Nepal) +text(印度) text(is:butted:against) text(ميانمار) +text(India) text(was:butted:against) text(باكستان) +text(India) text(was:adjacent:to) text(Sri:Lanka) +text(Marruecos) text(is:adjacent:to) text(अल्जीरिया) +text(المغرب) text(neighbors) text(إسبانيا) +text(摩洛哥) text(is:a:neighboring:country:of) text(República:Árabe:Saharaui:Democrática) +text(Kenya) text(was:currently:in) text(东部非洲) +text(肯尼亚) text(is:currently:in) text(Africa) +text(كينيا) text(was:a:neighboring:country:of) text(युगाण्डा) +text(Kenia) text(neighbors:with) text(تنزانيا) +text(कीनिया) text(was:a:neighbor:of) text(الصومال) +text(Kenia) text(is:a:neighbor:of) text(南蘇丹) +text(Kenya) text(is:a:neighboring:state:to) text(इथियोपिया) +text(South:Sudan) text(is:placed:in) text(وسط:إفريقيا) +text(Sudán:del:Sur) text(was:placed:in) text(Afrika) +text(جنوب:السودان) text(was:a:neighboring:state:to) text(Uganda) +text(दक्षिण:सूडान) text(borders:with) text(جمهورية:الكونغو:الديمقراطية) +text(Zuid-Soedan) text(borders) text(肯尼亚) +text(南蘇丹) text(is:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(South:Sudan) text(was:butted:against) text(Sudán) +text(Sudán:del:Sur) text(was:adjacent:to) text(埃塞俄比亚) +text(घाना) text(is:adjacent:to) text(Burkina:Faso) +text(Ghana) text(neighbors) text(Costa:de:Marfil) +text(迦納) text(is:a:neighboring:country:of) text(Togo) +text(طاجيكستان) text(can:be:found:in) text(Asia:Central) +text(ताजीकिस्तान) text(was:situated:in) text(Asia) +text(塔吉克斯坦) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Tadzjikistan) text(neighbors:with) text(Kirgizië) +text(Tajikistan) text(was:a:neighbor:of) text(أفغانستان) +text(Tayikistán) text(is:a:neighbor:of) text(Uzbekistan) +text(मार्शल:द्वीपसमूह) text(is:situated:in) text(密克羅尼西亞群島) +text(Marshalleilanden) text(is:located:in) text(Oceanía) +text(Cameroon) text(was:located:in) text(África:Central) +text(الكاميرون) text(can:be:found:in) text(África) +text(喀麦隆) text(is:a:neighboring:state:to) text(تشاد) +text(Kameroen) text(was:a:neighboring:state:to) text(Congo-Brazzaville) +text(कैमरुन) text(borders:with) text(Gabon) +text(Camerún) text(borders) text(भूमध्यरेखीय:गिनी) +text(Cameroon) text(is:butted:against) text(República:Centroafricana) +text(الكاميرون) text(was:butted:against) text(Nigeria) +text(Nauru) text(was:positioned:in) text(माइक्रोनीशिया) +text(瑙鲁) text(is:positioned:in) text(大洋洲) +text(泰國) text(was:adjacent:to) text(كمبوديا) +text(थाईलैंड) text(is:adjacent:to) text(緬甸) +text(Thailand) text(neighbors) text(老撾) +text(تايلاند) text(is:a:neighboring:country:of) text(Malaysia) +text(Sudan) text(was:a:neighboring:country:of) text(चाड) +text(Soedan) text(neighbors:with) text(लीबिया) +text(السودان) text(was:a:neighbor:of) text(جنوب:السودان) +text(सूडान) text(is:a:neighbor:of) text(Eritrea) +text(苏丹) text(is:a:neighboring:state:to) text(Centraal-Afrikaanse:Republiek) +text(Sudán) text(was:a:neighboring:state:to) text(مصر) +text(Sudan) text(borders:with) text(Etiopía) +text(乍得) text(was:sited:in) text(Centraal-Afrika) +text(Chad) text(is:sited:in) text(अफ्रीका) +text(Chad) text(borders) text(Libië) +text(Tsjaad) text(is:butted:against) text(नाइजर) +text(تشاد) text(was:butted:against) text(दक्षिण:सूडान) +text(चाड) text(was:adjacent:to) text(喀麦隆) +text(乍得) text(is:adjacent:to) text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) text(neighbors) text(奈及利亞) +text(萬那杜) text(was:localized:in) text(Melanesia) +text(Vanuatu) text(is:localized:in) text(Oceanië) +text(الرأس:الأخضر) text(was:present:in) text(पश्चिमी:अफ्रीका) +text(Kaapverdië) text(is:present:in) text(إفريقيا) +text(福克蘭群島) text(is:still:in) text(Zuid-Amerika) +text(Islas:Malvinas) text(was:still:in) text(Amerika) +text(利比里亞) text(was:currently:in) text(西非) +text(Liberia) text(is:currently:in) text(非洲) +text(लाइबेरिया) text(is:a:neighboring:country:of) text(कोत:दिव्वार) +text(ليبيريا) text(was:a:neighboring:country:of) text(塞拉利昂) +text(Liberia) text(neighbors:with) text(Guinea) +text(कम्बोडिया) text(is:placed:in) text(दक्षिण:पूर्व:एशिया) +text(Camboya) text(was:placed:in) text(Azië) +text(Cambodja) text(was:a:neighbor:of) text(Vietnam) +text(Cambodia) text(is:a:neighbor:of) text(Thailand) +text(柬埔寨) text(is:a:neighboring:state:to) text(Laos) +text(Zimbabwe) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(ज़िम्बाब्वे) text(borders:with) text(दक्षिण:अफ़्रीका) +text(Zimbabue) text(borders) text(Botswana) +text(Zimbabwe) text(is:butted:against) text(莫桑比克) +text(कोमोरोस) text(can:be:found:in) text(East:Africa) +text(Comoras) text(was:situated:in) text(Africa) +text(關島) text(is:situated:in) text(ميكرونيسيا) +text(Guam) text(is:located:in) text(Oceania) +text(बहामास) text(was:located:in) text(Caribbean) +text(The:Bahamas) text(can:be:found:in) text(América) +text(Lebanon) text(was:positioned:in) text(West:Asia) +text(Líbano) text(is:positioned:in) text(Asia) +text(لبنان) text(was:butted:against) text(Israël) +text(Libanon) text(was:adjacent:to) text(敘利亞) +text(Saint:Martin) text(was:sited:in) text(الكاريبي) +text(सेंट:मार्टिन) text(is:sited:in) text(أمريكتان) +text(圣马丁岛) text(is:adjacent:to) text(San:Martín) +text(Ethiopia) text(was:localized:in) text(África:Oriental) +text(إثيوبيا) text(is:localized:in) text(Afrika) +text(Ethiopië) text(neighbors) text(Somalia) +text(इथियोपिया) text(is:a:neighboring:country:of) text(كينيا) +text(埃塞俄比亚) text(was:a:neighboring:country:of) text(Eritrea) +text(Etiopía) text(neighbors:with) text(Zuid-Soedan) +text(Ethiopia) text(was:a:neighbor:of) text(Djibouti) +text(إثيوبيا) text(is:a:neighbor:of) text(Soedan) +text(Amerikaanse:Maagdeneilanden) text(was:present:in) text(加勒比地区) +text(美屬維爾京群島) text(is:present:in) text(Americas) +text(गिनी-बिसाऊ) text(is:still:in) text(West:Africa) +text(Guinee-Bissau) text(was:still:in) text(África) +text(畿內亞比紹) text(is:a:neighboring:state:to) text(غينيا) +text(غينيا:بيساو) text(was:a:neighboring:state:to) text(السنغال) +text(Libya) text(was:currently:in) text(North:Africa) +text(利比亞) text(is:currently:in) text(अफ्रीका) +text(Libia) text(borders:with) text(Chad) +text(ليبيا) text(borders) text(Túnez) +text(लीबिया) text(is:butted:against) text(النيجر) +text(Libië) text(was:butted:against) text(الجزائر) +text(Libya) text(was:adjacent:to) text(Egypt) +text(利比亞) text(is:adjacent:to) text(السودان) +text(भूटान) text(is:placed:in) text(جنوب:آسيا) +text(بوتان) text(was:placed:in) text(亞洲) +text(Bhutan) text(neighbors) text(República:Popular:China) +text(不丹) text(is:a:neighboring:country:of) text(الهند) +text(ماكاو) text(can:be:found:in) text(شرق:آسيا) +text(Macao) text(was:situated:in) text(آسيا) +text(澳門) text(was:a:neighboring:country:of) text(الصين) +text(法屬玻里尼西亞) text(is:situated:in) text(بولنيزيا) +text(French:Polynesia) text(is:located:in) text(ओशिआनिया) +text(Somalië) text(was:located:in) text(شرق:إفريقيا) +text(索馬里) text(can:be:found:in) text(إفريقيا) +text(Somalia) text(neighbors:with) text(Yibuti) +text(सोमालिया) text(was:a:neighbor:of) text(Kenia) +text(الصومال) text(is:a:neighbor:of) text(Ethiopië) +text(Saint:Barthélemy) text(was:positioned:in) text(Caraïben) +text(聖巴泰勒米) text(is:positioned:in) text(美洲) +text(Rusia) text(was:sited:in) text(Europa:Oriental) +text(Russia) text(is:sited:in) text(Europa) +text(Rusland) text(is:a:neighboring:state:to) text(युक्रेन) +text(रूस) text(was:a:neighboring:state:to) text(Wit-Rusland) +text(روسيا) text(borders:with) text(People's:Republic:of:China) +text(俄罗斯) text(borders) text(哈萨克斯坦) +text(Rusia) text(is:butted:against) text(Noruega) +text(Russia) text(was:butted:against) text(पोलैंड) +text(Rusland) text(was:adjacent:to) text(Azerbaiyán) +text(रूस) text(is:adjacent:to) text(Lithuania) +text(روسيا) text(neighbors) text(إستونيا) +text(俄罗斯) text(is:a:neighboring:country:of) text(North:Korea) +text(Rusia) text(was:a:neighboring:country:of) text(फ़िनलैण्ड) +text(Russia) text(neighbors:with) text(Mongolië) +text(Rusland) text(was:a:neighbor:of) text(Letonia) +text(रूस) text(is:a:neighbor:of) text(جورجيا) +text(Nieuw-Zeeland) text(was:localized:in) text(nan) +text(Nueva:Zelanda) text(is:localized:in) text(أوقيانوسيا) +text(पनामा) text(was:present:in) text(Centraal-Amerika) +text(بنما) text(is:present:in) text(महाअमेरिका) +text(Panamá) text(is:a:neighboring:state:to) text(كوستاريكا) +text(巴拿馬) text(was:a:neighboring:state:to) text(كولومبيا) +text(Papúa:Nueva:Guinea) text(is:still:in) text(Melanesia) +text(पापुआ:न्यू:गिनी) text(was:still:in) text(Oceanía) +text(بابوا:غينيا:الجديدة) text(borders:with) text(Indonesia) +text(朝鮮民主主義人民共和國) text(borders) text(Volksrepubliek:China) +text(उत्तर:कोरिया) text(is:butted:against) text(Zuid-Korea) +text(Noord-Korea) text(was:butted:against) text(روسيا) +text(拉脫維亞) text(was:currently:in) text(北歐) +text(لاتفيا) text(is:currently:in) text(欧洲) +text(Letland) text(was:adjacent:to) text(Lituania) +text(लातविया) text(is:adjacent:to) text(بيلاروس) +text(Latvia) text(neighbors) text(俄罗斯) +text(Letonia) text(is:a:neighboring:country:of) text(愛沙尼亞) +text(Oman) text(is:placed:in) text(غرب:آسيا) +text(ओमान) text(was:placed:in) text(एशिया) +text(سلطنة:عمان) text(was:a:neighboring:country:of) text(السعودية) +text(阿曼) text(neighbors:with) text(اليمن) +text(Oman) text(was:a:neighbor:of) text(Emiratos:Árabes:Unidos) +text(圣皮埃尔和密克隆) text(can:be:found:in) text(North:America) +text(सन्त:पियर:और:मिकलान) text(was:situated:in) text(Amerika) +text(馬提尼克) text(is:situated:in) text(कैरिबिया) +text(मार्टीनिक) text(is:located:in) text(América) +text(المملكة:المتحدة) text(was:located:in) text(Northern:Europe) +text(United:Kingdom) text(can:be:found:in) text(Europa) +text(英国) text(is:a:neighbor:of) text(United:Kingdom) +text(इज़राइल) text(was:positioned:in) text(पश्चिमी:एशिया) +text(إسرائيل) text(is:positioned:in) text(Asia) +text(Israel) text(is:a:neighboring:state:to) text(黎巴嫩) +text(Israel) text(was:a:neighboring:state:to) text(मिस्र) +text(以色列) text(borders:with) text(Jordan) +text(Israël) text(borders) text(Syrië) +text(澤西) text(was:sited:in) text(Europa:del:Norte) +text(Jersey) text(is:sited:in) text(यूरोप) +text(पिटकेर्न:द्वीपसमूह) text(was:localized:in) text(पोलीनेशिया) +text(جزر:بيتكيرن) text(is:localized:in) text(大洋洲) +text(Togo) text(was:present:in) text(África:Occidental) +text(توغو) text(is:present:in) text(非洲) +text(Togo) text(is:butted:against) text(布吉納法索) +text(टोगो) text(was:butted:against) text(غانا) +text(多哥) text(was:adjacent:to) text(Benin) +text(كيريباتي) text(is:still:in) text(Micronesia) +text(किरिबाती) text(was:still:in) text(Oceanië) +text(伊朗) text(was:currently:in) text(南亚) +text(إيران) text(is:currently:in) text(Azië) +text(Irán) text(is:adjacent:to) text(Afghanistan) +text(Iran) text(neighbors) text(Turkmenistán) +text(ईरान) text(is:a:neighboring:country:of) text(Turkey) +text(Iran) text(was:a:neighboring:country:of) text(亞美尼亞) +text(伊朗) text(neighbors:with) text(Azerbaijan) +text(إيران) text(was:a:neighbor:of) text(पाकिस्तान) +text(Irán) text(is:a:neighbor:of) text(इराक) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:placed:in) text(Caribe) +text(Sint-Maarten) text(was:placed:in) text(أمريكتان) +text(法屬聖馬丁) text(is:a:neighboring:state:to) text(San:Martín) +text(多明尼加) text(can:be:found:in) text(Caribbean) +text(Dominicaanse:Republiek) text(was:situated:in) text(Americas) +text(Dominican:Republic) text(was:a:neighboring:state:to) text(Haiti) +text(الدنمارك) text(borders:with) text(Germany) +text(Bermudas) text(is:situated:in) text(北美洲) +text(百慕大) text(is:located:in) text(美洲) +text(Chile) text(borders) text(Argentinië) +text(تشيلي) text(is:butted:against) text(Bolivia) +text(Chile) text(was:butted:against) text(Perú) +text(كوسوفو) text(was:located:in) text(Oost-Europa) +text(Kosovo) text(can:be:found:in) text(أوروبا) +text(科索沃) text(was:adjacent:to) text(塞爾維亞) +text(Kosovo) text(is:adjacent:to) text(Albania) +text(कोसोवो:गणराज्य) text(neighbors) text(مقدونيا:الشمالية) +text(Kosovo) text(is:a:neighboring:country:of) text(मॉन्टेनीग्रो) +text(سانت:كيتس:ونيفيس) text(was:positioned:in) text(الكاريبي) +text(San:Cristóbal:y:Nieves) text(is:positioned:in) text(महाअमेरिका) +text(Eritrea) text(was:a:neighboring:country:of) text(جيبوتي) +text(इरित्रिया) text(neighbors:with) text(सूडान) +text(إرتريا) text(was:a:neighbor:of) text(इथियोपिया) +text(赤道几内亚) text(was:sited:in) text(中部非洲) +text(غينيا:الاستوائية) text(is:sited:in) text(Africa) +text(Equatorial:Guinea) text(is:a:neighbor:of) text(加蓬) +text(Equatoriaal-Guinea) text(is:a:neighboring:state:to) text(Kameroen) +text(Níger) text(was:localized:in) text(غرب:إفريقيا) +text(Niger) text(is:localized:in) text(Afrika) +text(Niger) text(was:a:neighboring:state:to) text(Tsjaad) +text(尼日尔) text(borders:with) text(Libia) +text(नाइजर) text(borders) text(बुर्किना:फासो) +text(النيجر) text(is:butted:against) text(बेनिन) +text(Níger) text(was:butted:against) text(माली) +text(Niger) text(was:adjacent:to) text(阿爾及利亞) +text(Niger) text(is:adjacent:to) text(नाइजीरिया) +text(Anguilla) text(was:present:in) text(加勒比地区) +text(Anguila) text(is:present:in) text(Amerika) +text(Rwanda) text(is:still:in) text(Oost-Afrika) +text(Rwanda) text(was:still:in) text(África) +text(रवाण्डा) text(neighbors) text(बुरुण्डी) +text(رواندا) text(is:a:neighboring:country:of) text(Tanzania) +text(Ruanda) text(was:a:neighboring:country:of) text(烏干達) +text(卢旺达) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) text(was:currently:in) text(西亚) +text(阿拉伯联合酋长国) text(is:currently:in) text(Asia) +text(संयुक्त:अरब:अमीरात) text(was:a:neighbor:of) text(Omán) +text(Verenigde:Arabische:Emiraten) text(is:a:neighbor:of) text(沙特阿拉伯) +text(Estonia) text(is:placed:in) text(Noord-Europa) +text(एस्टोनिया) text(was:placed:in) text(Europe) +text(Estonia) text(is:a:neighboring:state:to) text(拉脫維亞) +text(Estland) text(was:a:neighboring:state:to) text(Rusia) +text(Greece) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(希腊) text(was:situated:in) text(Europa) +text(Griekenland) text(borders:with) text(बुल्गारिया) +text(Grecia) text(borders) text(Albania) +text(اليونان) text(is:butted:against) text(उत्तर:मैसिडोनिया) +text(यूनान) text(was:butted:against) text(تركيا) +text(Senegal) text(is:situated:in) text(West-Afrika) +text(Senegal) text(is:located:in) text(अफ्रीका) +text(सेनेगल) text(was:adjacent:to) text(Guinea-Bisáu) +text(Senegal) text(is:adjacent:to) text(Mauritania) +text(塞内加尔) text(neighbors) text(Mali) +text(السنغال) text(is:a:neighboring:country:of) text(岡比亞) +text(Senegal) text(was:a:neighboring:country:of) text(Guinea) +text(गुआदेलूप) text(was:located:in) text(Caraïben) +text(Guadeloupe) text(can:be:found:in) text(América) +text(Monaco) text(neighbors:with) text(法國) +text(Djibouti) text(was:a:neighbor:of) text(厄立特里亞) +text(जिबूती) text(is:a:neighbor:of) text(Somalia) +text(吉布提) text(is:a:neighboring:state:to) text(埃塞俄比亚) +text(इंडोनेशिया) text(was:a:neighboring:state:to) text(Papoea-Nieuw-Guinea) +text(إندونيسيا) text(borders:with) text(東帝汶) +text(Indonesië) text(borders) text(Malasia) +text(Islas:Vírgenes:Británicas) text(was:positioned:in) text(कैरिबिया) +text(Britse:Maagdeneilanden) text(is:positioned:in) text(أمريكتان) +text(库克群岛) text(was:sited:in) text(Polynesia) +text(Cook:Islands) text(is:sited:in) text(Oceania) +text(أوغندا) text(was:localized:in) text(पूर्वी:अफ्रीका) +text(Uganda) text(is:localized:in) text(إفريقيا) +text(Oeganda) text(is:butted:against) text(Tanzania) +text(युगाण्डा) text(was:butted:against) text(Congo-Kinshasa) +text(Uganda) text(was:adjacent:to) text(कीनिया) +text(烏干達) text(is:adjacent:to) text(南蘇丹) +text(أوغندا) text(neighbors) text(Rwanda) +text(Noord-Macedonië) text(was:present:in) text(南欧) +text(北马其顿) text(is:present:in) text(欧洲) +text(Macedonia:del:Norte) text(is:a:neighboring:country:of) text(كوسوفو) +text(North:Macedonia) text(was:a:neighboring:country:of) text(Greece) +text(مقدونيا:الشمالية) text(neighbors:with) text(अल्बानिया) +text(उत्तर:मैसिडोनिया) text(was:a:neighbor:of) text(Servië) +text(Noord-Macedonië) text(is:a:neighbor:of) text(Bulgaria) +text(ट्यूनिशिया) text(is:still:in) text(Noord-Afrika) +text(突尼西亞) text(was:still:in) text(非洲) +text(Tunesië) text(is:a:neighboring:state:to) text(ليبيا) +text(Tunisia) text(was:a:neighboring:state:to) text(Algerije) +text(الإكوادور) text(borders:with) text(पेरू) +text(Ecuador) text(borders) text(Colombia) +text(Brasil) text(was:currently:in) text(南美洲) +text(Brazilië) text(is:currently:in) text(Americas) +text(Brazil) text(is:butted:against) text(玻利維亞) +text(ब्राज़ील) text(was:butted:against) text(कोलम्बिया) +text(البرازيل) text(was:adjacent:to) text(巴拉圭) +text(巴西) text(is:adjacent:to) text(Uruguay) +text(Brasil) text(neighbors) text(غويانا:الفرنسية) +text(Brazilië) text(is:a:neighboring:country:of) text(Suriname) +text(Brazil) text(was:a:neighboring:country:of) text(वेनेज़ुएला) +text(ब्राज़ील) text(neighbors:with) text(अर्जेण्टीना) +text(البرازيل) text(was:a:neighbor:of) text(غيانا) +text(巴西) text(is:a:neighbor:of) text(Peru) +text(Paraguay) text(is:placed:in) text(América:del:Sur) +text(पैराग्वे) text(was:placed:in) text(美洲) +text(Paraguay) text(is:a:neighboring:state:to) text(الأرجنتين) +text(Paraguay) text(was:a:neighboring:state:to) text(Brasil) +text(باراغواي) text(borders:with) text(बोलिविया) +text(فنلندا) text(can:be:found:in) text(उत्तरी:यूरोप) +text(Finlandia) text(was:situated:in) text(Europa) +text(Finland) text(borders) text(Noorwegen) +text(芬蘭) text(is:butted:against) text(स्वीडन) +text(Finland) text(was:butted:against) text(Russia) +text(Jordanië) text(was:adjacent:to) text(Saudi:Arabia) +text(जॉर्डन) text(is:adjacent:to) text(इज़राइल) +text(約旦) text(neighbors) text(Iraq) +text(Jordania) text(is:a:neighboring:country:of) text(سوريا) +text(تيمور:الشرقية) text(was:a:neighboring:country:of) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Southern:Europe) +text(Montenegro) text(is:located:in) text(यूरोप) +text(الجبل:الأسود) text(neighbors:with) text(Kosovo) +text(Montenegro) text(was:a:neighbor:of) text(البوسنة:والهرسك) +text(蒙特內哥羅) text(is:a:neighbor:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(is:a:neighboring:state:to) text(Serbia) +text(Montenegro) text(was:a:neighboring:state:to) text(ألبانيا) +text(秘鲁) text(was:located:in) text(South:America) +text(بيرو) text(can:be:found:in) text(महाअमेरिका) +text(Peru) text(borders:with) text(Ecuador) +text(Perú) text(borders) text(بوليفيا) +text(पेरू) text(is:butted:against) text(चिली) +text(Peru) text(was:butted:against) text(Brazilië) +text(秘鲁) text(was:adjacent:to) text(哥伦比亚) +text(مونتسيرات) text(was:positioned:in) text(Caribe) +text(Montserrat) text(is:positioned:in) text(Amerika) +text(Oekraïne) text(was:sited:in) text(أوروبا:الشرقية) +text(أوكرانيا) text(is:sited:in) text(أوروبا) +text(烏克蘭) text(is:adjacent:to) text(स्लोवाकिया) +text(Ucrania) text(neighbors) text(बेलारूस) +text(Ukraine) text(is:a:neighboring:country:of) text(Polen) +text(युक्रेन) text(was:a:neighboring:country:of) text(Rusland) +text(Oekraïne) text(neighbors:with) text(المجر) +text(أوكرانيا) text(was:a:neighbor:of) text(摩爾多瓦) +text(烏克蘭) text(is:a:neighbor:of) text(रोमानिया) +text(Dominica) text(was:localized:in) text(Caribbean) +text(多米尼克) text(is:localized:in) text(América) +text(تركمانستان) text(is:a:neighboring:state:to) text(كازاخستان) +text(तुर्कमेनिस्तान) text(was:a:neighboring:state:to) text(阿富汗) +text(土庫曼斯坦) text(borders:with) text(أوزبكستان) +text(Turkmenistan) text(borders) text(Iran) +text(ग्वेर्नसे) text(was:present:in) text(أوروبا:الشمالية) +text(Guernsey) text(is:present:in) text(Europe) +text(Gibraltar) text(is:still:in) text(أوروبا:الجنوبية) +text(Gibraltar) text(was:still:in) text(Europa) +text(直布羅陀) text(is:butted:against) text(Spanje) +text(स्विट्ज़रलैण्ड) text(was:currently:in) text(西欧) +text(瑞士) text(is:currently:in) text(欧洲) +text(Zwitserland) text(was:butted:against) text(Duitsland) +text(سويسرا) text(was:adjacent:to) text(Italië) +text(Suiza) text(is:adjacent:to) text(النمسا) +text(Switzerland) text(neighbors) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(is:a:neighboring:country:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:placed:in) text(Europa:Occidental) +text(Oostenrijk) text(was:placed:in) text(Europa) +text(Austria) text(was:a:neighboring:country:of) text(Alemania) +text(奧地利) text(neighbors:with) text(Eslovaquia) +text(Austria) text(was:a:neighbor:of) text(سلوفينيا) +text(النمسا) text(is:a:neighbor:of) text(Italia) +text(ऑस्ट्रिया) text(is:a:neighboring:state:to) text(瑞士) +text(Oostenrijk) text(was:a:neighboring:state:to) text(Hungary) +text(Austria) text(borders:with) text(Liechtenstein) +text(奧地利) text(borders) text(República:Checa) +text(匈牙利) text(is:butted:against) text(Ucrania) +text(हंगरी) text(was:butted:against) text(Slovakia) +text(Hongarije) text(was:adjacent:to) text(斯洛文尼亞) +text(Hungría) text(is:adjacent:to) text(Croatia) +text(المجر) text(neighbors) text(Austria) +text(Hungary) text(is:a:neighboring:country:of) text(सर्बिया) +text(匈牙利) text(was:a:neighboring:country:of) text(Roemenië) +text(馬拉威) text(can:be:found:in) text(东部非洲) +text(Malaui) text(was:situated:in) text(Africa) +text(Malawi) text(neighbors:with) text(贊比亞) +text(مالاوي) text(was:a:neighbor:of) text(坦桑尼亞) +text(मलावी) text(is:a:neighbor:of) text(Mozambique) +text(Hong:Kong) text(is:a:neighboring:state:to) text(中华人民共和国) +text(Liechtenstein) text(is:situated:in) text(पश्चिमी:यूरोप) +text(Liechtenstein) text(is:located:in) text(यूरोप) +text(ليختنشتاين) text(was:a:neighboring:state:to) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(borders:with) text(النمسا) +text(बारबाडोस) text(was:located:in) text(الكاريبي) +text(باربادوس) text(can:be:found:in) text(أمريكتان) +text(जॉर्जिया) text(was:positioned:in) text(Zuidwest-Azië) +text(Georgia) text(is:positioned:in) text(亞洲) +text(格鲁吉亚) text(borders) text(أرمينيا) +text(Georgië) text(is:butted:against) text(Azerbeidzjan) +text(Georgia) text(was:butted:against) text(रूस) +text(جورجيا) text(was:adjacent:to) text(तुर्की) +text(Albanië) text(was:sited:in) text(Zuid-Europa) +text(阿爾巴尼亞) text(is:sited:in) text(أوروبا) +text(Albania) text(is:adjacent:to) text(Montenegro) +text(Albania) text(neighbors) text(北马其顿) +text(अल्बानिया) text(is:a:neighboring:country:of) text(科索沃) +text(ألبانيا) text(was:a:neighboring:country:of) text(希腊) +text(科威特) text(was:localized:in) text(Asia:Occidental) +text(الكويت) text(is:localized:in) text(آسيا) +text(Koeweit) text(neighbors:with) text(सउदी:अरब) +text(Kuwait) text(was:a:neighbor:of) text(Irak) +text(南非) text(was:present:in) text(إفريقيا:الجنوبية) +text(South:Africa) text(is:present:in) text(Afrika) +text(Sudáfrica) text(is:a:neighbor:of) text(Mozambique) +text(Zuid-Afrika) text(is:a:neighboring:state:to) text(Botswana) +text(جنوب:إفريقيا) text(was:a:neighboring:state:to) text(إسواتيني) +text(दक्षिण:अफ़्रीका) text(borders:with) text(زيمبابوي) +text(南非) text(borders) text(Namibië) +text(South:Africa) text(is:butted:against) text(Lesotho) +text(هايتي) text(is:still:in) text(加勒比地区) +text(हैती) text(was:still:in) text(Americas) +text(Haïti) text(was:butted:against) text(جمهورية:الدومينيكان) +text(Afganistán) text(was:currently:in) text(दक्षिण:एशिया) +text(Afghanistan) text(is:currently:in) text(एशिया) +text(अफ़्ग़ानिस्तान) text(was:adjacent:to) text(Turkmenistan) +text(أفغانستان) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) text(neighbors) text(طاجيكستان) +text(阿富汗) text(is:a:neighboring:country:of) text(Oezbekistan) +text(Afganistán) text(was:a:neighboring:country:of) text(ईरान) +text(Afghanistan) text(neighbors:with) text(Pakistan) +text(सिंगापुर) text(is:placed:in) text(Southeast:Asia) +text(Singapore) text(was:placed:in) text(Asia) +text(貝南) text(can:be:found:in) text(पश्चिमी:अफ्रीका) +text(Benin) text(was:situated:in) text(África) +text(بنين) text(was:a:neighbor:of) text(尼日尔) +text(Benín) text(is:a:neighbor:of) text(بوركينا:فاسو) +text(Benin) text(is:a:neighboring:state:to) text(Togo) +text(बेनिन) text(was:a:neighboring:state:to) text(Nigeria) +text(ऑलैण्ड:द्वीपसमूह) text(is:situated:in) text(北歐) +text(Åland) text(is:located:in) text(Europe) +text(Croacia) text(was:located:in) text(Europa:del:Sur) +text(克羅地亞) text(can:be:found:in) text(Europa) +text(क्रोएशिया) text(borders:with) text(स्लोवेनिया) +text(كرواتيا) text(borders) text(Bosnia:y:Herzegovina) +text(Kroatië) text(is:butted:against) text(हंगरी) +text(Croatia) text(was:butted:against) text(صربيا) +text(Croacia) text(was:adjacent:to) text(الجبل:الأسود) +text(Zweden) text(was:positioned:in) text(Northern:Europe) +text(Sweden) text(is:positioned:in) text(欧洲) +text(السويد) text(is:adjacent:to) text(नॉर्वे) +text(瑞典) text(neighbors) text(फ़िनलैण्ड) +text(मेक्सिको) text(is:a:neighboring:country:of) text(Belize) +text(墨西哥) text(was:a:neighboring:country:of) text(Estados:Unidos) +text(المكسيك) text(neighbors:with) text(غواتيمالا) +text(格陵兰) text(was:sited:in) text(Noord-Amerika) +text(جرينلاند) text(is:sited:in) text(美洲) +text(皮特凯恩群岛) text(was:localized:in) text(nan) +text(पिटकेर्न:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(Nepal) text(was:present:in) text(Asia:del:Sur) +text(नेपाल) text(is:present:in) text(Azië) +text(نيبال) text(was:a:neighbor:of) text(República:Popular:China) +text(Nepal) text(is:a:neighbor:of) text(India) +text(Guatemala) text(is:a:neighboring:state:to) text(बेलीज़) +text(危地马拉) text(was:a:neighboring:state:to) text(薩爾瓦多) +text(Guatemala) text(borders:with) text(Mexico) +text(Guatemala) text(borders) text(洪都拉斯) +text(South:Korea) text(is:still:in) text(Oost-Azië) +text(كوريا:الجنوبية) text(was:still:in) text(Asia) +text(大韩民国) text(is:butted:against) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(东欧) +text(Moldavia) text(is:currently:in) text(Europa) +text(مولدوفا) text(was:butted:against) text(Ukraine) +text(मोल्डोवा) text(was:adjacent:to) text(رومانيا) +text(Mauritius) text(is:placed:in) text(East:Africa) +text(Mauritius) text(was:placed:in) text(अफ्रीका) +text(白俄羅斯) text(is:adjacent:to) text(युक्रेन) +text(Belarus) text(neighbors) text(波蘭) +text(Bielorrusia) text(is:a:neighboring:country:of) text(Litouwen) +text(Wit-Rusland) text(was:a:neighboring:country:of) text(روسيا) +text(بيلاروس) text(neighbors:with) text(لاتفيا) +text(Bangladesh) text(was:a:neighbor:of) text(Birmania) +text(孟加拉國) text(is:a:neighbor:of) text(भारत) +text(Maleisië) text(can:be:found:in) text(Zuidoost-Azië) +text(ماليزيا) text(was:situated:in) text(亞洲) +text(馬來西亞) text(is:a:neighboring:state:to) text(Tailandia) +text(मलेशिया) text(was:a:neighboring:state:to) text(Indonesia) +text(Malaysia) text(borders:with) text(Brunei) +text(波斯尼亚和黑塞哥维那) text(is:situated:in) text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) text(is:located:in) text(यूरोप) +text(बोस्निया:और:हर्ज़ेगोविना) text(borders) text(Serbia) +text(Bosnia:and:Herzegovina) text(is:butted:against) text(克羅地亞) +text(البوسنة:والهرسك) text(was:butted:against) text(Montenegro) +text(卢森堡) text(was:located:in) text(Western:Europe) +text(Luxemburgo) text(can:be:found:in) text(أوروبا) +text(لوكسمبورغ) text(was:adjacent:to) text(德國) +text(लक्ज़मबर्ग) text(is:adjacent:to) text(بلجيكا) +text(Luxembourg) text(neighbors) text(France) +text(意大利) text(was:positioned:in) text(南欧) +text(इटली) text(is:positioned:in) text(Europe) +text(إيطاليا) text(is:a:neighboring:country:of) text(Eslovenia) +text(Italy) text(was:a:neighboring:country:of) text(سويسرا) +text(Italië) text(neighbors:with) text(ऑस्ट्रिया) +text(Italia) text(was:a:neighbor:of) text(Frankrijk) +text(意大利) text(is:a:neighbor:of) text(वैटिकन:नगर) +text(इटली) text(is:a:neighboring:state:to) text(San:Marino) +text(أذربيجان) text(was:sited:in) text(West:Asia) +text(अज़रबैजान) text(is:sited:in) text(آسيا) +text(阿塞拜疆) text(was:a:neighboring:state:to) text(Turquía) +text(Azerbaiyán) text(borders:with) text(Armenia) +text(Azerbaijan) text(borders) text(俄罗斯) +text(Azerbeidzjan) text(is:butted:against) text(Iran) +text(أذربيجان) text(was:butted:against) text(जॉर्जिया) +text(हॉण्डुरस) text(was:localized:in) text(Central:America) +text(Honduras) text(is:localized:in) text(महाअमेरिका) +text(هندوراس) text(was:adjacent:to) text(ग्वाटेमाला) +text(Honduras) text(is:adjacent:to) text(尼加拉瓜) +text(Honduras) text(neighbors) text(El:Salvador) +text(Mali) text(was:present:in) text(西非) +text(马里) text(is:present:in) text(إفريقيا) +text(Mali) text(is:a:neighboring:country:of) text(Burkina:Faso) +text(مالي) text(was:a:neighboring:country:of) text(गिनी) +text(माली) text(neighbors:with) text(मॉरीतानिया) +text(Mali) text(was:a:neighbor:of) text(नाइजर) +text(Mali) text(is:a:neighbor:of) text(Senegal) +text(马里) text(is:a:neighboring:state:to) text(Algeria) +text(Mali) text(was:a:neighboring:state:to) text(科特迪瓦) +text(中華民國) text(is:still:in) text(पूर्वी:एशिया) +text(Taiwan) text(was:still:in) text(एशिया) +text(Argelia) text(was:currently:in) text(Norte:de:África) +text(अल्जीरिया) text(is:currently:in) text(非洲) +text(الجزائر) text(borders:with) text(लीबिया) +text(阿爾及利亞) text(borders) text(تونس) +text(Algerije) text(is:butted:against) text(毛里塔尼亞) +text(Algeria) text(was:butted:against) text(Marokko) +text(Argelia) text(was:adjacent:to) text(النيجر) +text(अल्जीरिया) text(is:adjacent:to) text(مالي) +text(الجزائر) text(neighbors) text(Sahrawi:Arab:Democratic:Republic) +text(Frans-Guyana) text(is:a:neighboring:country:of) text(Brazil) +text(फ़्रान्सीसी:गुयाना) text(was:a:neighboring:country:of) text(سورينام) +text(Jemen) text(is:placed:in) text(غرب:آسيا) +text(Yemen) text(was:placed:in) text(Asia) +text(Yemen) text(neighbors:with) text(Oman) +text(यमन) text(was:a:neighbor:of) text(Arabia:Saudí) +text(Puerto:Rico) text(can:be:found:in) text(Caraïben) +text(波多黎各) text(was:situated:in) text(Amerika) +text(سانت:فينسنت:والغرينادين) text(is:situated:in) text(कैरिबिया) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) text(is:located:in) text(América) +text(Venezuela) text(is:a:neighbor:of) text(ब्राज़ील) +text(Venezuela) text(is:a:neighboring:state:to) text(Guyana) +text(فنزويلا) text(was:a:neighboring:state:to) text(Colombia) +text(格瑞那達) text(was:located:in) text(Caribe) +text(Grenada) text(can:be:found:in) text(أمريكتان) +text(美國) text(borders:with) text(加拿大) +text(الولايات:المتحدة) text(borders) text(Mexico) +text(Tokelau) text(was:positioned:in) text(Polynesië) +text(توكيلاو) text(is:positioned:in) text(أوقيانوسيا) +text(Slovenië) text(was:sited:in) text(Southern:Europe) +text(Slovenia) text(is:sited:in) text(Europa) +text(سلوفينيا) text(is:butted:against) text(Oostenrijk) +text(斯洛文尼亞) text(was:butted:against) text(क्रोएशिया) +text(स्लोवेनिया) text(was:adjacent:to) text(إيطاليا) +text(Eslovenia) text(is:adjacent:to) text(Hongarije) +text(الفلبين) text(was:localized:in) text(Sudeste:Asiático) +text(फ़िलीपीन्स) text(is:localized:in) text(Azië) +text(Micronesia) text(was:present:in) text(Micronesië) +text(密克羅尼西亞群島) text(is:present:in) text(Oceanía) +text(الصين) text(is:still:in) text(Asia:Oriental) +text(People's:Republic:of:China) text(was:still:in) text(Asia) +text(Volksrepubliek:China) text(neighbors) text(अफ़्ग़ानिस्तान) +text(中华人民共和国) text(is:a:neighboring:country:of) text(Bhutan) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(Macau) +text(República:Popular:China) text(neighbors:with) text(印度) +text(الصين) text(was:a:neighbor:of) text(Kazakhstan) +text(People's:Republic:of:China) text(is:a:neighbor:of) text(Kirguistán) +text(Volksrepubliek:China) text(is:a:neighboring:state:to) text(ताजीकिस्तान) +text(中华人民共和国) text(was:a:neighboring:state:to) text(Laos) +text(चीनी:जनवादी:गणराज्य) text(borders:with) text(Rusia) +text(República:Popular:China) text(borders) text(Corea:del:Norte) +text(الصين) text(is:butted:against) text(Myanmar) +text(People's:Republic:of:China) text(was:butted:against) text(Pakistan) +text(Volksrepubliek:China) text(was:adjacent:to) text(मंगोलिया) +text(中华人民共和国) text(is:adjacent:to) text(हांगकांग) +text(चीनी:जनवादी:गणराज्य) text(neighbors) text(越南) +text(الغابون) text(was:currently:in) text(Central:Africa) +text(गबॉन) text(is:currently:in) text(Africa) +text(Gabón) text(is:a:neighboring:country:of) text(Guinea:Ecuatorial) +text(Gabon) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(Gabon) text(neighbors:with) text(कैमरुन) +text(United:States:Minor:Outlying:Islands) text(is:placed:in) text(أمريكا:الشمالية) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Andorra) text(can:be:found:in) text(أوروبا:الجنوبية) +text(Andorra) text(was:situated:in) text(欧洲) +text(安道尔) text(was:a:neighbor:of) text(西班牙) +text(Andorra) text(is:a:neighbor:of) text(فرنسا) +text(Samoa) text(is:situated:in) text(Polinesia) +text(Samoa) text(is:located:in) text(大洋洲) +text(The:Gambia) text(was:located:in) text(West:Africa) +text(غامبيا) text(can:be:found:in) text(Afrika) +text(गाम्बिया) text(is:a:neighboring:state:to) text(सेनेगल) +text(Pedro:Miguel) text(was:positioned:in) text(पश्चिमी:एशिया) +text(nan) text(is:positioned:in) text(亞洲) +text(Pedro:Miguel) text(was:a:neighboring:state:to) text(الأردن) +text(nan) text(borders:with) text(Egipto) +text(Pedro:Miguel) text(borders) text(إسرائيل) +text(Reunión) text(was:sited:in) text(África:Oriental) +text(ريونيون) text(is:sited:in) text(África) +text(Francia) text(was:localized:in) text(أوروبا:الغربية) +text(法國) text(is:localized:in) text(Europa) +text(फ़्रान्स) text(is:butted:against) text(ألمانيا) +text(France) text(was:butted:against) text(Luxemburg) +text(Frankrijk) text(was:adjacent:to) text(Italy) +text(فرنسا) text(is:adjacent:to) text(अण्डोरा) +text(Francia) text(neighbors) text(Suiza) +text(法國) text(is:a:neighboring:country:of) text(موناكو) +text(फ़्रान्स) text(was:a:neighboring:country:of) text(Belgium) +text(France) text(neighbors:with) text(Spain) +text(منغوليا) text(was:present:in) text(東亞) +text(Mongolia) text(is:present:in) text(آسيا) +text(蒙古國) text(was:a:neighbor:of) text(República:Popular:China) +text(Mongolia) text(is:a:neighbor:of) text(Russia) +text(लिथुआनिया) text(is:still:in) text(Europa:del:Norte) +text(ليتوانيا) text(was:still:in) text(यूरोप) +text(立陶宛) text(is:a:neighboring:state:to) text(Poland) +text(Lithuania) text(was:a:neighboring:state:to) text(Letland) +text(Lituania) text(borders:with) text(बेलारूस) +text(Litouwen) text(borders) text(Rusland) +text(Kaaimaneilanden) text(was:currently:in) text(Caribbean) +text(جزر:كايمان) text(is:currently:in) text(美洲) +text(圣卢西亚) text(is:placed:in) text(الكاريبي) +text(Santa:Lucía) text(was:placed:in) text(महाअमेरिका) +text(Curaçao) text(can:be:found:in) text(加勒比地区) +text(库拉索) text(was:situated:in) text(Amerika) +text(Caraïben) text(is:situated:in) text(América) +text(Zuid-Azië) text(is:located:in) text(एशिया) +text(मध्य:अफ्रीका) text(was:located:in) text(अफ्रीका) +text(Noord-Europa) text(can:be:found:in) text(أوروبا) +text(Zuid-Europa) text(was:positioned:in) text(Europe) +text(西亚) text(is:positioned:in) text(Asia) +text(أمريكا:الجنوبية) text(was:sited:in) text(أمريكتان) +text(玻里尼西亞) text(is:sited:in) text(Oceanië) +text(nan) text(was:localized:in) text(Oceania) +text(West-Europa) text(is:localized:in) text(Europa) +text(شرق:إفريقيا) text(was:present:in) text(إفريقيا) +text(África:Occidental) text(is:present:in) text(非洲) +text(Eastern:Europe) text(is:still:in) text(欧洲) +text(केंद्रीय:अमेरिका) text(was:still:in) text(Americas) +text(América:del:Norte) text(was:currently:in) text(美洲) +text(جنوب:شرق:آسيا) text(is:currently:in) text(Azië) +text(Southern:Africa) text(is:placed:in) text(Africa) +text(East:Asia) text(was:placed:in) text(Asia) +text(北部非洲) text(can:be:found:in) text(Afrika) +text(मॅलानिशिया) text(was:situated:in) text(ओशिआनिया) +text(माइक्रोनीशिया) text(is:situated:in) text(أوقيانوسيا) +text(中亚) text(is:located:in) text(亞洲) +text(Centraal-Europa) text(was:located:in) text(Europa) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv new file mode 100644 index 0000000..3520a42 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv @@ -0,0 +1,1063 @@ +palau text(was:localized:in) micronesia +palau text(is:localized:in) oceania +maldives text(was:present:in) southern_asia +maldives text(is:present:in) asia +brunei text(is:still:in) south-eastern_asia +brunei text(was:still:in) asia +brunei text(is:a:neighboring:state:to) malaysia +japan text(was:currently:in) eastern_asia +japan text(is:currently:in) asia +netherlands text(was:a:neighboring:state:to) germany +netherlands text(borders:with) belgium +turkey text(borders) armenia +turkey text(is:butted:against) azerbaijan +turkey text(was:butted:against) iran +turkey text(was:adjacent:to) greece +turkey text(is:adjacent:to) georgia +turkey text(neighbors) bulgaria +turkey text(is:a:neighboring:country:of) iraq +turkey text(was:a:neighboring:country:of) syria +angola text(is:placed:in) middle_africa +angola text(was:placed:in) africa +angola text(neighbors:with) dr_congo +angola text(was:a:neighbor:of) namibia +angola text(is:a:neighbor:of) zambia +angola text(is:a:neighboring:state:to) republic_of_the_congo +armenia text(can:be:found:in) western_asia +armenia text(was:situated:in) asia +armenia text(was:a:neighboring:state:to) georgia +armenia text(borders:with) azerbaijan +armenia text(borders) iran +armenia text(is:butted:against) turkey +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(can:be:found:in) africa +swaziland text(was:butted:against) south_africa +swaziland text(was:adjacent:to) mozambique +wallis_and_futuna text(was:positioned:in) polynesia +wallis_and_futuna text(is:positioned:in) oceania +uruguay text(was:sited:in) south_america +uruguay text(is:sited:in) americas +uruguay text(is:adjacent:to) argentina +uruguay text(neighbors) brazil +zambia text(was:localized:in) eastern_africa +zambia text(is:localized:in) africa +zambia text(is:a:neighboring:country:of) tanzania +zambia text(was:a:neighboring:country:of) mozambique +zambia text(neighbors:with) dr_congo +zambia text(was:a:neighbor:of) angola +zambia text(is:a:neighbor:of) botswana +zambia text(is:a:neighboring:state:to) zimbabwe +zambia text(was:a:neighboring:state:to) namibia +zambia text(borders:with) malawi +cyprus text(was:present:in) eastern_europe +cyprus text(is:present:in) europe +cyprus text(borders) united_kingdom +ireland text(is:still:in) northern_europe +ireland text(was:still:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(was:currently:in) eastern_africa +burundi text(is:currently:in) africa +burundi text(was:butted:against) dr_congo +burundi text(was:adjacent:to) rwanda +burundi text(is:adjacent:to) tanzania +central_african_republic text(is:placed:in) middle_africa +central_african_republic text(was:placed:in) africa +central_african_republic text(neighbors) chad +central_african_republic text(is:a:neighboring:country:of) republic_of_the_congo +central_african_republic text(was:a:neighboring:country:of) dr_congo +central_african_republic text(neighbors:with) south_sudan +central_african_republic text(was:a:neighbor:of) cameroon +central_african_republic text(is:a:neighbor:of) sudan +tonga text(can:be:found:in) polynesia +tonga text(was:situated:in) oceania +ivory_coast text(is:situated:in) western_africa +ivory_coast text(is:located:in) africa +ivory_coast text(is:a:neighboring:state:to) burkina_faso +ivory_coast text(was:a:neighboring:state:to) ghana +ivory_coast text(borders:with) liberia +ivory_coast text(borders) mali +ivory_coast text(is:butted:against) guinea +sierra_leone text(was:butted:against) liberia +sierra_leone text(was:adjacent:to) guinea +mayotte text(was:located:in) eastern_africa +mayotte text(can:be:found:in) africa +poland text(is:adjacent:to) germany +poland text(neighbors) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(neighbors:with) russia +poland text(was:a:neighbor:of) lithuania +poland text(is:a:neighbor:of) czechia +kazakhstan text(was:positioned:in) central_asia +kazakhstan text(is:positioned:in) asia +kazakhstan text(is:a:neighboring:state:to) turkmenistan +kazakhstan text(was:a:neighboring:state:to) china +kazakhstan text(borders:with) kyrgyzstan +kazakhstan text(borders) uzbekistan +kazakhstan text(is:butted:against) russia +uzbekistan text(was:sited:in) central_asia +uzbekistan text(is:sited:in) asia +uzbekistan text(was:butted:against) afghanistan +uzbekistan text(was:adjacent:to) turkmenistan +uzbekistan text(is:adjacent:to) kazakhstan +uzbekistan text(neighbors) kyrgyzstan +uzbekistan text(is:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(was:localized:in) caribbean +turks_and_caicos_islands text(is:localized:in) americas +new_caledonia text(was:present:in) melanesia +new_caledonia text(is:present:in) oceania +pakistan text(was:a:neighboring:country:of) china +pakistan text(neighbors:with) afghanistan +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:still:in) south_america +argentina text(was:still:in) americas +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(borders) paraguay +argentina text(is:butted:against) uruguay +cuba text(was:currently:in) caribbean +cuba text(is:currently:in) americas +serbia text(was:butted:against) macedonia +serbia text(was:adjacent:to) montenegro +serbia text(is:adjacent:to) kosovo +serbia text(neighbors) bosnia_and_herzegovina +serbia text(is:a:neighboring:country:of) croatia +serbia text(was:a:neighboring:country:of) hungary +serbia text(neighbors:with) bulgaria +serbia text(was:a:neighbor:of) romania +czechia text(is:placed:in) eastern_europe +czechia text(was:placed:in) europe +czechia text(is:a:neighbor:of) germany +czechia text(is:a:neighboring:state:to) austria +czechia text(was:a:neighboring:state:to) poland +czechia text(borders:with) slovakia +nicaragua text(borders) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(can:be:found:in) south-eastern_asia +vietnam text(was:situated:in) asia +vietnam text(was:butted:against) cambodia +vietnam text(was:adjacent:to) laos +vietnam text(is:adjacent:to) china +niue text(is:situated:in) polynesia +niue text(is:located:in) oceania +canada text(was:located:in) northern_america +canada text(can:be:found:in) americas +canada text(neighbors) united_states +slovakia text(is:a:neighboring:country:of) ukraine +slovakia text(was:a:neighboring:country:of) poland +slovakia text(neighbors:with) austria +slovakia text(was:a:neighbor:of) hungary +slovakia text(is:a:neighbor:of) czechia +mozambique text(is:a:neighboring:state:to) tanzania +mozambique text(was:a:neighboring:state:to) swaziland +mozambique text(borders:with) zimbabwe +mozambique text(borders) zambia +mozambique text(is:butted:against) malawi +mozambique text(was:butted:against) south_africa +aruba text(was:positioned:in) caribbean +aruba text(is:positioned:in) americas +bolivia text(was:sited:in) south_america +bolivia text(is:sited:in) americas +bolivia text(was:adjacent:to) chile +bolivia text(is:adjacent:to) brazil +bolivia text(neighbors) paraguay +bolivia text(is:a:neighboring:country:of) argentina +bolivia text(was:a:neighboring:country:of) peru +colombia text(was:localized:in) south_america +colombia text(is:localized:in) americas +colombia text(neighbors:with) ecuador +colombia text(was:a:neighbor:of) brazil +colombia text(is:a:neighbor:of) panama +colombia text(is:a:neighboring:state:to) venezuela +colombia text(was:a:neighboring:state:to) peru +fiji text(was:present:in) melanesia +fiji text(is:present:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(borders) dr_congo +republic_of_the_congo text(is:butted:against) angola +republic_of_the_congo text(was:butted:against) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:adjacent:to) qatar +saudi_arabia text(neighbors) united_arab_emirates +saudi_arabia text(is:a:neighboring:country:of) jordan +saudi_arabia text(was:a:neighboring:country:of) yemen +saudi_arabia text(neighbors:with) oman +saudi_arabia text(was:a:neighbor:of) kuwait +saudi_arabia text(is:a:neighbor:of) iraq +el_salvador text(is:still:in) central_america +el_salvador text(was:still:in) americas +el_salvador text(is:a:neighboring:state:to) guatemala +el_salvador text(was:a:neighboring:state:to) honduras +madagascar text(was:currently:in) eastern_africa +madagascar text(is:currently:in) africa +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(borders:with) zambia +namibia text(borders) angola +namibia text(is:butted:against) south_africa +namibia text(was:butted:against) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:adjacent:to) brazil +guyana text(is:adjacent:to) suriname +guyana text(neighbors) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighboring:country:of) italy +british_indian_ocean_territory text(was:localized:in) eastern_africa +british_indian_ocean_territory text(is:localized:in) africa +nigeria text(was:present:in) western_africa +nigeria text(is:present:in) africa +nigeria text(was:a:neighboring:country:of) chad +nigeria text(neighbors:with) niger +nigeria text(was:a:neighbor:of) cameroon +nigeria text(is:a:neighbor:of) benin +germany text(is:a:neighboring:state:to) denmark +germany text(was:a:neighboring:state:to) netherlands +germany text(borders:with) poland +germany text(borders) luxembourg +germany text(is:butted:against) belgium +germany text(was:butted:against) switzerland +germany text(was:adjacent:to) austria +germany text(is:adjacent:to) france +germany text(neighbors) czechia +burkina_faso text(is:a:neighboring:country:of) togo +burkina_faso text(was:a:neighboring:country:of) benin +burkina_faso text(neighbors:with) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(borders) dr_congo +tanzania text(is:butted:against) kenya +tanzania text(was:butted:against) rwanda +tanzania text(was:adjacent:to) zambia +tanzania text(is:adjacent:to) malawi +tanzania text(neighbors) burundi +northern_mariana_islands text(is:still:in) micronesia +northern_mariana_islands text(was:still:in) oceania +belize text(was:currently:in) central_america +belize text(is:currently:in) americas +belize text(is:a:neighboring:country:of) guatemala +belize text(was:a:neighboring:country:of) mexico +norway text(neighbors:with) sweden +norway text(was:a:neighbor:of) finland +norway text(is:a:neighbor:of) russia +cocos_keeling_islands text(is:placed:in) australia_and_new_zealand +cocos_keeling_islands text(was:placed:in) oceania +laos text(can:be:found:in) south-eastern_asia +laos text(was:situated:in) asia +laos text(is:a:neighboring:state:to) china +laos text(was:a:neighboring:state:to) cambodia +laos text(borders:with) myanmar +laos text(borders) vietnam +laos text(is:butted:against) thailand +western_sahara text(is:situated:in) northern_africa +western_sahara text(is:located:in) africa +western_sahara text(was:butted:against) algeria +western_sahara text(was:adjacent:to) mauritania +western_sahara text(is:adjacent:to) morocco +suriname text(was:located:in) south_america +suriname text(can:be:found:in) americas +suriname text(neighbors) brazil +suriname text(is:a:neighboring:country:of) french_guiana +suriname text(was:a:neighboring:country:of) guyana +christmas_island text(was:positioned:in) australia_and_new_zealand +christmas_island text(is:positioned:in) oceania +são_tomé_and_príncipe text(was:sited:in) middle_africa +são_tomé_and_príncipe text(is:sited:in) africa +egypt text(neighbors:with) libya +egypt text(was:a:neighbor:of) israel +egypt text(is:a:neighbor:of) sudan +bulgaria text(is:a:neighboring:state:to) macedonia +bulgaria text(was:a:neighboring:state:to) turkey +bulgaria text(borders:with) greece +bulgaria text(borders) serbia +bulgaria text(is:butted:against) romania +guinea text(was:localized:in) western_africa +guinea text(is:localized:in) africa +guinea text(was:butted:against) guinea-bissau +guinea text(was:adjacent:to) sierra_leone +guinea text(is:adjacent:to) mali +guinea text(neighbors) liberia +guinea text(is:a:neighboring:country:of) senegal +guinea text(was:a:neighboring:country:of) ivory_coast +spain text(neighbors:with) morocco +spain text(was:a:neighbor:of) gibraltar +spain text(is:a:neighbor:of) andorra +spain text(is:a:neighboring:state:to) france +spain text(was:a:neighboring:state:to) portugal +costa_rica text(was:present:in) central_america +costa_rica text(is:present:in) americas +costa_rica text(borders:with) panama +costa_rica text(borders) nicaragua +malta text(is:still:in) southern_europe +malta text(was:still:in) europe +portugal text(was:currently:in) southern_europe +portugal text(is:currently:in) europe +portugal text(is:butted:against) spain +romania text(is:placed:in) eastern_europe +romania text(was:placed:in) europe +romania text(was:butted:against) ukraine +romania text(was:adjacent:to) hungary +romania text(is:adjacent:to) moldova +romania text(neighbors) bulgaria +romania text(is:a:neighboring:country:of) serbia +san_marino text(can:be:found:in) southern_europe +san_marino text(was:situated:in) europe +san_marino text(was:a:neighboring:country:of) italy +mauritania text(is:situated:in) western_africa +mauritania text(is:located:in) africa +mauritania text(neighbors:with) algeria +mauritania text(was:a:neighbor:of) mali +mauritania text(is:a:neighbor:of) western_sahara +mauritania text(is:a:neighboring:state:to) senegal +trinidad_and_tobago text(was:located:in) caribbean +trinidad_and_tobago text(can:be:found:in) americas +bahrain text(was:positioned:in) western_asia +bahrain text(is:positioned:in) asia +myanmar text(was:a:neighboring:state:to) india +myanmar text(borders:with) bangladesh +myanmar text(borders) china +myanmar text(is:butted:against) laos +myanmar text(was:butted:against) thailand +iraq text(was:adjacent:to) turkey +iraq text(is:adjacent:to) saudi_arabia +iraq text(neighbors) iran +iraq text(is:a:neighboring:country:of) jordan +iraq text(was:a:neighboring:country:of) kuwait +iraq text(neighbors:with) syria +south_georgia text(was:sited:in) south_america +south_georgia text(is:sited:in) americas +iceland text(was:localized:in) northern_europe +iceland text(is:localized:in) europe +dr_congo text(was:present:in) middle_africa +dr_congo text(is:present:in) africa +dr_congo text(was:a:neighbor:of) uganda +dr_congo text(is:a:neighbor:of) tanzania +dr_congo text(is:a:neighboring:state:to) republic_of_the_congo +dr_congo text(was:a:neighboring:state:to) central_african_republic +dr_congo text(borders:with) angola +dr_congo text(borders) rwanda +dr_congo text(is:butted:against) south_sudan +dr_congo text(was:butted:against) zambia +dr_congo text(was:adjacent:to) burundi +seychelles text(is:still:in) eastern_africa +seychelles text(was:still:in) africa +kyrgyzstan text(is:adjacent:to) china +kyrgyzstan text(neighbors) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(was:currently:in) southern_africa +botswana text(is:currently:in) africa +botswana text(neighbors:with) zimbabwe +botswana text(was:a:neighbor:of) namibia +botswana text(is:a:neighbor:of) zambia +botswana text(is:a:neighboring:state:to) south_africa +faroe_islands text(is:placed:in) northern_europe +faroe_islands text(was:placed:in) europe +jamaica text(can:be:found:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(can:be:found:in) africa +lesotho text(was:a:neighboring:state:to) south_africa +sri_lanka text(borders:with) india +belgium text(was:positioned:in) western_europe +belgium text(is:positioned:in) europe +belgium text(borders) germany +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(was:adjacent:to) netherlands +qatar text(was:sited:in) western_asia +qatar text(is:sited:in) asia +qatar text(is:adjacent:to) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(neighbors) israel +syria text(is:a:neighboring:country:of) turkey +syria text(was:a:neighboring:country:of) jordan +syria text(neighbors:with) lebanon +syria text(was:a:neighbor:of) iraq +india text(is:still:in) southern_asia +india text(was:still:in) asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(borders) nepal +india text(is:butted:against) myanmar +india text(was:butted:against) pakistan +india text(was:adjacent:to) sri_lanka +morocco text(is:adjacent:to) algeria +morocco text(neighbors) spain +morocco text(is:a:neighboring:country:of) western_sahara +kenya text(was:currently:in) eastern_africa +kenya text(is:currently:in) africa +kenya text(was:a:neighboring:country:of) uganda +kenya text(neighbors:with) tanzania +kenya text(was:a:neighbor:of) somalia +kenya text(is:a:neighbor:of) south_sudan +kenya text(is:a:neighboring:state:to) ethiopia +south_sudan text(is:placed:in) middle_africa +south_sudan text(was:placed:in) africa +south_sudan text(was:a:neighboring:state:to) uganda +south_sudan text(borders:with) dr_congo +south_sudan text(borders) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(was:adjacent:to) ethiopia +ghana text(is:adjacent:to) burkina_faso +ghana text(neighbors) ivory_coast +ghana text(is:a:neighboring:country:of) togo +tajikistan text(can:be:found:in) central_asia +tajikistan text(was:situated:in) asia +tajikistan text(was:a:neighboring:country:of) china +tajikistan text(neighbors:with) kyrgyzstan +tajikistan text(was:a:neighbor:of) afghanistan +tajikistan text(is:a:neighbor:of) uzbekistan +marshall_islands text(is:situated:in) micronesia +marshall_islands text(is:located:in) oceania +cameroon text(was:located:in) middle_africa +cameroon text(can:be:found:in) africa +cameroon text(is:a:neighboring:state:to) chad +cameroon text(was:a:neighboring:state:to) republic_of_the_congo +cameroon text(borders:with) gabon +cameroon text(borders) equatorial_guinea +cameroon text(is:butted:against) central_african_republic +cameroon text(was:butted:against) nigeria +nauru text(was:positioned:in) micronesia +nauru text(is:positioned:in) oceania +thailand text(was:adjacent:to) cambodia +thailand text(is:adjacent:to) myanmar +thailand text(neighbors) laos +thailand text(is:a:neighboring:country:of) malaysia +sudan text(was:a:neighboring:country:of) chad +sudan text(neighbors:with) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +chad text(was:sited:in) middle_africa +chad text(is:sited:in) africa +chad text(borders) libya +chad text(is:butted:against) niger +chad text(was:butted:against) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic +chad text(neighbors) nigeria +vanuatu text(was:localized:in) melanesia +vanuatu text(is:localized:in) oceania +cape_verde text(was:present:in) western_africa +cape_verde text(is:present:in) africa +falkland_islands text(is:still:in) south_america +falkland_islands text(was:still:in) americas +liberia text(was:currently:in) western_africa +liberia text(is:currently:in) africa +liberia text(is:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighboring:country:of) sierra_leone +liberia text(neighbors:with) guinea +cambodia text(is:placed:in) south-eastern_asia +cambodia text(was:placed:in) asia +cambodia text(was:a:neighbor:of) vietnam +cambodia text(is:a:neighbor:of) thailand +cambodia text(is:a:neighboring:state:to) laos +zimbabwe text(was:a:neighboring:state:to) zambia +zimbabwe text(borders:with) south_africa +zimbabwe text(borders) botswana +zimbabwe text(is:butted:against) mozambique +comoros text(can:be:found:in) eastern_africa +comoros text(was:situated:in) africa +guam text(is:situated:in) micronesia +guam text(is:located:in) oceania +bahamas text(was:located:in) caribbean +bahamas text(can:be:found:in) americas +lebanon text(was:positioned:in) western_asia +lebanon text(is:positioned:in) asia +lebanon text(was:butted:against) israel +lebanon text(was:adjacent:to) syria +sint_maarten text(was:sited:in) caribbean +sint_maarten text(is:sited:in) americas +sint_maarten text(is:adjacent:to) saint_martin +ethiopia text(was:localized:in) eastern_africa +ethiopia text(is:localized:in) africa +ethiopia text(neighbors) somalia +ethiopia text(is:a:neighboring:country:of) kenya +ethiopia text(was:a:neighboring:country:of) eritrea +ethiopia text(neighbors:with) south_sudan +ethiopia text(was:a:neighbor:of) djibouti +ethiopia text(is:a:neighbor:of) sudan +united_states_virgin_islands text(was:present:in) caribbean +united_states_virgin_islands text(is:present:in) americas +guinea-bissau text(is:still:in) western_africa +guinea-bissau text(was:still:in) africa +guinea-bissau text(is:a:neighboring:state:to) guinea +guinea-bissau text(was:a:neighboring:state:to) senegal +libya text(was:currently:in) northern_africa +libya text(is:currently:in) africa +libya text(borders:with) chad +libya text(borders) tunisia +libya text(is:butted:against) niger +libya text(was:butted:against) algeria +libya text(was:adjacent:to) egypt +libya text(is:adjacent:to) sudan +bhutan text(is:placed:in) southern_asia +bhutan text(was:placed:in) asia +bhutan text(neighbors) china +bhutan text(is:a:neighboring:country:of) india +macau text(can:be:found:in) eastern_asia +macau text(was:situated:in) asia +macau text(was:a:neighboring:country:of) china +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(can:be:found:in) africa +somalia text(neighbors:with) djibouti +somalia text(was:a:neighbor:of) kenya +somalia text(is:a:neighbor:of) ethiopia +saint_barthélemy text(was:positioned:in) caribbean +saint_barthélemy text(is:positioned:in) americas +russia text(was:sited:in) eastern_europe +russia text(is:sited:in) europe +russia text(is:a:neighboring:state:to) ukraine +russia text(was:a:neighboring:state:to) belarus +russia text(borders:with) china +russia text(borders) kazakhstan +russia text(is:butted:against) norway +russia text(was:butted:against) poland +russia text(was:adjacent:to) azerbaijan +russia text(is:adjacent:to) lithuania +russia text(neighbors) estonia +russia text(is:a:neighboring:country:of) north_korea +russia text(was:a:neighboring:country:of) finland +russia text(neighbors:with) mongolia +russia text(was:a:neighbor:of) latvia +russia text(is:a:neighbor:of) georgia +new_zealand text(was:localized:in) australia_and_new_zealand +new_zealand text(is:localized:in) oceania +panama text(was:present:in) central_america +panama text(is:present:in) americas +panama text(is:a:neighboring:state:to) costa_rica +panama text(was:a:neighboring:state:to) colombia +papua_new_guinea text(is:still:in) melanesia +papua_new_guinea text(was:still:in) oceania +papua_new_guinea text(borders:with) indonesia +north_korea text(borders) china +north_korea text(is:butted:against) south_korea +north_korea text(was:butted:against) russia +latvia text(was:currently:in) northern_europe +latvia text(is:currently:in) europe +latvia text(was:adjacent:to) lithuania +latvia text(is:adjacent:to) belarus +latvia text(neighbors) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(is:placed:in) western_asia +oman text(was:placed:in) asia +oman text(was:a:neighboring:country:of) saudi_arabia +oman text(neighbors:with) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(can:be:found:in) northern_america +saint_pierre_and_miquelon text(was:situated:in) americas +martinique text(is:situated:in) caribbean +martinique text(is:located:in) americas +united_kingdom text(was:located:in) northern_europe +united_kingdom text(can:be:found:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:positioned:in) western_asia +israel text(is:positioned:in) asia +israel text(is:a:neighboring:state:to) lebanon +israel text(was:a:neighboring:state:to) egypt +israel text(borders:with) jordan +israel text(borders) syria +jersey text(was:sited:in) northern_europe +jersey text(is:sited:in) europe +pitcairn_islands text(was:localized:in) polynesia +pitcairn_islands text(is:localized:in) oceania +togo text(was:present:in) western_africa +togo text(is:present:in) africa +togo text(is:butted:against) burkina_faso +togo text(was:butted:against) ghana +togo text(was:adjacent:to) benin +kiribati text(is:still:in) micronesia +kiribati text(was:still:in) oceania +iran text(was:currently:in) southern_asia +iran text(is:currently:in) asia +iran text(is:adjacent:to) afghanistan +iran text(neighbors) turkmenistan +iran text(is:a:neighboring:country:of) turkey +iran text(was:a:neighboring:country:of) armenia +iran text(neighbors:with) azerbaijan +iran text(was:a:neighbor:of) pakistan +iran text(is:a:neighbor:of) iraq +saint_martin text(is:placed:in) caribbean +saint_martin text(was:placed:in) americas +saint_martin text(is:a:neighboring:state:to) sint_maarten +dominican_republic text(can:be:found:in) caribbean +dominican_republic text(was:situated:in) americas +dominican_republic text(was:a:neighboring:state:to) haiti +denmark text(borders:with) germany +bermuda text(is:situated:in) northern_america +bermuda text(is:located:in) americas +chile text(borders) argentina +chile text(is:butted:against) bolivia +chile text(was:butted:against) peru +kosovo text(was:located:in) eastern_europe +kosovo text(can:be:found:in) europe +kosovo text(was:adjacent:to) serbia +kosovo text(is:adjacent:to) albania +kosovo text(neighbors) macedonia +kosovo text(is:a:neighboring:country:of) montenegro +saint_kitts_and_nevis text(was:positioned:in) caribbean +saint_kitts_and_nevis text(is:positioned:in) americas +eritrea text(was:a:neighboring:country:of) djibouti +eritrea text(neighbors:with) sudan +eritrea text(was:a:neighbor:of) ethiopia +equatorial_guinea text(was:sited:in) middle_africa +equatorial_guinea text(is:sited:in) africa +equatorial_guinea text(is:a:neighbor:of) gabon +equatorial_guinea text(is:a:neighboring:state:to) cameroon +niger text(was:localized:in) western_africa +niger text(is:localized:in) africa +niger text(was:a:neighboring:state:to) chad +niger text(borders:with) libya +niger text(borders) burkina_faso +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(was:adjacent:to) algeria +niger text(is:adjacent:to) nigeria +anguilla text(was:present:in) caribbean +anguilla text(is:present:in) americas +rwanda text(is:still:in) eastern_africa +rwanda text(was:still:in) africa +rwanda text(neighbors) burundi +rwanda text(is:a:neighboring:country:of) tanzania +rwanda text(was:a:neighboring:country:of) uganda +rwanda text(neighbors:with) dr_congo +united_arab_emirates text(was:currently:in) western_asia +united_arab_emirates text(is:currently:in) asia +united_arab_emirates text(was:a:neighbor:of) oman +united_arab_emirates text(is:a:neighbor:of) saudi_arabia +estonia text(is:placed:in) northern_europe +estonia text(was:placed:in) europe +estonia text(is:a:neighboring:state:to) latvia +estonia text(was:a:neighboring:state:to) russia +greece text(can:be:found:in) southern_europe +greece text(was:situated:in) europe +greece text(borders:with) bulgaria +greece text(borders) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:situated:in) western_africa +senegal text(is:located:in) africa +senegal text(was:adjacent:to) guinea-bissau +senegal text(is:adjacent:to) mauritania +senegal text(neighbors) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(was:located:in) caribbean +guadeloupe text(can:be:found:in) americas +monaco text(neighbors:with) france +djibouti text(was:a:neighbor:of) eritrea +djibouti text(is:a:neighbor:of) somalia +djibouti text(is:a:neighboring:state:to) ethiopia +indonesia text(was:a:neighboring:state:to) papua_new_guinea +indonesia text(borders:with) timor-leste +indonesia text(borders) malaysia +british_virgin_islands text(was:positioned:in) caribbean +british_virgin_islands text(is:positioned:in) americas +cook_islands text(was:sited:in) polynesia +cook_islands text(is:sited:in) oceania +uganda text(was:localized:in) eastern_africa +uganda text(is:localized:in) africa +uganda text(is:butted:against) tanzania +uganda text(was:butted:against) dr_congo +uganda text(was:adjacent:to) kenya +uganda text(is:adjacent:to) south_sudan +uganda text(neighbors) rwanda +macedonia text(was:present:in) southern_europe +macedonia text(is:present:in) europe +macedonia text(is:a:neighboring:country:of) kosovo +macedonia text(was:a:neighboring:country:of) greece +macedonia text(neighbors:with) albania +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria +tunisia text(is:still:in) northern_africa +tunisia text(was:still:in) africa +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria +ecuador text(borders:with) peru +ecuador text(borders) colombia +brazil text(was:currently:in) south_america +brazil text(is:currently:in) americas +brazil text(is:butted:against) bolivia +brazil text(was:butted:against) colombia +brazil text(was:adjacent:to) paraguay +brazil text(is:adjacent:to) uruguay +brazil text(neighbors) french_guiana +brazil text(is:a:neighboring:country:of) suriname +brazil text(was:a:neighboring:country:of) venezuela +brazil text(neighbors:with) argentina +brazil text(was:a:neighbor:of) guyana +brazil text(is:a:neighbor:of) peru +paraguay text(is:placed:in) south_america +paraguay text(was:placed:in) americas +paraguay text(is:a:neighboring:state:to) argentina +paraguay text(was:a:neighboring:state:to) brazil +paraguay text(borders:with) bolivia +finland text(can:be:found:in) northern_europe +finland text(was:situated:in) europe +finland text(borders) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(was:adjacent:to) saudi_arabia +jordan text(is:adjacent:to) israel +jordan text(neighbors) iraq +jordan text(is:a:neighboring:country:of) syria +timor-leste text(was:a:neighboring:country:of) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(is:located:in) europe +montenegro text(neighbors:with) kosovo +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(was:located:in) south_america +peru text(can:be:found:in) americas +peru text(borders:with) ecuador +peru text(borders) bolivia +peru text(is:butted:against) chile +peru text(was:butted:against) brazil +peru text(was:adjacent:to) colombia +montserrat text(was:positioned:in) caribbean +montserrat text(is:positioned:in) americas +ukraine text(was:sited:in) eastern_europe +ukraine text(is:sited:in) europe +ukraine text(is:adjacent:to) slovakia +ukraine text(neighbors) belarus +ukraine text(is:a:neighboring:country:of) poland +ukraine text(was:a:neighboring:country:of) russia +ukraine text(neighbors:with) hungary +ukraine text(was:a:neighbor:of) moldova +ukraine text(is:a:neighbor:of) romania +dominica text(was:localized:in) caribbean +dominica text(is:localized:in) americas +turkmenistan text(is:a:neighboring:state:to) kazakhstan +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(borders) iran +guernsey text(was:present:in) northern_europe +guernsey text(is:present:in) europe +gibraltar text(is:still:in) southern_europe +gibraltar text(was:still:in) europe +gibraltar text(is:butted:against) spain +switzerland text(was:currently:in) western_europe +switzerland text(is:currently:in) europe +switzerland text(was:butted:against) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria +switzerland text(neighbors) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(is:placed:in) western_europe +austria text(was:placed:in) europe +austria text(was:a:neighboring:country:of) germany +austria text(neighbors:with) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) hungary +austria text(borders:with) liechtenstein +austria text(borders) czechia +hungary text(is:butted:against) ukraine +hungary text(was:butted:against) slovakia +hungary text(was:adjacent:to) slovenia +hungary text(is:adjacent:to) croatia +hungary text(neighbors) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(can:be:found:in) eastern_africa +malawi text(was:situated:in) africa +malawi text(neighbors:with) zambia +malawi text(was:a:neighbor:of) tanzania +malawi text(is:a:neighbor:of) mozambique +hong_kong text(is:a:neighboring:state:to) china +liechtenstein text(is:situated:in) western_europe +liechtenstein text(is:located:in) europe +liechtenstein text(was:a:neighboring:state:to) switzerland +liechtenstein text(borders:with) austria +barbados text(was:located:in) caribbean +barbados text(can:be:found:in) americas +georgia text(was:positioned:in) western_asia +georgia text(is:positioned:in) asia +georgia text(borders) armenia +georgia text(is:butted:against) azerbaijan +georgia text(was:butted:against) russia +georgia text(was:adjacent:to) turkey +albania text(was:sited:in) southern_europe +albania text(is:sited:in) europe +albania text(is:adjacent:to) montenegro +albania text(neighbors) macedonia +albania text(is:a:neighboring:country:of) kosovo +albania text(was:a:neighboring:country:of) greece +kuwait text(was:localized:in) western_asia +kuwait text(is:localized:in) asia +kuwait text(neighbors:with) saudi_arabia +kuwait text(was:a:neighbor:of) iraq +south_africa text(was:present:in) southern_africa +south_africa text(is:present:in) africa +south_africa text(is:a:neighbor:of) mozambique +south_africa text(is:a:neighboring:state:to) botswana +south_africa text(was:a:neighboring:state:to) swaziland +south_africa text(borders:with) zimbabwe +south_africa text(borders) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:still:in) caribbean +haiti text(was:still:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(was:currently:in) southern_asia +afghanistan text(is:currently:in) asia +afghanistan text(was:adjacent:to) turkmenistan +afghanistan text(is:adjacent:to) china +afghanistan text(neighbors) tajikistan +afghanistan text(is:a:neighboring:country:of) uzbekistan +afghanistan text(was:a:neighboring:country:of) iran +afghanistan text(neighbors:with) pakistan +singapore text(is:placed:in) south-eastern_asia +singapore text(was:placed:in) asia +benin text(can:be:found:in) western_africa +benin text(was:situated:in) africa +benin text(was:a:neighbor:of) niger +benin text(is:a:neighbor:of) burkina_faso +benin text(is:a:neighboring:state:to) togo +benin text(was:a:neighboring:state:to) nigeria +åland_islands text(is:situated:in) northern_europe +åland_islands text(is:located:in) europe +croatia text(was:located:in) southern_europe +croatia text(can:be:found:in) europe +croatia text(borders:with) slovenia +croatia text(borders) bosnia_and_herzegovina +croatia text(is:butted:against) hungary +croatia text(was:butted:against) serbia +croatia text(was:adjacent:to) montenegro +sweden text(was:positioned:in) northern_europe +sweden text(is:positioned:in) europe +sweden text(is:adjacent:to) norway +sweden text(neighbors) finland +mexico text(is:a:neighboring:country:of) belize +mexico text(was:a:neighboring:country:of) united_states +mexico text(neighbors:with) guatemala +greenland text(was:sited:in) northern_america +greenland text(is:sited:in) americas +norfolk_island text(was:localized:in) australia_and_new_zealand +norfolk_island text(is:localized:in) oceania +nepal text(was:present:in) southern_asia +nepal text(is:present:in) asia +nepal text(was:a:neighbor:of) china +nepal text(is:a:neighbor:of) india +guatemala text(is:a:neighboring:state:to) belize +guatemala text(was:a:neighboring:state:to) el_salvador +guatemala text(borders:with) mexico +guatemala text(borders) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:butted:against) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:butted:against) ukraine +moldova text(was:adjacent:to) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(is:adjacent:to) ukraine +belarus text(neighbors) poland +belarus text(is:a:neighboring:country:of) lithuania +belarus text(was:a:neighboring:country:of) russia +belarus text(neighbors:with) latvia +bangladesh text(was:a:neighbor:of) myanmar +bangladesh text(is:a:neighbor:of) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(was:situated:in) asia +malaysia text(is:a:neighboring:state:to) thailand +malaysia text(was:a:neighboring:state:to) indonesia +malaysia text(borders:with) brunei +bosnia_and_herzegovina text(is:situated:in) southern_europe +bosnia_and_herzegovina text(is:located:in) europe +bosnia_and_herzegovina text(borders) serbia +bosnia_and_herzegovina text(is:butted:against) croatia +bosnia_and_herzegovina text(was:butted:against) montenegro +luxembourg text(was:located:in) western_europe +luxembourg text(can:be:found:in) europe +luxembourg text(was:adjacent:to) germany +luxembourg text(is:adjacent:to) belgium +luxembourg text(neighbors) france +italy text(was:positioned:in) southern_europe +italy text(is:positioned:in) europe +italy text(is:a:neighboring:country:of) slovenia +italy text(was:a:neighboring:country:of) switzerland +italy text(neighbors:with) austria +italy text(was:a:neighbor:of) france +italy text(is:a:neighbor:of) vatican_city +italy text(is:a:neighboring:state:to) san_marino +azerbaijan text(was:sited:in) western_asia +azerbaijan text(is:sited:in) asia +azerbaijan text(was:a:neighboring:state:to) turkey +azerbaijan text(borders:with) armenia +azerbaijan text(borders) russia +azerbaijan text(is:butted:against) iran +azerbaijan text(was:butted:against) georgia +honduras text(was:localized:in) central_america +honduras text(is:localized:in) americas +honduras text(was:adjacent:to) guatemala +honduras text(is:adjacent:to) nicaragua +honduras text(neighbors) el_salvador +mali text(was:present:in) western_africa +mali text(is:present:in) africa +mali text(is:a:neighboring:country:of) burkina_faso +mali text(was:a:neighboring:country:of) guinea +mali text(neighbors:with) mauritania +mali text(was:a:neighbor:of) niger +mali text(is:a:neighbor:of) senegal +mali text(is:a:neighboring:state:to) algeria +mali text(was:a:neighboring:state:to) ivory_coast +taiwan text(is:still:in) eastern_asia +taiwan text(was:still:in) asia +algeria text(was:currently:in) northern_africa +algeria text(is:currently:in) africa +algeria text(borders:with) libya +algeria text(borders) tunisia +algeria text(is:butted:against) mauritania +algeria text(was:butted:against) morocco +algeria text(was:adjacent:to) niger +algeria text(is:adjacent:to) mali +algeria text(neighbors) western_sahara +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname +yemen text(is:placed:in) western_asia +yemen text(was:placed:in) asia +yemen text(neighbors:with) oman +yemen text(was:a:neighbor:of) saudi_arabia +puerto_rico text(can:be:found:in) caribbean +puerto_rico text(was:situated:in) americas +saint_vincent_and_the_grenadines text(is:situated:in) caribbean +saint_vincent_and_the_grenadines text(is:located:in) americas +venezuela text(is:a:neighbor:of) brazil +venezuela text(is:a:neighboring:state:to) guyana +venezuela text(was:a:neighboring:state:to) colombia +grenada text(was:located:in) caribbean +grenada text(can:be:found:in) americas +united_states text(borders:with) canada +united_states text(borders) mexico +tokelau text(was:positioned:in) polynesia +tokelau text(is:positioned:in) oceania +slovenia text(was:sited:in) southern_europe +slovenia text(is:sited:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(was:adjacent:to) italy +slovenia text(is:adjacent:to) hungary +philippines text(was:localized:in) south-eastern_asia +philippines text(is:localized:in) asia +micronesia text(was:present:in) micronesia +micronesia text(is:present:in) oceania +china text(is:still:in) eastern_asia +china text(was:still:in) asia +china text(neighbors) afghanistan +china text(is:a:neighboring:country:of) bhutan +china text(was:a:neighboring:country:of) macau +china text(neighbors:with) india +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(borders) north_korea +china text(is:butted:against) myanmar +china text(was:butted:against) pakistan +china text(was:adjacent:to) mongolia +china text(is:adjacent:to) hong_kong +china text(neighbors) vietnam +gabon text(was:currently:in) middle_africa +gabon text(is:currently:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(neighbors:with) cameroon +united_states_minor_outlying_islands text(is:placed:in) northern_america +united_states_minor_outlying_islands text(was:placed:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:situated:in) europe +andorra text(was:a:neighbor:of) spain +andorra text(is:a:neighbor:of) france +samoa text(is:situated:in) polynesia +samoa text(is:located:in) oceania +gambia text(was:located:in) western_africa +gambia text(can:be:found:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(was:positioned:in) western_asia +palestine text(is:positioned:in) asia +palestine text(was:a:neighboring:state:to) jordan +palestine text(borders:with) egypt +palestine text(borders) israel +réunion text(was:sited:in) eastern_africa +réunion text(is:sited:in) africa +france text(was:localized:in) western_europe +france text(is:localized:in) europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(was:adjacent:to) italy +france text(is:adjacent:to) andorra +france text(neighbors) switzerland +france text(is:a:neighboring:country:of) monaco +france text(was:a:neighboring:country:of) belgium +france text(neighbors:with) spain +mongolia text(was:present:in) eastern_asia +mongolia text(is:present:in) asia +mongolia text(was:a:neighbor:of) china +mongolia text(is:a:neighbor:of) russia +lithuania text(is:still:in) northern_europe +lithuania text(was:still:in) europe +lithuania text(is:a:neighboring:state:to) poland +lithuania text(was:a:neighboring:state:to) latvia +lithuania text(borders:with) belarus +lithuania text(borders) russia +cayman_islands text(was:currently:in) caribbean +cayman_islands text(is:currently:in) americas +saint_lucia text(is:placed:in) caribbean +saint_lucia text(was:placed:in) americas +curaçao text(can:be:found:in) caribbean +curaçao text(was:situated:in) americas +caribbean text(is:situated:in) americas +southern_asia text(is:located:in) asia +middle_africa text(was:located:in) africa +northern_europe text(can:be:found:in) europe +southern_europe text(was:positioned:in) europe +western_asia text(is:positioned:in) asia +south_america text(was:sited:in) americas +polynesia text(is:sited:in) oceania +australia_and_new_zealand text(was:localized:in) oceania +western_europe text(is:localized:in) europe +eastern_africa text(was:present:in) africa +western_africa text(is:present:in) africa +eastern_europe text(is:still:in) europe +central_america text(was:still:in) americas +northern_america text(was:currently:in) americas +south-eastern_asia text(is:currently:in) asia +southern_africa text(is:placed:in) africa +eastern_asia text(was:placed:in) asia +northern_africa text(can:be:found:in) africa +melanesia text(was:situated:in) oceania +micronesia text(is:situated:in) oceania +central_asia text(is:located:in) asia +central_europe text(was:located:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3.tsv new file mode 100644 index 0000000..7920dbd --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3.tsv @@ -0,0 +1,979 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands neighborOf germany +netherlands neighborOf belgium +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada neighborOf united_states +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize neighborOf guatemala +belize neighborOf mexico +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea neighborOf indonesia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco neighborOf france +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden neighborOf norway +sweden neighborOf finland +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv new file mode 100644 index 0000000..b37c3b8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv @@ -0,0 +1,979 @@ +text(بالاو) locatedIn text(Micronesia) +text(Palau) locatedIn text(大洋洲) +text(मालदीव) locatedIn text(南亚) +text(Maldivas) locatedIn text(آسيا) +text(ब्रुनेई) locatedIn text(Zuidoost-Azië) +text(Brunéi) locatedIn text(एशिया) +text(Brunei) neighborOf text(Maleisië) +text(日本) locatedIn text(شرق:آسيا) +text(Japan) locatedIn text(Azië) +text(Nederland) neighborOf text(ألمانيا) +text(नीदरलैण्ड) neighborOf text(बेल्जियम) +text(Turkije) neighborOf text(أرمينيا) +text(土耳其) neighborOf text(أذربيجان) +text(تركيا) neighborOf text(伊朗) +text(Turquía) neighborOf text(Greece) +text(Turkey) neighborOf text(جورجيا) +text(तुर्की) neighborOf text(保加利亚) +text(Turkije) neighborOf text(Irak) +text(土耳其) neighborOf text(Syrië) +text(अंगोला) locatedIn text(Centraal-Afrika) +text(Angola) neighborOf text(刚果民主共和国) +text(Angola) neighborOf text(Namibia) +text(安哥拉) neighborOf text(贊比亞) +text(أنغولا) neighborOf text(कांगो:गणराज्य) +text(Armenië) locatedIn text(Asia:Occidental) +text(Armenia) neighborOf text(Georgië) +text(आर्मीनिया) neighborOf text(Azerbeidzjan) +text(亞美尼亞) neighborOf text(Iran) +text(Armenia) neighborOf text(تركيا) +text(أنتيغوا:وباربودا) locatedIn text(加勒比地区) +text(Antigua:and:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) neighborOf text(南非) +text(एस्वातीनी) neighborOf text(موزمبيق) +text(واليس:وفوتونا) locatedIn text(Polynesia) +text(瓦利斯和富圖納) locatedIn text(أوقيانوسيا) +text(उरुग्वे) locatedIn text(South:America) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(Brasil) +text(Zambia) locatedIn text(África:Oriental) +text(Zambia) neighborOf text(तंज़ानिया) +text(زامبيا) neighborOf text(Mozambique) +text(ज़ाम्बिया) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) neighborOf text(Angola) +text(贊比亞) neighborOf text(波札那) +text(Zambia) neighborOf text(Zimbabue) +text(Zambia) neighborOf text(ناميبيا) +text(زامبيا) neighborOf text(मलावी) +text(塞浦路斯) locatedIn text(Eastern:Europe) +text(Chipre) locatedIn text(Europa) +text(Cyprus) neighborOf text(المملكة:المتحدة) +text(Verenigd:Koninkrijk) locatedIn text(Noord-Europa) +text(यूनाइटेड:किंगडम) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(United:Kingdom) +text(Burundi) locatedIn text(पूर्वी:अफ्रीका) +text(بوروندي) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(蒲隆地) neighborOf text(रवाण्डा) +text(Burundi) neighborOf text(坦桑尼亞) +text(Central:African:Republic) locatedIn text(África:Central) +text(Centraal-Afrikaanse:Republiek) neighborOf text(चाड) +text(República:Centroafricana) neighborOf text(República:del:Congo) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(República:Democrática:del:Congo) +text(中非共和國) neighborOf text(दक्षिण:सूडान) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(喀麦隆) +text(Central:African:Republic) neighborOf text(السودان) +text(تونغا) locatedIn text(بولنيزيا) +text(Tonga) locatedIn text(Oceanía) +text(कोत:दिव्वार) locatedIn text(पश्चिमी:अफ्रीका) +text(科特迪瓦) neighborOf text(Burkina:Faso) +text(Ivoorkust) neighborOf text(घाना) +text(Costa:de:Marfil) neighborOf text(ليبيريا) +text(Ivory:Coast) neighborOf text(مالي) +text(ساحل:العاج) neighborOf text(غينيا) +text(Sierra:Leona) neighborOf text(Liberia) +text(塞拉利昂) neighborOf text(Guinea) +text(Mayotte) locatedIn text(East:Africa) +text(मेयोट) locatedIn text(अफ्रीका) +text(Polen) neighborOf text(德國) +text(波蘭) neighborOf text(युक्रेन) +text(Poland) neighborOf text(Slovakia) +text(पोलैंड) neighborOf text(白俄羅斯) +text(بولندا) neighborOf text(Russia) +text(Polonia) neighborOf text(Lituania) +text(Polen) neighborOf text(Czech:Republic) +text(कज़ाख़िस्तान) locatedIn text(آسيا:الوسطى) +text(Kazachstan) neighborOf text(Turkmenistan) +text(Kazajistán) neighborOf text(República:Popular:China) +text(哈萨克斯坦) neighborOf text(قرغيزستان) +text(Kazakhstan) neighborOf text(उज़्बेकिस्तान) +text(كازاخستان) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(Central:Asia) +text(أوزبكستان) neighborOf text(أفغانستان) +text(乌兹别克斯坦) neighborOf text(तुर्कमेनिस्तान) +text(Uzbekistán) neighborOf text(कज़ाख़िस्तान) +text(Oezbekistan) neighborOf text(Kyrgyzstan) +text(उज़्बेकिस्तान) neighborOf text(Tadzjikistan) +text(جزر:توركس:وكايكوس) locatedIn text(कैरिबिया) +text(特克斯和凯科斯群岛) locatedIn text(Amerika) +text(新喀里多尼亞) locatedIn text(Melanesia) +text(Nieuw-Caledonië) locatedIn text(ओशिआनिया) +text(Pakistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(पाकिस्तान) neighborOf text(阿富汗) +text(Pakistan) neighborOf text(إيران) +text(باكستان) neighborOf text(الهند) +text(अर्जेण्टीना) locatedIn text(أمريكا:الجنوبية) +text(Argentinië) neighborOf text(Bolivia) +text(الأرجنتين) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazil) +text(Argentina) neighborOf text(Paraguay) +text(阿根廷) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(Caribbean) +text(क्यूबा) locatedIn text(América) +text(صربيا) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(塞爾維亞) neighborOf text(科索沃) +text(Servië) neighborOf text(波斯尼亚和黑塞哥维那) +text(सर्बिया) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hungría) +text(صربيا) neighborOf text(Bulgaria) +text(Serbia) neighborOf text(Romania) +text(Tsjechië) locatedIn text(东欧) +text(جمهورية:التشيك) neighborOf text(जर्मनी) +text(República:Checa) neighborOf text(ऑस्ट्रिया) +text(चेक:गणराज्य) neighborOf text(波蘭) +text(捷克) neighborOf text(Eslovaquia) +text(نيكاراغوا) neighborOf text(Honduras) +text(Nicaragua) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(东南亚) +text(越南) locatedIn text(Asia) +text(فيتنام) neighborOf text(Camboya) +text(वियतनाम) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(Niue) locatedIn text(पोलीनेशिया) +text(Niue) locatedIn text(Oceania) +text(कनाडा) locatedIn text(北美洲) +text(كندا) neighborOf text(Verenigde:Staten) +text(斯洛伐克) neighborOf text(أوكرانيا) +text(स्लोवाकिया) neighborOf text(Poland) +text(سلوفاكيا) neighborOf text(奧地利) +text(Slowakije) neighborOf text(المجر) +text(Slovakia) neighborOf text(Czech:Republic) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(Eswatini) +text(莫桑比克) neighborOf text(زيمبابوي) +text(Mozambique) neighborOf text(ज़ाम्बिया) +text(موزمبيق) neighborOf text(Malaui) +text(Mozambique) neighborOf text(दक्षिण:अफ़्रीका) +text(أروبا) locatedIn text(Caraïben) +text(अरूबा) locatedIn text(Americas) +text(Bolivia) locatedIn text(南美洲) +text(Bolivia) neighborOf text(智利) +text(बोलिविया) neighborOf text(巴西) +text(بوليفيا) neighborOf text(Paraguay) +text(玻利維亞) neighborOf text(अर्जेण्टीना) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(América:del:Sur) +text(哥伦比亚) neighborOf text(厄瓜多尔) +text(Colombia) neighborOf text(Brazilië) +text(कोलम्बिया) neighborOf text(Panama) +text(كولومبيا) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(斐濟) locatedIn text(Melanesia) +text(फ़िजी) locatedIn text(Oceanië) +text(جمهورية:الكونغو) neighborOf text(الغابون) +text(剛果共和國) neighborOf text(Congo-Kinshasa) +text(Congo-Brazzaville) neighborOf text(अंगोला) +text(Republic:of:the:Congo) neighborOf text(الكاميرون) +text(कांगो:गणराज्य) neighborOf text(Centraal-Afrikaanse:Republiek) +text(السعودية) neighborOf text(Catar) +text(सउदी:अरब) neighborOf text(संयुक्त:अरब:अमीरात) +text(Saudi:Arabia) neighborOf text(Jordan) +text(Saoedi-Arabië) neighborOf text(اليمن) +text(Arabia:Saudí) neighborOf text(Oman) +text(沙特阿拉伯) neighborOf text(科威特) +text(السعودية) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) neighborOf text(Guatemala) +text(السلفادور) neighborOf text(Honduras) +text(Madagascar) locatedIn text(شرق:إفريقيا) +text(Madagaskar) locatedIn text(非洲) +text(Australië) locatedIn text(nan) +text(澳大利亚) locatedIn text(大洋洲) +text(नामीबिया) locatedIn text(Zuidelijk:Afrika) +text(Namibië) locatedIn text(إفريقيا) +text(纳米比亚) neighborOf text(Zambia) +text(Namibia) neighborOf text(Angola) +text(Namibia) neighborOf text(Zuid-Afrika) +text(ناميبيا) neighborOf text(Botsuana) +text(吐瓦魯) locatedIn text(玻里尼西亞) +text(Tuvalu) locatedIn text(أوقيانوسيا) +text(سفالبارد:ويان:ماين) locatedIn text(Europa:del:Norte) +text(Svalbard:and:Jan:Mayen) locatedIn text(Europe) +text(马恩岛) locatedIn text(北歐) +text(आइल:ऑफ़:मैन) locatedIn text(Europa) +text(圭亚那) neighborOf text(ब्राज़ील) +text(Guyana) neighborOf text(سورينام) +text(غيانا) neighborOf text(委內瑞拉) +text(الفاتيكان) locatedIn text(أوروبا:الجنوبية) +text(Vatican:City) locatedIn text(أوروبا) +text(वैटिकन:नगर) neighborOf text(Italia) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) locatedIn text(Oost-Afrika) +text(إقليم:المحيط:الهندي:البريطاني) locatedIn text(Africa) +text(Nigeria) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(नाइजीरिया) neighborOf text(Chad) +text(奈及利亞) neighborOf text(尼日尔) +text(نيجيريا) neighborOf text(Kameroen) +text(Nigeria) neighborOf text(बेनिन) +text(Duitsland) neighborOf text(Dinamarca) +text(Alemania) neighborOf text(Países:Bajos) +text(Germany) neighborOf text(पोलैंड) +text(ألمانيا) neighborOf text(Luxemburgo) +text(德國) neighborOf text(Bélgica) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Tsjechië) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(Benin) +text(Burkina:Faso) neighborOf text(नाइजर) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(कोत:दिव्वार) +text(تنزانيا) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(Tanzania) neighborOf text(Democratic:Republic:of:the:Congo) +text(तंज़ानिया) neighborOf text(Kenia) +text(坦桑尼亞) neighborOf text(Ruanda) +text(Tanzania) neighborOf text(贊比亞) +text(تنزانيا) neighborOf text(馬拉威) +text(Tanzania) neighborOf text(बुरुण्डी) +text(Northern:Mariana:Islands) locatedIn text(Micronesia) +text(北马里亚纳群岛) locatedIn text(Oceanía) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) neighborOf text(Guatemala) +text(Belice) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finlandia) +text(Noorwegen) neighborOf text(俄罗斯) +text(islas:Cocos) locatedIn text(nan) +text(科科斯(基林)群島) locatedIn text(ओशिआनिया) +text(Laos) locatedIn text(Southeast:Asia) +text(लाओस) neighborOf text(People's:Republic:of:China) +text(Laos) neighborOf text(कम्बोडिया) +text(لاوس) neighborOf text(ميانمار) +text(老撾) neighborOf text(Vietnam) +text(Laos) neighborOf text(Thailand) +text(Sahrawi:Arab:Democratic:Republic) locatedIn text(उत्तर:अफ़्रीका) +text(República:Árabe:Saharaui:Democrática) neighborOf text(Argelia) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(मॉरीतानिया) +text(撒拉威阿拉伯民主共和國) neighborOf text(Marruecos) +text(Suriname) locatedIn text(दक्षिण:अमेरिका) +text(सूरीनाम) neighborOf text(البرازيل) +text(Suriname) neighborOf text(غويانا:الفرنسية) +text(Surinam) neighborOf text(Guyana) +text(جزيرة:عيد:الميلاد) locatedIn text(Australië:en:Nieuw-Zeeland) +text(क्रिसमस:द्वीप) locatedIn text(Oceania) +text(圣多美和普林西比) locatedIn text(وسط:إفريقيا) +text(Sao:Tomé:en:Principe) locatedIn text(Afrika) +text(Egipto) neighborOf text(Libië) +text(Egypte) neighborOf text(Israël) +text(埃及) neighborOf text(Sudan) +text(Bulgaria) neighborOf text(北马其顿) +text(Bulgarije) neighborOf text(Turquía) +text(बुल्गारिया) neighborOf text(यूनान) +text(بلغاريا) neighborOf text(塞爾維亞) +text(保加利亚) neighborOf text(羅馬尼亞) +text(गिनी) locatedIn text(西非) +text(Guinee) neighborOf text(غينيا:بيساو) +text(几内亚) neighborOf text(सिएरा:लियोन) +text(Guinea) neighborOf text(马里) +text(غينيا) neighborOf text(Liberia) +text(Guinea) neighborOf text(Senegal) +text(गिनी) neighborOf text(科特迪瓦) +text(Spanje) neighborOf text(Morocco) +text(إسبانيا) neighborOf text(Gibraltar) +text(España) neighborOf text(Andorra) +text(स्पेन) neighborOf text(Francia) +text(西班牙) neighborOf text(Portugal) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) neighborOf text(بنما) +text(哥斯达黎加) neighborOf text(Nicaragua) +text(馬耳他) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(欧洲) +text(Portugal) locatedIn text(Southern:Europe) +text(पुर्तगाल) neighborOf text(Spain) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) neighborOf text(Oekraïne) +text(रोमानिया) neighborOf text(Hungary) +text(Rumania) neighborOf text(मोल्डोवा) +text(Romania) neighborOf text(Bulgaria) +text(羅馬尼亞) neighborOf text(Servië) +text(San:Marino) locatedIn text(Zuid-Europa) +text(San:Marino) locatedIn text(Europa) +text(सान:मारिनो) neighborOf text(इटली) +text(Mauritanië) locatedIn text(África:Occidental) +text(毛里塔尼亞) locatedIn text(अफ्रीका) +text(Mauritania) neighborOf text(الجزائر) +text(Mauritania) neighborOf text(माली) +text(موريتانيا) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) neighborOf text(Senegal) +text(千里達及托巴哥) locatedIn text(Caribe) +text(Trinidad:and:Tobago) locatedIn text(أمريكتان) +text(Bahrein) locatedIn text(西亚) +text(البحرين) locatedIn text(Asia) +text(緬甸) neighborOf text(India) +text(Birmania) neighborOf text(Bangladés) +text(Myanmar) neighborOf text(中华人民共和国) +text(म्यान्मार) neighborOf text(Laos) +text(Myanmar) neighborOf text(تايلاند) +text(इराक) neighborOf text(Turkey) +text(Irak) neighborOf text(सउदी:अरब) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordania) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) locatedIn text(Zuid-Amerika) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) locatedIn text(美洲) +text(आइसलैण्ड) locatedIn text(أوروبا:الشمالية) +text(Iceland) locatedIn text(यूरोप) +text(刚果民主共和国) locatedIn text(Central:Africa) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Uganda) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Tanzania) +text(República:Democrática:del:Congo) neighborOf text(República:del:Congo) +text(Congo-Kinshasa) neighborOf text(República:Centroafricana) +text(Democratic:Republic:of:the:Congo) neighborOf text(Angola) +text(刚果民主共和国) neighborOf text(Rwanda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Sudán:del:Sur) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Zambia) +text(República:Democrática:del:Congo) neighborOf text(Burundi) +text(Seychelles) locatedIn text(东部非洲) +text(سيشل) locatedIn text(非洲) +text(किर्गिज़स्तान) neighborOf text(الصين) +text(Kirgizië) neighborOf text(Kazachstan) +text(Kirguistán) neighborOf text(طاجيكستان) +text(吉尔吉斯斯坦) neighborOf text(Uzbekistan) +text(Botswana) locatedIn text(Southern:Africa) +text(बोत्सवाना) neighborOf text(津巴布韦) +text(بوتسوانا) neighborOf text(नामीबिया) +text(Botswana) neighborOf text(Zambia) +text(波札那) neighborOf text(South:Africa) +text(Islas:Feroe) locatedIn text(Northern:Europe) +text(Faroe:Islands) locatedIn text(Europe) +text(جامايكا) locatedIn text(الكاريبي) +text(牙買加) locatedIn text(महाअमेरिका) +text(美屬薩摩亞) locatedIn text(Polynesië) +text(American:Samoa) locatedIn text(Oceanië) +text(ليسوتو) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(إفريقيا) +text(莱索托) neighborOf text(Sudáfrica) +text(Sri:Lanka) neighborOf text(भारत) +text(بلجيكا) locatedIn text(Western:Europe) +text(België) neighborOf text(ألمانيا) +text(Belgium) neighborOf text(Luxemburg) +text(比利時) neighborOf text(فرنسا) +text(बेल्जियम) neighborOf text(荷蘭) +text(क़तर) locatedIn text(West:Asia) +text(Qatar) neighborOf text(Saudi:Arabia) +text(सोलोमन:द्वीपसमूह) locatedIn text(ميلانيزيا) +text(Salomonseilanden) locatedIn text(大洋洲) +text(敘利亞) locatedIn text(غرب:آسيا) +text(سوريا) neighborOf text(إسرائيل) +text(सीरिया) neighborOf text(तुर्की) +text(Siria) neighborOf text(الأردن) +text(Syrië) neighborOf text(黎巴嫩) +text(Syria) neighborOf text(इराक) +text(印度) locatedIn text(Asia:del:Sur) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(India) neighborOf text(Bhutan) +text(الهند) neighborOf text(孟加拉國) +text(India) neighborOf text(República:Popular:China) +text(भारत) neighborOf text(نيبال) +text(印度) neighborOf text(ميانمار) +text(India) neighborOf text(巴基斯坦) +text(India) neighborOf text(سريلانكا) +text(المغرب) neighborOf text(अल्जीरिया) +text(मोरक्को) neighborOf text(Spanje) +text(摩洛哥) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Kenia) locatedIn text(África:Oriental) +text(Kenya) neighborOf text(أوغندا) +text(कीनिया) neighborOf text(तंज़ानिया) +text(肯尼亚) neighborOf text(Somalië) +text(كينيا) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(Etiopía) +text(Zuid-Soedan) locatedIn text(मध्य:अफ्रीका) +text(جنوب:السودان) neighborOf text(Oeganda) +text(South:Sudan) neighborOf text(Congo-Kinshasa) +text(दक्षिण:सूडान) neighborOf text(Kenia) +text(Sudán:del:Sur) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(南蘇丹) neighborOf text(Sudán) +text(Zuid-Soedan) neighborOf text(إثيوبيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Ivoorkust) +text(غانا) neighborOf text(多哥) +text(ताजीकिस्तान) locatedIn text(Centraal-Azië) +text(Tayikistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(塔吉克斯坦) neighborOf text(قرغيزستان) +text(Tajikistan) neighborOf text(Afghanistan) +text(Tadzjikistan) neighborOf text(أوزبكستان) +text(馬紹爾群島) locatedIn text(ميكرونيسيا) +text(मार्शल:द्वीपसमूह) locatedIn text(أوقيانوسيا) +text(Cameroon) locatedIn text(中部非洲) +text(Camerún) neighborOf text(Tsjaad) +text(कैमरुन) neighborOf text(جمهورية:الكونغو) +text(喀麦隆) neighborOf text(गबॉन) +text(الكاميرون) neighborOf text(赤道几内亚) +text(Kameroen) neighborOf text(中非共和國) +text(Cameroon) neighborOf text(Nigeria) +text(Nauru) locatedIn text(माइक्रोनीशिया) +text(Nauru) locatedIn text(Oceanía) +text(Thailand) neighborOf text(Cambodja) +text(थाईलैंड) neighborOf text(緬甸) +text(泰國) neighborOf text(लाओस) +text(Tailandia) neighborOf text(Malaysia) +text(सूडान) neighborOf text(Chad) +text(苏丹) neighborOf text(ليبيا) +text(Soedan) neighborOf text(جنوب:السودان) +text(السودان) neighborOf text(Eritrea) +text(Sudan) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Sudán) neighborOf text(مصر) +text(सूडान) neighborOf text(埃塞俄比亚) +text(تشاد) locatedIn text(Centraal-Afrika) +text(乍得) neighborOf text(利比亞) +text(चाड) neighborOf text(Níger) +text(Chad) neighborOf text(South:Sudan) +text(Tsjaad) neighborOf text(Camerún) +text(Chad) neighborOf text(Central:African:Republic) +text(تشاد) neighborOf text(Nigeria) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(Vanuatu) locatedIn text(ओशिआनिया) +text(केप:वर्दे) locatedIn text(West-Afrika) +text(Cabo:Verde) locatedIn text(Africa) +text(Falkland:Islands) locatedIn text(South:America) +text(Falklandeilanden) locatedIn text(Amerika) +text(Liberia) locatedIn text(غرب:إفريقيا) +text(लाइबेरिया) neighborOf text(Costa:de:Marfil) +text(利比里亞) neighborOf text(سيراليون) +text(ليبيريا) neighborOf text(Guinee) +text(كمبوديا) locatedIn text(جنوب:شرق:آسيا) +text(柬埔寨) neighborOf text(Vietnam) +text(Cambodia) neighborOf text(Thailand) +text(Camboya) neighborOf text(Laos) +text(ज़िम्बाब्वे) neighborOf text(زامبيا) +text(Zimbabwe) neighborOf text(جنوب:إفريقيا) +text(Zimbabwe) neighborOf text(Botsuana) +text(Zimbabue) neighborOf text(मोज़ाम्बीक) +text(Comoren) locatedIn text(पूर्वी:अफ्रीका) +text(葛摩) locatedIn text(África) +text(Guam) locatedIn text(Micronesië) +text(Guam) locatedIn text(Oceania) +text(Bahama's) locatedIn text(加勒比地区) +text(Bahamas) locatedIn text(América) +text(लेबनॉन) locatedIn text(पश्चिमी:एशिया) +text(Libanon) locatedIn text(亞洲) +text(Líbano) neighborOf text(以色列) +text(Lebanon) neighborOf text(敘利亞) +text(سانت:مارتن) locatedIn text(कैरिबिया) +text(San:Martín) locatedIn text(Americas) +text(Sint:Maarten) neighborOf text(San:Martín) +text(इथियोपिया) locatedIn text(East:Africa) +text(Ethiopië) neighborOf text(Somalia) +text(Ethiopia) neighborOf text(Kenya) +text(Etiopía) neighborOf text(Eritrea) +text(إثيوبيا) neighborOf text(दक्षिण:सूडान) +text(埃塞俄比亚) neighborOf text(जिबूती) +text(इथियोपिया) neighborOf text(苏丹) +text(United:States:Virgin:Islands) locatedIn text(Caribbean) +text(Amerikaanse:Maagdeneilanden) locatedIn text(أمريكتان) +text(Guinea-Bisáu) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea-Bissau) locatedIn text(Afrika) +text(畿內亞比紹) neighborOf text(几内亚) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(Libya) locatedIn text(Norte:de:África) +text(Libia) neighborOf text(乍得) +text(लीबिया) neighborOf text(تونس) +text(Libië) neighborOf text(النيجر) +text(ليبيا) neighborOf text(Algerije) +text(利比亞) neighborOf text(Egypt) +text(Libya) neighborOf text(Soedan) +text(Bhutan) locatedIn text(Zuid-Azië) +text(भूटान) locatedIn text(آسيا) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(الهند) +text(Macau) locatedIn text(East:Asia) +text(Macao) locatedIn text(एशिया) +text(澳門) neighborOf text(People's:Republic:of:China) +text(Polinesia:Francesa) locatedIn text(Polinesia) +text(بولنيزيا:الفرنسية) locatedIn text(Oceanië) +text(الصومال) locatedIn text(شرق:إفريقيا) +text(सोमालिया) neighborOf text(吉布提) +text(Somalia) neighborOf text(कीनिया) +text(索馬里) neighborOf text(Ethiopië) +text(聖巴泰勒米) locatedIn text(Caraïben) +text(San:Bartolomé) locatedIn text(美洲) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) neighborOf text(Ukraine) +text(Rusland) neighborOf text(बेलारूस) +text(Russia) neighborOf text(中华人民共和国) +text(रूस) neighborOf text(Kazajistán) +text(俄罗斯) neighborOf text(挪威) +text(روسيا) neighborOf text(بولندا) +text(Rusia) neighborOf text(Azerbaiyán) +text(Rusland) neighborOf text(Litouwen) +text(Russia) neighborOf text(إستونيا) +text(रूस) neighborOf text(Corea:del:Norte) +text(俄罗斯) neighborOf text(Finland) +text(روسيا) neighborOf text(Mongolia) +text(Rusia) neighborOf text(拉脫維亞) +text(Rusland) neighborOf text(Georgia) +text(न्यूज़ीलैंड) locatedIn text(nan) +text(Nueva:Zelanda) locatedIn text(大洋洲) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(महाअमेरिका) +text(巴拿馬) neighborOf text(Costa:Rica) +text(पनामा) neighborOf text(Colombia) +text(بابوا:غينيا:الجديدة) locatedIn text(美拉尼西亞) +text(Papoea-Nieuw-Guinea) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(South:Korea) +text(朝鮮民主主義人民共和國) neighborOf text(Russia) +text(Letonia) locatedIn text(उत्तरी:यूरोप) +text(लातविया) neighborOf text(लिथुआनिया) +text(Letland) neighborOf text(Bielorrusia) +text(لاتفيا) neighborOf text(रूस) +text(Latvia) neighborOf text(Estonia) +text(سلطنة:عمان) locatedIn text(Zuidwest-Azië) +text(ओमान) neighborOf text(Saoedi-Arabië) +text(阿曼) neighborOf text(Yemen) +text(Oman) neighborOf text(阿拉伯联合酋长国) +text(Saint-Pierre:en:Miquelon) locatedIn text(أمريكا:الشمالية) +text(Saint:Pierre:and:Miquelon) locatedIn text(Amerika) +text(Martinica) locatedIn text(Caribe) +text(Martinique) locatedIn text(América) +text(英国) locatedIn text(Noord-Europa) +text(Verenigd:Koninkrijk) locatedIn text(Europa) +text(यूनाइटेड:किंगडम) neighborOf text(United:Kingdom) +text(Israel) locatedIn text(Asia:Occidental) +text(Israel) neighborOf text(لبنان) +text(इज़राइल) neighborOf text(मिस्र) +text(Israël) neighborOf text(約旦) +text(إسرائيل) neighborOf text(سوريا) +text(جيرزي) locatedIn text(Europa:del:Norte) +text(जर्सी) locatedIn text(أوروبا) +text(Pitcairn:Islands) locatedIn text(Polynesia) +text(皮特凯恩群岛) locatedIn text(أوقيانوسيا) +text(टोगो) locatedIn text(West:Africa) +text(توغو) neighborOf text(بوركينا:فاسو) +text(Togo) neighborOf text(Ghana) +text(Togo) neighborOf text(貝南) +text(किरिबाती) locatedIn text(密克羅尼西亞群島) +text(吉里巴斯) locatedIn text(Oceanía) +text(ईरान) locatedIn text(جنوب:آسيا) +text(Irán) neighborOf text(Afghanistan) +text(伊朗) neighborOf text(Turkmenistán) +text(Iran) neighborOf text(Turkije) +text(إيران) neighborOf text(أرمينيا) +text(Iran) neighborOf text(Azerbaijan) +text(ईरान) neighborOf text(Pakistan) +text(Irán) neighborOf text(Irak) +text(Sint-Maarten) locatedIn text(الكاريبي) +text(सेंट:मार्टिन:की:सामूहिकता) locatedIn text(Americas) +text(تجمع:سان:مارتين) neighborOf text(सेंट:मार्टिन) +text(Dominicaanse:Republiek) locatedIn text(加勒比地区) +text(डोमिनिकन:गणराज्य) locatedIn text(أمريكتان) +text(República:Dominicana) neighborOf text(Haiti) +text(डेनमार्क) neighborOf text(德國) +text(Bermuda) locatedIn text(América:del:Norte) +text(Bermudas) locatedIn text(美洲) +text(تشيلي) neighborOf text(Argentinië) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(पूर्वी:यूरोप) +text(कोसोवो:गणराज्य) neighborOf text(सर्बिया) +text(Kosovo) neighborOf text(Albanië) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(كوسوفو) neighborOf text(Montenegro) +text(Saint:Kitts:and:Nevis) locatedIn text(कैरिबिया) +text(سانت:كيتس:ونيفيس) locatedIn text(महाअमेरिका) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(السودان) +text(Eritrea) neighborOf text(Ethiopia) +text(भूमध्यरेखीय:गिनी) locatedIn text(África:Central) +text(Guinea:Ecuatorial) locatedIn text(अफ्रीका) +text(Equatorial:Guinea) neighborOf text(Gabon) +text(غينيا:الاستوائية) neighborOf text(कैमरुन) +text(Niger) locatedIn text(西非) +text(Niger) neighborOf text(चाड) +text(尼日尔) neighborOf text(Libia) +text(नाइजर) neighborOf text(Burkina:Faso) +text(Níger) neighborOf text(بنين) +text(النيجر) neighborOf text(Mali) +text(Niger) neighborOf text(Algeria) +text(Niger) neighborOf text(नाइजीरिया) +text(安圭拉) locatedIn text(Caribbean) +text(Anguilla) locatedIn text(Amerika) +text(رواندا) locatedIn text(Oost-Afrika) +text(卢旺达) neighborOf text(Burundi) +text(Rwanda) neighborOf text(坦桑尼亞) +text(रवाण्डा) neighborOf text(烏干達) +text(Ruanda) neighborOf text(Democratic:Republic:of:the:Congo) +text(الإمارات:العربية:المتحدة) locatedIn text(西亚) +text(Verenigde:Arabische:Emiraten) neighborOf text(Omán) +text(United:Arab:Emirates) neighborOf text(Arabia:Saudí) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(欧洲) +text(Estonia) neighborOf text(拉脫維亞) +text(愛沙尼亞) neighborOf text(俄罗斯) +text(Griekenland) locatedIn text(Europa:del:Sur) +text(Grecia) neighborOf text(Bulgaria) +text(希腊) neighborOf text(Albania) +text(اليونان) neighborOf text(North:Macedonia) +text(Greece) neighborOf text(土耳其) +text(Senegal) locatedIn text(África:Occidental) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritanië) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(Gambia) +text(Senegal) neighborOf text(Guinea) +text(غوادلوب) locatedIn text(Caraïben) +text(瓜德羅普) locatedIn text(América) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(Somalië) +text(جيبوتي) neighborOf text(Etiopía) +text(इंडोनेशिया) neighborOf text(Papua:New:Guinea) +text(Indonesia) neighborOf text(Oost-Timor) +text(印度尼西亚) neighborOf text(Malasia) +text(Islas:Vírgenes:Británicas) locatedIn text(Caribe) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(库克群岛) locatedIn text(بولنيزيا) +text(Cookeilanden) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(东部非洲) +text(Uganda) neighborOf text(Tanzania) +text(Uganda) neighborOf text(刚果民主共和国) +text(أوغندا) neighborOf text(肯尼亚) +text(Oeganda) neighborOf text(Sudán:del:Sur) +text(烏干達) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) neighborOf text(科索沃) +text(Macedonia:del:Norte) neighborOf text(यूनान) +text(北马其顿) neighborOf text(Albania) +text(Noord-Macedonië) neighborOf text(Serbia) +text(North:Macedonia) neighborOf text(Bulgarije) +text(Túnez) locatedIn text(شمال:إفريقيا) +text(突尼西亞) locatedIn text(إفريقيا) +text(Tunisia) neighborOf text(लीबिया) +text(ट्यूनिशिया) neighborOf text(阿爾及利亞) +text(Ecuador) neighborOf text(पेरू) +text(ईक्वाडोर) neighborOf text(哥伦比亚) +text(Brasil) locatedIn text(أمريكا:الجنوبية) +text(Brazil) neighborOf text(Bolivia) +text(巴西) neighborOf text(Colombia) +text(Brazilië) neighborOf text(巴拉圭) +text(ब्राज़ील) neighborOf text(الأوروغواي) +text(البرازيل) neighborOf text(法屬圭亞那) +text(Brasil) neighborOf text(蘇利南) +text(Brazil) neighborOf text(Venezuela) +text(巴西) neighborOf text(الأرجنتين) +text(Brazilië) neighborOf text(Guyana) +text(ब्राज़ील) neighborOf text(秘鲁) +text(पैराग्वे) locatedIn text(南美洲) +text(Paraguay) locatedIn text(أمريكتان) +text(باراغواي) neighborOf text(Argentina) +text(Paraguay) neighborOf text(البرازيل) +text(Paraguay) neighborOf text(बोलिविया) +text(芬蘭) locatedIn text(أوروبا:الشمالية) +text(فنلندا) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(फ़िनलैण्ड) neighborOf text(روسيا) +text(Jordanië) neighborOf text(沙特阿拉伯) +text(जॉर्डन) neighborOf text(以色列) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(सीरिया) +text(تيمور:الشرقية) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(Bosnia:and:Herzegovina) +text(Montenegro) neighborOf text(Kroatië) +text(मॉन्टेनीग्रो) neighborOf text(صربيا) +text(Montenegro) neighborOf text(ألبانيا) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) neighborOf text(الإكوادور) +text(بيرو) neighborOf text(بوليفيا) +text(Peru) neighborOf text(Chile) +text(पेरू) neighborOf text(Brasil) +text(秘鲁) neighborOf text(कोलम्बिया) +text(Montserrat) locatedIn text(الكاريبي) +text(蒙塞拉特島) locatedIn text(美洲) +text(Ucrania) locatedIn text(Oost-Europa) +text(烏克蘭) neighborOf text(Eslovaquia) +text(युक्रेन) neighborOf text(Belarus) +text(أوكرانيا) neighborOf text(Polonia) +text(Oekraïne) neighborOf text(Rusia) +text(Ukraine) neighborOf text(匈牙利) +text(Ucrania) neighborOf text(Moldova) +text(烏克蘭) neighborOf text(Roemenië) +text(Dominica) locatedIn text(加勒比地区) +text(多米尼克) locatedIn text(महाअमेरिका) +text(Turkmenistan) neighborOf text(哈萨克斯坦) +text(تركمانستان) neighborOf text(Afganistán) +text(土庫曼斯坦) neighborOf text(乌兹别克斯坦) +text(Turkmenistan) neighborOf text(伊朗) +text(Guernsey) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(Europa) +text(直布羅陀) locatedIn text(दक्षिणी:यूरोप) +text(جبل:طارق) neighborOf text(إسبانيا) +text(स्विट्ज़रलैण्ड) locatedIn text(西欧) +text(瑞士) neighborOf text(जर्मनी) +text(سويسرا) neighborOf text(Italy) +text(Zwitserland) neighborOf text(Austria) +text(Switzerland) neighborOf text(法國) +text(Suiza) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(पश्चिमी:यूरोप) +text(النمسا) neighborOf text(Duitsland) +text(ऑस्ट्रिया) neighborOf text(斯洛伐克) +text(奧地利) neighborOf text(斯洛文尼亞) +text(Austria) neighborOf text(إيطاليا) +text(Austria) neighborOf text(स्विट्ज़रलैण्ड) +text(Oostenrijk) neighborOf text(Hongarije) +text(النمسا) neighborOf text(Liechtenstein) +text(ऑस्ट्रिया) neighborOf text(جمهورية:التشيك) +text(हंगरी) neighborOf text(युक्रेन) +text(Hungría) neighborOf text(स्लोवाकिया) +text(المجر) neighborOf text(Eslovenia) +text(Hungary) neighborOf text(Croatia) +text(匈牙利) neighborOf text(奧地利) +text(Hongarije) neighborOf text(Serbia) +text(हंगरी) neighborOf text(رومانيا) +text(مالاوي) locatedIn text(África:Oriental) +text(Malawi) neighborOf text(ज़ाम्बिया) +text(Malawi) neighborOf text(تنزانيا) +text(मलावी) neighborOf text(莫桑比克) +text(هونغ:كونغ) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(West-Europa) +text(Liechtenstein) locatedIn text(यूरोप) +text(列支敦斯登) neighborOf text(瑞士) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(कैरिबिया) +text(باربادوس) locatedIn text(Amerika) +text(जॉर्जिया) locatedIn text(West:Asia) +text(格鲁吉亚) neighborOf text(Armenië) +text(Georgia) neighborOf text(阿塞拜疆) +text(جورجيا) neighborOf text(Rusland) +text(Georgië) neighborOf text(تركيا) +text(阿爾巴尼亞) locatedIn text(Southern:Europe) +text(अल्बानिया) locatedIn text(Europe) +text(Albanië) neighborOf text(الجبل:الأسود) +text(Albania) neighborOf text(مقدونيا:الشمالية) +text(Albania) neighborOf text(कोसोवो:गणराज्य) +text(ألبانيا) neighborOf text(Griekenland) +text(Kuwait) locatedIn text(غرب:آسيا) +text(कुवैत) neighborOf text(السعودية) +text(Koeweit) neighborOf text(Iraq) +text(南非) locatedIn text(南部非洲) +text(दक्षिण:अफ़्रीका) neighborOf text(Mozambique) +text(Zuid-Afrika) neighborOf text(Botswana) +text(South:Africa) neighborOf text(斯威士兰) +text(Sudáfrica) neighborOf text(زيمبابوي) +text(جنوب:إفريقيا) neighborOf text(Namibië) +text(南非) neighborOf text(Lesoto) +text(हैती) locatedIn text(Caribbean) +text(هايتي) locatedIn text(América) +text(海地) neighborOf text(Dominican:Republic) +text(أفغانستان) locatedIn text(दक्षिण:एशिया) +text(阿富汗) neighborOf text(तुर्कमेनिस्तान) +text(अफ़्ग़ानिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(طاجيكستان) +text(Afghanistan) neighborOf text(Uzbekistán) +text(Afganistán) neighborOf text(Iran) +text(أفغانستان) neighborOf text(Pakistán) +text(新加坡) locatedIn text(Sudeste:Asiático) +text(Singapore) locatedIn text(Azië) +text(Benin) locatedIn text(West-Afrika) +text(Benín) neighborOf text(尼日尔) +text(बेनिन) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(貝南) neighborOf text(奈及利亞) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(جزر:أولاند) locatedIn text(Europa) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) neighborOf text(Slovenië) +text(كرواتيا) neighborOf text(Bosnië:en:Herzegovina) +text(क्रोएशिया) neighborOf text(Hungría) +text(Kroatië) neighborOf text(塞爾維亞) +text(Croatia) neighborOf text(蒙特內哥羅) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) neighborOf text(Noruega) +text(瑞典) neighborOf text(Finlandia) +text(México) neighborOf text(بليز) +text(Mexico) neighborOf text(美國) +text(Mexico) neighborOf text(危地马拉) +text(Groenlandia) locatedIn text(उत्तर:अमेरिका) +text(ग्रीनलैण्ड) locatedIn text(Americas) +text(皮特凯恩群岛) locatedIn text(Australia:and:New:Zealand) +text(Islas:Pitcairn) locatedIn text(Oceania) +text(नेपाल) locatedIn text(South:Asia) +text(尼泊爾) locatedIn text(Asia) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(Nepal) neighborOf text(India) +text(ग्वाटेमाला) neighborOf text(伯利兹) +text(غواتيمالا) neighborOf text(薩爾瓦多) +text(Guatemala) neighborOf text(मेक्सिको) +text(Guatemala) neighborOf text(Honduras) +text(كوريا:الجنوبية) locatedIn text(Oost-Azië) +text(Zuid-Korea) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(Eastern:Europe) +text(摩爾多瓦) locatedIn text(أوروبا) +text(مولدوفا) neighborOf text(أوكرانيا) +text(Moldavia) neighborOf text(रोमानिया) +text(Mauricio) locatedIn text(पूर्वी:अफ्रीका) +text(मॉरिशस) locatedIn text(Africa) +text(Wit-Rusland) neighborOf text(Oekraïne) +text(بيلاروس) neighborOf text(Polen) +text(白俄羅斯) neighborOf text(ليتوانيا) +text(बेलारूस) neighborOf text(Russia) +text(Bielorrusia) neighborOf text(Letonia) +text(Bangladesh) neighborOf text(Birmania) +text(Bangladesh) neighborOf text(भारत) +text(मलेशिया) locatedIn text(दक्षिण:पूर्व:एशिया) +text(ماليزيا) neighborOf text(تايلاند) +text(馬來西亞) neighborOf text(Indonesia) +text(Maleisië) neighborOf text(بروناي) +text(Bosnia:y:Herzegovina) locatedIn text(Europa:del:Sur) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(Servië) +text(البوسنة:والهرسك) neighborOf text(Croacia) +text(波斯尼亚和黑塞哥维那) neighborOf text(Montenegro) +text(लक्ज़मबर्ग) locatedIn text(Europa:Occidental) +text(卢森堡) neighborOf text(Alemania) +text(لوكسمبورغ) neighborOf text(Bélgica) +text(Luxembourg) neighborOf text(Frankrijk) +text(意大利) locatedIn text(南欧) +text(Italië) locatedIn text(欧洲) +text(Italia) neighborOf text(سلوفينيا) +text(इटली) neighborOf text(سويسرا) +text(Italy) neighborOf text(Austria) +text(إيطاليا) neighborOf text(France) +text(意大利) neighborOf text(梵蒂岡城國) +text(Italië) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(पश्चिमी:एशिया) +text(أذربيجان) neighborOf text(Turquía) +text(Azerbeidzjan) neighborOf text(Armenia) +text(Azerbaiyán) neighborOf text(रूस) +text(Azerbaijan) neighborOf text(إيران) +text(阿塞拜疆) neighborOf text(Georgia) +text(हॉण्डुरस) locatedIn text(中美洲) +text(هندوراس) neighborOf text(Guatemala) +text(洪都拉斯) neighborOf text(निकारागुआ) +text(Honduras) neighborOf text(El:Salvador) +text(مالي) locatedIn text(غرب:إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(马里) neighborOf text(غينيا) +text(माली) neighborOf text(毛里塔尼亞) +text(Mali) neighborOf text(नाइजर) +text(Mali) neighborOf text(सेनेगल) +text(مالي) neighborOf text(Argelia) +text(Mali) neighborOf text(Ivory:Coast) +text(República:de:China) locatedIn text(पूर्वी:एशिया) +text(Taiwan) locatedIn text(Asia) +text(الجزائر) locatedIn text(北部非洲) +text(अल्जीरिया) neighborOf text(Libië) +text(Algerije) neighborOf text(Tunesië) +text(Algeria) neighborOf text(Mauritania) +text(阿爾及利亞) neighborOf text(Marokko) +text(Argelia) neighborOf text(Níger) +text(الجزائر) neighborOf text(马里) +text(अल्जीरिया) neighborOf text(Sahrawi:Arab:Democratic:Republic) +text(Guayana:Francesa) neighborOf text(Brazil) +text(Frans-Guyana) neighborOf text(سورينام) +text(Jemen) locatedIn text(Zuidwest-Azië) +text(也门) neighborOf text(Oman) +text(Yemen) neighborOf text(सउदी:अरब) +text(Puerto:Rico) locatedIn text(Caraïben) +text(Puerto:Rico) locatedIn text(أمريكتان) +text(Saint:Vincent:en:de:Grenadines) locatedIn text(Caribe) +text(Saint:Vincent:and:the:Grenadines) locatedIn text(美洲) +text(वेनेज़ुएला) neighborOf text(巴西) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(كولومبيا) +text(格瑞那達) locatedIn text(الكاريبي) +text(Grenada) locatedIn text(महाअमेरिका) +text(United:States) neighborOf text(加拿大) +text(संयुक्त:राज्य:अमेरिका) neighborOf text(المكسيك) +text(Tokelau) locatedIn text(पोलीनेशिया) +text(टोकेलाऊ) locatedIn text(Oceanië) +text(Slovenia) locatedIn text(أوروبا:الجنوبية) +text(स्लोवेनिया) neighborOf text(Oostenrijk) +text(斯洛文尼亞) neighborOf text(克羅地亞) +text(Eslovenia) neighborOf text(Italia) +text(Slovenië) neighborOf text(المجر) +text(फ़िलीपीन्स) locatedIn text(Zuidoost-Azië) +text(菲律賓) locatedIn text(亞洲) +text(Micronesia) locatedIn text(Micronesia) +text(ميكرونيسيا) locatedIn text(大洋洲) +text(People's:Republic:of:China) locatedIn text(Asia:Oriental) +text(中华人民共和国) neighborOf text(阿富汗) +text(الصين) neighborOf text(Bután) +text(República:Popular:China) neighborOf text(Macau) +text(चीनी:जनवादी:गणराज्य) neighborOf text(印度) +text(Volksrepubliek:China) neighborOf text(Kazakhstan) +text(People's:Republic:of:China) neighborOf text(Kyrgyzstan) +text(中华人民共和国) neighborOf text(ताजीकिस्तान) +text(الصين) neighborOf text(لاوس) +text(República:Popular:China) neighborOf text(俄罗斯) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Noord-Korea) +text(Volksrepubliek:China) neighborOf text(Myanmar) +text(People's:Republic:of:China) neighborOf text(पाकिस्तान) +text(中华人民共和国) neighborOf text(Mongolia) +text(الصين) neighborOf text(香港) +text(República:Popular:China) neighborOf text(越南) +text(Gabón) locatedIn text(وسط:إفريقيا) +text(加蓬) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(剛果共和國) +text(الغابون) neighborOf text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) locatedIn text(North:America) +text(美国本土外小岛屿) locatedIn text(Amerika) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) neighborOf text(España) +text(Andorra) neighborOf text(Francia) +text(समोआ) locatedIn text(玻里尼西亞) +text(Samoa) locatedIn text(أوقيانوسيا) +text(Gambia) locatedIn text(पश्चिमी:अफ्रीका) +text(岡比亞) locatedIn text(África) +text(The:Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(Asia:Occidental) +text(nan) locatedIn text(آسيا) +text(Pedro:Miguel) neighborOf text(الأردن) +text(Pedro:Miguel) neighborOf text(Egipto) +text(nan) neighborOf text(Israel) +text(ريونيون) locatedIn text(East:Africa) +text(Réunion) locatedIn text(Afrika) +text(فرنسا) locatedIn text(أوروبا:الغربية) +text(फ़्रान्स) neighborOf text(Germany) +text(法國) neighborOf text(Luxemburgo) +text(Frankrijk) neighborOf text(इटली) +text(France) neighborOf text(अण्डोरा) +text(Francia) neighborOf text(Zwitserland) +text(فرنسا) neighborOf text(Mónaco) +text(फ़्रान्स) neighborOf text(بلجيكا) +text(法國) neighborOf text(स्पेन) +text(منغوليا) locatedIn text(東亞) +text(蒙古國) locatedIn text(एशिया) +text(Mongolië) neighborOf text(चीनी:जनवादी:गणराज्य) +text(मंगोलिया) neighborOf text(روسيا) +text(立陶宛) locatedIn text(Europa:del:Norte) +text(Lithuania) neighborOf text(波蘭) +text(Lituania) neighborOf text(लातविया) +text(Litouwen) neighborOf text(Belarus) +text(लिथुआनिया) neighborOf text(Rusia) +text(Cayman:Islands) locatedIn text(加勒比地区) +text(केमन:द्वीपसमूह) locatedIn text(América) +text(Saint:Lucia) locatedIn text(कैरिबिया) +text(Saint:Lucia) locatedIn text(Americas) +text(Curazao) locatedIn text(Caribbean) +text(Curaçao) locatedIn text(أمريكتان) +text(Caraïben) locatedIn text(美洲) +text(南亚) locatedIn text(Azië) +text(Central:Africa) locatedIn text(अफ्रीका) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(यूरोप) +text(西亚) locatedIn text(Asia) +text(दक्षिण:अमेरिका) locatedIn text(महाअमेरिका) +text(Polynesië) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(Western:Europe) locatedIn text(Europe) +text(شرق:إفريقيا) locatedIn text(非洲) +text(West:Africa) locatedIn text(إفريقيا) +text(东欧) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(Amerika) +text(Noord-Amerika) locatedIn text(América) +text(东南亚) locatedIn text(Asia) +text(África:austral) locatedIn text(Africa) +text(شرق:آسيا) locatedIn text(亞洲) +text(Noord-Afrika) locatedIn text(África) +text(Melanesië) locatedIn text(Oceania) +text(माइक्रोनीशिया) locatedIn text(Oceanië) +text(中亚) locatedIn text(آسيا) +text(中欧) locatedIn text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv new file mode 100644 index 0000000..7741b5d --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv @@ -0,0 +1,979 @@ +text(Palaos) text(can:be:found:in) text(ميكرونيسيا) +text(بالاو) text(was:positioned:in) text(Oceanía) +text(المالديف) text(is:positioned:in) text(South:Asia) +text(Maldives) text(was:sited:in) text(آسيا) +text(بروناي) text(is:sited:in) text(东南亚) +text(ब्रुनेई) text(was:localized:in) text(एशिया) +text(Brunei) text(is:butted:against) text(Malasia) +text(Japan) text(is:localized:in) text(شرق:آسيا) +text(Japón) text(was:present:in) text(Asia) +text(هولندا) text(was:butted:against) text(जर्मनी) +text(Netherlands) text(was:adjacent:to) text(België) +text(土耳其) text(is:adjacent:to) text(Armenië) +text(Turkije) text(neighbors) text(अज़रबैजान) +text(Turkey) text(is:a:neighboring:country:of) text(伊朗) +text(تركيا) text(was:a:neighboring:country:of) text(Griekenland) +text(तुर्की) text(neighbors:with) text(Georgia) +text(Turquía) text(was:a:neighbor:of) text(Bulgarije) +text(土耳其) text(is:a:neighbor:of) text(Irak) +text(Turkije) text(is:a:neighboring:state:to) text(Syria) +text(安哥拉) text(is:present:in) text(وسط:إفريقيا) +text(أنغولا) text(was:a:neighboring:state:to) text(Democratic:Republic:of:the:Congo) +text(अंगोला) text(borders:with) text(नामीबिया) +text(Angola) text(borders) text(Zambia) +text(Angola) text(is:butted:against) text(جمهورية:الكونغو) +text(आर्मीनिया) text(is:still:in) text(Zuidwest-Azië) +text(Armenia) text(was:butted:against) text(格鲁吉亚) +text(亞美尼亞) text(was:adjacent:to) text(阿塞拜疆) +text(أرمينيا) text(is:adjacent:to) text(إيران) +text(Armenia) text(neighbors) text(Turkey) +text(安提瓜和巴布达) text(was:still:in) text(कैरिबिया) +text(Antigua:y:Barbuda) text(was:currently:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:currently:in) text(南部非洲) +text(斯威士兰) text(is:a:neighboring:country:of) text(Sudáfrica) +text(Eswatini) text(was:a:neighboring:country:of) text(Mozambique) +text(瓦利斯和富圖納) text(is:placed:in) text(بولنيزيا) +text(واليس:وفوتونا) text(was:placed:in) text(大洋洲) +text(उरुग्वे) text(can:be:found:in) text(दक्षिण:अमेरिका) +text(الأوروغواي) text(was:situated:in) text(Amerika) +text(烏拉圭) text(neighbors:with) text(Argentina) +text(Uruguay) text(was:a:neighbor:of) text(البرازيل) +text(Zambia) text(is:situated:in) text(Oost-Afrika) +text(زامبيا) text(is:a:neighbor:of) text(तंज़ानिया) +text(Zambia) text(is:a:neighboring:state:to) text(موزمبيق) +text(ज़ाम्बिया) text(was:a:neighboring:state:to) text(República:Democrática:del:Congo) +text(贊比亞) text(borders:with) text(Angola) +text(Zambia) text(borders) text(波札那) +text(Zambia) text(is:butted:against) text(津巴布韦) +text(زامبيا) text(was:butted:against) text(Namibia) +text(Zambia) text(was:adjacent:to) text(Malawi) +text(قبرص) text(is:located:in) text(पूर्वी:यूरोप) +text(Chipre) text(was:located:in) text(यूरोप) +text(Cyprus) text(is:adjacent:to) text(यूनाइटेड:किंगडम) +text(यूनाइटेड:किंगडम) text(can:be:found:in) text(उत्तरी:यूरोप) +text(英国) text(was:positioned:in) text(أوروبا) +text(Verenigd:Koninkrijk) text(neighbors) text(Reino:Unido) +text(بوروندي) text(is:positioned:in) text(पूर्वी:अफ्रीका) +text(Burundi) text(is:a:neighboring:country:of) text(刚果民主共和国) +text(Burundi) text(was:a:neighboring:country:of) text(Rwanda) +text(蒲隆地) text(neighbors:with) text(Tanzania) +text(中非共和國) text(was:sited:in) text(África:Central) +text(Central:African:Republic) text(was:a:neighbor:of) text(تشاد) +text(جمهورية:إفريقيا:الوسطى) text(is:a:neighbor:of) text(剛果共和國) +text(República:Centroafricana) text(is:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighboring:state:to) text(South:Sudan) +text(मध्य:अफ़्रीकी:गणराज्य) text(borders:with) text(Camerún) +text(中非共和國) text(borders) text(苏丹) +text(تونغا) text(is:sited:in) text(पोलीनेशिया) +text(टोंगा) text(was:localized:in) text(Oceanië) +text(Ivoorkust) text(is:localized:in) text(غرب:إفريقيا) +text(ساحل:العاج) text(is:butted:against) text(Burkina:Faso) +text(Ivory:Coast) text(was:butted:against) text(Ghana) +text(Costa:de:Marfil) text(was:adjacent:to) text(Liberia) +text(कोत:दिव्वार) text(is:adjacent:to) text(माली) +text(科特迪瓦) text(neighbors) text(Guinee) +text(سيراليون) text(is:a:neighboring:country:of) text(利比里亞) +text(Sierra:Leona) text(was:a:neighboring:country:of) text(几内亚) +text(مايوت) text(was:present:in) text(东部非洲) +text(Mayotte) text(is:present:in) text(África) +text(بولندا) text(neighbors:with) text(Germany) +text(Polonia) text(was:a:neighbor:of) text(Oekraïne) +text(पोलैंड) text(is:a:neighbor:of) text(斯洛伐克) +text(Polen) text(is:a:neighboring:state:to) text(白俄羅斯) +text(波蘭) text(was:a:neighboring:state:to) text(रूस) +text(Poland) text(borders:with) text(लिथुआनिया) +text(بولندا) text(borders) text(捷克) +text(कज़ाख़िस्तान) text(is:still:in) text(Centraal-Azië) +text(Kazajistán) text(is:butted:against) text(Turkmenistán) +text(Kazachstan) text(was:butted:against) text(الصين) +text(哈萨克斯坦) text(was:adjacent:to) text(吉尔吉斯斯坦) +text(كازاخستان) text(is:adjacent:to) text(Uzbekistán) +text(Kazakhstan) text(neighbors) text(روسيا) +text(उज़्बेकिस्तान) text(was:still:in) text(मध्य:एशिया) +text(乌兹别克斯坦) text(is:a:neighboring:country:of) text(أفغانستان) +text(Uzbekistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(أوزبكستان) text(neighbors:with) text(कज़ाख़िस्तान) +text(Oezbekistan) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Uzbekistán) text(is:a:neighbor:of) text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) text(was:currently:in) text(Caribe) +text(جزر:توركس:وكايكوس) text(is:currently:in) text(América) +text(Nueva:Caledonia) text(is:placed:in) text(ميلانيزيا) +text(كاليدونيا:الجديدة) text(was:placed:in) text(Oceania) +text(Pakistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(巴基斯坦) text(was:a:neighboring:state:to) text(Afghanistan) +text(باكستان) text(borders:with) text(Irán) +text(पाकिस्तान) text(borders) text(India) +text(Argentina) text(can:be:found:in) text(Zuid-Amerika) +text(阿根廷) text(is:butted:against) text(Bolivia) +text(Argentinië) text(was:butted:against) text(智利) +text(अर्जेण्टीना) text(was:adjacent:to) text(巴西) +text(الأرجنتين) text(is:adjacent:to) text(巴拉圭) +text(Argentina) text(neighbors) text(Uruguay) +text(क्यूबा) text(was:situated:in) text(Caribbean) +text(Cuba) text(is:situated:in) text(أمريكتان) +text(塞爾維亞) text(is:a:neighboring:country:of) text(Macedonia:del:Norte) +text(Servië) text(was:a:neighboring:country:of) text(蒙特內哥羅) +text(Serbia) text(neighbors:with) text(Kosovo) +text(सर्बिया) text(was:a:neighbor:of) text(Bosnia:y:Herzegovina) +text(صربيا) text(is:a:neighbor:of) text(كرواتيا) +text(Serbia) text(is:a:neighboring:state:to) text(Hungría) +text(塞爾維亞) text(was:a:neighboring:state:to) text(بلغاريا) +text(Servië) text(borders:with) text(羅馬尼亞) +text(Czech:Republic) text(is:located:in) text(Europa:Oriental) +text(चेक:गणराज्य) text(borders) text(Duitsland) +text(جمهورية:التشيك) text(is:butted:against) text(Austria) +text(Tsjechië) text(was:butted:against) text(Polonia) +text(República:Checa) text(was:adjacent:to) text(سلوفاكيا) +text(Nicaragua) text(is:adjacent:to) text(洪都拉斯) +text(نيكاراغوا) text(neighbors) text(Costa:Rica) +text(Vietnam) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Vietnam) text(can:be:found:in) text(Azië) +text(वियतनाम) text(is:a:neighboring:country:of) text(كمبوديا) +text(فيتنام) text(was:a:neighboring:country:of) text(لاوس) +text(Vietnam) text(neighbors:with) text(Volksrepubliek:China) +text(निउए) text(was:positioned:in) text(Polynesia) +text(Niue) text(is:positioned:in) text(ओशिआनिया) +text(कनाडा) text(was:sited:in) text(उत्तर:अमेरिका) +text(Canada) text(was:a:neighbor:of) text(Verenigde:Staten) +text(Slowakije) text(is:a:neighbor:of) text(أوكرانيا) +text(स्लोवाकिया) text(is:a:neighboring:state:to) text(पोलैंड) +text(Eslovaquia) text(was:a:neighboring:state:to) text(奧地利) +text(Slovakia) text(borders:with) text(المجر) +text(斯洛伐克) text(borders) text(捷克) +text(मोज़ाम्बीक) text(is:butted:against) text(تنزانيا) +text(莫桑比克) text(was:butted:against) text(Swaziland) +text(Mozambique) text(was:adjacent:to) text(Zimbabwe) +text(Mozambique) text(is:adjacent:to) text(ज़ाम्बिया) +text(Mozambique) text(neighbors) text(馬拉威) +text(موزمبيق) text(is:a:neighboring:country:of) text(Zuid-Afrika) +text(أروبا) text(is:sited:in) text(الكاريبي) +text(अरूबा) text(was:localized:in) text(Americas) +text(Bolivia) text(is:localized:in) text(南美洲) +text(Bolivia) text(was:a:neighboring:country:of) text(Chili) +text(玻利維亞) text(neighbors:with) text(Brasil) +text(बोलिविया) text(was:a:neighbor:of) text(Paraguay) +text(بوليفيا) text(is:a:neighbor:of) text(Argentina) +text(Bolivia) text(is:a:neighboring:state:to) text(بيرو) +text(Colombia) text(was:present:in) text(América:del:Sur) +text(كولومبيا) text(was:a:neighboring:state:to) text(厄瓜多尔) +text(Colombia) text(borders:with) text(Brazilië) +text(कोलम्बिया) text(borders) text(Panama) +text(哥伦比亚) text(is:butted:against) text(Venezuela) +text(Colombia) text(was:butted:against) text(Peru) +text(फ़िजी) text(is:present:in) text(美拉尼西亞) +text(Fiyi) text(is:still:in) text(أوقيانوسيا) +text(कांगो:गणराज्य) text(was:adjacent:to) text(加蓬) +text(República:del:Congo) text(is:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Congo-Brazzaville) text(neighbors) text(安哥拉) +text(Republic:of:the:Congo) text(is:a:neighboring:country:of) text(Cameroon) +text(جمهورية:الكونغو) text(was:a:neighboring:country:of) text(Central:African:Republic) +text(Saoedi-Arabië) text(neighbors:with) text(卡塔尔) +text(السعودية) text(was:a:neighbor:of) text(United:Arab:Emirates) +text(沙特阿拉伯) text(is:a:neighbor:of) text(Jordan) +text(Saudi:Arabia) text(is:a:neighboring:state:to) text(也门) +text(सउदी:अरब) text(was:a:neighboring:state:to) text(ओमान) +text(Arabia:Saudí) text(borders:with) text(कुवैत) +text(Saoedi-Arabië) text(borders) text(伊拉克) +text(السلفادور) text(was:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(is:butted:against) text(غواتيمالا) +text(El:Salvador) text(was:butted:against) text(हॉण्डुरस) +text(Madagaskar) text(was:currently:in) text(East:Africa) +text(مدغشقر) text(is:currently:in) text(अफ्रीका) +text(Australië) text(is:placed:in) text(Australia:and:New:Zealand) +text(أستراليا) text(was:placed:in) text(Oceanía) +text(ناميبيا) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(was:situated:in) text(إفريقيا) +text(纳米比亚) text(was:adjacent:to) text(贊比亞) +text(Namibië) text(is:adjacent:to) text(أنغولا) +text(नामीबिया) text(neighbors) text(جنوب:إفريقيا) +text(Namibia) text(is:a:neighboring:country:of) text(बोत्सवाना) +text(توفالو) text(is:situated:in) text(Polynesië) +text(吐瓦魯) text(is:located:in) text(大洋洲) +text(Svalbard:and:Jan:Mayen) text(was:located:in) text(أوروبا:الشمالية) +text(Svalbard:y:Jan:Mayen) text(can:be:found:in) text(Europe) +text(Isla:de:Man) text(was:positioned:in) text(北歐) +text(جزيرة:مان) text(is:positioned:in) text(Europa) +text(Guyana) text(was:a:neighboring:country:of) text(Brazil) +text(Guyana) text(neighbors:with) text(सूरीनाम) +text(圭亚那) text(was:a:neighbor:of) text(委內瑞拉) +text(Vaticaanstad) text(was:sited:in) text(Europa:del:Sur) +text(Vatican:City) text(is:sited:in) text(欧洲) +text(الفاتيكان) text(is:a:neighbor:of) text(Italië) +text(British:Indian:Ocean:Territory) text(was:localized:in) text(África:Oriental) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) text(is:localized:in) text(非洲) +text(نيجيريا) text(was:present:in) text(West-Afrika) +text(Nigeria) text(is:present:in) text(Africa) +text(Nigeria) text(is:a:neighboring:state:to) text(चाड) +text(奈及利亞) text(was:a:neighboring:state:to) text(Níger) +text(नाइजीरिया) text(borders:with) text(الكاميرون) +text(Nigeria) text(borders) text(貝南) +text(Alemania) text(is:butted:against) text(丹麥) +text(德國) text(was:butted:against) text(Nederland) +text(ألمانيا) text(was:adjacent:to) text(Polen) +text(जर्मनी) text(is:adjacent:to) text(卢森堡) +text(Germany) text(neighbors) text(比利時) +text(Duitsland) text(is:a:neighboring:country:of) text(Switzerland) +text(Alemania) text(was:a:neighboring:country:of) text(Austria) +text(德國) text(neighbors:with) text(Frankrijk) +text(ألمانيا) text(was:a:neighbor:of) text(Czech:Republic) +text(Burkina:Faso) text(is:a:neighbor:of) text(Togo) +text(布吉納法索) text(is:a:neighboring:state:to) text(Benin) +text(बुर्किना:फासो) text(was:a:neighboring:state:to) text(Niger) +text(بوركينا:فاسو) text(borders:with) text(Ghana) +text(Burkina:Faso) text(borders) text(Mali) +text(Burkina:Faso) text(is:butted:against) text(Ivoorkust) +text(Tanzania) text(was:butted:against) text(Uganda) +text(Tanzania) text(was:adjacent:to) text(मोज़ाम्बीक) +text(坦桑尼亞) text(is:adjacent:to) text(Congo-Kinshasa) +text(तंज़ानिया) text(neighbors) text(Kenia) +text(Tanzania) text(is:a:neighboring:country:of) text(रवाण्डा) +text(تنزانيا) text(was:a:neighboring:country:of) text(Zambia) +text(Tanzania) text(neighbors:with) text(Malaui) +text(Tanzania) text(was:a:neighbor:of) text(Burundi) +text(Northern:Mariana:Islands) text(is:still:in) text(Micronesia) +text(جزر:ماريانا:الشمالية) text(was:still:in) text(Oceanië) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:a:neighbor:of) text(Guatemala) +text(بليز) text(is:a:neighboring:state:to) text(México) +text(Norway) text(was:a:neighboring:state:to) text(Suecia) +text(挪威) text(borders:with) text(فنلندا) +text(النرويج) text(borders) text(俄罗斯) +text(Cocos:(Keeling):Islands) text(is:currently:in) text(nan) +text(جزر:كوكوس) text(is:placed:in) text(Oceania) +text(Laos) text(was:placed:in) text(Southeast:Asia) +text(लाओस) text(is:butted:against) text(中华人民共和国) +text(老撾) text(was:butted:against) text(कम्बोडिया) +text(Laos) text(was:adjacent:to) text(म्यान्मार) +text(Laos) text(is:adjacent:to) text(越南) +text(لاوس) text(neighbors) text(泰國) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(can:be:found:in) text(شمال:إفريقيا) +text(Sahrawi:Arabische:Democratische:Republiek) text(is:a:neighboring:country:of) text(阿爾及利亞) +text(撒拉威阿拉伯民主共和國) text(was:a:neighboring:country:of) text(Mauritania) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(neighbors:with) text(Morocco) +text(Suriname) text(was:situated:in) text(South:America) +text(Surinam) text(was:a:neighbor:of) text(ब्राज़ील) +text(蘇利南) text(is:a:neighbor:of) text(法屬圭亞那) +text(Suriname) text(is:a:neighboring:state:to) text(गयाना) +text(क्रिसमस:द्वीप) text(is:situated:in) text(Australië:en:Nieuw-Zeeland) +text(جزيرة:عيد:الميلاد) text(is:located:in) text(ओशिआनिया) +text(São:Tomé:and:Príncipe) text(was:located:in) text(Centraal-Afrika) +text(साओ:तोमे:और:प्रिन्सिपी) text(can:be:found:in) text(Afrika) +text(埃及) text(was:a:neighboring:state:to) text(Libië) +text(Egypte) text(borders:with) text(Israel) +text(مصر) text(borders) text(Sudán) +text(Bulgaria) text(is:butted:against) text(North:Macedonia) +text(保加利亚) text(was:butted:against) text(تركيا) +text(बुल्गारिया) text(was:adjacent:to) text(Grecia) +text(Bulgaria) text(is:adjacent:to) text(Serbia) +text(Bulgarije) text(neighbors) text(Rumania) +text(Guinea) text(was:positioned:in) text(पश्चिमी:अफ्रीका) +text(غينيا) text(is:a:neighboring:country:of) text(Guinea-Bissau) +text(Guinea) text(was:a:neighboring:country:of) text(सिएरा:लियोन) +text(गिनी) text(neighbors:with) text(Mali) +text(Guinee) text(was:a:neighbor:of) text(Liberia) +text(几内亚) text(is:a:neighbor:of) text(Senegal) +text(Guinea) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(स्पेन) text(was:a:neighboring:state:to) text(मोरक्को) +text(España) text(borders:with) text(जिब्राल्टर) +text(إسبانيا) text(borders) text(أندورا) +text(Spanje) text(is:butted:against) text(فرنسا) +text(西班牙) text(was:butted:against) text(Portugal) +text(कोस्टा:रीका) text(is:positioned:in) text(中美洲) +text(哥斯达黎加) text(was:adjacent:to) text(Panama) +text(Costa:Rica) text(is:adjacent:to) text(निकारागुआ) +text(Malta) text(was:sited:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:sited:in) text(Europa) +text(البرتغال) text(was:localized:in) text(南欧) +text(葡萄牙) text(neighbors) text(Spain) +text(Romania) text(is:localized:in) text(Oost-Europa) +text(रोमानिया) text(is:a:neighboring:country:of) text(烏克蘭) +text(Roemenië) text(was:a:neighboring:country:of) text(Hungary) +text(رومانيا) text(neighbors:with) text(Moldova) +text(羅馬尼亞) text(was:a:neighbor:of) text(بلغاريا) +text(Rumania) text(is:a:neighbor:of) text(सर्बिया) +text(سان:مارينو) text(was:present:in) text(Southern:Europe) +text(सान:मारिनो) text(is:present:in) text(यूरोप) +text(San:Marino) text(is:a:neighboring:state:to) text(Italia) +text(موريتانيا) text(is:still:in) text(西非) +text(Mauritanië) text(was:still:in) text(África) +text(Mauritania) text(was:a:neighboring:state:to) text(Algerije) +text(मॉरीतानिया) text(borders:with) text(马里) +text(毛里塔尼亞) text(borders) text(República:Árabe:Saharaui:Democrática) +text(Mauritania) text(is:butted:against) text(塞内加尔) +text(Trinidad:y:Tobago) text(was:currently:in) text(加勒比地区) +text(त्रिनिदाद:और:टोबैगो) text(is:currently:in) text(美洲) +text(बहरीन) text(is:placed:in) text(Asia:Occidental) +text(البحرين) text(was:placed:in) text(Asia) +text(Myanmar) text(was:butted:against) text(India) +text(ميانمار) text(was:adjacent:to) text(Bangladés) +text(緬甸) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Birmania) text(neighbors) text(Laos) +text(Myanmar) text(is:a:neighboring:country:of) text(थाईलैंड) +text(العراق) text(was:a:neighboring:country:of) text(तुर्की) +text(इराक) text(neighbors:with) text(السعودية) +text(Iraq) text(was:a:neighbor:of) text(Iran) +text(Irak) text(is:a:neighbor:of) text(Jordanië) +text(Irak) text(is:a:neighboring:state:to) text(Kuwait) +text(伊拉克) text(was:a:neighboring:state:to) text(Siria) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) text(can:be:found:in) text(أمريكا:الجنوبية) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) text(was:situated:in) text(महाअमेरिका) +text(冰島) text(is:situated:in) text(Northern:Europe) +text(आइसलैण्ड) text(is:located:in) text(أوروبا) +text(Democratic:Republic:of:the:Congo) text(was:located:in) text(中部非洲) +text(República:Democrática:del:Congo) text(borders:with) text(Oeganda) +text(刚果民主共和国) text(borders) text(坦桑尼亞) +text(جمهورية:الكونغو:الديمقراطية) text(is:butted:against) text(剛果共和國) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(Congo-Kinshasa) text(was:adjacent:to) text(अंगोला) +text(Democratic:Republic:of:the:Congo) text(is:adjacent:to) text(رواندا) +text(República:Democrática:del:Congo) text(neighbors) text(Sudán:del:Sur) +text(刚果民主共和国) text(is:a:neighboring:country:of) text(Zambia) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:country:of) text(बुरुण्डी) +text(Seychellen) text(can:be:found:in) text(شرق:إفريقيا) +text(Seychelles) text(was:positioned:in) text(अफ्रीका) +text(قرغيزستان) text(neighbors:with) text(República:Popular:China) +text(किर्गिज़स्तान) text(was:a:neighbor:of) text(Kazajistán) +text(Kirgizië) text(is:a:neighbor:of) text(Tadzjikistan) +text(Kirguistán) text(is:a:neighboring:state:to) text(उज़्बेकिस्तान) +text(Botsuana) text(is:positioned:in) text(Zuidelijk:Afrika) +text(بوتسوانا) text(was:a:neighboring:state:to) text(ज़िम्बाब्वे) +text(Botswana) text(borders:with) text(ناميبيا) +text(Botswana) text(borders) text(زامبيا) +text(波札那) text(is:butted:against) text(दक्षिण:अफ़्रीका) +text(جزر:فارو) text(was:sited:in) text(Europa:del:Norte) +text(Faeröer) text(is:sited:in) text(Europe) +text(जमैका) text(was:localized:in) text(Caraïben) +text(牙買加) text(is:localized:in) text(Amerika) +text(Amerikaans-Samoa) text(was:present:in) text(Polinesia) +text(Samoa:Americana) text(is:present:in) text(أوقيانوسيا) +text(लेसोथो) text(is:still:in) text(África:austral) +text(Lesoto) text(was:still:in) text(إفريقيا) +text(莱索托) text(was:butted:against) text(南非) +text(श्रीलंका) text(was:adjacent:to) text(الهند) +text(बेल्जियम) text(was:currently:in) text(西欧) +text(Bélgica) text(is:adjacent:to) text(जर्मनी) +text(بلجيكا) text(neighbors) text(Luxemburgo) +text(Belgium) text(is:a:neighboring:country:of) text(Francia) +text(België) text(was:a:neighboring:country:of) text(荷蘭) +text(Qatar) text(is:currently:in) text(West:Asia) +text(Qatar) text(neighbors:with) text(沙特阿拉伯) +text(所罗门群岛) text(is:placed:in) text(Melanesië) +text(جزر:سليمان) text(was:placed:in) text(Oceanía) +text(सीरिया) text(can:be:found:in) text(غرب:آسيا) +text(敘利亞) text(was:a:neighbor:of) text(Israel) +text(Syrië) text(is:a:neighbor:of) text(Turquía) +text(سوريا) text(is:a:neighboring:state:to) text(जॉर्डन) +text(Syria) text(was:a:neighboring:state:to) text(लेबनॉन) +text(Siria) text(borders:with) text(العراق) +text(India) text(was:situated:in) text(جنوب:آسيا) +text(भारत) text(borders) text(阿富汗) +text(印度) text(is:butted:against) text(Bután) +text(India) text(was:butted:against) text(بنغلاديش) +text(India) text(was:adjacent:to) text(الصين) +text(الهند) text(is:adjacent:to) text(尼泊爾) +text(India) text(neighbors) text(म्यान्मार) +text(भारत) text(is:a:neighboring:country:of) text(Pakistan) +text(印度) text(was:a:neighboring:country:of) text(سريلانكا) +text(Marruecos) text(neighbors:with) text(Algeria) +text(المغرب) text(was:a:neighbor:of) text(स्पेन) +text(摩洛哥) text(is:a:neighbor:of) text(Sahrawi:Arab:Democratic:Republic) +text(Kenya) text(is:situated:in) text(Oost-Afrika) +text(肯尼亚) text(is:a:neighboring:state:to) text(युगाण्डा) +text(كينيا) text(was:a:neighboring:state:to) text(तंज़ानिया) +text(Kenia) text(borders:with) text(Somalië) +text(कीनिया) text(borders) text(جنوب:السودان) +text(Kenia) text(is:butted:against) text(Etiopía) +text(दक्षिण:सूडान) text(is:located:in) text(Central:Africa) +text(Zuid-Soedan) text(was:butted:against) text(Uganda) +text(南蘇丹) text(was:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(South:Sudan) text(is:adjacent:to) text(Kenya) +text(Sudán:del:Sur) text(neighbors) text(República:Centroafricana) +text(جنوب:السودان) text(is:a:neighboring:country:of) text(Sudan) +text(दक्षिण:सूडान) text(was:a:neighboring:country:of) text(Ethiopia) +text(घाना) text(neighbors:with) text(Burkina:Faso) +text(Ghana) text(was:a:neighbor:of) text(Ivory:Coast) +text(迦納) text(is:a:neighbor:of) text(توغو) +text(Tajikistan) text(was:located:in) text(آسيا:الوسطى) +text(Tayikistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(طاجيكستان) text(was:a:neighboring:state:to) text(吉尔吉斯斯坦) +text(ताजीकिस्तान) text(borders:with) text(Afganistán) +text(塔吉克斯坦) text(borders) text(乌兹别克斯坦) +text(Marshall:Islands) text(can:be:found:in) text(Micronesia) +text(جزر:مارشال) text(was:positioned:in) text(大洋洲) +text(喀麦隆) text(is:positioned:in) text(मध्य:अफ्रीका) +text(Kameroen) text(is:butted:against) text(乍得) +text(कैमरुन) text(was:butted:against) text(कांगो:गणराज्य) +text(Camerún) text(was:adjacent:to) text(الغابون) +text(Cameroon) text(is:adjacent:to) text(भूमध्यरेखीय:गिनी) +text(الكاميرون) text(neighbors) text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) text(is:a:neighboring:country:of) text(نيجيريا) +text(नौरु) text(was:sited:in) text(Micronesië) +text(Nauru) text(is:sited:in) text(Oceanië) +text(Thailand) text(was:a:neighboring:country:of) text(Camboya) +text(تايلاند) text(neighbors:with) text(Myanmar) +text(Thailand) text(was:a:neighbor:of) text(लाओस) +text(Tailandia) text(is:a:neighbor:of) text(Maleisië) +text(Soedan) text(is:a:neighboring:state:to) text(Chad) +text(السودان) text(was:a:neighboring:state:to) text(Libya) +text(सूडान) text(borders:with) text(Zuid-Soedan) +text(苏丹) text(borders) text(Eritrea) +text(Sudán) text(is:butted:against) text(मध्य:अफ़्रीकी:गणराज्य) +text(Sudan) text(was:butted:against) text(Egypt) +text(Soedan) text(was:adjacent:to) text(إثيوبيا) +text(Chad) text(was:localized:in) text(وسط:إفريقيا) +text(Tsjaad) text(is:adjacent:to) text(利比亞) +text(تشاد) text(neighbors) text(Niger) +text(चाड) text(is:a:neighboring:country:of) text(南蘇丹) +text(乍得) text(was:a:neighboring:country:of) text(Kameroen) +text(Chad) text(neighbors:with) text(中非共和國) +text(Chad) text(was:a:neighbor:of) text(Nigeria) +text(वानूआटू) text(is:localized:in) text(Melanesia) +text(Vanuatu) text(was:present:in) text(Oceania) +text(केप:वर्दे) text(is:present:in) text(West:Africa) +text(Cape:Verde) text(is:still:in) text(非洲) +text(Falkland:Islands) text(was:still:in) text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) text(was:currently:in) text(América) +text(लाइबेरिया) text(is:currently:in) text(África:Occidental) +text(ليبيريا) text(is:a:neighbor:of) text(Costa:de:Marfil) +text(Liberia) text(is:a:neighboring:state:to) text(Sierra:Leone) +text(Liberia) text(was:a:neighboring:state:to) text(غينيا) +text(Cambodja) text(is:placed:in) text(Zuidoost-Azië) +text(Cambodia) text(borders:with) text(Vietnam) +text(柬埔寨) text(borders) text(泰國) +text(كمبوديا) text(is:butted:against) text(老撾) +text(Zimbabue) text(was:butted:against) text(Zambia) +text(Zimbabwe) text(was:adjacent:to) text(South:Africa) +text(زيمبابوي) text(is:adjacent:to) text(बोत्सवाना) +text(津巴布韦) text(neighbors) text(莫桑比克) +text(جزر:القمر) text(was:placed:in) text(पूर्वी:अफ्रीका) +text(葛摩) text(can:be:found:in) text(Africa) +text(Guam) text(was:situated:in) text(密克羅尼西亞群島) +text(Guam) text(is:situated:in) text(ओशिआनिया) +text(巴哈馬) text(is:located:in) text(कैरिबिया) +text(Bahamas) text(was:located:in) text(أمريكتان) +text(Lebanon) text(can:be:found:in) text(पश्चिमी:एशिया) +text(Líbano) text(was:positioned:in) text(亞洲) +text(لبنان) text(is:a:neighboring:country:of) text(以色列) +text(Libanon) text(was:a:neighboring:country:of) text(सीरिया) +text(سانت:مارتن) text(is:positioned:in) text(Caribe) +text(Sint:Maarten) text(was:sited:in) text(Americas) +text(Saint:Martin) text(neighbors:with) text(Saint-Martin) +text(Ethiopië) text(is:sited:in) text(东部非洲) +text(इथियोपिया) text(was:a:neighbor:of) text(索馬里) +text(埃塞俄比亚) text(is:a:neighbor:of) text(肯尼亚) +text(Etiopía) text(is:a:neighboring:state:to) text(Eritrea) +text(Ethiopia) text(was:a:neighboring:state:to) text(South:Sudan) +text(إثيوبيا) text(borders:with) text(Djibouti) +text(Ethiopië) text(borders) text(السودان) +text(Islas:Vírgenes:de:los:Estados:Unidos) text(was:localized:in) text(Caribbean) +text(جزر:العذراء:التابعة:الولايات:المتحدة) text(is:localized:in) text(美洲) +text(गिनी-बिसाऊ) text(was:present:in) text(غرب:إفريقيا) +text(Guinee-Bissau) text(is:present:in) text(Afrika) +text(畿內亞比紹) text(is:butted:against) text(Guinea) +text(غينيا:بيساو) text(was:butted:against) text(السنغال) +text(Libia) text(is:still:in) text(उत्तर:अफ़्रीका) +text(ليبيا) text(was:adjacent:to) text(Tsjaad) +text(लीबिया) text(is:adjacent:to) text(Túnez) +text(Libië) text(neighbors) text(尼日尔) +text(Libya) text(is:a:neighboring:country:of) text(Argelia) +text(利比亞) text(was:a:neighboring:country:of) text(मिस्र) +text(Libia) text(neighbors:with) text(सूडान) +text(भूटान) text(was:still:in) text(南亚) +text(بوتان) text(was:currently:in) text(آسيا) +text(Bhutan) text(was:a:neighbor:of) text(Volksrepubliek:China) +text(不丹) text(is:a:neighbor:of) text(India) +text(Macau) text(is:currently:in) text(Oost-Azië) +text(मकाउ) text(is:placed:in) text(एशिया) +text(ماكاو) text(is:a:neighboring:state:to) text(中华人民共和国) +text(फ़्रान्सीसी:पॉलिनेशिया) text(was:placed:in) text(玻里尼西亞) +text(Frans-Polynesië) text(can:be:found:in) text(أوقيانوسيا) +text(Somalia) text(was:situated:in) text(East:Africa) +text(सोमालिया) text(was:a:neighboring:state:to) text(Yibuti) +text(الصومال) text(borders:with) text(كينيا) +text(Somalia) text(borders) text(इथियोपिया) +text(सेंट:बार्थेलेमी) text(is:situated:in) text(الكاريبي) +text(San:Bartolomé) text(is:located:in) text(महाअमेरिका) +text(Rusia) text(was:located:in) text(أوروبا:الشرقية) +text(Russia) text(is:butted:against) text(Ucrania) +text(Rusland) text(was:butted:against) text(Belarus) +text(रूस) text(was:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(روسيا) text(is:adjacent:to) text(Kazachstan) +text(俄罗斯) text(neighbors) text(Noruega) +text(Rusia) text(is:a:neighboring:country:of) text(波蘭) +text(Russia) text(was:a:neighboring:country:of) text(Azerbaiyán) +text(Rusland) text(neighbors:with) text(ليتوانيا) +text(रूस) text(was:a:neighbor:of) text(إستونيا) +text(روسيا) text(is:a:neighbor:of) text(North:Korea) +text(俄罗斯) text(is:a:neighboring:state:to) text(Finlandia) +text(Rusia) text(was:a:neighboring:state:to) text(Mongolië) +text(Russia) text(borders:with) text(लातविया) +text(Rusland) text(borders) text(Georgië) +text(نيوزيلندا) text(can:be:found:in) text(nan) +text(New:Zealand) text(was:positioned:in) text(Oceanía) +text(पनामा) text(is:positioned:in) text(Centraal-Amerika) +text(بنما) text(was:sited:in) text(Amerika) +text(Panamá) text(is:butted:against) text(Costa:Rica) +text(巴拿馬) text(was:butted:against) text(Colombia) +text(巴布亚新几内亚) text(is:sited:in) text(Melanesia) +text(Papua:New:Guinea) text(was:adjacent:to) text(Indonesia) +text(朝鮮民主主義人民共和國) text(is:adjacent:to) text(República:Popular:China) +text(उत्तर:कोरिया) text(neighbors) text(Corea:del:Sur) +text(Noord-Korea) text(is:a:neighboring:country:of) text(रूस) +text(Latvia) text(was:localized:in) text(Noord-Europa) +text(Letonia) text(was:a:neighboring:country:of) text(立陶宛) +text(拉脫維亞) text(neighbors:with) text(Bielorrusia) +text(لاتفيا) text(was:a:neighbor:of) text(روسيا) +text(Letland) text(is:a:neighbor:of) text(愛沙尼亞) +text(سلطنة:عمان) text(is:localized:in) text(西亚) +text(阿曼) text(is:a:neighboring:state:to) text(Saudi:Arabia) +text(Oman) text(was:a:neighboring:state:to) text(اليمن) +text(Omán) text(borders:with) text(Emiratos:Árabes:Unidos) +text(San:Pedro:y:Miquelón) text(was:present:in) text(North:America) +text(Saint:Pierre:and:Miquelon) text(is:present:in) text(América) +text(Martinique) text(is:still:in) text(加勒比地区) +text(Martinica) text(was:still:in) text(أمريكتان) +text(Verenigd:Koninkrijk) text(was:currently:in) text(उत्तरी:यूरोप) +text(المملكة:المتحدة) text(is:currently:in) text(Europa) +text(United:Kingdom) text(borders) text(المملكة:المتحدة) +text(Israël) text(is:placed:in) text(Zuidwest-Azië) +text(इज़राइल) text(is:butted:against) text(黎巴嫩) +text(إسرائيل) text(was:butted:against) text(Egipto) +text(Israel) text(was:adjacent:to) text(約旦) +text(Israel) text(is:adjacent:to) text(敘利亞) +text(Jersey) text(was:placed:in) text(أوروبا:الشمالية) +text(जर्सी) text(can:be:found:in) text(欧洲) +text(Pitcairn:Islands) text(was:situated:in) text(بولنيزيا) +text(Pitcairneilanden) text(is:situated:in) text(大洋洲) +text(Togo) text(is:located:in) text(West-Afrika) +text(टोगो) text(neighbors) text(布吉納法索) +text(多哥) text(is:a:neighboring:country:of) text(غانا) +text(Togo) text(was:a:neighboring:country:of) text(بنين) +text(Kiribati) text(was:located:in) text(माइक्रोनीशिया) +text(Kiribati) text(can:be:found:in) text(Oceanië) +text(ईरान) text(was:positioned:in) text(दक्षिण:एशिया) +text(Iran) text(neighbors:with) text(Afghanistan) +text(伊朗) text(was:a:neighbor:of) text(तुर्कमेनिस्तान) +text(إيران) text(is:a:neighbor:of) text(土耳其) +text(Irán) text(is:a:neighboring:state:to) text(Armenië) +text(Iran) text(was:a:neighboring:state:to) text(Azerbaijan) +text(ईरान) text(borders:with) text(Pakistan) +text(Iran) text(borders) text(इराक) +text(تجمع:سان:مارتين) text(is:positioned:in) text(Caraïben) +text(San:Martín) text(was:sited:in) text(Americas) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:butted:against) text(सेंट:मार्टिन) +text(República:Dominicana) text(is:sited:in) text(कैरिबिया) +text(डोमिनिकन:गणराज्य) text(was:localized:in) text(美洲) +text(多明尼加) text(was:butted:against) text(Haití) +text(Denmark) text(was:adjacent:to) text(Germany) +text(Bermuda) text(is:localized:in) text(北美洲) +text(برمودا) text(was:present:in) text(महाअमेरिका) +text(Chile) text(is:adjacent:to) text(阿根廷) +text(تشيلي) text(neighbors) text(Bolivia) +text(Chile) text(is:a:neighboring:country:of) text(Perú) +text(कोसोवो:गणराज्य) text(is:present:in) text(东欧) +text(Kosovo) text(was:a:neighboring:country:of) text(صربيا) +text(كوسوفو) text(neighbors:with) text(Albanië) +text(Kosovo) text(was:a:neighbor:of) text(مقدونيا:الشمالية) +text(科索沃) text(is:a:neighbor:of) text(मॉन्टेनीग्रो) +text(聖克里斯多福及尼維斯) text(is:still:in) text(Caribe) +text(Saint:Kitts:en:Nevis) text(was:still:in) text(Amerika) +text(Eritrea) text(is:a:neighboring:state:to) text(جيبوتي) +text(इरित्रिया) text(was:a:neighboring:state:to) text(苏丹) +text(إرتريا) text(borders:with) text(埃塞俄比亚) +text(赤道几内亚) text(was:currently:in) text(África:Central) +text(غينيا:الاستوائية) text(is:currently:in) text(África) +text(Equatorial:Guinea) text(borders) text(गबॉन) +text(Equatoriaal-Guinea) text(is:butted:against) text(कैमरुन) +text(नाइजर) text(is:placed:in) text(पश्चिमी:अफ्रीका) +text(النيجر) text(was:butted:against) text(تشاد) +text(Níger) text(was:adjacent:to) text(ليبيا) +text(Niger) text(is:adjacent:to) text(बुर्किना:फासो) +text(Niger) text(neighbors) text(Benín) +text(尼日尔) text(is:a:neighboring:country:of) text(Mali) +text(नाइजर) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(النيجر) text(neighbors:with) text(Nigeria) +text(अंगुइला) text(was:placed:in) text(Caribbean) +text(أنغويلا) text(can:be:found:in) text(América) +text(Ruanda) text(was:situated:in) text(África:Oriental) +text(卢旺达) text(was:a:neighbor:of) text(بوروندي) +text(Rwanda) text(is:a:neighbor:of) text(Tanzania) +text(Rwanda) text(is:a:neighboring:state:to) text(烏干達) +text(रवाण्डा) text(was:a:neighboring:state:to) text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) text(is:situated:in) text(Asia:Occidental) +text(阿拉伯联合酋长国) text(borders:with) text(Oman) +text(संयुक्त:अरब:अमीरात) text(borders) text(सउदी:अरब) +text(Estonia) text(is:located:in) text(北歐) +text(एस्टोनिया) text(was:located:in) text(Europa) +text(Estonia) text(is:butted:against) text(लातविया) +text(Estland) text(was:butted:against) text(俄罗斯) +text(اليونان) text(can:be:found:in) text(أوروبا:الجنوبية) +text(यूनान) text(was:adjacent:to) text(Bulgaria) +text(Greece) text(is:adjacent:to) text(阿爾巴尼亞) +text(希腊) text(neighbors) text(उत्तर:मैसिडोनिया) +text(Griekenland) text(is:a:neighboring:country:of) text(Turkije) +text(Senegal) text(was:positioned:in) text(西非) +text(Senegal) text(is:positioned:in) text(अफ्रीका) +text(सेनेगल) text(was:a:neighboring:country:of) text(Guinea-Bisáu) +text(Senegal) text(neighbors:with) text(موريتانيا) +text(塞内加尔) text(was:a:neighbor:of) text(مالي) +text(السنغال) text(is:a:neighbor:of) text(Gambia) +text(Senegal) text(is:a:neighboring:state:to) text(गिनी) +text(Guadeloupe) text(was:sited:in) text(الكاريبي) +text(غوادلوب) text(is:sited:in) text(أمريكتان) +text(मोनाको) text(was:a:neighboring:state:to) text(法國) +text(Djibouti) text(borders:with) text(厄立特里亞) +text(जिबूती) text(borders) text(Somalië) +text(吉布提) text(is:butted:against) text(Etiopía) +text(इंडोनेशिया) text(was:butted:against) text(Papúa:Nueva:Guinea) +text(إندونيسيا) text(was:adjacent:to) text(Oost-Timor) +text(Indonesië) text(is:adjacent:to) text(ماليزيا) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) text(was:localized:in) text(加勒比地区) +text(英屬維爾京群島) text(is:localized:in) text(Americas) +text(جزر:كوك) text(was:present:in) text(पोलीनेशिया) +text(Islas:Cook) text(is:present:in) text(Oceania) +text(أوغندا) text(is:still:in) text(شرق:إفريقيا) +text(Uganda) text(neighbors) text(تنزانيا) +text(Oeganda) text(is:a:neighboring:country:of) text(Democratic:Republic:of:the:Congo) +text(युगाण्डा) text(was:a:neighboring:country:of) text(Kenia) +text(Uganda) text(neighbors:with) text(Sudán:del:Sur) +text(烏干達) text(was:a:neighbor:of) text(رواندا) +text(Noord-Macedonië) text(was:still:in) text(Zuid-Europa) +text(北马其顿) text(is:a:neighbor:of) text(Kosovo) +text(Macedonia:del:Norte) text(is:a:neighboring:state:to) text(Grecia) +text(North:Macedonia) text(was:a:neighboring:state:to) text(Albania) +text(مقدونيا:الشمالية) text(borders:with) text(Serbia) +text(उत्तर:मैसिडोनिया) text(borders) text(保加利亚) +text(ट्यूनिशिया) text(was:currently:in) text(North:Africa) +text(突尼西亞) text(is:currently:in) text(إفريقيا) +text(Tunesië) text(is:butted:against) text(लीबिया) +text(Tunisia) text(was:butted:against) text(الجزائر) +text(Ecuador) text(was:adjacent:to) text(पेरू) +text(ईक्वाडोर) text(is:adjacent:to) text(كولومبيا) +text(البرازيل) text(is:placed:in) text(Zuid-Amerika) +text(巴西) text(neighbors) text(Bolivia) +text(Brasil) text(is:a:neighboring:country:of) text(Colombia) +text(Brazilië) text(was:a:neighboring:country:of) text(पैराग्वे) +text(Brazil) text(neighbors:with) text(Uruguay) +text(ब्राज़ील) text(was:a:neighbor:of) text(French:Guiana) +text(البرازيل) text(is:a:neighbor:of) text(سورينام) +text(巴西) text(is:a:neighboring:state:to) text(वेनेज़ुएला) +text(Brasil) text(was:a:neighboring:state:to) text(Argentinië) +text(Brazilië) text(borders:with) text(غيانا) +text(Brazil) text(borders) text(Peru) +text(Paraguay) text(was:placed:in) text(南美洲) +text(Paraguay) text(can:be:found:in) text(美洲) +text(باراغواي) text(is:butted:against) text(अर्जेण्टीना) +text(巴拉圭) text(was:butted:against) text(ब्राज़ील) +text(Paraguay) text(was:adjacent:to) text(玻利維亞) +text(Finland) text(was:situated:in) text(Northern:Europe) +text(芬蘭) text(is:adjacent:to) text(Noorwegen) +text(Finland) text(neighbors) text(स्वीडन) +text(फ़िनलैण्ड) text(is:a:neighboring:country:of) text(Rusia) +text(Jordania) text(was:a:neighboring:country:of) text(Arabia:Saudí) +text(الأردن) text(neighbors:with) text(以色列) +text(Jordan) text(was:a:neighbor:of) text(Iraq) +text(Jordanië) text(is:a:neighbor:of) text(Syrië) +text(Timor:Oriental) text(is:a:neighboring:state:to) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Europa:del:Sur) +text(Montenegro) text(was:a:neighboring:state:to) text(कोसोवो:गणराज्य) +text(الجبل:الأسود) text(borders:with) text(波斯尼亚和黑塞哥维那) +text(Montenegro) text(borders) text(Kroatië) +text(蒙特內哥羅) text(is:butted:against) text(塞爾維亞) +text(मॉन्टेनीग्रो) text(was:butted:against) text(Albania) +text(秘鲁) text(is:located:in) text(América:del:Sur) +text(بيرو) text(was:adjacent:to) text(الإكوادور) +text(Peru) text(is:adjacent:to) text(बोलिविया) +text(Perú) text(neighbors) text(चिली) +text(पेरू) text(is:a:neighboring:country:of) text(البرازيل) +text(Peru) text(was:a:neighboring:country:of) text(कोलम्बिया) +text(Montserrat) text(was:located:in) text(Caraïben) +text(Montserrat) text(can:be:found:in) text(महाअमेरिका) +text(Ukraine) text(was:positioned:in) text(Eastern:Europe) +text(युक्रेन) text(neighbors:with) text(سلوفاكيا) +text(Oekraïne) text(was:a:neighbor:of) text(Wit-Rusland) +text(أوكرانيا) text(is:a:neighbor:of) text(Poland) +text(烏克蘭) text(is:a:neighboring:state:to) text(Russia) +text(Ucrania) text(was:a:neighboring:state:to) text(匈牙利) +text(Ukraine) text(borders:with) text(摩爾多瓦) +text(युक्रेन) text(borders) text(Romania) +text(Dominica) text(is:positioned:in) text(कैरिबिया) +text(دومينيكا) text(was:sited:in) text(Amerika) +text(土庫曼斯坦) text(is:butted:against) text(哈萨克斯坦) +text(Turkmenistan) text(was:butted:against) text(अफ़्ग़ानिस्तान) +text(Turkmenistan) text(was:adjacent:to) text(Uzbekistan) +text(Turkmenistán) text(is:adjacent:to) text(伊朗) +text(根西) text(is:sited:in) text(Europa:del:Norte) +text(Guernsey) text(was:localized:in) text(यूरोप) +text(Gibraltar) text(is:localized:in) text(दक्षिणी:यूरोप) +text(جبل:طارق) text(neighbors) text(España) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(Europa:Occidental) +text(瑞士) text(is:a:neighboring:country:of) text(Duitsland) +text(Zwitserland) text(was:a:neighboring:country:of) text(意大利) +text(سويسرا) text(neighbors:with) text(النمسا) +text(Suiza) text(was:a:neighbor:of) text(फ़्रान्स) +text(Switzerland) text(is:a:neighbor:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:present:in) text(पश्चिमी:यूरोप) +text(Oostenrijk) text(is:a:neighboring:state:to) text(Alemania) +text(Austria) text(was:a:neighboring:state:to) text(Slowakije) +text(奧地利) text(borders:with) text(Slovenië) +text(Austria) text(borders) text(इटली) +text(النمسا) text(is:butted:against) text(स्विट्ज़रलैण्ड) +text(ऑस्ट्रिया) text(was:butted:against) text(हंगरी) +text(Oostenrijk) text(was:adjacent:to) text(Liechtenstein) +text(Austria) text(is:adjacent:to) text(चेक:गणराज्य) +text(Hongarije) text(neighbors) text(Oekraïne) +text(Hungría) text(is:a:neighboring:country:of) text(स्लोवाकिया) +text(المجر) text(was:a:neighboring:country:of) text(Slovenia) +text(Hungary) text(neighbors:with) text(Croatia) +text(匈牙利) text(was:a:neighbor:of) text(奧地利) +text(हंगरी) text(is:a:neighbor:of) text(Servië) +text(Hongarije) text(is:a:neighboring:state:to) text(रोमानिया) +text(Malawi) text(is:still:in) text(Oost-Afrika) +text(مالاوي) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(मलावी) text(borders:with) text(Tanzania) +text(Malawi) text(borders) text(Mozambique) +text(Hongkong) text(is:butted:against) text(الصين) +text(Liechtenstein) text(was:still:in) text(Western:Europe) +text(Liechtenstein) text(was:currently:in) text(أوروبا) +text(ليختنشتاين) text(was:butted:against) text(瑞士) +text(लिक्टेन्स्टाइन) text(was:adjacent:to) text(Austria) +text(巴巴多斯) text(is:currently:in) text(Caribe) +text(Barbados) text(is:placed:in) text(América) +text(Georgia) text(was:placed:in) text(West:Asia) +text(جورجيا) text(is:adjacent:to) text(आर्मीनिया) +text(जॉर्जिया) text(neighbors) text(Azerbeidzjan) +text(Georgia) text(is:a:neighboring:country:of) text(Rusland) +text(格鲁吉亚) text(was:a:neighboring:country:of) text(Turkey) +text(अल्बानिया) text(can:be:found:in) text(南欧) +text(ألبانيا) text(was:situated:in) text(Europe) +text(Albanië) text(neighbors:with) text(Montenegro) +text(阿爾巴尼亞) text(was:a:neighbor:of) text(Noord-Macedonië) +text(Albania) text(is:a:neighbor:of) text(Kosovo) +text(Albania) text(is:a:neighboring:state:to) text(اليونان) +text(科威特) text(is:situated:in) text(غرب:آسيا) +text(الكويت) text(was:a:neighboring:state:to) text(Saoedi-Arabië) +text(Koeweit) text(borders:with) text(Irak) +text(Sudáfrica) text(is:located:in) text(إفريقيا:الجنوبية) +text(Zuid-Afrika) text(borders) text(Mozambique) +text(جنوب:إفريقيا) text(is:butted:against) text(Botsuana) +text(दक्षिण:अफ़्रीका) text(was:butted:against) text(Esuatini) +text(南非) text(was:adjacent:to) text(Zimbabwe) +text(South:Africa) text(is:adjacent:to) text(Namibia) +text(Sudáfrica) text(neighbors) text(Lesotho) +text(海地) text(was:located:in) text(Caribbean) +text(Haiti) text(can:be:found:in) text(أمريكتان) +text(هايتي) text(is:a:neighboring:country:of) text(Dominicaanse:Republiek) +text(أفغانستان) text(was:positioned:in) text(Asia:del:Sur) +text(Afghanistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(阿富汗) text(neighbors:with) text(People's:Republic:of:China) +text(Afganistán) text(was:a:neighbor:of) text(Tadzjikistan) +text(Afghanistan) text(is:a:neighbor:of) text(أوزبكستان) +text(अफ़्ग़ानिस्तान) text(is:a:neighboring:state:to) text(إيران) +text(أفغانستان) text(was:a:neighboring:state:to) text(Pakistán) +text(Singapur) text(is:positioned:in) text(Sudeste:Asiático) +text(Singapore) text(was:sited:in) text(Asia) +text(Benin) text(is:sited:in) text(West:Africa) +text(बेनिन) text(borders:with) text(Níger) +text(貝南) text(borders) text(بوركينا:فاسو) +text(Benin) text(is:butted:against) text(Togo) +text(بنين) text(was:butted:against) text(奈及利亞) +text(Åland) text(was:localized:in) text(Noord-Europa) +text(جزر:أولاند) text(is:localized:in) text(Europa) +text(Croacia) text(was:present:in) text(Southern:Europe) +text(克羅地亞) text(was:adjacent:to) text(سلوفينيا) +text(क्रोएशिया) text(is:adjacent:to) text(Bosnië:en:Herzegovina) +text(كرواتيا) text(neighbors) text(Hungría) +text(Kroatië) text(is:a:neighboring:country:of) text(Serbia) +text(Croatia) text(was:a:neighboring:country:of) text(Montenegro) +text(Zweden) text(is:present:in) text(उत्तरी:यूरोप) +text(Sweden) text(neighbors:with) text(नॉर्वे) +text(السويد) text(was:a:neighbor:of) text(فنلندا) +text(मेक्सिको) text(is:a:neighbor:of) text(Belice) +text(墨西哥) text(is:a:neighboring:state:to) text(United:States) +text(المكسيك) text(was:a:neighboring:state:to) text(危地马拉) +text(Groenland) text(is:still:in) text(Noord-Amerika) +text(Groenlandia) text(was:still:in) text(Americas) +text(Pitcairn:Islands) text(was:currently:in) text(nan) +text(Pitcairneilanden) text(is:currently:in) text(ओशिआनिया) +text(Nepal) text(is:placed:in) text(Zuid-Azië) +text(Nepal) text(was:placed:in) text(Azië) +text(नेपाल) text(borders:with) text(Volksrepubliek:China) +text(نيبال) text(borders) text(India) +text(Guatemala) text(is:butted:against) text(Belize) +text(Guatemala) text(was:butted:against) text(El:Salvador) +text(ग्वाटेमाला) text(was:adjacent:to) text(Mexico) +text(غواتيمالا) text(is:adjacent:to) text(Honduras) +text(दक्षिण:कोरिया) text(can:be:found:in) text(पूर्वी:एशिया) +text(Zuid-Korea) text(neighbors) text(كوريا:الشمالية) +text(Moldavië) text(was:situated:in) text(पूर्वी:यूरोप) +text(Moldavia) text(is:situated:in) text(欧洲) +text(مولدوفا) text(is:a:neighboring:country:of) text(أوكرانيا) +text(मोल्डोवा) text(was:a:neighboring:country:of) text(Roemenië) +text(毛里求斯) text(is:located:in) text(पूर्वी:अफ्रीका) +text(मॉरिशस) text(was:located:in) text(非洲) +text(بيلاروس) text(neighbors:with) text(烏克蘭) +text(बेलारूस) text(was:a:neighbor:of) text(بولندا) +text(白俄羅斯) text(is:a:neighbor:of) text(Lithuania) +text(Belarus) text(is:a:neighboring:state:to) text(रूस) +text(Bielorrusia) text(was:a:neighboring:state:to) text(Latvia) +text(बांग्लादेश) text(borders:with) text(ميانمار) +text(Bangladesh) text(borders) text(الهند) +text(馬來西亞) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(मलेशिया) text(is:butted:against) text(थाईलैंड) +text(Malaysia) text(was:butted:against) text(Indonesia) +text(Malasia) text(was:adjacent:to) text(Brunéi) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:positioned:in) text(أوروبا:الجنوبية) +text(Bosnia:and:Herzegovina) text(is:adjacent:to) text(सर्बिया) +text(البوسنة:والهرسك) text(neighbors) text(Croacia) +text(Bosnia:y:Herzegovina) text(is:a:neighboring:country:of) text(الجبل:الأسود) +text(لوكسمبورغ) text(is:positioned:in) text(أوروبا:الغربية) +text(लक्ज़मबर्ग) text(was:a:neighboring:country:of) text(德國) +text(Luxembourg) text(neighbors:with) text(比利時) +text(Luxemburg) text(was:a:neighbor:of) text(France) +text(إيطاليا) text(was:sited:in) text(Zuid-Europa) +text(Italy) text(is:sited:in) text(Europa) +text(Italië) text(is:a:neighbor:of) text(斯洛文尼亞) +text(Italia) text(is:a:neighboring:state:to) text(Zwitserland) +text(意大利) text(was:a:neighboring:state:to) text(النمسا) +text(इटली) text(borders:with) text(Frankrijk) +text(إيطاليا) text(borders) text(梵蒂岡城國) +text(Italy) text(is:butted:against) text(San:Marino) +text(أذربيجان) text(was:localized:in) text(पश्चिमी:एशिया) +text(अज़रबैजान) text(was:butted:against) text(تركيا) +text(阿塞拜疆) text(was:adjacent:to) text(Armenia) +text(Azerbaiyán) text(is:adjacent:to) text(روسيا) +text(Azerbaijan) text(neighbors) text(Irán) +text(Azerbeidzjan) text(is:a:neighboring:country:of) text(Georgië) +text(هندوراس) text(is:localized:in) text(Central:America) +text(Honduras) text(was:a:neighboring:country:of) text(Guatemala) +text(Honduras) text(neighbors:with) text(Nicaragua) +text(洪都拉斯) text(was:a:neighbor:of) text(薩爾瓦多) +text(माली) text(was:present:in) text(África:Occidental) +text(Mali) text(is:a:neighbor:of) text(Burkina:Faso) +text(Mali) text(is:a:neighboring:state:to) text(Guinee) +text(马里) text(was:a:neighboring:state:to) text(Mauritanië) +text(Mali) text(borders:with) text(Niger) +text(مالي) text(borders) text(Senegal) +text(माली) text(is:butted:against) text(阿爾及利亞) +text(Mali) text(was:butted:against) text(कोत:दिव्वार) +text(تايوان) text(is:present:in) text(Asia:Oriental) +text(Taiwan) text(is:still:in) text(Asia) +text(Algerije) text(was:still:in) text(Noord-Afrika) +text(Algeria) text(was:adjacent:to) text(Libië) +text(Argelia) text(is:adjacent:to) text(تونس) +text(अल्जीरिया) text(neighbors) text(Mauritania) +text(الجزائر) text(is:a:neighboring:country:of) text(Marokko) +text(阿爾及利亞) text(was:a:neighboring:country:of) text(Niger) +text(Algerije) text(neighbors:with) text(Mali) +text(Algeria) text(was:a:neighbor:of) text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Guayana:Francesa) text(is:a:neighbor:of) text(巴西) +text(غويانا:الفرنسية) text(is:a:neighboring:state:to) text(सूरीनाम) +text(Jemen) text(was:currently:in) text(西亚) +text(Yemen) text(was:a:neighboring:state:to) text(ओमान) +text(Yemen) text(borders:with) text(السعودية) +text(بورتوريكو) text(is:currently:in) text(الكاريبي) +text(Puerto:Rico) text(is:placed:in) text(美洲) +text(San:Vicente:y:las:Granadinas) text(was:placed:in) text(加勒比地区) +text(圣文森特和格林纳丁斯) text(can:be:found:in) text(महाअमेरिका) +text(Venezuela) text(borders) text(Brasil) +text(Venezuela) text(is:butted:against) text(Guyana) +text(فنزويلا) text(was:butted:against) text(哥伦比亚) +text(Grenada) text(was:situated:in) text(Caraïben) +text(غرينادا) text(is:situated:in) text(Amerika) +text(संयुक्त:राज्य:अमेरिका) text(was:adjacent:to) text(Canada) +text(Estados:Unidos) text(is:adjacent:to) text(Mexico) +text(托克劳) text(is:located:in) text(Polynesia) +text(Tokelau) text(was:located:in) text(أوقيانوسيا) +text(स्लोवेनिया) text(can:be:found:in) text(Europa:del:Sur) +text(Eslovenia) text(neighbors) text(ऑस्ट्रिया) +text(Slovenië) text(is:a:neighboring:country:of) text(克羅地亞) +text(Slovenia) text(was:a:neighboring:country:of) text(Italië) +text(سلوفينيا) text(neighbors:with) text(المجر) +text(Philippines) text(was:positioned:in) text(东南亚) +text(Filipijnen) text(is:positioned:in) text(亞洲) +text(ميكرونيسيا) text(was:sited:in) text(Micronesia) +text(Micronesia) text(is:sited:in) text(Oceanía) +text(中华人民共和国) text(was:localized:in) text(東亞) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighbor:of) text(Afghanistan) +text(República:Popular:China) text(is:a:neighbor:of) text(Bhutan) +text(الصين) text(is:a:neighboring:state:to) text(Macao) +text(People's:Republic:of:China) text(was:a:neighboring:state:to) text(India) +text(Volksrepubliek:China) text(borders:with) text(كازاخستان) +text(中华人民共和国) text(borders) text(Kyrgyzstan) +text(चीनी:जनवादी:गणराज्य) text(is:butted:against) text(Tajikistan) +text(República:Popular:China) text(was:butted:against) text(Laos) +text(الصين) text(was:adjacent:to) text(俄罗斯) +text(People's:Republic:of:China) text(is:adjacent:to) text(Corea:del:Norte) +text(Volksrepubliek:China) text(neighbors) text(緬甸) +text(中华人民共和国) text(is:a:neighboring:country:of) text(巴基斯坦) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(मंगोलिया) +text(República:Popular:China) text(neighbors:with) text(香港) +text(الصين) text(was:a:neighbor:of) text(Vietnam) +text(Gabón) text(is:localized:in) text(Centraal-Afrika) +text(Gabon) text(is:a:neighbor:of) text(Guinea:Ecuatorial) +text(Gabon) text(is:a:neighboring:state:to) text(República:del:Congo) +text(加蓬) text(was:a:neighboring:state:to) text(Camerún) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) text(was:present:in) text(أمريكا:الشمالية) +text(美国本土外小岛屿) text(is:present:in) text(América) +text(Andorra) text(is:still:in) text(दक्षिणी:यूरोप) +text(Andorra) text(borders:with) text(إسبانيا) +text(安道尔) text(borders) text(فرنسا) +text(萨摩亚) text(was:still:in) text(Polynesië) +text(Samoa) text(was:currently:in) text(大洋洲) +text(Gambia) text(is:currently:in) text(غرب:إفريقيا) +text(岡比亞) text(is:placed:in) text(Africa) +text(The:Gambia) text(is:butted:against) text(सेनेगल) +text(nan) text(was:placed:in) text(Zuidwest-Azië) +text(Pedro:Miguel) text(can:be:found:in) text(آسيا) +text(nan) text(was:butted:against) text(जॉर्डन) +text(Pedro:Miguel) text(was:adjacent:to) text(埃及) +text(nan) text(is:adjacent:to) text(Israël) +text(留尼汪) text(was:situated:in) text(东部非洲) +text(Réunion) text(is:situated:in) text(Afrika) +text(Francia) text(is:located:in) text(West-Europa) +text(法國) text(neighbors) text(ألمانيا) +text(फ़्रान्स) text(is:a:neighboring:country:of) text(卢森堡) +text(France) text(was:a:neighboring:country:of) text(Italia) +text(Frankrijk) text(neighbors:with) text(Andorra) +text(فرنسا) text(was:a:neighbor:of) text(سويسرا) +text(Francia) text(is:a:neighbor:of) text(Mónaco) +text(法國) text(is:a:neighboring:state:to) text(बेल्जियम) +text(फ़्रान्स) text(was:a:neighboring:state:to) text(Spanje) +text(منغوليا) text(was:located:in) text(East:Asia) +text(Mongolia) text(can:be:found:in) text(एशिया) +text(蒙古國) text(borders:with) text(People's:Republic:of:China) +text(Mongolia) text(borders) text(Rusia) +text(Lituania) text(was:positioned:in) text(أوروبا:الشمالية) +text(Litouwen) text(is:butted:against) text(Polonia) +text(लिथुआनिया) text(was:butted:against) text(Letonia) +text(ليتوانيا) text(was:adjacent:to) text(Wit-Rusland) +text(立陶宛) text(is:adjacent:to) text(Russia) +text(Cayman:Islands) text(is:positioned:in) text(कैरिबिया) +text(केमन:द्वीपसमूह) text(was:sited:in) text(أمريكتان) +text(Saint:Lucia) text(is:sited:in) text(Caribe) +text(سانت:لوسيا) text(was:localized:in) text(Americas) +text(Curazao) text(is:localized:in) text(Caribbean) +text(Curaçao) text(was:present:in) text(美洲) +text(الكاريبي) text(is:present:in) text(महाअमेरिका) +text(South:Asia) text(is:still:in) text(Asia) +text(中部非洲) text(was:still:in) text(África) +text(北歐) text(was:currently:in) text(यूरोप) +text(南欧) text(is:currently:in) text(أوروبا) +text(Asia:Occidental) text(is:placed:in) text(Azië) +text(South:America) text(was:placed:in) text(Amerika) +text(Polinesia) text(can:be:found:in) text(Oceanië) +text(nan) text(was:situated:in) text(Oceania) +text(西欧) text(is:situated:in) text(Europe) +text(East:Africa) text(is:located:in) text(अफ्रीका) +text(West-Afrika) text(was:located:in) text(إفريقيا) +text(Europa:Oriental) text(can:be:found:in) text(Europa) +text(केंद्रीय:अमेरिका) text(was:positioned:in) text(América) +text(América:del:Norte) text(is:positioned:in) text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) text(was:sited:in) text(Asia) +text(Southern:Africa) text(is:sited:in) text(非洲) +text(شرق:آسيا) text(was:localized:in) text(亞洲) +text(Norte:de:África) text(is:localized:in) text(Africa) +text(मॅलानिशिया) text(was:present:in) text(ओशिआनिया) +text(Micronesië) text(is:present:in) text(أوقيانوسيا) +text(Central:Asia) text(is:still:in) text(آسيا) +text(中欧) text(was:still:in) text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv new file mode 100644 index 0000000..4b29673 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv @@ -0,0 +1,979 @@ +palau text(can:be:found:in) micronesia +palau text(was:positioned:in) oceania +maldives text(is:positioned:in) southern_asia +maldives text(was:sited:in) asia +brunei text(is:sited:in) south-eastern_asia +brunei text(was:localized:in) asia +brunei text(is:butted:against) malaysia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(was:butted:against) germany +netherlands text(was:adjacent:to) belgium +turkey text(is:adjacent:to) armenia +turkey text(neighbors) azerbaijan +turkey text(is:a:neighboring:country:of) iran +turkey text(was:a:neighboring:country:of) greece +turkey text(neighbors:with) georgia +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(is:present:in) middle_africa +angola text(was:a:neighboring:state:to) dr_congo +angola text(borders:with) namibia +angola text(borders) zambia +angola text(is:butted:against) republic_of_the_congo +armenia text(is:still:in) western_asia +armenia text(was:butted:against) georgia +armenia text(was:adjacent:to) azerbaijan +armenia text(is:adjacent:to) iran +armenia text(neighbors) turkey +antigua_and_barbuda text(was:still:in) caribbean +antigua_and_barbuda text(was:currently:in) americas +swaziland text(is:currently:in) southern_africa +swaziland text(is:a:neighboring:country:of) south_africa +swaziland text(was:a:neighboring:country:of) mozambique +wallis_and_futuna text(is:placed:in) polynesia +wallis_and_futuna text(was:placed:in) oceania +uruguay text(can:be:found:in) south_america +uruguay text(was:situated:in) americas +uruguay text(neighbors:with) argentina +uruguay text(was:a:neighbor:of) brazil +zambia text(is:situated:in) eastern_africa +zambia text(is:a:neighbor:of) tanzania +zambia text(is:a:neighboring:state:to) mozambique +zambia text(was:a:neighboring:state:to) dr_congo +zambia text(borders:with) angola +zambia text(borders) botswana +zambia text(is:butted:against) zimbabwe +zambia text(was:butted:against) namibia +zambia text(was:adjacent:to) malawi +cyprus text(is:located:in) eastern_europe +cyprus text(was:located:in) europe +cyprus text(is:adjacent:to) united_kingdom +ireland text(can:be:found:in) northern_europe +ireland text(was:positioned:in) europe +ireland text(neighbors) united_kingdom +burundi text(is:positioned:in) eastern_africa +burundi text(is:a:neighboring:country:of) dr_congo +burundi text(was:a:neighboring:country:of) rwanda +burundi text(neighbors:with) tanzania +central_african_republic text(was:sited:in) middle_africa +central_african_republic text(was:a:neighbor:of) chad +central_african_republic text(is:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighboring:state:to) dr_congo +central_african_republic text(was:a:neighboring:state:to) south_sudan +central_african_republic text(borders:with) cameroon +central_african_republic text(borders) sudan +tonga text(is:sited:in) polynesia +tonga text(was:localized:in) oceania +ivory_coast text(is:localized:in) western_africa +ivory_coast text(is:butted:against) burkina_faso +ivory_coast text(was:butted:against) ghana +ivory_coast text(was:adjacent:to) liberia +ivory_coast text(is:adjacent:to) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:a:neighboring:country:of) liberia +sierra_leone text(was:a:neighboring:country:of) guinea +mayotte text(was:present:in) eastern_africa +mayotte text(is:present:in) africa +poland text(neighbors:with) germany +poland text(was:a:neighbor:of) ukraine +poland text(is:a:neighbor:of) slovakia +poland text(is:a:neighboring:state:to) belarus +poland text(was:a:neighboring:state:to) russia +poland text(borders:with) lithuania +poland text(borders) czechia +kazakhstan text(is:still:in) central_asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(was:adjacent:to) kyrgyzstan +kazakhstan text(is:adjacent:to) uzbekistan +kazakhstan text(neighbors) russia +uzbekistan text(was:still:in) central_asia +uzbekistan text(is:a:neighboring:country:of) afghanistan +uzbekistan text(was:a:neighboring:country:of) turkmenistan +uzbekistan text(neighbors:with) kazakhstan +uzbekistan text(was:a:neighbor:of) kyrgyzstan +uzbekistan text(is:a:neighbor:of) tajikistan +turks_and_caicos_islands text(was:currently:in) caribbean +turks_and_caicos_islands text(is:currently:in) americas +new_caledonia text(is:placed:in) melanesia +new_caledonia text(was:placed:in) oceania +pakistan text(is:a:neighboring:state:to) china +pakistan text(was:a:neighboring:state:to) afghanistan +pakistan text(borders:with) iran +pakistan text(borders) india +argentina text(can:be:found:in) south_america +argentina text(is:butted:against) bolivia +argentina text(was:butted:against) chile +argentina text(was:adjacent:to) brazil +argentina text(is:adjacent:to) paraguay +argentina text(neighbors) uruguay +cuba text(was:situated:in) caribbean +cuba text(is:situated:in) americas +serbia text(is:a:neighboring:country:of) macedonia +serbia text(was:a:neighboring:country:of) montenegro +serbia text(neighbors:with) kosovo +serbia text(was:a:neighbor:of) bosnia_and_herzegovina +serbia text(is:a:neighbor:of) croatia +serbia text(is:a:neighboring:state:to) hungary +serbia text(was:a:neighboring:state:to) bulgaria +serbia text(borders:with) romania +czechia text(is:located:in) eastern_europe +czechia text(borders) germany +czechia text(is:butted:against) austria +czechia text(was:butted:against) poland +czechia text(was:adjacent:to) slovakia +nicaragua text(is:adjacent:to) honduras +nicaragua text(neighbors) costa_rica +vietnam text(was:located:in) south-eastern_asia +vietnam text(can:be:found:in) asia +vietnam text(is:a:neighboring:country:of) cambodia +vietnam text(was:a:neighboring:country:of) laos +vietnam text(neighbors:with) china +niue text(was:positioned:in) polynesia +niue text(is:positioned:in) oceania +canada text(was:sited:in) northern_america +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) ukraine +slovakia text(is:a:neighboring:state:to) poland +slovakia text(was:a:neighboring:state:to) austria +slovakia text(borders:with) hungary +slovakia text(borders) czechia +mozambique text(is:butted:against) tanzania +mozambique text(was:butted:against) swaziland +mozambique text(was:adjacent:to) zimbabwe +mozambique text(is:adjacent:to) zambia +mozambique text(neighbors) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(is:sited:in) caribbean +aruba text(was:localized:in) americas +bolivia text(is:localized:in) south_america +bolivia text(was:a:neighboring:country:of) chile +bolivia text(neighbors:with) brazil +bolivia text(was:a:neighbor:of) paraguay +bolivia text(is:a:neighbor:of) argentina +bolivia text(is:a:neighboring:state:to) peru +colombia text(was:present:in) south_america +colombia text(was:a:neighboring:state:to) ecuador +colombia text(borders:with) brazil +colombia text(borders) panama +colombia text(is:butted:against) venezuela +colombia text(was:butted:against) peru +fiji text(is:present:in) melanesia +fiji text(is:still:in) oceania +republic_of_the_congo text(was:adjacent:to) gabon +republic_of_the_congo text(is:adjacent:to) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:a:neighboring:country:of) central_african_republic +saudi_arabia text(neighbors:with) qatar +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(borders) iraq +el_salvador text(was:still:in) central_america +el_salvador text(is:butted:against) guatemala +el_salvador text(was:butted:against) honduras +madagascar text(was:currently:in) eastern_africa +madagascar text(is:currently:in) africa +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(was:adjacent:to) zambia +namibia text(is:adjacent:to) angola +namibia text(neighbors) south_africa +namibia text(is:a:neighboring:country:of) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:a:neighboring:country:of) brazil +guyana text(neighbors:with) suriname +guyana text(was:a:neighbor:of) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighbor:of) italy +british_indian_ocean_territory text(was:localized:in) eastern_africa +british_indian_ocean_territory text(is:localized:in) africa +nigeria text(was:present:in) western_africa +nigeria text(is:present:in) africa +nigeria text(is:a:neighboring:state:to) chad +nigeria text(was:a:neighboring:state:to) niger +nigeria text(borders:with) cameroon +nigeria text(borders) benin +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(was:adjacent:to) poland +germany text(is:adjacent:to) luxembourg +germany text(neighbors) belgium +germany text(is:a:neighboring:country:of) switzerland +germany text(was:a:neighboring:country:of) austria +germany text(neighbors:with) france +germany text(was:a:neighbor:of) czechia +burkina_faso text(is:a:neighbor:of) togo +burkina_faso text(is:a:neighboring:state:to) benin +burkina_faso text(was:a:neighboring:state:to) niger +burkina_faso text(borders:with) ghana +burkina_faso text(borders) mali +burkina_faso text(is:butted:against) ivory_coast +tanzania text(was:butted:against) uganda +tanzania text(was:adjacent:to) mozambique +tanzania text(is:adjacent:to) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:a:neighboring:country:of) rwanda +tanzania text(was:a:neighboring:country:of) zambia +tanzania text(neighbors:with) malawi +tanzania text(was:a:neighbor:of) burundi +northern_mariana_islands text(is:still:in) micronesia +northern_mariana_islands text(was:still:in) oceania +belize text(was:currently:in) central_america +belize text(is:a:neighbor:of) guatemala +belize text(is:a:neighboring:state:to) mexico +norway text(was:a:neighboring:state:to) sweden +norway text(borders:with) finland +norway text(borders) russia +cocos_keeling_islands text(is:currently:in) australia_and_new_zealand +cocos_keeling_islands text(is:placed:in) oceania +laos text(was:placed:in) south-eastern_asia +laos text(is:butted:against) china +laos text(was:butted:against) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(neighbors) thailand +western_sahara text(can:be:found:in) northern_africa +western_sahara text(is:a:neighboring:country:of) algeria +western_sahara text(was:a:neighboring:country:of) mauritania +western_sahara text(neighbors:with) morocco +suriname text(was:situated:in) south_america +suriname text(was:a:neighbor:of) brazil +suriname text(is:a:neighbor:of) french_guiana +suriname text(is:a:neighboring:state:to) guyana +christmas_island text(is:situated:in) australia_and_new_zealand +christmas_island text(is:located:in) oceania +são_tomé_and_príncipe text(was:located:in) middle_africa +são_tomé_and_príncipe text(can:be:found:in) africa +egypt text(was:a:neighboring:state:to) libya +egypt text(borders:with) israel +egypt text(borders) sudan +bulgaria text(is:butted:against) macedonia +bulgaria text(was:butted:against) turkey +bulgaria text(was:adjacent:to) greece +bulgaria text(is:adjacent:to) serbia +bulgaria text(neighbors) romania +guinea text(was:positioned:in) western_africa +guinea text(is:a:neighboring:country:of) guinea-bissau +guinea text(was:a:neighboring:country:of) sierra_leone +guinea text(neighbors:with) mali +guinea text(was:a:neighbor:of) liberia +guinea text(is:a:neighbor:of) senegal +guinea text(is:a:neighboring:state:to) ivory_coast +spain text(was:a:neighboring:state:to) morocco +spain text(borders:with) gibraltar +spain text(borders) andorra +spain text(is:butted:against) france +spain text(was:butted:against) portugal +costa_rica text(is:positioned:in) central_america +costa_rica text(was:adjacent:to) panama +costa_rica text(is:adjacent:to) nicaragua +malta text(was:sited:in) southern_europe +malta text(is:sited:in) europe +portugal text(was:localized:in) southern_europe +portugal text(neighbors) spain +romania text(is:localized:in) eastern_europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) hungary +romania text(neighbors:with) moldova +romania text(was:a:neighbor:of) bulgaria +romania text(is:a:neighbor:of) serbia +san_marino text(was:present:in) southern_europe +san_marino text(is:present:in) europe +san_marino text(is:a:neighboring:state:to) italy +mauritania text(is:still:in) western_africa +mauritania text(was:still:in) africa +mauritania text(was:a:neighboring:state:to) algeria +mauritania text(borders:with) mali +mauritania text(borders) western_sahara +mauritania text(is:butted:against) senegal +trinidad_and_tobago text(was:currently:in) caribbean +trinidad_and_tobago text(is:currently:in) americas +bahrain text(is:placed:in) western_asia +bahrain text(was:placed:in) asia +myanmar text(was:butted:against) india +myanmar text(was:adjacent:to) bangladesh +myanmar text(is:adjacent:to) china +myanmar text(neighbors) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(neighbors:with) saudi_arabia +iraq text(was:a:neighbor:of) iran +iraq text(is:a:neighbor:of) jordan +iraq text(is:a:neighboring:state:to) kuwait +iraq text(was:a:neighboring:state:to) syria +south_georgia text(can:be:found:in) south_america +south_georgia text(was:situated:in) americas +iceland text(is:situated:in) northern_europe +iceland text(is:located:in) europe +dr_congo text(was:located:in) middle_africa +dr_congo text(borders:with) uganda +dr_congo text(borders) tanzania +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(was:adjacent:to) angola +dr_congo text(is:adjacent:to) rwanda +dr_congo text(neighbors) south_sudan +dr_congo text(is:a:neighboring:country:of) zambia +dr_congo text(was:a:neighboring:country:of) burundi +seychelles text(can:be:found:in) eastern_africa +seychelles text(was:positioned:in) africa +kyrgyzstan text(neighbors:with) china +kyrgyzstan text(was:a:neighbor:of) kazakhstan +kyrgyzstan text(is:a:neighbor:of) tajikistan +kyrgyzstan text(is:a:neighboring:state:to) uzbekistan +botswana text(is:positioned:in) southern_africa +botswana text(was:a:neighboring:state:to) zimbabwe +botswana text(borders:with) namibia +botswana text(borders) zambia +botswana text(is:butted:against) south_africa +faroe_islands text(was:sited:in) northern_europe +faroe_islands text(is:sited:in) europe +jamaica text(was:localized:in) caribbean +jamaica text(is:localized:in) americas +american_samoa text(was:present:in) polynesia +american_samoa text(is:present:in) oceania +lesotho text(is:still:in) southern_africa +lesotho text(was:still:in) africa +lesotho text(was:butted:against) south_africa +sri_lanka text(was:adjacent:to) india +belgium text(was:currently:in) western_europe +belgium text(is:adjacent:to) germany +belgium text(neighbors) luxembourg +belgium text(is:a:neighboring:country:of) france +belgium text(was:a:neighboring:country:of) netherlands +qatar text(is:currently:in) western_asia +qatar text(neighbors:with) saudi_arabia +solomon_islands text(is:placed:in) melanesia +solomon_islands text(was:placed:in) oceania +syria text(can:be:found:in) western_asia +syria text(was:a:neighbor:of) israel +syria text(is:a:neighbor:of) turkey +syria text(is:a:neighboring:state:to) jordan +syria text(was:a:neighboring:state:to) lebanon +syria text(borders:with) iraq +india text(was:situated:in) southern_asia +india text(borders) afghanistan +india text(is:butted:against) bhutan +india text(was:butted:against) bangladesh +india text(was:adjacent:to) china +india text(is:adjacent:to) nepal +india text(neighbors) myanmar +india text(is:a:neighboring:country:of) pakistan +india text(was:a:neighboring:country:of) sri_lanka +morocco text(neighbors:with) algeria +morocco text(was:a:neighbor:of) spain +morocco text(is:a:neighbor:of) western_sahara +kenya text(is:situated:in) eastern_africa +kenya text(is:a:neighboring:state:to) uganda +kenya text(was:a:neighboring:state:to) tanzania +kenya text(borders:with) somalia +kenya text(borders) south_sudan +kenya text(is:butted:against) ethiopia +south_sudan text(is:located:in) middle_africa +south_sudan text(was:butted:against) uganda +south_sudan text(was:adjacent:to) dr_congo +south_sudan text(is:adjacent:to) kenya +south_sudan text(neighbors) central_african_republic +south_sudan text(is:a:neighboring:country:of) sudan +south_sudan text(was:a:neighboring:country:of) ethiopia +ghana text(neighbors:with) burkina_faso +ghana text(was:a:neighbor:of) ivory_coast +ghana text(is:a:neighbor:of) togo +tajikistan text(was:located:in) central_asia +tajikistan text(is:a:neighboring:state:to) china +tajikistan text(was:a:neighboring:state:to) kyrgyzstan +tajikistan text(borders:with) afghanistan +tajikistan text(borders) uzbekistan +marshall_islands text(can:be:found:in) micronesia +marshall_islands text(was:positioned:in) oceania +cameroon text(is:positioned:in) middle_africa +cameroon text(is:butted:against) chad +cameroon text(was:butted:against) republic_of_the_congo +cameroon text(was:adjacent:to) gabon +cameroon text(is:adjacent:to) equatorial_guinea +cameroon text(neighbors) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria +nauru text(was:sited:in) micronesia +nauru text(is:sited:in) oceania +thailand text(was:a:neighboring:country:of) cambodia +thailand text(neighbors:with) myanmar +thailand text(was:a:neighbor:of) laos +thailand text(is:a:neighbor:of) malaysia +sudan text(is:a:neighboring:state:to) chad +sudan text(was:a:neighboring:state:to) libya +sudan text(borders:with) south_sudan +sudan text(borders) eritrea +sudan text(is:butted:against) central_african_republic +sudan text(was:butted:against) egypt +sudan text(was:adjacent:to) ethiopia +chad text(was:localized:in) middle_africa +chad text(is:adjacent:to) libya +chad text(neighbors) niger +chad text(is:a:neighboring:country:of) south_sudan +chad text(was:a:neighboring:country:of) cameroon +chad text(neighbors:with) central_african_republic +chad text(was:a:neighbor:of) nigeria +vanuatu text(is:localized:in) melanesia +vanuatu text(was:present:in) oceania +cape_verde text(is:present:in) western_africa +cape_verde text(is:still:in) africa +falkland_islands text(was:still:in) south_america +falkland_islands text(was:currently:in) americas +liberia text(is:currently:in) western_africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:placed:in) south-eastern_asia +cambodia text(borders:with) vietnam +cambodia text(borders) thailand +cambodia text(is:butted:against) laos +zimbabwe text(was:butted:against) zambia +zimbabwe text(was:adjacent:to) south_africa +zimbabwe text(is:adjacent:to) botswana +zimbabwe text(neighbors) mozambique +comoros text(was:placed:in) eastern_africa +comoros text(can:be:found:in) africa +guam text(was:situated:in) micronesia +guam text(is:situated:in) oceania +bahamas text(is:located:in) caribbean +bahamas text(was:located:in) americas +lebanon text(can:be:found:in) western_asia +lebanon text(was:positioned:in) asia +lebanon text(is:a:neighboring:country:of) israel +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(is:positioned:in) caribbean +sint_maarten text(was:sited:in) americas +sint_maarten text(neighbors:with) saint_martin +ethiopia text(is:sited:in) eastern_africa +ethiopia text(was:a:neighbor:of) somalia +ethiopia text(is:a:neighbor:of) kenya +ethiopia text(is:a:neighboring:state:to) eritrea +ethiopia text(was:a:neighboring:state:to) south_sudan +ethiopia text(borders:with) djibouti +ethiopia text(borders) sudan +united_states_virgin_islands text(was:localized:in) caribbean +united_states_virgin_islands text(is:localized:in) americas +guinea-bissau text(was:present:in) western_africa +guinea-bissau text(is:present:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:still:in) northern_africa +libya text(was:adjacent:to) chad +libya text(is:adjacent:to) tunisia +libya text(neighbors) niger +libya text(is:a:neighboring:country:of) algeria +libya text(was:a:neighboring:country:of) egypt +libya text(neighbors:with) sudan +bhutan text(was:still:in) southern_asia +bhutan text(was:currently:in) asia +bhutan text(was:a:neighbor:of) china +bhutan text(is:a:neighbor:of) india +macau text(is:currently:in) eastern_asia +macau text(is:placed:in) asia +macau text(is:a:neighboring:state:to) china +french_polynesia text(was:placed:in) polynesia +french_polynesia text(can:be:found:in) oceania +somalia text(was:situated:in) eastern_africa +somalia text(was:a:neighboring:state:to) djibouti +somalia text(borders:with) kenya +somalia text(borders) ethiopia +saint_barthélemy text(is:situated:in) caribbean +saint_barthélemy text(is:located:in) americas +russia text(was:located:in) eastern_europe +russia text(is:butted:against) ukraine +russia text(was:butted:against) belarus +russia text(was:adjacent:to) china +russia text(is:adjacent:to) kazakhstan +russia text(neighbors) norway +russia text(is:a:neighboring:country:of) poland +russia text(was:a:neighboring:country:of) azerbaijan +russia text(neighbors:with) lithuania +russia text(was:a:neighbor:of) estonia +russia text(is:a:neighbor:of) north_korea +russia text(is:a:neighboring:state:to) finland +russia text(was:a:neighboring:state:to) mongolia +russia text(borders:with) latvia +russia text(borders) georgia +new_zealand text(can:be:found:in) australia_and_new_zealand +new_zealand text(was:positioned:in) oceania +panama text(is:positioned:in) central_america +panama text(was:sited:in) americas +panama text(is:butted:against) costa_rica +panama text(was:butted:against) colombia +papua_new_guinea text(is:sited:in) melanesia +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:adjacent:to) china +north_korea text(neighbors) south_korea +north_korea text(is:a:neighboring:country:of) russia +latvia text(was:localized:in) northern_europe +latvia text(was:a:neighboring:country:of) lithuania +latvia text(neighbors:with) belarus +latvia text(was:a:neighbor:of) russia +latvia text(is:a:neighbor:of) estonia +oman text(is:localized:in) western_asia +oman text(is:a:neighboring:state:to) saudi_arabia +oman text(was:a:neighboring:state:to) yemen +oman text(borders:with) united_arab_emirates +saint_pierre_and_miquelon text(was:present:in) northern_america +saint_pierre_and_miquelon text(is:present:in) americas +martinique text(is:still:in) caribbean +martinique text(was:still:in) americas +united_kingdom text(was:currently:in) northern_europe +united_kingdom text(is:currently:in) europe +united_kingdom text(borders) ireland +israel text(is:placed:in) western_asia +israel text(is:butted:against) lebanon +israel text(was:butted:against) egypt +israel text(was:adjacent:to) jordan +israel text(is:adjacent:to) syria +jersey text(was:placed:in) northern_europe +jersey text(can:be:found:in) europe +pitcairn_islands text(was:situated:in) polynesia +pitcairn_islands text(is:situated:in) oceania +togo text(is:located:in) western_africa +togo text(neighbors) burkina_faso +togo text(is:a:neighboring:country:of) ghana +togo text(was:a:neighboring:country:of) benin +kiribati text(was:located:in) micronesia +kiribati text(can:be:found:in) oceania +iran text(was:positioned:in) southern_asia +iran text(neighbors:with) afghanistan +iran text(was:a:neighbor:of) turkmenistan +iran text(is:a:neighbor:of) turkey +iran text(is:a:neighboring:state:to) armenia +iran text(was:a:neighboring:state:to) azerbaijan +iran text(borders:with) pakistan +iran text(borders) iraq +saint_martin text(is:positioned:in) caribbean +saint_martin text(was:sited:in) americas +saint_martin text(is:butted:against) sint_maarten +dominican_republic text(is:sited:in) caribbean +dominican_republic text(was:localized:in) americas +dominican_republic text(was:butted:against) haiti +denmark text(was:adjacent:to) germany +bermuda text(is:localized:in) northern_america +bermuda text(was:present:in) americas +chile text(is:adjacent:to) argentina +chile text(neighbors) bolivia +chile text(is:a:neighboring:country:of) peru +kosovo text(is:present:in) eastern_europe +kosovo text(was:a:neighboring:country:of) serbia +kosovo text(neighbors:with) albania +kosovo text(was:a:neighbor:of) macedonia +kosovo text(is:a:neighbor:of) montenegro +saint_kitts_and_nevis text(is:still:in) caribbean +saint_kitts_and_nevis text(was:still:in) americas +eritrea text(is:a:neighboring:state:to) djibouti +eritrea text(was:a:neighboring:state:to) sudan +eritrea text(borders:with) ethiopia +equatorial_guinea text(was:currently:in) middle_africa +equatorial_guinea text(is:currently:in) africa +equatorial_guinea text(borders) gabon +equatorial_guinea text(is:butted:against) cameroon +niger text(is:placed:in) western_africa +niger text(was:butted:against) chad +niger text(was:adjacent:to) libya +niger text(is:adjacent:to) burkina_faso +niger text(neighbors) benin +niger text(is:a:neighboring:country:of) mali +niger text(was:a:neighboring:country:of) algeria +niger text(neighbors:with) nigeria +anguilla text(was:placed:in) caribbean +anguilla text(can:be:found:in) americas +rwanda text(was:situated:in) eastern_africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) tanzania +rwanda text(is:a:neighboring:state:to) uganda +rwanda text(was:a:neighboring:state:to) dr_congo +united_arab_emirates text(is:situated:in) western_asia +united_arab_emirates text(borders:with) oman +united_arab_emirates text(borders) saudi_arabia +estonia text(is:located:in) northern_europe +estonia text(was:located:in) europe +estonia text(is:butted:against) latvia +estonia text(was:butted:against) russia +greece text(can:be:found:in) southern_europe +greece text(was:adjacent:to) bulgaria +greece text(is:adjacent:to) albania +greece text(neighbors) macedonia +greece text(is:a:neighboring:country:of) turkey +senegal text(was:positioned:in) western_africa +senegal text(is:positioned:in) africa +senegal text(was:a:neighboring:country:of) guinea-bissau +senegal text(neighbors:with) mauritania +senegal text(was:a:neighbor:of) mali +senegal text(is:a:neighbor:of) gambia +senegal text(is:a:neighboring:state:to) guinea +guadeloupe text(was:sited:in) caribbean +guadeloupe text(is:sited:in) americas +monaco text(was:a:neighboring:state:to) france +djibouti text(borders:with) eritrea +djibouti text(borders) somalia +djibouti text(is:butted:against) ethiopia +indonesia text(was:butted:against) papua_new_guinea +indonesia text(was:adjacent:to) timor-leste +indonesia text(is:adjacent:to) malaysia +british_virgin_islands text(was:localized:in) caribbean +british_virgin_islands text(is:localized:in) americas +cook_islands text(was:present:in) polynesia +cook_islands text(is:present:in) oceania +uganda text(is:still:in) eastern_africa +uganda text(neighbors) tanzania +uganda text(is:a:neighboring:country:of) dr_congo +uganda text(was:a:neighboring:country:of) kenya +uganda text(neighbors:with) south_sudan +uganda text(was:a:neighbor:of) rwanda +macedonia text(was:still:in) southern_europe +macedonia text(is:a:neighbor:of) kosovo +macedonia text(is:a:neighboring:state:to) greece +macedonia text(was:a:neighboring:state:to) albania +macedonia text(borders:with) serbia +macedonia text(borders) bulgaria +tunisia text(was:currently:in) northern_africa +tunisia text(is:currently:in) africa +tunisia text(is:butted:against) libya +tunisia text(was:butted:against) algeria +ecuador text(was:adjacent:to) peru +ecuador text(is:adjacent:to) colombia +brazil text(is:placed:in) south_america +brazil text(neighbors) bolivia +brazil text(is:a:neighboring:country:of) colombia +brazil text(was:a:neighboring:country:of) paraguay +brazil text(neighbors:with) uruguay +brazil text(was:a:neighbor:of) french_guiana +brazil text(is:a:neighbor:of) suriname +brazil text(is:a:neighboring:state:to) venezuela +brazil text(was:a:neighboring:state:to) argentina +brazil text(borders:with) guyana +brazil text(borders) peru +paraguay text(was:placed:in) south_america +paraguay text(can:be:found:in) americas +paraguay text(is:butted:against) argentina +paraguay text(was:butted:against) brazil +paraguay text(was:adjacent:to) bolivia +finland text(was:situated:in) northern_europe +finland text(is:adjacent:to) norway +finland text(neighbors) sweden +finland text(is:a:neighboring:country:of) russia +jordan text(was:a:neighboring:country:of) saudi_arabia +jordan text(neighbors:with) israel +jordan text(was:a:neighbor:of) iraq +jordan text(is:a:neighbor:of) syria +timor-leste text(is:a:neighboring:state:to) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(was:a:neighboring:state:to) kosovo +montenegro text(borders:with) bosnia_and_herzegovina +montenegro text(borders) croatia +montenegro text(is:butted:against) serbia +montenegro text(was:butted:against) albania +peru text(is:located:in) south_america +peru text(was:adjacent:to) ecuador +peru text(is:adjacent:to) bolivia +peru text(neighbors) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(was:located:in) caribbean +montserrat text(can:be:found:in) americas +ukraine text(was:positioned:in) eastern_europe +ukraine text(neighbors:with) slovakia +ukraine text(was:a:neighbor:of) belarus +ukraine text(is:a:neighbor:of) poland +ukraine text(is:a:neighboring:state:to) russia +ukraine text(was:a:neighboring:state:to) hungary +ukraine text(borders:with) moldova +ukraine text(borders) romania +dominica text(is:positioned:in) caribbean +dominica text(was:sited:in) americas +turkmenistan text(is:butted:against) kazakhstan +turkmenistan text(was:butted:against) afghanistan +turkmenistan text(was:adjacent:to) uzbekistan +turkmenistan text(is:adjacent:to) iran +guernsey text(is:sited:in) northern_europe +guernsey text(was:localized:in) europe +gibraltar text(is:localized:in) southern_europe +gibraltar text(neighbors) spain +switzerland text(was:present:in) western_europe +switzerland text(is:a:neighboring:country:of) germany +switzerland text(was:a:neighboring:country:of) italy +switzerland text(neighbors:with) austria +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(is:present:in) western_europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(borders) italy +austria text(is:butted:against) switzerland +austria text(was:butted:against) hungary +austria text(was:adjacent:to) liechtenstein +austria text(is:adjacent:to) czechia +hungary text(neighbors) ukraine +hungary text(is:a:neighboring:country:of) slovakia +hungary text(was:a:neighboring:country:of) slovenia +hungary text(neighbors:with) croatia +hungary text(was:a:neighbor:of) austria +hungary text(is:a:neighbor:of) serbia +hungary text(is:a:neighboring:state:to) romania +malawi text(is:still:in) eastern_africa +malawi text(was:a:neighboring:state:to) zambia +malawi text(borders:with) tanzania +malawi text(borders) mozambique +hong_kong text(is:butted:against) china +liechtenstein text(was:still:in) western_europe +liechtenstein text(was:currently:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(was:adjacent:to) austria +barbados text(is:currently:in) caribbean +barbados text(is:placed:in) americas +georgia text(was:placed:in) western_asia +georgia text(is:adjacent:to) armenia +georgia text(neighbors) azerbaijan +georgia text(is:a:neighboring:country:of) russia +georgia text(was:a:neighboring:country:of) turkey +albania text(can:be:found:in) southern_europe +albania text(was:situated:in) europe +albania text(neighbors:with) montenegro +albania text(was:a:neighbor:of) macedonia +albania text(is:a:neighbor:of) kosovo +albania text(is:a:neighboring:state:to) greece +kuwait text(is:situated:in) western_asia +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(is:located:in) southern_africa +south_africa text(borders) mozambique +south_africa text(is:butted:against) botswana +south_africa text(was:butted:against) swaziland +south_africa text(was:adjacent:to) zimbabwe +south_africa text(is:adjacent:to) namibia +south_africa text(neighbors) lesotho +haiti text(was:located:in) caribbean +haiti text(can:be:found:in) americas +haiti text(is:a:neighboring:country:of) dominican_republic +afghanistan text(was:positioned:in) southern_asia +afghanistan text(was:a:neighboring:country:of) turkmenistan +afghanistan text(neighbors:with) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(is:positioned:in) south-eastern_asia +singapore text(was:sited:in) asia +benin text(is:sited:in) western_africa +benin text(borders:with) niger +benin text(borders) burkina_faso +benin text(is:butted:against) togo +benin text(was:butted:against) nigeria +åland_islands text(was:localized:in) northern_europe +åland_islands text(is:localized:in) europe +croatia text(was:present:in) southern_europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(neighbors) hungary +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(neighbors:with) norway +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) united_states +mexico text(was:a:neighboring:state:to) guatemala +greenland text(is:still:in) northern_america +greenland text(was:still:in) americas +norfolk_island text(was:currently:in) australia_and_new_zealand +norfolk_island text(is:currently:in) oceania +nepal text(is:placed:in) southern_asia +nepal text(was:placed:in) asia +nepal text(borders:with) china +nepal text(borders) india +guatemala text(is:butted:against) belize +guatemala text(was:butted:against) el_salvador +guatemala text(was:adjacent:to) mexico +guatemala text(is:adjacent:to) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(neighbors) north_korea +moldova text(was:situated:in) eastern_europe +moldova text(is:situated:in) europe +moldova text(is:a:neighboring:country:of) ukraine +moldova text(was:a:neighboring:country:of) romania +mauritius text(is:located:in) eastern_africa +mauritius text(was:located:in) africa +belarus text(neighbors:with) ukraine +belarus text(was:a:neighbor:of) poland +belarus text(is:a:neighbor:of) lithuania +belarus text(is:a:neighboring:state:to) russia +belarus text(was:a:neighboring:state:to) latvia +bangladesh text(borders:with) myanmar +bangladesh text(borders) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(is:butted:against) thailand +malaysia text(was:butted:against) indonesia +malaysia text(was:adjacent:to) brunei +bosnia_and_herzegovina text(was:positioned:in) southern_europe +bosnia_and_herzegovina text(is:adjacent:to) serbia +bosnia_and_herzegovina text(neighbors) croatia +bosnia_and_herzegovina text(is:a:neighboring:country:of) montenegro +luxembourg text(is:positioned:in) western_europe +luxembourg text(was:a:neighboring:country:of) germany +luxembourg text(neighbors:with) belgium +luxembourg text(was:a:neighbor:of) france +italy text(was:sited:in) southern_europe +italy text(is:sited:in) europe +italy text(is:a:neighbor:of) slovenia +italy text(is:a:neighboring:state:to) switzerland +italy text(was:a:neighboring:state:to) austria +italy text(borders:with) france +italy text(borders) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(was:localized:in) western_asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(was:adjacent:to) armenia +azerbaijan text(is:adjacent:to) russia +azerbaijan text(neighbors) iran +azerbaijan text(is:a:neighboring:country:of) georgia +honduras text(is:localized:in) central_america +honduras text(was:a:neighboring:country:of) guatemala +honduras text(neighbors:with) nicaragua +honduras text(was:a:neighbor:of) el_salvador +mali text(was:present:in) western_africa +mali text(is:a:neighbor:of) burkina_faso +mali text(is:a:neighboring:state:to) guinea +mali text(was:a:neighboring:state:to) mauritania +mali text(borders:with) niger +mali text(borders) senegal +mali text(is:butted:against) algeria +mali text(was:butted:against) ivory_coast +taiwan text(is:present:in) eastern_asia +taiwan text(is:still:in) asia +algeria text(was:still:in) northern_africa +algeria text(was:adjacent:to) libya +algeria text(is:adjacent:to) tunisia +algeria text(neighbors) mauritania +algeria text(is:a:neighboring:country:of) morocco +algeria text(was:a:neighboring:country:of) niger +algeria text(neighbors:with) mali +algeria text(was:a:neighbor:of) western_sahara +french_guiana text(is:a:neighbor:of) brazil +french_guiana text(is:a:neighboring:state:to) suriname +yemen text(was:currently:in) western_asia +yemen text(was:a:neighboring:state:to) oman +yemen text(borders:with) saudi_arabia +puerto_rico text(is:currently:in) caribbean +puerto_rico text(is:placed:in) americas +saint_vincent_and_the_grenadines text(was:placed:in) caribbean +saint_vincent_and_the_grenadines text(can:be:found:in) americas +venezuela text(borders) brazil +venezuela text(is:butted:against) guyana +venezuela text(was:butted:against) colombia +grenada text(was:situated:in) caribbean +grenada text(is:situated:in) americas +united_states text(was:adjacent:to) canada +united_states text(is:adjacent:to) mexico +tokelau text(is:located:in) polynesia +tokelau text(was:located:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(neighbors) austria +slovenia text(is:a:neighboring:country:of) croatia +slovenia text(was:a:neighboring:country:of) italy +slovenia text(neighbors:with) hungary +philippines text(was:positioned:in) south-eastern_asia +philippines text(is:positioned:in) asia +micronesia text(was:sited:in) micronesia +micronesia text(is:sited:in) oceania +china text(was:localized:in) eastern_asia +china text(was:a:neighbor:of) afghanistan +china text(is:a:neighbor:of) bhutan +china text(is:a:neighboring:state:to) macau +china text(was:a:neighboring:state:to) india +china text(borders:with) kazakhstan +china text(borders) kyrgyzstan +china text(is:butted:against) tajikistan +china text(was:butted:against) laos +china text(was:adjacent:to) russia +china text(is:adjacent:to) north_korea +china text(neighbors) myanmar +china text(is:a:neighboring:country:of) pakistan +china text(was:a:neighboring:country:of) mongolia +china text(neighbors:with) hong_kong +china text(was:a:neighbor:of) vietnam +gabon text(is:localized:in) middle_africa +gabon text(is:a:neighbor:of) equatorial_guinea +gabon text(is:a:neighboring:state:to) republic_of_the_congo +gabon text(was:a:neighboring:state:to) cameroon +united_states_minor_outlying_islands text(was:present:in) northern_america +united_states_minor_outlying_islands text(is:present:in) americas +andorra text(is:still:in) southern_europe +andorra text(borders:with) spain +andorra text(borders) france +samoa text(was:still:in) polynesia +samoa text(was:currently:in) oceania +gambia text(is:currently:in) western_africa +gambia text(is:placed:in) africa +gambia text(is:butted:against) senegal +palestine text(was:placed:in) western_asia +palestine text(can:be:found:in) asia +palestine text(was:butted:against) jordan +palestine text(was:adjacent:to) egypt +palestine text(is:adjacent:to) israel +réunion text(was:situated:in) eastern_africa +réunion text(is:situated:in) africa +france text(is:located:in) western_europe +france text(neighbors) germany +france text(is:a:neighboring:country:of) luxembourg +france text(was:a:neighboring:country:of) italy +france text(neighbors:with) andorra +france text(was:a:neighbor:of) switzerland +france text(is:a:neighbor:of) monaco +france text(is:a:neighboring:state:to) belgium +france text(was:a:neighboring:state:to) spain +mongolia text(was:located:in) eastern_asia +mongolia text(can:be:found:in) asia +mongolia text(borders:with) china +mongolia text(borders) russia +lithuania text(was:positioned:in) northern_europe +lithuania text(is:butted:against) poland +lithuania text(was:butted:against) latvia +lithuania text(was:adjacent:to) belarus +lithuania text(is:adjacent:to) russia +cayman_islands text(is:positioned:in) caribbean +cayman_islands text(was:sited:in) americas +saint_lucia text(is:sited:in) caribbean +saint_lucia text(was:localized:in) americas +curaçao text(is:localized:in) caribbean +curaçao text(was:present:in) americas +caribbean text(is:present:in) americas +southern_asia text(is:still:in) asia +middle_africa text(was:still:in) africa +northern_europe text(was:currently:in) europe +southern_europe text(is:currently:in) europe +western_asia text(is:placed:in) asia +south_america text(was:placed:in) americas +polynesia text(can:be:found:in) oceania +australia_and_new_zealand text(was:situated:in) oceania +western_europe text(is:situated:in) europe +eastern_africa text(is:located:in) africa +western_africa text(was:located:in) africa +eastern_europe text(can:be:found:in) europe +central_america text(was:positioned:in) americas +northern_america text(is:positioned:in) americas +south-eastern_asia text(was:sited:in) asia +southern_africa text(is:sited:in) africa +eastern_asia text(was:localized:in) asia +northern_africa text(is:localized:in) africa +melanesia text(was:present:in) oceania +micronesia text(is:present:in) oceania +central_asia text(is:still:in) asia +central_europe text(was:still:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv b/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv new file mode 100644 index 0000000..b430889 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv @@ -0,0 +1,272 @@ +Country,ID,nl,en,zh,es,hi,ar +vanuatu,Q686,Vanuatu,Vanuatu,萬那杜,Vanuatu,वानूआटू,فانواتو +isle_of_man,Q9676,Man,Isle of Man,马恩岛,Isla de Man,आइल ऑफ़ मैन,جزيرة مان +laos,Q819,Laos,Laos,老撾,Laos,लाओस,لاوس +china,Q148,Volksrepubliek China,People's Republic of China,中华人民共和国,República Popular China,चीनी जनवादी गणराज्य,الصين +aruba,Q21203,Aruba,Aruba,阿魯巴,Aruba,अरूबा,أروبا +papua_new_guinea,Q691,Papoea-Nieuw-Guinea,Papua New Guinea,巴布亚新几内亚,Papúa Nueva Guinea,पापुआ न्यू गिनी,بابوا غينيا الجديدة +comoros,Q970,Comoren,Comoros,葛摩,Comoras,कोमोरोस,جزر القمر +gambia,Q1005,Gambia,The Gambia,岡比亞,Gambia,गाम्बिया,غامبيا +bermuda,Q23635,Bermuda,Bermuda,百慕大,Bermudas,बरमूडा,برمودا +bangladesh,Q902,Bangladesh,Bangladesh,孟加拉國,Bangladés,बांग्लादेश,بنغلاديش +tonga,Q678,Tonga,Tonga,東加,Tonga,टोंगा,تونغا +paraguay,Q733,Paraguay,Paraguay,巴拉圭,Paraguay,पैराग्वे,باراغواي +tokelau,Q36823,Tokelau,Tokelau,托克劳,Tokelau,टोकेलाऊ,توكيلاو +gabon,Q1000,Gabon,Gabon,加蓬,Gabón,गबॉन,الغابون +bahrain,Q398,Bahrein,Bahrain,巴林,Baréin,बहरीन,البحرين +azerbaijan,Q227,Azerbeidzjan,Azerbaijan,阿塞拜疆,Azerbaiyán,अज़रबैजान,أذربيجان +uzbekistan,Q265,Oezbekistan,Uzbekistan,乌兹别克斯坦,Uzbekistán,उज़्बेकिस्तान,أوزبكستان +northern_mariana_islands,Q16644,Noordelijke Marianen,Northern Mariana Islands,北马里亚纳群岛,Islas Marianas del Norte,उत्तरी मारियाना द्वीप,جزر ماريانا الشمالية +saudi_arabia,Q851,Saoedi-Arabië,Saudi Arabia,沙特阿拉伯,Arabia Saudí,सउदी अरब,السعودية +belize,Q242,Belize,Belize,伯利兹,Belice,बेलीज़,بليز +niue,Q34020,Niue,Niue,紐埃,Niue,निउए,نييوي +iraq,Q796,Irak,Iraq,伊拉克,Irak,इराक,العراق +réunion,Q17070,Réunion,Réunion,留尼汪,Reunión,रेयूनियों,ريونيون +mozambique,Q1029,Mozambique,Mozambique,莫桑比克,Mozambique,मोज़ाम्बीक,موزمبيق +kuwait,Q817,Koeweit,Kuwait,科威特,Kuwait,कुवैत,الكويت +nicaragua,Q811,Nicaragua,Nicaragua,尼加拉瓜,Nicaragua,निकारागुआ,نيكاراغوا +cocos_keeling_islands,Q36004,Cocoseilanden,Cocos (Keeling) Islands,科科斯(基林)群島,islas Cocos,कोकोस (कीलिंग) द्वीपसमूह,جزر كوكوس +seychelles,Q1042,Seychellen,Seychelles,塞舌尔,Seychelles,सेशेल्स,سيشل +mauritania,Q1025,Mauritanië,Mauritania,毛里塔尼亞,Mauritania,मॉरीतानिया,موريتانيا +belgium,Q31,België,Belgium,比利時,Bélgica,बेल्जियम,بلجيكا +el_salvador,Q792,El Salvador,El Salvador,薩爾瓦多,El Salvador,अल साल्वाडोर,السلفادور +western_sahara,Q40362,Sahrawi Arabische Democratische Republiek,Sahrawi Arab Democratic Republic,撒拉威阿拉伯民主共和國,República Árabe Saharaui Democrática,सहरावी अरब जनतांत्रिक गणराज्य,الجمهورية العربية الصحراوية الديمقراطية +latvia,Q211,Letland,Latvia,拉脫維亞,Letonia,लातविया,لاتفيا +saint_martin,Q126125,Sint-Maarten,Saint-Martin,法屬聖馬丁,San Martín,सेंट मार्टिन की सामूहिकता,تجمع سان مارتين +sweden,Q34,Zweden,Sweden,瑞典,Suecia,स्वीडन,السويد +vatican_city,Q237,Vaticaanstad,Vatican City,梵蒂岡城國,Ciudad del Vaticano,वैटिकन नगर,الفاتيكان +ethiopia,Q115,Ethiopië,Ethiopia,埃塞俄比亚,Etiopía,इथियोपिया,إثيوبيا +montserrat,Q13353,Montserrat,Montserrat,蒙塞拉特島,Montserrat,मॉण्टसेराट,مونتسيرات +swaziland,Q1050,Swaziland,Eswatini,斯威士兰,Esuatini,एस्वातीनी,إسواتيني +switzerland,Q39,Zwitserland,Switzerland,瑞士,Suiza,स्विट्ज़रलैण्ड,سويسرا +venezuela,Q717,Venezuela,Venezuela,委內瑞拉,Venezuela,वेनेज़ुएला,فنزويلا +turkey,Q43,Turkije,Turkey,土耳其,Turquía,तुर्की,تركيا +algeria,Q262,Algerije,Algeria,阿爾及利亞,Argelia,अल्जीरिया,الجزائر +macedonia,Q221,Noord-Macedonië,North Macedonia,北马其顿,Macedonia del Norte,उत्तर मैसिडोनिया,مقدونيا الشمالية +france,Q142,Frankrijk,France,法國,Francia,फ़्रान्स,فرنسا +guinea-bissau,Q1007,Guinee-Bissau,Guinea-Bissau,畿內亞比紹,Guinea-Bisáu,गिनी-बिसाऊ,غينيا بيساو +angola,Q916,Angola,Angola,安哥拉,Angola,अंगोला,أنغولا +pitcairn_islands,Q35672,Pitcairneilanden,Pitcairn Islands,皮特凯恩群岛,Islas Pitcairn,पिटकेर्न द्वीपसमूह,جزر بيتكيرن +bosnia_and_herzegovina,Q225,Bosnië en Herzegovina,Bosnia and Herzegovina,波斯尼亚和黑塞哥维那,Bosnia y Herzegovina,बोस्निया और हर्ज़ेगोविना,البوسنة والهرسك +trinidad_and_tobago,Q754,Trinidad en Tobago,Trinidad and Tobago,千里達及托巴哥,Trinidad y Tobago,त्रिनिदाद और टोबैगो,ترينيداد وتوباغو +tuvalu,Q672,Tuvalu,Tuvalu,吐瓦魯,Tuvalu,तुवालू,توفالو +united_kingdom,Q145,Verenigd Koninkrijk,United Kingdom,英国,Reino Unido,यूनाइटेड किंगडम,المملكة المتحدة +syria,Q858,Syrië,Syria,敘利亞,Siria,सीरिया,سوريا +central_african_republic,Q929,Centraal-Afrikaanse Republiek,Central African Republic,中非共和國,República Centroafricana,मध्य अफ़्रीकी गणराज्य,جمهورية إفريقيا الوسطى +malawi,Q1020,Malawi,Malawi,馬拉威,Malaui,मलावी,مالاوي +falkland_islands,Q9648,Falklandeilanden,Falkland Islands,福克蘭群島,Islas Malvinas,फ़ॉकलैंड द्वीपसमूह,جزر فوكلاند +ecuador,Q736,Ecuador,Ecuador,厄瓜多尔,Ecuador,ईक्वाडोर,الإكوادور +tunisia,Q948,Tunesië,Tunisia,突尼西亞,Túnez,ट्यूनिशिया,تونس +curaçao,Q25279,Curaçao,Curaçao,库拉索,Curazao,कुराकाओ,كوراساو +canada,Q16,Canada,Canada,加拿大,Canadá,कनाडा,كندا +greenland,Q223,Groenland,Greenland,格陵兰,Groenlandia,ग्रीनलैण्ड,جرينلاند +dominica,Q784,Dominica,Dominica,多米尼克,Dominica,डोमिनिका,دومينيكا +egypt,Q79,Egypte,Egypt,埃及,Egipto,मिस्र,مصر +indonesia,Q252,Indonesië,Indonesia,印度尼西亚,Indonesia,इंडोनेशिया,إندونيسيا +solomon_islands,Q685,Salomonseilanden,Solomon Islands,所罗门群岛,Islas Salomón,सोलोमन द्वीपसमूह,جزر سليمان +india,Q668,India,India,印度,India,भारत,الهند +panama,Q804,Panama,Panama,巴拿馬,Panamá,पनामा,بنما +oman,Q842,Oman,Oman,阿曼,Omán,ओमान,سلطنة عمان +saint_pierre_and_miquelon,Q34617,Saint-Pierre en Miquelon,Saint Pierre and Miquelon,圣皮埃尔和密克隆,San Pedro y Miquelón,सन्त पियर और मिकलान,سان بيير وميكلون +japan,Q17,Japan,Japan,日本,Japón,जापान,اليابان +south_africa,Q258,Zuid-Afrika,South Africa,南非,Sudáfrica,दक्षिण अफ़्रीका,جنوب إفريقيا +uganda,Q1036,Oeganda,Uganda,烏干達,Uganda,युगाण्डा,أوغندا +kyrgyzstan,Q813,Kirgizië,Kyrgyzstan,吉尔吉斯斯坦,Kirguistán,किर्गिज़स्तान,قرغيزستان +liberia,Q1014,Liberia,Liberia,利比里亞,Liberia,लाइबेरिया,ليبيريا +republic_of_the_congo,Q971,Congo-Brazzaville,Republic of the Congo,剛果共和國,República del Congo,कांगो गणराज्य,جمهورية الكونغو +mali,Q912,Mali,Mali,马里,Mali,माली,مالي +montenegro,Q236,Montenegro,Montenegro,蒙特內哥羅,Montenegro,मॉन्टेनीग्रो,الجبل الأسود +palestine,Q2190609,Pedro Miguel,Pedro Miguel,,Pedro Miguel,, +brazil,Q155,Brazilië,Brazil,巴西,Brasil,ब्राज़ील,البرازيل +guam,Q16635,Guam,Guam,關島,Guam,गुआम,غوام +norway,Q20,Noorwegen,Norway,挪威,Noruega,नॉर्वे,النرويج +united_arab_emirates,Q878,Verenigde Arabische Emiraten,United Arab Emirates,阿拉伯联合酋长国,Emiratos Árabes Unidos,संयुक्त अरब अमीरात,الإمارات العربية المتحدة +thailand,Q869,Thailand,Thailand,泰國,Tailandia,थाईलैंड,تايلاند +tanzania,Q924,Tanzania,Tanzania,坦桑尼亞,Tanzania,तंज़ानिया,تنزانيا +british_virgin_islands,Q25305,Britse Maagdeneilanden,British Virgin Islands,英屬維爾京群島,Islas Vírgenes Británicas,ब्रिटिश वर्जिन द्वीपसमूह,جزر عذراء بريطانية +croatia,Q224,Kroatië,Croatia,克羅地亞,Croacia,क्रोएशिया,كرواتيا +bhutan,Q917,Bhutan,Bhutan,不丹,Bután,भूटान,بوتان +finland,Q33,Finland,Finland,芬蘭,Finlandia,फ़िनलैण्ड,فنلندا +united_states_minor_outlying_islands,Q16645,Amerikaanse Kleinere Afgelegen Eilanden,United States Minor Outlying Islands,美国本土外小岛屿,Islas ultramarinas de Estados Unidos,संयुक्त राज्य अमेरिका के छोटे दूरस्थ द्वीपसमूह,جزر الولايات المتحدة الصغيرة النائية +cuba,Q241,Cuba,Cuba,古巴,Cuba,क्यूबा,كوبا +turkmenistan,Q874,Turkmenistan,Turkmenistan,土庫曼斯坦,Turkmenistán,तुर्कमेनिस्तान,تركمانستان +brunei,Q921,Brunei,Brunei,汶莱,Brunéi,ब्रुनेई,بروناي +germany,Q183,Duitsland,Germany,德國,Alemania,जर्मनी,ألمانيا +mongolia,Q711,Mongolië,Mongolia,蒙古國,Mongolia,मंगोलिया,منغوليا +myanmar,Q836,Myanmar,Myanmar,緬甸,Birmania,म्यान्मार,ميانمار +sierra_leone,Q1044,Sierra Leone,Sierra Leone,塞拉利昂,Sierra Leona,सिएरा लियोन,سيراليون +madagascar,Q1019,Madagaskar,Madagascar,馬達加斯加,Madagascar,मेडागास्कर,مدغشقر +puerto_rico,Q1183,Puerto Rico,Puerto Rico,波多黎各,Puerto Rico,पोर्टो रीको,بورتوريكو +cayman_islands,Q5785,Kaaimaneilanden,Cayman Islands,開曼群島,Islas Caimán,केमन द्वीपसमूह,جزر كايمان +lesotho,Q1013,Lesotho,Lesotho,莱索托,Lesoto,लेसोथो,ليسوتو +kenya,Q114,Kenia,Kenya,肯尼亚,Kenia,कीनिया,كينيا +cameroon,Q1009,Kameroen,Cameroon,喀麦隆,Camerún,कैमरुन,الكاميرون +singapore,Q334,Singapore,Singapore,新加坡,Singapur,सिंगापुर,سنغافورة +costa_rica,Q800,Costa Rica,Costa Rica,哥斯达黎加,Costa Rica,कोस्टा रीका,كوستاريكا +christmas_island,Q31063,Christmaseiland,Christmas Island,聖誕島,Isla de Navidad,क्रिसमस द्वीप,جزيرة عيد الميلاد +iceland,Q189,IJsland,Iceland,冰島,Islandia,आइसलैण्ड,آيسلندا +afghanistan,Q889,Afghanistan,Afghanistan,阿富汗,Afganistán,अफ़्ग़ानिस्तान,أفغانستان +yemen,Q805,Jemen,Yemen,也门,Yemen,यमन,اليمن +nigeria,Q1033,Nigeria,Nigeria,奈及利亞,Nigeria,नाइजीरिया,نيجيريا +zimbabwe,Q954,Zimbabwe,Zimbabwe,津巴布韦,Zimbabue,ज़िम्बाब्वे,زيمبابوي +north_korea,Q423,Noord-Korea,North Korea,朝鮮民主主義人民共和國,Corea del Norte,उत्तर कोरिया,كوريا الشمالية +russia,Q159,Rusland,Russia,俄罗斯,Rusia,रूस,روسيا +vietnam,Q881,Vietnam,Vietnam,越南,Vietnam,वियतनाम,فيتنام +georgia,Q230,Georgië,Georgia,格鲁吉亚,Georgia,जॉर्जिया,جورجيا +french_polynesia,Q30971,Frans-Polynesië,French Polynesia,法屬玻里尼西亞,Polinesia Francesa,फ़्रान्सीसी पॉलिनेशिया,بولنيزيا الفرنسية +åland_islands,Q5689,Åland,Åland,奥兰,Åland,ऑलैण्ड द्वीपसमूह,جزر أولاند +lithuania,Q37,Litouwen,Lithuania,立陶宛,Lituania,लिथुआनिया,ليتوانيا +hong_kong,Q8646,Hongkong,Hong Kong,香港,Hong Kong,हांगकांग,هونغ كونغ +niger,Q1032,Niger,Niger,尼日尔,Níger,नाइजर,النيجر +guadeloupe,Q17012,Guadeloupe,Guadeloupe,瓜德羅普,Guadalupe,गुआदेलूप,غوادلوب +zambia,Q953,Zambia,Zambia,贊比亞,Zambia,ज़ाम्बिया,زامبيا +philippines,Q928,Filipijnen,Philippines,菲律賓,Filipinas,फ़िलीपीन्स,الفلبين +saint_barthélemy,Q25362,Saint-Barthélemy,Saint Barthélemy,聖巴泰勒米,San Bartolomé,सेंट बार्थेलेमी,سان بارتيلمي +morocco,Q1028,Marokko,Morocco,摩洛哥,Marruecos,मोरक्को,المغرب +guatemala,Q774,Guatemala,Guatemala,危地马拉,Guatemala,ग्वाटेमाला,غواتيمالا +dr_congo,Q974,Congo-Kinshasa,Democratic Republic of the Congo,刚果民主共和国,República Democrática del Congo,कांगो लोकतान्त्रिक गणराज्य,جمهورية الكونغو الديمقراطية +sudan,Q1049,Soedan,Sudan,苏丹,Sudán,सूडान,السودان +monaco,Q235,Monaco,Monaco,摩納哥,Mónaco,मोनाको,موناكو +cook_islands,Q26988,Cookeilanden,Cook Islands,库克群岛,Islas Cook,कुक द्वीपसमूह,جزر كوك +portugal,Q45,Portugal,Portugal,葡萄牙,Portugal,पुर्तगाल,البرتغال +united_states,Q30,Verenigde Staten,United States,美國,Estados Unidos,संयुक्त राज्य अमेरिका,الولايات المتحدة +malta,Q233,Malta,Malta,馬耳他,Malta,माल्टा,مالطا +poland,Q36,Polen,Poland,波蘭,Polonia,पोलैंड,بولندا +djibouti,Q977,Djibouti,Djibouti,吉布提,Yibuti,जिबूती,جيبوتي +cambodia,Q424,Cambodja,Cambodia,柬埔寨,Camboya,कम्बोडिया,كمبوديا +argentina,Q414,Argentinië,Argentina,阿根廷,Argentina,अर्जेण्टीना,الأرجنتين +denmark,Q35,Denemarken,Denmark,丹麥,Dinamarca,डेनमार्क,الدنمارك +taiwan,Q865,Taiwan,Taiwan,中華民國,República de China,चीनी गणराज्य,تايوان +french_guiana,Q3769,Frans-Guyana,French Guiana,法屬圭亞那,Guayana Francesa,फ़्रान्सीसी गुयाना,غويانا الفرنسية +slovenia,Q215,Slovenië,Slovenia,斯洛文尼亞,Eslovenia,स्लोवेनिया,سلوفينيا +peru,Q419,Peru,Peru,秘鲁,Perú,पेरू,بيرو +maldives,Q826,Malediven,Maldives,馬爾代夫,Maldivas,मालदीव,المالديف +united_states_virgin_islands,Q11703,Amerikaanse Maagdeneilanden,United States Virgin Islands,美屬維爾京群島,Islas Vírgenes de los Estados Unidos,संयुक्त राज्य वर्जिन द्वीपसमूह,جزر العذراء التابعة الولايات المتحدة +south_korea,Q884,Zuid-Korea,South Korea,大韩民国,Corea del Sur,दक्षिण कोरिया,كوريا الجنوبية +tajikistan,Q863,Tadzjikistan,Tajikistan,塔吉克斯坦,Tayikistán,ताजीकिस्तान,طاجيكستان +togo,Q945,Togo,Togo,多哥,Togo,टोगो,توغو +samoa,Q683,Samoa,Samoa,萨摩亚,Samoa,समोआ,ساموا +faroe_islands,Q4628,Faeröer,Faroe Islands,法罗群岛,Islas Feroe,फ़रो द्वीपसमूह,جزر فارو +israel,Q801,Israël,Israel,以色列,Israel,इज़राइल,إسرائيل +rwanda,Q1037,Rwanda,Rwanda,卢旺达,Ruanda,रवाण्डा,رواندا +slovakia,Q214,Slowakije,Slovakia,斯洛伐克,Eslovaquia,स्लोवाकिया,سلوفاكيا +liechtenstein,Q347,Liechtenstein,Liechtenstein,列支敦斯登,Liechtenstein,लिक्टेन्स्टाइन,ليختنشتاين +moldova,Q217,Moldavië,Moldova,摩爾多瓦,Moldavia,मोल्डोवा,مولدوفا +libya,Q1016,Libië,Libya,利比亞,Libia,लीबिया,ليبيا +guernsey,Q25230,Guernsey,Guernsey,根西,Guernsey,ग्वेर्नसे,غيرنزي +mexico,Q96,Mexico,Mexico,墨西哥,México,मेक्सिको,المكسيك +ireland,Q145,Verenigd Koninkrijk,United Kingdom,英国,Reino Unido,यूनाइटेड किंगडम,المملكة المتحدة +marshall_islands,Q709,Marshalleilanden,Marshall Islands,馬紹爾群島,Islas Marshall,मार्शल द्वीपसमूह,جزر مارشال +fiji,Q712,Fiji,Fiji,斐濟,Fiyi,फ़िजी,فيجي +sri_lanka,Q854,Sri Lanka,Sri Lanka,斯里蘭卡,Sri Lanka,श्रीलंका,سريلانكا +south_sudan,Q958,Zuid-Soedan,South Sudan,南蘇丹,Sudán del Sur,दक्षिण सूडान,جنوب السودان +chad,Q657,Tsjaad,Chad,乍得,Chad,चाड,تشاد +norfolk_island,Q35672,Pitcairneilanden,Pitcairn Islands,皮特凯恩群岛,Islas Pitcairn,पिटकेर्न द्वीपसमूह,جزر بيتكيرن +uruguay,Q77,Uruguay,Uruguay,烏拉圭,Uruguay,उरुग्वे,الأوروغواي +cape_verde,Q1011,Kaapverdië,Cape Verde,佛得角,Cabo Verde,केप वर्दे,الرأس الأخضر +lebanon,Q822,Libanon,Lebanon,黎巴嫩,Líbano,लेबनॉन,لبنان +albania,Q222,Albanië,Albania,阿爾巴尼亞,Albania,अल्बानिया,ألبانيا +ivory_coast,Q1008,Ivoorkust,Ivory Coast,科特迪瓦,Costa de Marfil,कोत दिव्वार,ساحل العاج +spain,Q29,Spanje,Spain,西班牙,España,स्पेन,إسبانيا +san_marino,Q238,San Marino,San Marino,圣马力诺,San Marino,सान मारिनो,سان مارينو +iran,Q794,Iran,Iran,伊朗,Irán,ईरान,إيران +senegal,Q1041,Senegal,Senegal,塞内加尔,Senegal,सेनेगल,السنغال +anguilla,Q25228,Anguilla,Anguilla,安圭拉,Anguila,अंगुइला,أنغويلا +palau,Q695,Palau,Palau,帛琉,Palaos,पलाउ,بالاو +mayotte,Q17063,Mayotte,Mayotte,马约特,Mayotte,मेयोट,مايوت +bolivia,Q750,Bolivia,Bolivia,玻利維亞,Bolivia,बोलिविया,بوليفيا +jersey,Q785,Jersey,Jersey,澤西,Jersey,जर्सी,جيرزي +grenada,Q769,Grenada,Grenada,格瑞那達,Granada,ग्रेनाडा,غرينادا +saint_lucia,Q760,Saint Lucia,Saint Lucia,圣卢西亚,Santa Lucía,सेंट लूसिया,سانت لوسيا +namibia,Q1030,Namibië,Namibia,纳米比亚,Namibia,नामीबिया,ناميبيا +kosovo,Q1246,Kosovo,Kosovo,科索沃,Kosovo,कोसोवो गणराज्य,كوسوفو +new_zealand,Q664,Nieuw-Zeeland,New Zealand,新西兰,Nueva Zelanda,न्यूज़ीलैंड,نيوزيلندا +svalbard_and_jan_mayen,Q842829,Spitsbergen en Jan Mayen,Svalbard and Jan Mayen,斯瓦巴和扬马延,Svalbard y Jan Mayen,,سفالبارد ويان ماين +wallis_and_futuna,Q35555,Wallis en Futuna,Wallis and Futuna,瓦利斯和富圖納,Wallis y Futuna,वालिस और फ़्यूचूना,واليس وفوتونا +botswana,Q963,Botswana,Botswana,波札那,Botsuana,बोत्सवाना,بوتسوانا +andorra,Q228,Andorra,Andorra,安道尔,Andorra,अण्डोरा,أندورا +estonia,Q191,Estland,Estonia,愛沙尼亞,Estonia,एस्टोनिया,إستونيا +new_caledonia,Q33788,Nieuw-Caledonië,New Caledonia,新喀里多尼亞,Nueva Caledonia,नया कैलेडोनिया,كاليدونيا الجديدة +honduras,Q783,Honduras,Honduras,洪都拉斯,Honduras,हॉण्डुरस,هندوراس +antigua_and_barbuda,Q781,Antigua en Barbuda,Antigua and Barbuda,安提瓜和巴布达,Antigua y Barbuda,अण्टीगुआ और बारबूडा,أنتيغوا وباربودا +macau,Q14773,Macau,Macau,澳門,Macao,मकाउ,ماكاو +belarus,Q184,Wit-Rusland,Belarus,白俄羅斯,Bielorrusia,बेलारूस,بيلاروس +dominican_republic,Q786,Dominicaanse Republiek,Dominican Republic,多明尼加,República Dominicana,डोमिनिकन गणराज्य,جمهورية الدومينيكان +eritrea,Q986,Eritrea,Eritrea,厄立特里亞,Eritrea,इरित्रिया,إرتريا +greece,Q41,Griekenland,Greece,希腊,Grecia,यूनान,اليونان +kazakhstan,Q232,Kazachstan,Kazakhstan,哈萨克斯坦,Kazajistán,कज़ाख़िस्तान,كازاخستان +mauritius,Q1027,Mauritius,Mauritius,毛里求斯,Mauricio,मॉरिशस,موريشيوس +ukraine,Q212,Oekraïne,Ukraine,烏克蘭,Ucrania,युक्रेन,أوكرانيا +burundi,Q967,Burundi,Burundi,蒲隆地,Burundi,बुरुण्डी,بوروندي +south_georgia,Q35086,Zuid-Georgia en de Zuidelijke Sandwicheilanden,South Georgia and the South Sandwich Islands,南乔治亚和南桑威奇群岛,Islas Georgias del Sur y Sandwich del Sur,दक्षिण जॉर्जिया एवं दक्षिण सैंडविच द्वीप समूह,جورجيا الجنوبية وجزر ساندويتش الجنوبية +sint_maarten,Q25596,Sint Maarten,Saint Martin,圣马丁岛,San Martín,सेंट मार्टिन,سانت مارتن +são_tomé_and_príncipe,Q1039,Sao Tomé en Principe,São Tomé and Príncipe,圣多美和普林西比,Santo Tomé y Príncipe,साओ तोमे और प्रिन्सिपी,ساو تومي وبرينسيب +benin,Q962,Benin,Benin,貝南,Benín,बेनिन,بنين +suriname,Q730,Suriname,Suriname,蘇利南,Surinam,सूरीनाम,سورينام +guinea,Q1006,Guinee,Guinea,几内亚,Guinea,गिनी,غينيا +kiribati,Q710,Kiribati,Kiribati,吉里巴斯,Kiribati,किरिबाती,كيريباتي +czechia,Q213,Tsjechië,Czech Republic,捷克,República Checa,चेक गणराज्य,جمهورية التشيك +romania,Q218,Roemenië,Romania,羅馬尼亞,Rumania,रोमानिया,رومانيا +malaysia,Q833,Maleisië,Malaysia,馬來西亞,Malasia,मलेशिया,ماليزيا +turks_and_caicos_islands,Q18221,Turks- en Caicoseilanden,Turks and Caicos Islands,特克斯和凯科斯群岛,Islas Turcas y Caicos,तुर्क और केकोस द्वीपसमूह,جزر توركس وكايكوس +pakistan,Q843,Pakistan,Pakistan,巴基斯坦,Pakistán,पाकिस्तान,باكستان +burkina_faso,Q965,Burkina Faso,Burkina Faso,布吉納法索,Burkina Faso,बुर्किना फासो,بوركينا فاسو +chile,Q298,Chili,Chile,智利,Chile,चिली,تشيلي +bahamas,Q778,Bahama's,The Bahamas,巴哈馬,Bahamas,बहामास,جزر البهاما +jordan,Q810,Jordanië,Jordan,約旦,Jordania,जॉर्डन,الأردن +saint_vincent_and_the_grenadines,Q757,Saint Vincent en de Grenadines,Saint Vincent and the Grenadines,圣文森特和格林纳丁斯,San Vicente y las Granadinas,सन्त विन्सेण्ट और ग्रेनाडाइन्स,سانت فينسنت والغرينادين +bulgaria,Q219,Bulgarije,Bulgaria,保加利亚,Bulgaria,बुल्गारिया,بلغاريا +cyprus,Q229,Cyprus,Cyprus,塞浦路斯,Chipre,साइप्रस,قبرص +timor-leste,Q574,Oost-Timor,Timor-Leste,東帝汶,Timor Oriental,पूर्वी तिमोर,تيمور الشرقية +american_samoa,Q16641,Amerikaans-Samoa,American Samoa,美屬薩摩亞,Samoa Americana,अमेरिकी समोआ,ساموا الأمريكية +saint_kitts_and_nevis,Q763,Saint Kitts en Nevis,Saint Kitts and Nevis,聖克里斯多福及尼維斯,San Cristóbal y Nieves,सन्त किट्स और नेविस,سانت كيتس ونيفيس +jamaica,Q766,Jamaica,Jamaica,牙買加,Jamaica,जमैका,جامايكا +nepal,Q837,Nepal,Nepal,尼泊爾,Nepal,नेपाल,نيبال +haiti,Q790,Haïti,Haiti,海地,Haití,हैती,هايتي +british_indian_ocean_territory,Q43448,Brits Indische Oceaanterritorium,British Indian Ocean Territory,英屬印度洋領地,Territorio Británico del Océano Índico,ब्रिटिश हिंद महासागर क्षेत्र,إقليم المحيط الهندي البريطاني +serbia,Q403,Servië,Serbia,塞爾維亞,Serbia,सर्बिया,صربيا +gibraltar,Q1410,Gibraltar,Gibraltar,直布羅陀,Gibraltar,जिब्राल्टर,جبل طارق +colombia,Q739,Colombia,Colombia,哥伦比亚,Colombia,कोलम्बिया,كولومبيا +nauru,Q697,Nauru,Nauru,瑙鲁,Nauru,नौरु,ناورو +armenia,Q399,Armenië,Armenia,亞美尼亞,Armenia,आर्मीनिया,أرمينيا +barbados,Q244,Barbados,Barbados,巴巴多斯,Barbados,बारबाडोस,باربادوس +qatar,Q846,Qatar,Qatar,卡塔尔,Catar,क़तर,قطر +guyana,Q734,Guyana,Guyana,圭亚那,Guyana,गयाना,غيانا +netherlands,Q55,Nederland,Netherlands,荷蘭,Países Bajos,नीदरलैण्ड,هولندا +italy,Q38,Italië,Italy,意大利,Italia,इटली,إيطاليا +martinique,Q17054,Martinique,Martinique,馬提尼克,Martinica,मार्टीनिक,مارتينيك +somalia,Q1045,Somalië,Somalia,索馬里,Somalia,सोमालिया,الصومال +equatorial_guinea,Q983,Equatoriaal-Guinea,Equatorial Guinea,赤道几内亚,Guinea Ecuatorial,भूमध्यरेखीय गिनी,غينيا الاستوائية +ghana,Q117,Ghana,Ghana,迦納,Ghana,घाना,غانا +australia,Q408,Australië,Australia,澳大利亚,Australia,ऑस्ट्रेलिया,أستراليا +hungary,Q28,Hongarije,Hungary,匈牙利,Hungría,हंगरी,المجر +luxembourg,Q32,Luxemburg,Luxembourg,卢森堡,Luxemburgo,लक्ज़मबर्ग,لوكسمبورغ +austria,Q40,Oostenrijk,Austria,奧地利,Austria,ऑस्ट्रिया,النمسا +southern_asia, Q771405,Zuid-Azië,South Asia,南亚,Asia del Sur,दक्षिण एशिया,جنوب آسيا +south-eastern_asia, Q11708,Zuidoost-Azië,Southeast Asia,东南亚,Sudeste Asiático,दक्षिण पूर्व एशिया,جنوب شرق آسيا +eastern_asia, Q27231,Oost-Azië,East Asia,東亞,Asia Oriental,पूर्वी एशिया,شرق آسيا +central_asia, Q27275,Centraal-Azië,Central Asia,中亚,Asia Central,मध्य एशिया,آسيا الوسطى +western_asia, Q27293,Zuidwest-Azië,West Asia,西亚,Asia Occidental,पश्चिमी एशिया,غرب آسيا +northern_africa, Q27381,Noord-Afrika,North Africa,北部非洲,Norte de África,उत्तर अफ़्रीका,شمال إفريقيا +middle_africa, Q27433,Centraal-Afrika,Central Africa,中部非洲,África Central,मध्य अफ्रीका,وسط إفريقيا +western_africa, Q4412,West-Afrika,West Africa,西非,África Occidental,पश्चिमी अफ्रीका,غرب إفريقيا +eastern_africa, Q27407,Oost-Afrika,East Africa,东部非洲,África Oriental,पूर्वी अफ्रीका,شرق إفريقيا +southern_africa, Q27394,Zuidelijk Afrika,Southern Africa,南部非洲,África austral,दक्षिणी अफ्रीका,إفريقيا الجنوبية +northern_europe, Q27479,Noord-Europa,Northern Europe,北歐,Europa del Norte,उत्तरी यूरोप,أوروبا الشمالية +western_europe, Q27496,West-Europa,Western Europe,西欧,Europa Occidental,पश्चिमी यूरोप,أوروبا الغربية +central_europe, Q27509,Centraal-Europa,Central Europe,中欧,Europa Central,मध्य यूरोप,أوروبا الوسطى +eastern_europe, Q27468,Oost-Europa,Eastern Europe,东欧,Europa Oriental,पूर्वी यूरोप,أوروبا الشرقية +southern_europe, Q27449,Zuid-Europa,Southern Europe,南欧,Europa del Sur,दक्षिणी यूरोप,أوروبا الجنوبية +caribbean, Q664609,Caraïben,Caribbean,加勒比地区,Caribe,कैरिबिया,الكاريبي +northern_america, Q49,Noord-Amerika,North America,北美洲,América del Norte,उत्तर अमेरिका,أمريكا الشمالية +central_america, Q27611,Centraal-Amerika,Central America,中美洲,América Central,केंद्रीय अमेरिका,أمريكا الوسطى +south_america, Q18,Zuid-Amerika,South America,南美洲,América del Sur,दक्षिण अमेरिका,أمريكا الجنوبية +polynesia, Q35942,Polynesië,Polynesia,玻里尼西亞,Polinesia,पोलीनेशिया,بولنيزيا +australia_and_new_zealand, Q107323313,Australië en Nieuw-Zeeland,Australia and New Zealand,,,, +melanesia, Q37394,Melanesië,Melanesia,美拉尼西亞,Melanesia,मॅलानिशिया,ميلانيزيا +micronesia, Q3359409,Micronesië,Micronesia,密克羅尼西亞群島,Micronesia,माइक्रोनीशिया,ميكرونيسيا +africa, Q15,Afrika,Africa,非洲,África,अफ्रीका,إفريقيا +americas, Q828,Amerika,Americas,美洲,América,महाअमेरिका,أمريكتان +asia, Q48,Azië,Asia,亞洲,Asia,एशिया,آسيا +europe, Q46,Europa,Europe,欧洲,Europa,यूरोप,أوروبا +oceania, Q55643,Oceanië,Oceania,大洋洲,Oceanía,ओशिआनिया,أوقيانوسيا diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/test.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/test.tsv new file mode 100644 index 0000000..85a430b --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/test.tsv @@ -0,0 +1,24 @@ +thailand locatedIn asia +norway locatedIn europe +venezuela locatedIn americas +eritrea locatedIn africa +jordan locatedIn asia +guyana locatedIn americas +united_states locatedIn americas +bulgaria locatedIn europe +djibouti locatedIn africa +french_guiana locatedIn americas +ghana locatedIn africa +germany locatedIn europe +sudan locatedIn africa +spain locatedIn europe +saudi_arabia locatedIn asia +burkina_faso locatedIn africa +monaco locatedIn europe +ecuador locatedIn americas +egypt locatedIn africa +iraq locatedIn asia +indonesia locatedIn asia +zimbabwe locatedIn africa +timor-leste locatedIn asia +tanzania locatedIn africa \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/train.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/train.tsv new file mode 100644 index 0000000..b6fb1d4 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/train.tsv @@ -0,0 +1,202 @@ +palau locatedIn oceania +qatar locatedIn asia +guinea locatedIn africa +san_marino locatedIn europe +saint_lucia locatedIn americas +senegal locatedIn africa +sri_lanka locatedIn asia +antigua_and_barbuda locatedIn americas +cuba locatedIn americas +bermuda locatedIn americas +tunisia locatedIn africa +austria locatedIn europe +angola locatedIn africa +united_kingdom locatedIn europe +faroe_islands locatedIn europe +madagascar locatedIn africa +somalia locatedIn africa +british_indian_ocean_territory locatedIn africa +south_korea locatedIn asia +guatemala locatedIn americas +el_salvador locatedIn americas +armenia locatedIn asia +anguilla locatedIn americas +lithuania locatedIn europe +mayotte locatedIn africa +latvia locatedIn europe +mexico locatedIn americas +andorra locatedIn europe +chad locatedIn africa +central_african_republic locatedIn africa +seychelles locatedIn africa +honduras locatedIn americas +haiti locatedIn americas +mali locatedIn africa +new_caledonia locatedIn oceania +cayman_islands locatedIn americas +malaysia locatedIn asia +israel locatedIn asia +iceland locatedIn europe +ivory_coast locatedIn africa +niue locatedIn oceania +gabon locatedIn africa +moldova locatedIn europe +turks_and_caicos_islands locatedIn americas +tonga locatedIn oceania +burundi locatedIn africa +gambia locatedIn africa +argentina locatedIn americas +comoros locatedIn africa +belize locatedIn americas +kenya locatedIn africa +brazil locatedIn americas +nigeria locatedIn africa +south_georgia locatedIn americas +jersey locatedIn europe +republic_of_the_congo locatedIn africa +pakistan locatedIn asia +puerto_rico locatedIn americas +georgia locatedIn asia +mozambique locatedIn africa +macedonia locatedIn europe +saint_barthélemy locatedIn americas +morocco locatedIn africa +british_virgin_islands locatedIn americas +estonia locatedIn europe +chile locatedIn americas +réunion locatedIn africa +togo locatedIn africa +uganda locatedIn africa +albania locatedIn europe +isle_of_man locatedIn europe +liberia locatedIn africa +azerbaijan locatedIn asia +french_polynesia locatedIn oceania +malawi locatedIn africa +christmas_island locatedIn oceania +belgium locatedIn europe +lesotho locatedIn africa +samoa locatedIn oceania +equatorial_guinea locatedIn africa +netherlands locatedIn europe +kiribati locatedIn oceania +cook_islands locatedIn oceania +yemen locatedIn asia +benin locatedIn africa +slovakia locatedIn europe +sweden locatedIn europe +northern_mariana_islands locatedIn oceania +bahamas locatedIn americas +united_arab_emirates locatedIn asia +kyrgyzstan locatedIn asia +laos locatedIn asia +dominica locatedIn americas +liechtenstein locatedIn europe +sierra_leone locatedIn africa +rwanda locatedIn africa +norfolk_island locatedIn oceania +bolivia locatedIn americas +bangladesh locatedIn asia +slovenia locatedIn europe +paraguay locatedIn americas +niger locatedIn africa +iran locatedIn asia +barbados locatedIn americas +poland locatedIn europe +philippines locatedIn asia +croatia locatedIn europe +jamaica locatedIn americas +guam locatedIn oceania +cocos_keeling_islands locatedIn oceania +finland locatedIn europe +saint_kitts_and_nevis locatedIn americas +cambodia locatedIn asia +guernsey locatedIn europe +uzbekistan locatedIn asia +peru locatedIn americas +france locatedIn europe +united_states_minor_outlying_islands locatedIn americas +namibia locatedIn africa +bahrain locatedIn asia +canada locatedIn americas +singapore locatedIn asia +united_states_virgin_islands locatedIn americas +solomon_islands locatedIn oceania +american_samoa locatedIn oceania +sint_maarten locatedIn americas +belarus locatedIn europe +montserrat locatedIn americas +saint_vincent_and_the_grenadines locatedIn americas +ukraine locatedIn europe +turkmenistan locatedIn asia +greece locatedIn europe +bosnia_and_herzegovina locatedIn europe +gibraltar locatedIn europe +cameroon locatedIn africa +lebanon locatedIn asia +new_zealand locatedIn oceania +maldives locatedIn asia +vanuatu locatedIn oceania +dr_congo locatedIn africa +vietnam locatedIn asia +fiji locatedIn oceania +marshall_islands locatedIn oceania +mauritius locatedIn africa +montenegro locatedIn europe +oman locatedIn asia +wallis_and_futuna locatedIn oceania +são_tomé_and_príncipe locatedIn africa +papua_new_guinea locatedIn oceania +western_sahara locatedIn africa +uruguay locatedIn americas +libya locatedIn africa +north_korea locatedIn asia +åland_islands locatedIn europe +tuvalu locatedIn oceania +tajikistan locatedIn asia +ethiopia locatedIn africa +brunei locatedIn asia +australia locatedIn oceania +greenland locatedIn americas +hong_kong locatedIn asia +guadeloupe locatedIn americas +switzerland locatedIn europe +luxembourg locatedIn europe +portugal locatedIn europe +colombia locatedIn americas +malta locatedIn europe +tokelau locatedIn oceania +costa_rica locatedIn americas +algeria locatedIn africa +south_africa locatedIn africa +pitcairn_islands locatedIn oceania +mauritania locatedIn africa +nepal locatedIn asia +china locatedIn asia +trinidad_and_tobago locatedIn americas +grenada locatedIn americas +palestine locatedIn asia +kuwait locatedIn asia +falkland_islands locatedIn americas +afghanistan locatedIn asia +india locatedIn asia +curaçao locatedIn americas +romania locatedIn europe +svalbard_and_jan_mayen locatedIn europe +cyprus locatedIn europe +japan locatedIn asia +swaziland locatedIn africa +dominican_republic locatedIn americas +cape_verde locatedIn africa +italy locatedIn europe +turkey locatedIn asia +vatican_city locatedIn europe +martinique locatedIn americas +taiwan locatedIn asia +saint_pierre_and_miquelon locatedIn americas +aruba locatedIn americas +russia locatedIn europe +nauru locatedIn oceania +south_sudan locatedIn africa +serbia locatedIn europe +ireland locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/val.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/val.tsv new file mode 100644 index 0000000..a54d063 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/val.tsv @@ -0,0 +1,24 @@ +bhutan locatedIn asia +macau locatedIn asia +thailand locatedIn asia +norway locatedIn europe +kazakhstan locatedIn asia +denmark locatedIn europe +djibouti locatedIn africa +french_guiana locatedIn americas +czechia locatedIn europe +sudan locatedIn africa +spain locatedIn europe +guinea-bissau locatedIn africa +botswana locatedIn africa +panama locatedIn americas +hungary locatedIn europe +saint_martin locatedIn americas +kosovo locatedIn europe +nicaragua locatedIn americas +myanmar locatedIn asia +suriname locatedIn americas +iraq locatedIn asia +zambia locatedIn africa +syria locatedIn asia +mongolia locatedIn asia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/templates/countries_S0_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S0_templates.pl new file mode 100644 index 0000000..ffac9a1 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S0_templates.pl @@ -0,0 +1 @@ +countries(~rr1, X, Y) :- countries(~rr1, X, Z), countries(~rr1, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/templates/countries_S1_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S1_templates.pl new file mode 100644 index 0000000..440c279 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S1_templates.pl @@ -0,0 +1 @@ +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/templates/countries_S2_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S2_templates.pl new file mode 100644 index 0000000..94dd647 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S2_templates.pl @@ -0,0 +1,3 @@ +countries(~rr1, X, Y) :- countries(rr1, Y, Z). +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). +countries(~rr4, X, Y) :- countries(~rr5, X, Z), countries(~rr6, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/templates/countries_S3_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S3_templates.pl new file mode 100644 index 0000000..e0fffa9 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S3_templates.pl @@ -0,0 +1,4 @@ +countries(~rr1, X, Y) :- countries(rr1, Y, Z). +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). +countries(~rr4, X, Y) :- countries(~rr5, X, Z), countries(~rr6, Z, Y). +countries(~rr7, X, Y) :- countries(~rr8, X, A), countries(~rr9, B, Y), countries(~rr10, A, B). \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py new file mode 100644 index 0000000..7d62d63 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -0,0 +1,99 @@ +import pandas as pd +import numpy as np + +from pathlib import Path + +from deepsoftlog.data import load_tsv_file, data_to_prolog +from deepsoftlog.algebraic_prover.terms.expression import Constant +from deepsoftlog.data.dataloader import DataLoader +from deepsoftlog.data.dataset import StaticDataset +from deepsoftlog.logic.soft_term import SoftTerm + +_DATA_ROOT = str(Path(__file__).parent / "tmp") + +def generate_tsvs(country_to_text: bool, relation_to_text: bool): + base_path = Path(__file__).parent / 'data' / 'raw' + + country_entity_text = pd.read_csv(base_path / 'country2text.csv', dtype=str).set_index('Country') + country2text = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} + relation2text = { + 'locatedIn': ['is positioned in', 'was positioned in', 'can be found in', 'was located in', 'is located in', + 'is situated in', 'was situated in', 'can be found in', 'was placed in', 'is placed in', + 'is currently in', 'was currently in', 'was still in', 'is still in', 'is present in', + 'was present in', 'is localized in', 'was localized in', 'is sited in', 'was sited in'], + 'neighborOf': ['was a neighboring country of', 'is a neighboring country of', 'neighbors', 'is adjacent to', + 'was adjacent to', 'was butted against', 'is butted against', 'borders', 'borders with', + 'was a neighboring state to', 'is a neighboring state to', 'is a neighbor of', + 'was a neighbor of', 'neighbors with']} + + for task in ["S1", "S2", "S3"]: + # load symbolic facts + symbolic_facts = load_tsv_file(base_path / f"countries_{task}.tsv") + + for i, fact in enumerate(symbolic_facts): + if country2text: + text_1 = "text({})".format(country2text[fact[0]][0].replace(" ", ":")) + country2text[fact[0]] = np.roll(country2text[fact[0]], 1) + text_2 = "text({})".format(country2text[fact[2]][0].replace(" ", ":")) + country2text[fact[2]] = np.roll(country2text[fact[2]], 1) + else: + text_1 = fact[0] + text_2 = fact[2] + + if relation2text: + text_r = "text({})".format(relation2text[fact[1]][0].replace(" ", ":")) + relation2text[fact[1]] = np.roll(relation2text[fact[1]], 1) + else: + text_r = fact[1] + + symbolic_facts[i] = (text_1, text_r, text_2) + + with open(base_path / Path(f"countries_{task}" + ('_country2text' if country_to_text else '') + ( + '_relation2text' if relation_to_text else '') + ".tsv"), "w") as f: + f.write("\n".join(["\t".join(fact) for fact in symbolic_facts])) + + +def get_train_dataloader(cfg: dict): + train_dataset = MentionsCountriesDataset("train").subset(cfg['data_subset']) + train_dataset = train_dataset.mutate_all_output() + return DataLoader(train_dataset, batch_size=cfg['batch_size'], shuffle=True, seed=cfg['seed']) + + +def get_test_dataloader(): + regions = ["africa", "americas", "asia", "europe", "oceania"] + domain = {-1: [SoftTerm(Constant(r)) for r in regions]} + eval_dataset = MentionsCountriesDataset("test").mutate_all_output(domain) + return DataLoader(eval_dataset, batch_size=1, shuffle=False) + +def get_val_dataloader(): + regions = ["africa", "americas", "asia", "europe", "oceania"] + domain = {-1: [SoftTerm(Constant(r)) for r in regions]} + eval_dataset = MentionsCountriesDataset("val").mutate_all_output(domain) + return DataLoader(eval_dataset, batch_size=1, shuffle=False) + +class MentionsCountriesDataset(StaticDataset): + def __init__(self, split_name: str = "val"): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"{split_name}.tsv") + data = data_to_prolog(data, name="countries") + super().__init__(tuple(data)) + +def generate_prolog_files(): + base_path = Path(__file__).parent / 'data' + (base_path / 'tmp').mkdir(exist_ok=True) + for setting in ['', '_country2text', '_relation2text', '_country2text_relation2text']: + for problem in (f'S{i}' for i in range(1,4)): + data = load_tsv_file(base_path / f"raw/countries_{problem}{setting}.tsv") + data = data_to_prolog(data, name="countries") + file_str = [f"{query.query}." for query in data] + # add template stuff + with open(base_path / f"templates/countries_{problem}_templates.pl", "r") as f: + templates = f.read() + with open(base_path / f"tmp/countries_{problem}{setting}.pl", "w") as f: + f.write("\n".join(file_str) + "\n") + f.write(templates) + +if __name__ == "__main__": + d = MentionsCountriesDataset() + print(d) + generate_prolog_files() \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/mentions_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py new file mode 100644 index 0000000..c557257 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -0,0 +1,67 @@ +import os + +import torch + +from deepsoftlog.experiments.mentions_countries.dataset import generate_prolog_files, get_val_dataloader, \ + get_train_dataloader, get_test_dataloader +from deepsoftlog.training import load_program, load_config +from deepsoftlog.training.logger import WandbLogger, PrintLogger +from deepsoftlog.training.loss import nll_loss, get_optimizer +from deepsoftlog.training.trainer import Trainer + +def train(cfg_path, name, seed, program, text_embedding_mode, + device='cpu', device_nb=0, freeze_layers=12): + """ + Train a model for the mentions_countries task. + :param text_embedding_mode: text embedding mode (boe, LM) + :param freeze_layers: number of layers to freeze if using LM + """ + cfg = load_config(cfg_path) + + cfg.update({ + "name": name, + "program": program, + "seed": int(seed), + "device": device, + "device_nb": int(device_nb), + "text_embedding_mode": text_embedding_mode, + "freeze_layers": freeze_layers, + }) + _train(cfg) + +def _train(cfg): + os.environ["CUDA_VISIBLE_DEVICES"] = str(cfg.device_nb) + generate_prolog_files() + eval_dataloader = get_val_dataloader() + test_dataloader = get_test_dataloader() + program = load_program(cfg, [get_train_dataloader(cfg), eval_dataloader, test_dataloader]) + optimizer = get_optimizer(program.get_store(), cfg) + logger = WandbLogger(cfg) + #logger = PrintLogger() + trainer = Trainer( + program, get_train_dataloader, nll_loss, optimizer, + logger=logger, + max_proofs=cfg['max_proofs'], + max_branching=cfg['max_branching'], + max_depth=cfg['max_depth'], + ) + trainer.val_dataloader = eval_dataloader + trainer.train(cfg) + trainer.eval(test_dataloader) + logger.finish() + + +def eval(folder: str): + cfg = load_config(f"results/{folder}/config.yaml") + eval_dataloader = get_test_dataloader() + program = load_program(cfg, eval_dataloader) + state_dict = torch.load(f"results/{folder}/store.pt") + program.store.load_state_dict(state_dict, strict=False) + trainer = Trainer(program, None, None, None) + trainer.max_branching = cfg['max_branching'] + trainer.max_depth = cfg['max_depth'] + trainer.eval(eval_dataloader) + + +if __name__ == "__main__": + train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'LM') \ No newline at end of file diff --git a/deepsoftlog/logic/soft_term.py b/deepsoftlog/logic/soft_term.py index 5d1ef07..e5b572c 100644 --- a/deepsoftlog/logic/soft_term.py +++ b/deepsoftlog/logic/soft_term.py @@ -1,7 +1,9 @@ +import os import pickle import torch from torch import Tensor +from transformers import AutoTokenizer from deepsoftlog.algebraic_prover.terms.expression import Expr @@ -39,11 +41,44 @@ def get_soft_term(self): def __getitem__(self, item): return SoftTerm(self.arguments[item]) +os.environ["TOKENIZERS_PARALLELISM"] = "false" +TOKENIZER = AutoTokenizer.from_pretrained("xlm-roberta-base") # monkey-patching on Expr for convenience # Expr.__invert__ = lambda self: SoftTerm(self) # Expr.is_soft = lambda self: self.functor == "~" +class TextTerm(Expr): + def __init__(self, text: str): + super().__init__(f"text{len(text)}") + text = text.replace(":", " ") + tokens = TOKENIZER(text, return_tensors="pt") + self.tensor = torch.cat((tokens["input_ids"], tokens["attention_mask"])) + def get_tensor(self): + return self.tensor + + def with_args(self, arguments): + assert len(arguments) == 0 + return self + + def __repr__(self): + return f"t{str(hash(self))[-3:]}" + + def __str__(self): + return repr(self) + + def __eq__(self, other): + return isinstance(other, TensorTerm) \ + and self.tensor.shape == other.tensor.shape \ + and torch.all(self.tensor == other.tensor) + + def __hash__(self): + return hash(pickle.dumps(self.tensor)) + + def show(self): + from matplotlib import pyplot as plt + plt.imshow(self.tensor[0], cmap='gray') + plt.show() class TensorTerm(Expr): def __init__(self, tensor: Tensor): diff --git a/deepsoftlog/logic/spl_module.py b/deepsoftlog/logic/spl_module.py index 1b29f74..460b420 100644 --- a/deepsoftlog/logic/spl_module.py +++ b/deepsoftlog/logic/spl_module.py @@ -48,6 +48,14 @@ def get_store(self): return self.store.module return self.store + def get_soft_unification_matrix(self): + names = self.store.constant_embeddings.keys() + return names, self.store.get_soft_unification_matrix(self.embedding_metric, names) + + def get_constant_embedding_matrix(self): + names = self.store.constant_embeddings.keys() + return names, torch.stack([self.store.constant_embeddings[name] for name in names]).detach().numpy() + def parameters(self): yield from self.store.parameters() if self.semantics == "neural": diff --git a/deepsoftlog/parser/problog_parser.py b/deepsoftlog/parser/problog_parser.py index 42dec77..442e415 100644 --- a/deepsoftlog/parser/problog_parser.py +++ b/deepsoftlog/parser/problog_parser.py @@ -14,6 +14,7 @@ from deepsoftlog.algebraic_prover.terms.expression import * from deepsoftlog.algebraic_prover.terms.transformations import normalize_clauses from deepsoftlog.algebraic_prover.terms.variable import Variable +from deepsoftlog.logic.soft_term import TextTerm def split( @@ -80,7 +81,9 @@ def parse_term(self, term_str: str) -> Expr: start_bracket = term_str.find("(") if start_bracket != -1: functor = term_str[:start_bracket] - arguments = split(term_str[start_bracket + 1 : -1], ",") + if functor == "text": + return Expr(functor, TextTerm(term_str[start_bracket + 1 : -1])) + arguments = split(term_str[start_bracket + 1: -1], ",") return Expr( functor, *(self.parse_termvar(argument) for argument in arguments) ) diff --git a/deepsoftlog/training/__init__.py b/deepsoftlog/training/__init__.py index bbe4feb..cb84114 100644 --- a/deepsoftlog/training/__init__.py +++ b/deepsoftlog/training/__init__.py @@ -1,6 +1,9 @@ +import itertools +from collections.abc import Iterator from pathlib import Path import os import random +from typing import Union, List import numpy as np import torch @@ -31,8 +34,10 @@ def save(self, file_name: str | Path): with open(file_name, "w+") as f: yaml.dump(dict(self), f) + def copy(self): + return ConfigDict(self) -def load_program(config, init_dataloader: "DataLoader") -> "Program": +def load_program(config, init_dataloader: Union["DataLoader", List["DataLoader"]]) -> "Program": config = load_config(config) set_seed(config['seed']) @@ -41,7 +46,8 @@ def load_program(config, init_dataloader: "DataLoader") -> "Program": embedding_metric=config['embedding_metric'], semantics=config['semantics'], ) - vocab = [program, init_dataloader.dataset] + init_dataloader = [init_dataloader] if not isinstance(init_dataloader, list) else init_dataloader + vocab = [program] + [dataloader.dataset for dataloader in init_dataloader] program.store = create_embedding_store(config, vocab_sources=vocab) return program diff --git a/deepsoftlog/training/logger.py b/deepsoftlog/training/logger.py index b4535c1..709d7c5 100644 --- a/deepsoftlog/training/logger.py +++ b/deepsoftlog/training/logger.py @@ -33,6 +33,9 @@ def log_eval(self, values, **kwargs): # TODO print("EVAL:", values) + def log_fig(self, fig, name): + print("FIG NOT LOGGED:", name) + class WandbLogger(Logger): def __init__(self, config): @@ -54,3 +57,9 @@ def _init_wandb(self): project = self.config['project'] wandb.init(name=name, project=project, config=self.config) + def log_fig(self, fig, name): + self._init_wandb() + wandb.log({name: wandb.Image(fig)}) + + def finish(self): + wandb.finish() \ No newline at end of file diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index 89a159a..ef820aa 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -117,12 +117,14 @@ def train_epoch(self, verbose: bool): def eval(self, dataloader: DataLoader, name='test'): self.program.store.eval() + torch.cuda.empty_cache() metrics = [] for queries in tqdm(dataloader, leave=False, smoothing=0): results = zip(queries, self._eval_queries(queries)) new_metrics = [get_metrics(query, result, dataloader.dataset) for query, result in results] metrics += new_metrics self.logger.log_eval(aggregate_metrics(metrics), name=name) + return aggregate_metrics(metrics) def _query(self, queries: Iterable[Query]): for query in queries: @@ -168,11 +170,11 @@ def step_optimizer(self): return float(grad_norm) def save(self, config: ConfigDict): - save_folder = f"results/{config['name']}" + save_folder = f"{config.get('results_dir', 'results')}/{config['name']}" save_folder = Path(save_folder) if save_folder.exists(): shutil.rmtree(save_folder, ignore_errors=True) - save_folder.mkdir(parents=True) + save_folder.mkdir(parents=True, exist_ok=True) config.save(save_folder / "config.yaml") torch.save(self.get_store().state_dict(), save_folder / "store.pt") diff --git a/mentions_countries.sh b/mentions_countries.sh new file mode 100755 index 0000000..aa9c75a --- /dev/null +++ b/mentions_countries.sh @@ -0,0 +1,3 @@ +#!/bin/bash +python run_experiments.py mentions_countries deepsoftlog/experiments/mentions_countries/config_LM.yaml +python run_experiments.py mentions_countries deepsoftlog/experiments/mentions_countries/config_baseline.yaml \ No newline at end of file diff --git a/run_experiments.py b/run_experiments.py index d370b21..77f1409 100644 --- a/run_experiments.py +++ b/run_experiments.py @@ -2,14 +2,16 @@ from deepsoftlog.experiments.mnist_addition.addition import train as train_addition from deepsoftlog.experiments.countries.countries import train as train_countries +from deepsoftlog.experiments.mentions_countries.mentions_countries import train as train_mentions_countries from deepsoftlog.experiments.fsm.fsm import train as train_fsm -def main(experiment_name, config_file): - train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'fsm': train_fsm} +def main(experiment_name, *args): + train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'mentions_countries': train_mentions_countries, 'fsm': train_fsm} assert experiment_name in train_functions.keys(), f"Experiment name must be one of {tuple(train_functions.keys())}" - return train_functions[experiment_name](config_file) + return train_functions[experiment_name](*args) if __name__ == "__main__": main(*sys.argv[1:]) + #main("wiki_countries", "deepsoftlog/experiments/wiki_countries/config_baseline.yaml") \ No newline at end of file diff --git a/wiki_countries.sh b/wiki_countries.sh new file mode 100755 index 0000000..64ee01f --- /dev/null +++ b/wiki_countries.sh @@ -0,0 +1,4 @@ +#!/bin/bash +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S1.yaml +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S2.yaml +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S3.yaml \ No newline at end of file