diff --git a/README.md b/README.md index dd5f97053ba5093568ea297d8bd85e699182e5b2..24fcfab90281a85836c1109ba587f3586ee94a68 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,32 @@ Project for PV254 (Fall 2019). Recommends a city based on your travel history. +# Motivation + +## Problem statement +We're recommending cities to visit as travel destinations based on person's travel history and other preferences. +- **Use case:** I, as a user, want to find interesting cities to visit based on cities I liked in the past and my personal preferences (e.g. cost, peacefulness, etc.) + ## Dataset +The dataset, found in the `data/` folder, is scraped from user pages of [nomadlist.com](www.nomadlist.com). Contains 72k trips, 3700 users and 599 cities. + +## Algorithms +- cosine similarity on features of `cities` dataset +- SVD, NMF, KNN, Baseline + + +### Loading the dataset with pandas +Some boilerplate code is needed to load the dataset properly. Example: + +```PATH = "..\\data" +df_trips = pd.read_csv(f"{PATH}\\trips.csv", sep='\s*,\s*', encoding='utf-8') +df_trips.city = pd.Series([ str(city).lower().replace(' ', '-') for city in df_trips.city.values]) -The dataset, found in `data/trips.csv`, is scraped from user pages of [nomadlist.com](www.nomadlist.com). Overall, we were able to get data from over 72k trips and 3700 users. +dict_df = {'city': [], 'hospital_score': [],'english_speaking': [], 'nightlife': [],'female_friendly': [],'racial_tolerance': [], 'peace_score': []} +for (i, row) in df_cities[df_cities.cities != {}].iterrows(): + for key in dict_df.keys(): + if key != 'city': + dict_df[key].append(row.values[0][key]) + dict_df['city'].append(row.name) +df_cities = pd.DataFrame.from_dict(dict_df) +``` \ No newline at end of file diff --git a/data/cities_stats.json b/data/cities_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..5a82e270a242d7e210e818fc5936875518b651df --- /dev/null +++ b/data/cities_stats.json @@ -0,0 +1,10444 @@ +{ + "cities": { + "ho-chi-minh-city": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "seoul": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "3" + }, + "kon-tum": {}, + "alicante": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "amsterdam": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "london": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "nha-trang": {}, + "da-nang": {}, + "mui-ne": {}, + "paris": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "quy-nhon": {}, + "hong-kong": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "chiang-mai": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ko-samui": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "bangkok": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "bilbao": {}, + "madrid": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "barcelona": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "valladolid": {}, + "nottingham": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "istanbul": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "2" + }, + "new-york-city": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bayonne": {}, + "faro": {}, + "cos": {}, + "tunis": {}, + "crete": {}, + "florence": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "3" + }, + "vientiane": {}, + "kuala-lumpur": {}, + "amed-beach-karangasem": {}, + "sanur": {}, + "lamma-island": {}, + "kampot-province": {}, + "kep-province": {}, + "siem-reap": {}, + "phnom-penh": {}, + "sliema": {}, + "kharkiv": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "1" + }, + "venice": {}, + "tenerife": {}, + "hue": {}, + "hanoi": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "vienna": {}, + "longyearbyen": {}, + "rotterdam": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "4" + }, + "dusseldorf": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "innsbruck": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "sharm-el-sheikh": {}, + "aswan": {}, + "cairo": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "3", + "peace_score": "2" + }, + "alexandria": {}, + "riga": {}, + "antwerp": {}, + "antalya": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "olympos": {}, + "fethiye": {}, + "rhodes": {}, + "bodrum": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "sel\u00e7uk": {}, + "jerusalem": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "2" + }, + "tel-aviv": {}, + "reykjavik": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "5" + }, + "tangier": {}, + "fes": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "marrakesh": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "3", + "peace_score": "3" + }, + "casablanca": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "5", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "3" + }, + "varadero": {}, + "vancouver": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "chicago": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "busan": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "osaka": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "4" + }, + "canggu": {}, + "townsville": {}, + "san-francisco": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "las-vegas": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "reno": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "crater-lake-national-park": {}, + "portland": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "seattle": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "honolulu": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kamakura-shi": {}, + "tokyo": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "1", + "peace_score": "4" + }, + "ko-tao": {}, + "taipei": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kyoto": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "nicosia": {}, + "saint-fran\u00e7ois-longchamp": {}, + "milan": {}, + "arnhem": {}, + "rome": { + "hospital_score": "0", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "jeju-island": {}, + "denpasar": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "guangzhou": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "kuta": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ubud": {}, + "singapore": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "los-angeles": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hagen": {}, + "nijmegen": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "berlin": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "krak\u00f3w": {}, + "bratislava": {}, + "kosice": {}, + "cologne": {}, + "kiev": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "1" + }, + "brussels": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "4" + }, + "bunschoten": {}, + "zakopane": {}, + "wroc\u0142aw": {}, + "edmonton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "camrose": {}, + "cranbrook": {}, + "sparwood": {}, + "haarlem": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "the-hague": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "tirana": {}, + "durr\u00ebs": {}, + "zurich": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "bern": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "copenhagen": {}, + "prague": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "4" + }, + "budapest": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "dublin": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "4" + }, + "sligo": {}, + "mechelen": {}, + "tilburg": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "bodegraven": {}, + "porto": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "lisbon": { + "hospital_score": "1", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "gdansk": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ghent": {}, + "abu-dhabi": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "shenzhen": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "shanghai": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "athens": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "oslo": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "li\u00e8ge": {}, + "calgary": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "4" + }, + "stockholm": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "ume\u00e5": {}, + "oswiecim": {}, + "katowice": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "zaandam": {}, + "utrecht": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "nairobi": {}, + "frankfurt": {}, + "tromso": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "groningen": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "warsaw": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "rzeszow": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "zamo\u015b\u0107": {}, + "berdyszcze": {}, + "che\u0142m": {}, + "kum\u00f3w-pleba\u0144ski": {}, + "haliczany": {}, + "przeworsk": {}, + "jawornik-polski": {}, + "dyn\u00f3w": {}, + "szklary": {}, + "munich": { + "hospital_score": "0", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "dortmund": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "toronto": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "4" + }, + "seville": {}, + "detroit": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "minneapolis": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "eindhoven": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "bergen": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "atlanta": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "new-orleans": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "5", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "houston": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "dalkey": {}, + "zwolle": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "maastricht": {}, + "nassau": {}, + "delft": {}, + "wiesbaden": {}, + "beijing": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "macau": {}, + "moscow": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "1" + }, + "zandvoort": {}, + "wageningen": {}, + "regina": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "denver": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ijmuiden": {}, + "newcastle-upon-tyne": {}, + "edinburgh": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "orlando": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "tampa": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "miami-beach": {}, + "moyie": {}, + "oxford": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "muiden": {}, + "duisburg": {}, + "kamloops": {}, + "havana": {}, + "grundarfj\u00f6r\u00f0ur": {}, + "stykkish\u00f3lmur": {}, + "jasper": {}, + "naivasha": {}, + "nakuru": {}, + "nyahururu": {}, + "mombasa": {}, + "narok": {}, + "kemptville": {}, + "ottawa": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "jerome": {}, + "kimball": {}, + "gibbon": {}, + "lexington": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "sidney": {}, + "bradshaw": {}, + "des-moines": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "fargo": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "butte": {}, + "grande-prairie": {}, + "vallendar": {}, + "hamburg": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "o\u015bwi\u0119cim": {}, + "prato": {}, + "cortona": {}, + "nuremberg": {}, + "bologna": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "siena": { + "hospital_score": "5", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "lucca": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "assisi": {}, + "davos": {}, + "bruges": {}, + "indio": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "long-beach": {}, + "redding": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "dallas": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "santa-cruz": {}, + "port-orford": {}, + "mendocino": {}, + "santa-clarita": {}, + "yreka": {}, + "nanaimo": {}, + "duncan": {}, + "guelph": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "kitimat": {}, + "prince-rupert": {}, + "jersey-city": {}, + "yangshuo": {}, + "guilin": {}, + "chengdu": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "songpan": {}, + "xiahe": {}, + "xi'an": {}, + "mu-tian-yu": {}, + "dunmore-town": {}, + "carmel-by-the-sea": {}, + "palm-springs": {}, + "victoria": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "5", + "peace_score": "4" + }, + "salzburg": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "vaduz": {}, + "montreux": {}, + "turin": {}, + "exeter": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "3" + }, + "bristol": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "cardiff": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "santa-barbara": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "montreal": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "quebec-city": {}, + "heidelberg": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "monte-compatri": {}, + "capri": {}, + "sorrento": {}, + "pisa": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "monaco": {}, + "\u00e8ze": {}, + "aix-en-provence": {}, + "nice": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "nimes": {}, + "carcassonne": {}, + "zaragoza": {}, + "abbotsford": {}, + "ogden": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "salt-lake-city": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "escondido": {}, + "washington": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ashland": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "avalon": {}, + "phoenix": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "sacramento": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "miami": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "geneva": {}, + "nancy": {}, + "ericeira": {}, + "lugano": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "toulouse": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "3" + }, + "granada": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "lovina-beach": {}, + "cascais": {}, + "las-palmas": {}, + "makassar": {}, + "valencia": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "viroinval": {}, + "s\u00e3o-paulo": {}, + "serra-grande": {}, + "les-deux-alpes": {}, + "ilh\u00e9us": {}, + "samaipata": {}, + "itacar\u00e9": {}, + "cebu": {}, + "general-luna": {}, + "jakarta": { + "hospital_score": "1", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ph\u00fa-qu\u1ed1c": {}, + "cairns": {}, + "byron-bay": {}, + "brisbane": {}, + "bassano-del-grappa": {}, + "bonito": {}, + "rio-de-janeiro": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "fortaleza": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "belo-horizonte": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ubatuba": {}, + "cusco": {}, + "aguas-calientes": {}, + "arequipa": {}, + "huacachina": {}, + "paracas": {}, + "lima": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "baltimore": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "praia-da-baleia": {}, + "florianopolis": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "puerto-iguaz\u00fa": {}, + "foz-do-igua\u00e7u": {}, + "ilha-grande": {}, + "paraty": {}, + "risoul": {}, + "fuerteventura": {}, + "leipzig": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "kumanovo-municipality": {}, + "pristina": {}, + "kotor": {}, + "dubrovnik": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "4" + }, + "mostar": {}, + "punat": {}, + "bad-hofgastein": {}, + "mammendorf": {}, + "essaouira": {}, + "kralendijk": {}, + "mountain-view": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "el-port-de-la-selva": {}, + "dahab": {}, + "new-england": {}, + "malaysia": {}, + "san-sebastian": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "sunnyvale": {}, + "yosemite-national-park": {}, + "zion-national-park": {}, + "bryce-canyon-national-park": {}, + "capitol-reef-national-park": {}, + "yellowstone-national-park": {}, + "waterton-lakes-national-park": {}, + "glacier-national-park": {}, + "bwejuu": {}, + "zanzibar-urban/west-region": {}, + "suzdal": {}, + "nizhny-novgorod": {}, + "daejeon": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "novi-sad": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "belgrade": {}, + "krabi": {}, + "guam": {}, + "bamberg": {}, + "doha": {}, + "interlaken": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "montpellier": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "voiron": {}, + "birmingham": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "da-lat": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "george-town": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "sarand\u00eb": {}, + "kuching": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "taipei-city": {}, + "hualien-city": {}, + "kaohsiung": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "3" + }, + "pokhara": {}, + "dhaka": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "kathmandu": {}, + "lombok": {}, + "scotland": {}, + "tarifa": {}, + "torrevieja": {}, + "java": {}, + "naha": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "yonaguni-island": {}, + "ishigaki-shi": {}, + "fukuoka": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "takamatsu": {}, + "okayama": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "miyajima": {}, + "kurashiki": {}, + "nara": {}, + "nagoya": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "hamamatsu": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "shizuoka": {}, + "atami": {}, + "annapurna": {}, + "yangon": {}, + "mandalay": {}, + "inle-lake": {}, + "kalaw": {}, + "nyaung-u": {}, + "ao-nang": {}, + "greece": {}, + "france": {}, + "santiago": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "norwich": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "medell\u00edn": {}, + "calella": {}, + "panev\u0117\u017eys": {}, + "bir\u0161tonas-municipality": {}, + "fort-lauderdale": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "cartagena": { + "hospital_score": "0", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "tulu\u00e1": {}, + "phuket": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "nafplion": {}, + "chania": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "katakolo": {}, + "mediterranean-sea": {}, + "minorca": {}, + "malaga": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "buenos-aires": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "5", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "valpara\u00edso": {}, + "lima-region": {}, + "san-jos\u00e9": {}, + "bejuco": {}, + "san-juan-del-sur": {}, + "granada-department": {}, + "playa-del-carmen": {}, + "montego-bay": {}, + "puerto-viejo": {}, + "bocas-del-toro-province": {}, + "panama-city": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "aruba": {}, + "cura\u00e7ao": {}, + "saint-kitts-and-nevis": {}, + "vilnius": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "colombo": {}, + "ko-lanta": {}, + "sydney": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "aarhus": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "south-kuta": {}, + "dubai": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "hobart": { + "hospital_score": "0", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "argentina": {}, + "chile": {}, + "colombia": {}, + "california": {}, + "sapporo": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "cancun": {}, + "dresden": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "arusha-region": {}, + "mexico-city": {}, + "angk-ta-saom": {}, + "paro": {}, + "thimphu-district": {}, + "punakha-district": {}, + "phobji": {}, + "bumthang-district": {}, + "lhuntse-district": {}, + "mongar-district": {}, + "trashiyangtse-district": {}, + "trashigang-district": {}, + "samdrup-jongkhar-district": {}, + "guwahati": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "1", + "peace_score": "2" + }, + "tait\u014d-ku": {}, + "minato-ku": {}, + "hakone": {}, + "astoria": {}, + "stamford": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ann-arbor": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "holly": {}, + "diss": {}, + "helsinki": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "inari": {}, + "kirkenes-centre": {}, + "nordkapp": {}, + "bod\u00f8": {}, + "trondheim": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "alesund": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "fl\u00e5m": {}, + "ichikawa-shi": {}, + "minamiboso-shi": {}, + "itabashi-ku": {}, + "yotsuya": {}, + "higashiizu": {}, + "gotanda": {}, + "narita-shi": {}, + "toshima-ku": {}, + "miyake-mura": {}, + "pittsburgh": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "austin": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "norwalk": {}, + "torrington": {}, + "poughkeepsie": {}, + "kilimanjaro-region": {}, + "sanya-juu": {}, + "karatu": {}, + "robanda": {}, + "zanzibar": {}, + "nungwi": {}, + "kigali": {}, + "bwindi-park-gate": {}, + "dodoma": {}, + "iringa-region": {}, + "mapogoro": {}, + "winnipeg": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "churchill": {}, + "split": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "jelsa": {}, + "hvar": {}, + "\u0161olta": {}, + "zagreb": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "east-lansing": {}, + "traverse-city": {}, + "brighton": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "manistee": {}, + "northport": {}, + "interlochen": {}, + "toledo": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "rothbury": {}, + "muskegon": {}, + "acadia-national-park": {}, + "winter-harbor": {}, + "standish": {}, + "hampton": {}, + "trenton": {}, + "kochi": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "maradu": {}, + "courtallam": {}, + "kanyakumari": {}, + "varkala": {}, + "kannur": {}, + "kundapura": {}, + "palolem": {}, + "morjim": {}, + "chiplun": {}, + "mumbai": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "navi-mumbai": {}, + "vapi": {}, + "ankleshwar": {}, + "ahmedabad": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "2" + }, + "udaipur": {}, + "jodhpur": {}, + "jaisalmer": {}, + "delhi": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "pattaya": { + "hospital_score": "5", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "3" + }, + "addis-ababa": {}, + "arusha": {}, + "kilimanjaro-international-airport": {}, + "lake-eyasi": {}, + "serengeti-national-park": {}, + "madison": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "dickinson": {}, + "cody": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "idaho-falls": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "black-rock-city": {}, + "fallon": {}, + "bozeman": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "casper": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "hill-city": {}, + "camas": {}, + "sisters": {}, + "eugene": {}, + "kellogg": {}, + "banff": {}, + "radium-hot-springs": {}, + "warner": {}, + "kalamazoo": {}, + "baie-lazare": {}, + "antananarivo": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "morondava": {}, + "bekopaka": {}, + "belo-tsiribihina": {}, + "masoarivo": {}, + "anosimena": {}, + "miandrivazo": {}, + "antsirabe": {}, + "hachij\u014d-jima": {}, + "milwaukee": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "pak-chong": {}, + "luang-prabang": {}, + "sofia": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "lagonisi": {}, + "porto-koufo": {}, + "buffalo": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "tallinn": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "ko-samet": {}, + "amed-beach": {}, + "gili-air": {}, + "gili-trawangan": {}, + "ogasawara": {}, + "sendai": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "nagano": {}, + "matsumoto": {}, + "kashgar": {}, + "tehran": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "shiraz": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "dikanak": {}, + "isfahan": {}, + "yazd": {}, + "bandar-seri-begawan": {}, + "kota-kinabalu": {}, + "johor-bahru": {}, + "ngapali-beach": {}, + "ngwesaung": {}, + "nashville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "boston": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "granville-ferry": {}, + "halifax": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "port-hood": {}, + "baddeck": {}, + "charlottetown": {}, + "saint-john": {}, + "bar-harbor": {}, + "metropolitan-city-of-venice": {}, + "cinisi": {}, + "santorini": {}, + "mikonos": {}, + "vis": {}, + "bol": {}, + "makarska": {}, + "bra\u010d": {}, + "ka\u015f": {}, + "pamukkale": {}, + "kalymnos": {}, + "leipsoi": {}, + "patmos": {}, + "leros": {}, + "kos": {}, + "plitvice-lakes-national-park": {}, + "tetouan": {}, + "chefchaouen": {}, + "ouarzazate": {}, + "imlil": {}, + "huaraz": {}, + "machu-picchu": {}, + "iquitos": {}, + "comstock-park": {}, + "maafushi": {}, + "male": {}, + "rangali": {}, + "muscat": {}, + "sur": {}, + "al-khaluf": {}, + "hasik": {}, + "mirbat": {}, + "salalah": {}, + "haima": {}, + "jeddah": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "madain-saleh": {}, + "ngorongoro-crater": {}, + "h\u1ea1-long-bay": {}, + "sa-pa": {}, + "malm\u00f6": {}, + "sant-celoni": {}, + "puta-o": {}, + "old-bagan": {}, + "shillong": {}, + "kaziranga-national-park": {}, + "birpara": {}, + "gangtok": {}, + "jorethang": {}, + "darjeeling": {}, + "siliguri": {}, + "malda": {}, + "kolkata": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "bhubaneswar": {}, + "visakhapatnam": {}, + "ongole": {}, + "bangalore": {}, + "valparai": {}, + "beppu": {}, + "kagoshima": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "kanchanaburi": {}, + "cha-am": {}, + "mueang-chiang-rai": {}, + "beirut": {}, + "cali": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "palomino": {}, + "la-guajira": {}, + "clearwater": {}, + "wilmington": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hua-hin": {}, + "mauritius": {}, + "brigantine": {}, + "davenport": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "grand-junction": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "5", + "peace_score": "3" + }, + "fernley": {}, + "montebello": {}, + "wendover": {}, + "schenectady": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "corona": {}, + "manhattan-beach": {}, + "san-luis-obispo": {}, + "crescent-city": {}, + "chemult": {}, + "blue-lagoon": {}, + "\u00f6lfus": {}, + "holmur": {}, + "gunnarsh\u00f3lmi": {}, + "selfoss": {}, + "akureyri": {}, + "'s-hertogenbosch": {}, + "eden-prairie": {}, + "new-haven": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "glasgow": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "southampton": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "reunion": {}, + "johannesburg": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "cape-town": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "springbok": {}, + "keetmanshoop": {}, + "swakopmund": {}, + "windhoek": {}, + "maun": {}, + "masuma": {}, + "victoria-falls": {}, + "livingstone": {}, + "choma": {}, + "lilongwe": {}, + "nkhata-bay": {}, + "livingstonia": {}, + "mbeya": {}, + "serengeti": {}, + "isiolo": {}, + "marsabit": {}, + "moyale": {}, + "harar": {}, + "hargeisa": {}, + "lalibela": {}, + "debre-zeyit": {}, + "gondor-terara": {}, + "gorgora": {}, + "al-qadarif": {}, + "khartoum": {}, + "mero\u00eb": {}, + "dongola": {}, + "wadi-halfa": {}, + "ibrim": {}, + "luxor": {}, + "assiut-governorate": {}, + "cairo-governorate": {}, + "tobruk": {}, + "shahat": {}, + "benghazi": {}, + "sirte": {}, + "misrata": {}, + "leptis-magna": {}, + "tripoli": {}, + "sabratah": {}, + "poste-fronti\u00e8re-tunisien": {}, + "tataouine": {}, + "sfax": {}, + "salerno": {}, + "zwiesel": {}, + "klenov\u00e1": {}, + "dunkirk": {}, + "queenstown": {}, + "franz-josef-glacier": {}, + "cambridge": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "christchurch": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "auckland": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "4" + }, + "cape-tribulation": {}, + "port-douglas": {}, + "uluru": {}, + "alice-springs": {}, + "adelaide": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "melbourne": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "ko-pha-ngan": {}, + "richmond": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "sedona": {}, + "zion-nature-park": {}, + "bryce": {}, + "moab": {}, + "pai": {}, + "phe": {}, + "klaeng": {}, + "jaipur": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "2" + }, + "agra": {}, + "moradabad": {}, + "bhimdatta": {}, + "nepalgunj": {}, + "hetauda": {}, + "itahari": {}, + "bilasipara": {}, + "bongaigaon": {}, + "wangdue-phodrang": {}, + "punakha": {}, + "dochula": {}, + "thimphu": {}, + "izmir": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "2" + }, + "yanartas-dagi": {}, + "kabak": {}, + "symi": {}, + "tilos": {}, + "nisyros": {}, + "ku\u015fadas\u0131": {}, + "boyne-city": {}, + "clarkston": {}, + "taos": {}, + "springdale-/-zion": {}, + "needles": {}, + "williams": {}, + "flagstaff": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "tucson": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "el-paso": {}, + "tainan-city": {}, + "moshi": {}, + "mount-kilimanjaro": {}, + "stone-town": {}, + "wallaceburg": {}, + "bonaire": {}, + "frankenmuth": {}, + "phra-nakhon-si-ayutthaya": {}, + "angkor-wat": {}, + "koh-chang": {}, + "reading": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "southend-on-sea": {}, + "ulaanbaatar": {}, + "mandalgovi": {}, + "flaming-cliffs": {}, + "khyagt": {}, + "irkutsk": {}, + "novosibirsk": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "almaty": {}, + "bishkek": {}, + "dushanbe": {}, + "khorog": {}, + "murghab": {}, + "kalaikhum": {}, + "obigarm": {}, + "buragen": {}, + "samarkand": {}, + "bukhara": {}, + "nukus": {}, + "karakalpakiya": {}, + "beyneu": {}, + "atyrau": {}, + "kotyayevka": {}, + "elista": {}, + "volgograd": {}, + "melitopol'": {}, + "odesa": {}, + "reni": {}, + "cluj": {}, + "chichester": {}, + "eton": {}, + "kenilworth": {}, + "marion": {}, + "san-diego": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "rothenburg": {}, + "schiedam": {}, + "chemnitz": {}, + "marmaris": {}, + "g\u00f6cek-k\u00f6y\u00fc": {}, + "denizli": {}, + "salihli": {}, + "ayval\u0131k": {}, + "\u00e7anakkale": {}, + "bursa": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "2" + }, + "fort-wayne": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "silverthorne": {}, + "san-gerardo": {}, + "quepos": {}, + "monte-verde": {}, + "tilaran": {}, + "omaha": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "little-rock": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ushuaia": {}, + "antarctic-great-wall-station": {}, + "base-yelcho": {}, + "chuncheon-si": {}, + "wellington": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "baarle-nassau": {}, + "yosemite-valley": {}, + "grand-canyon-north-rim-lodge": {}, + "tonga": {}, + "seventeen-seventy": {}, + "saint-petersburg": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "1" + }, + "langkawi": {}, + "parga": {}, + "tainan": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "kanazawa-shi": {}, + "takayama-shi": {}, + "gero-shi": {}, + "jiaoxi": {}, + "basel": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "gotland": {}, + "mykonos": {}, + "palma": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "boracay": {}, + "surabaya": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "hurghada": {}, + "manila": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "pyongyang": {}, + "taiz\u00e9": {}, + "port-moresby": {}, + "spain": {}, + "grenoble": {}, + "york": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "hoi-an": {}, + "managua": {}, + "lim\u00f3n": {}, + "oaxaca": {}, + "san-crist\u00f3bal-de-las-casas": {}, + "perhentian-islands": {}, + "malacca": {}, + "malaysia-national-park": {}, + "goa": {}, + "ko-phi-phi": {}, + "lamezia-terme": {}, + "tropea": {}, + "montevideo": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "arma\u00e7\u00e3o-dos-b\u00fazios": {}, + "naples": {}, + "igua\u00e7u": {}, + "mendoza": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "sabah": {}, + "koudekerke": {}, + "coron": {}, + "seychelles": {}, + "kruger-national-park": {}, + "st-andrews": {}, + "saint-andrews": {}, + "manchester": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "santo-domingo": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "fiji": {}, + "rosario": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "cordoba": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "salta": {}, + "salar-de-uyuni": {}, + "la-paz": {}, + "lago-titicaca": {}, + "guayaquil": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "galapagos-islands": {}, + "quito": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "santa-marta": {}, + "bogota": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "leticia": {}, + "manaus": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "belem": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "sao-luis": { + "hospital_score": "5", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "salvador": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "venezuela": {}, + "arizona": {}, + "hollywood": {}, + "margate": {}, + "karlsruhe": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "odessa": {}, + "ulcinj": {}, + "neum": {}, + "zadar": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "bruchsal": {}, + "samoeng": {}, + "marseille": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "3" + }, + "ha-giang": {}, + "krong-poi-pet": {}, + "chamonix": {}, + "santa-maria": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "paros": {}, + "north-island": {}, + "south-island": {}, + "cape-canaveral": {}, + "mars-city": {}, + "tachileik": {}, + "taichung": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "warminster": {}, + "cannes": { + "hospital_score": "1", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ljubljana": {}, + "vara\u017edin": {}, + "arrecife": {}, + "lofoten": {}, + "hinterstoder": {}, + "northampton": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "cabarete": {}, + "sheffield": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "aberdeen": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "palawan": {}, + "port-louis": {}, + "chiang-rai": {}, + "el-gouna": {}, + "puerto-rico": {}, + "necker-island": {}, + "linz": {}, + "boulder": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "leeds": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "oviedo": {}, + "valletta": {}, + "burgas": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "4" + }, + "mirissa": {}, + "andaman-and-nicobar-islands": {}, + "arugam": {}, + "badulla-district": {}, + "kandy": {}, + "dambulla": {}, + "negombo": {}, + "rishikesh": {}, + "dharamkot": {}, + "manali": {}, + "canberra": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "oranjestad": {}, + "poznan": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "cognac": {}, + "nepal": {}, + "koror": {}, + "darlington": {}, + "philadelphia": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "rockville": {}, + "worcester": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "fontana-dam": {}, + "dahlonega": {}, + "baguio": {}, + "hat-yai": {}, + "ayutthaya": {}, + "bohol": {}, + "puerto-princesa": {}, + "el-nido": {}, + "otaru-shi": {}, + "hakodate-shi": {}, + "yamanashi-shi": {}, + "iligan": {}, + "davao-city": {}, + "gold-coast": {}, + "varanasi": {}, + "chaiya": {}, + "tochigi-prefecture": {}, + "chiba-prefecture": {}, + "bath": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "torquay": {}, + "udon-thani": {}, + "nong-khai": {}, + "bolikhamsai-province": {}, + "sihanoukville": {}, + "aegina": {}, + "netze": {}, + "lviv": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "rakhiv": {}, + "mukachevo": {}, + "g\u00f6reme": {}, + "batumi": {}, + "tbilisi": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "stepantsminda": {}, + "vang-vieng": {}, + "nakijin-son": {}, + "nago": {}, + "kampot": {}, + "urumqi": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "shymkent": {}, + "tashkent": {}, + "\u0445\u0438\u0432\u0430": {}, + "cholpon-ata": {}, + "karakol": {}, + "candolim": {}, + "panjim": {}, + "chennai": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "bagan": {}, + "ngwesaung-beach": {}, + "battambang": {}, + "h\u00e0-ti\u1ebfn": {}, + "cambodia": {}, + "hualien-county": {}, + "okinawa": {}, + "hengchun": {}, + "\u95dc\u5b50\u5dba\u6eab\u6cc9": {}, + "tainan-citytaiwan": {}, + "jhihben": {}, + "taitung-city": {}, + "guangfu-township": {}, + "ruisui-township": {}, + "hengchun-township": {}, + "kep": {}, + "taiwan": {}, + "sukhothai": {}, + "chiang-khong": {}, + "subic": {}, + "angeles": {}, + "asin-hotspring": {}, + "hakuba-mura": {}, + "brasov": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "bucharest": {}, + "palermo": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "candidasa": {}, + "seminyak": {}, + "flores": {}, + "asturias": {}, + "portim\u00e3o": {}, + "ferragudo": {}, + "rainbow-beach": {}, + "fraser-island": {}, + "noosa-heads": {}, + "val-di-fassa": {}, + "pamporovo": {}, + "portugal": {}, + "gibraltar": {}, + "lagos": {}, + "cape-cod": {}, + "quebec": {}, + "madeira": {}, + "niagara": {}, + "paphos": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "latchi": {}, + "stoupa": {}, + "palma-de-mallorca": {}, + "england": {}, + "nagano-prefecture": {}, + "nagasaki-shi": {}, + "netherlands": {}, + "margaret-river": {}, + "norway": {}, + "szczecin": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "vosges": {}, + "funchal": {}, + "antigua": {}, + "sint-maarten": {}, + "barbados": {}, + "cabo-verde": {}, + "santa-cruz-de-tenerife": {}, + "corralejo": {}, + "soo": {}, + "el-arenal": {}, + "k\u00f6nigsleiten": {}, + "rodrigues-district": {}, + "cocos-(keeling)-islands": {}, + "pangkor-island": {}, + "jacksonville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "vinnytsia": {}, + "dikwella": {}, + "gothenburg": {}, + "sopot": {}, + "chisinau": {}, + "chornobyl": {}, + "nauplion": {}, + "menorca": {}, + "lule\u00e5": {}, + "negril": {}, + "isla-mujeres": {}, + "manuel-antonio-mesones-muro-district": {}, + "dominical": {}, + "bocas-del-toro": {}, + "dunas-de-maspalomas": {}, + "\u00e5re": {}, + "goiania": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "santa-elena-province": {}, + "puntarenas-province": {}, + "s\u00e4len": {}, + "c\u1ea7u-ngang": {}, + "b\u00ecnh-thu\u1eadn": {}, + "huy\u1ec7n-l\u1eafk": {}, + "koh-rong": {}, + "haad-rin-beach": {}, + "lille": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "3" + }, + "strasbourg": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "d\u00e1dpuszta": {}, + "croatia": {}, + "siegburg": {}, + "brouwersdam": {}, + "chatham": {}, + "bi\u1ec3n-h\u1ed3": {}, + "bangli": {}, + "karang-asem": {}, + "padangbai": {}, + "uluwatu": {}, + "dili": {}, + "pak-nam-pran": {}, + "south-korea": {}, + "pranburi-beach": {}, + "altenmarkt-im-pongau": {}, + "alexandria-governorateegypt": {}, + "marsa-alam": {}, + "schliersee": {}, + "sankt-peter-ording": {}, + "boom": {}, + "valmorel": {}, + "oostvoorne": {}, + "new-south-wales": {}, + "queensland": {}, + "northern-territory": {}, + "komodo": {}, + "pulau-perhentian-besar": {}, + "qesm-hurghada": {}, + "pacific-coast-highway": {}, + "napa-valley": {}, + "mesa-verde-national-park": {}, + "canyon-de-chelly-national-monument": {}, + "grand-canyon-national-park": {}, + "hlavn\u00ed-m\u011bsto-praha": {}, + "sequoia-national-park": {}, + "reit-im-winkl": {}, + "lake-powell": {}, + "arches-national-park-entrance-station": {}, + "le-touquet": {}, + "cayo-guillermo": {}, + "punta-cana": {}, + "balatonkenese": {}, + "corvara": {}, + "minsk": {}, + "ospitaletto": {}, + "arad": {}, + "coventry": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "varna": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "great-yarmouth": {}, + "la-yole-rouge": {}, + "looe": {}, + "sarzeau": {}, + "hillhead": {}, + "cheddar-gorge": {}, + "wales": {}, + "lanzarote": {}, + "salou": {}, + "belfast": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "bengaluru": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "baku": {}, + "jeju-do": {}, + "durban": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "jeffrey's-bay": {}, + "jeffreys-bay": {}, + "scottburgh": {}, + "kruger-park": {}, + "mbabane": {}, + "port-elizabeth": {}, + "komatipoort": {}, + "kang": {}, + "maputo": {}, + "heilbron": {}, + "albuquerque": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "makati": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "aomori-prefecture": {}, + "province-of-lucca": {}, + "orange-county": {}, + "kyoto-prefecture": {}, + "nara-prefecture": {}, + "thiruvananthapuram": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "2" + }, + "kigali-city": {}, + "azores": {}, + "bavaria": {}, + "saarbr\u00fccken": {}, + "weligama": {}, + "tissamaharama": {}, + "nuwara-eliya-district": {}, + "sigiriya": {}, + "anuradhapura": {}, + "nyaungshwe": {}, + "naypyidaw": {}, + "mawlamyine": {}, + "hpa-an": {}, + "koh-rong-samloem-\u1780\u17c4\u17c7\u179a\u17c9\u17bb\u1784\u179f\u1793\u17d2\u179b\u17b9\u1798": {}, + "bu\u00f4n-ma-thu\u1ed9t": {}, + "phong-n\u1eabm": {}, + "vinh": {}, + "hamilton": {}, + "mulhouse": {}, + "tolmin": {}, + "bled": {}, + "pula": {}, + "rab": {}, + "senj": {}, + "ostend": {}, + "lang-tengah-island": {}, + "kuala-terengganu": {}, + "gerik": {}, + "big-summit-prairie": {}, + "bellwald": {}, + "uttendorf": {}, + "zell": {}, + "san-jos\u00e9-province": {}, + "guadalajara": {}, + "ko-lan": {}, + "lembongan": {}, + "wuhan": { + "hospital_score": "5", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "dali": {}, + "shangri-la-city": {}, + "lijiang": {}, + "kunming": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "san-marino": {}, + "toulon": {}, + "kreuzlingen": {}, + "konstanz": {}, + "ko-lanta-district": {}, + "puerto-vallarta": {}, + "charlotte": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "deventer": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "taghazout": {}, + "playa-d'en-bossa-(ibiza)": {}, + "corfu": {}, + "chandigarh": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "2" + }, + "amritsar": {}, + "ranthambore-tiger-reserve": {}, + "hucknall": {}, + "olhos-de-\u00e1gua": {}, + "heraklion": {}, + "mansfield": {}, + "pissouri": {}, + "boroy": {}, + "tvedestrand": {}, + "petaling-jaya": {}, + "yogyakarta": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "malang": {}, + "banyuwangi": {}, + "nara-shi": {}, + "bandung": {}, + "ipoh": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "ko-lipe": {}, + "mataram": {}, + "velbert": {}, + "gyeongju-si": {}, + "girona": {}, + "calama": {}, + "uyuni-salt-flat": {}, + "copacabana": {}, + "juliaca": {}, + "riohacha": {}, + "mazatlan": {}, + "hradec-kraloveczech-republic": {}, + "neuhausen-ob-eck": {}, + "hradec-kralove": {}, + "sunny-beach": {}, + "siesta-key": {}, + "belek-belediyesi": {}, + "leeuwarden": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "ross": {}, + "palmerston-north": {}, + "raglan": {}, + "den\u00e9e": {}, + "ibiza": {}, + "h\u1ed9i-an": {}, + "vietnam": {}, + "ballst\u00e4dt": {}, + "santa-monica": {}, + "estonia": {}, + "hu\u1ebf": {}, + "sayulita": {}, + "pokhara-lakeside": {}, + "w\u00f6rthersee": {}, + "puerto-galera": {}, + "tamarindo": {}, + "thessaloniki": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "avignon": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "santa-catalina": {}, + "del-coco-beach": {}, + "playas-del-coco": {}, + "yekaterinburg": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "bialystok": {}, + "liberia": {}, + "asuncion": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "colonia-department": {}, + "antarctica": {}, + "juneau": {}, + "king-salmon": {}, + "brasilia": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "miami-international-airport": {}, + "thailand": {}, + "brazil": {}, + "poland": {}, + "florida": {}, + "slovenia": {}, + "morocco": {}, + "turkey": {}, + "tartu": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "puerto-varas": {}, + "australia": {}, + "japan": {}, + "laos": {}, + "india": {}, + "metropolitan-city-of-naples": {}, + "italy": {}, + "calais": {}, + "ireland": {}, + "state-of-rio-de-janeiro": {}, + "belgium": {}, + "mae-hong-son": {}, + "shenyang": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "dandong": {}, + "sinuiju": {}, + "py\u014fngs\u014fng": {}, + "harbin": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "queretaro": {}, + "lakeland": {}, + "guiyang": {}, + "perth": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "chongqing": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "gurgaon": {}, + "israel": {}, + "meteora": {}, + "myanmar": {}, + "aeolian-islands": {}, + "malta": {}, + "cornwall": {}, + "iguazu-national-park": {}, + "bolivia": {}, + "peru": {}, + "ecuador": {}, + "cuba": {}, + "el-salvador": {}, + "honduras": {}, + "guatemala": {}, + "belize": {}, + "piedras-negras-municipality": {}, + "indianapolis": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "moj\u00e1car": {}, + "st-malo": {}, + "road-town": {}, + "saint-peter": {}, + "majorca": {}, + "mayrhofen": {}, + "browns-club": {}, + "albufeira": {}, + "tulum": {}, + "salinas-canton": {}, + "ciudad-de-guayaquil": {}, + "progreso": {}, + "merida": {}, + "whistler": {}, + "kailua-kona": {}, + "kauai": {}, + "carpinteria": {}, + "province-of-ascoli-piceno": {}, + "zermatt": {}, + "bend": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "the-bahamas": {}, + "luanda": {}, + "miyazaki-shi": {}, + "uyuni-(thola-pampa)": {}, + "grindelwald": {}, + "kittil\u00e4": {}, + "pontresina": {}, + "koya-cho": {}, + "dinant": {}, + "vermont": {}, + "montauk": {}, + "graz": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "benguela": {}, + "huambo": {}, + "zhongli-district": {}, + "changhua-city": {}, + "saint-louis": {}, + "nantes": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "saint-jean-de-monts": {}, + "ischia": {}, + "hakuba": {}, + "kata-beach": {}, + "khao-lak": {}, + "\u0e2d\u0e38\u0e17\u0e22\u0e32\u0e19\u0e41\u0e2b\u0e48\u0e07\u0e0a\u0e32\u0e15\u0e34\u0e40\u0e02\u0e32\u0e2a\u0e01-(khao-sok-national-park)": {}, + "panama": {}, + "padova": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "crevalcore": {}, + "arkassa": {}, + "koh-larn-riviera": {}, + "barranquilla": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "2" + }, + "guatap\u00e9": {}, + "aguascalientes": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "2" + }, + "guanajuato": {}, + "bantam-lake": {}, + "rogoznica": {}, + "savudrija-beach": {}, + "puebla": {}, + "vi\u00f1ales": {}, + "osijek": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "don-det": {}, + "skopje": {}, + "coimbra": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "3", + "peace_score": "4" + }, + "sarajevo": {}, + "punta-arenas": {}, + "cork": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "4" + }, + "klaipeda": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "\u0161ilut\u0117": {}, + "neringa": {}, + "nusa-penida": {}, + "pryp'yat'": {}, + "coslada": {}, + "santa-teresa": {}, + "rovaniemi": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "phu-quoc": {}, + "hartford": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "amalfi": {}, + "monterosso-al-mare": {}, + "cincinnati": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "storrs": {}, + "romania": {}, + "lidk\ufffdping": {}, + "koh-yao-noi": {}, + "thira": {}, + "nan": {}, + "surat-thani": {}, + "santiago-del-compostela": {}, + "brunei": {}, + "st.-louis": {}, + "menlo-park": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "entebbe": {}, + "newark": {}, + "palo-alto": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "cleveland": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "oakland": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "mainz": {}, + "viernheim": {}, + "luton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "cotonou": {}, + "salamanca": {}, + "lecce": {}, + "torres-del-paine-national-park": {}, + "dakhla-airport": {}, + "grengiols": {}, + "spl\u00fcgen": {}, + "bari": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "bohinj": {}, + "durnal": {}, + "brenta-group": {}, + "st.-gallen": {}, + "badajoz": {}, + "fairfax": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "medford": { + "hospital_score": "0", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "lyon": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "krasnodar": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "saratov": { + "hospital_score": "0", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "1" + }, + "bar": {}, + "lovelock": {}, + "les-3-vall\u00e9es": {}, + "les-arcs-3200": {}, + "tignes": {}, + "hiroshima": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "nevada-city": {}, + "guerneville": {}, + "west-hollywood": {}, + "les-m\u00e9nuires": {}, + "les-arcs": {}, + "mo\u00fbtiers": {}, + "lake-tahoe": {}, + "jan-juc": {}, + "manly": {}, + "nelson-bay": {}, + "port-macquarie": {}, + "coffs-harbour": {}, + "yamba": {}, + "ballina": {}, + "le-bourg-d'oisans": {}, + "merano": {}, + "brides-les-bains": {}, + "calabernardo": {}, + "syracuse": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "catania": {}, + "centuripe": {}, + "malfa": {}, + "ostuni": {}, + "istanbul-atat\u00fcrk-airport": {}, + "stanstead": {}, + "south-lake-tahoe": {}, + "elko": {}, + "jackson": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "west-yellowstone": {}, + "helena": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "whitefish": {}, + "kingston": {}, + "spokane": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "mount-buller": {}, + "monkey-island": {}, + "c\u00e1t-b\u00e0": {}, + "ellensburg": {}, + "lake-crescent-lodge": {}, + "north-bend": {}, + "grand-canyon": {}, + "navajo-national-monument": {}, + "bluff": {}, + "monticello": {}, + "santa-fe": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "palo-duro-canyon": {}, + "hot-springs": {}, + "memphis": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "crossville": {}, + "asheville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "parsons": {}, + "ohiopyle": {}, + "lancaster": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "m\u00e9ribel": {}, + "ocho-rios": {}, + "boston-beach": {}, + "duncans": {}, + "oracabessa": {}, + "hunter": {}, + "val-thorens": {}, + "obergurgl---hochgurgl-ski-area": {}, + "sankt-anton-am-arlberg": {}, + "greenport": {}, + "bormio": {}, + "lake-como": {}, + "bagn\u00e8res-de-luchon": {}, + "arcizans-avant": {}, + "canfranc-estaci\u00f3n": {}, + "monte-gordo": {}, + "douro-valley": {}, + "fire-island": {}, + "shelter-island": {}, + "nadi": {}, + "lavers-hill": {}, + "bad-gastein": {}, + "postira": {}, + "aspen": {}, + "park-city": {}, + "bright": {}, + "morro-de-s\u00e3o-paulo": {}, + "santos": {}, + "iwade": {}, + "herndon": {}, + "como": {}, + "san-andr\u00e9s": {}, + "pereira": {}, + "villahermosa": {}, + "palenque": {}, + "caye-caulker": {}, + "timisoara": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "montanita": {}, + "cuenca": { + "hospital_score": "0", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "thakhek": {}, + "san-luis-province": {}, + "ayia-napa": {}, + "c\u00e1t-b\u00e0-island": {}, + "kazantatarstan": {}, + "budva": {}, + "zhangjiajie": {}, + "benares": {}, + "daegu": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "luxembourg": {}, + "aups": {}, + "hranice": {}, + "la-roche-en-ardenne": {}, + "bonn": {}, + "stockbridge": {}, + "starrucca": {}, + "bethlehem": {}, + "netiv-halamed-he": {}, + "zichron-yaakov": {}, + "braamt": {}, + "lublin": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "sangalaki-island": {}, + "puerto-escondido": {}, + "big-sky": {}, + "elkhorn": {}, + "faroe-islands": {}, + "kennebunkport": {}, + "kittery": {}, + "lake-atitl\u00e1n": {}, + "ometepe": {}, + "cabo-san-lucas": {}, + "socorro-island": {}, + "todos-santos": {}, + "grand-cayman": {}, + "s\u00e3o-miguel-island": {}, + "roat\u00e1n": {}, + "utila": {}, + "veysonnaz": {}, + "cavtat": {}, + "stuttgart": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "colonia-independencia": {}, + "mek'ele": {}, + "amhara-region": {}, + "cafayate": {}, + "catamarca-province": {}, + "villa-maria": {}, + "durazno": {}, + "san-roque": {}, + "paysand\u00fa": {}, + "sarand\u00ec": {}, + "drogheda": {}, + "laytown": {}, + "tt.-c\u1ea7n-th\u1ea1nh": {}, + "ba-ria---vung-tau": {}, + "h\u1ed3-tr\u1ecb-an": {}, + "encarnacion": {}, + "kh\u00e1ch-s\u1ea1n-thi\u00ean-kim": {}, + "r\u1ea1ch-gi\u00e1": {}, + "can-tho": {}, + "tp.-v\u0169ng-t\u00e0u": {}, + "durazno-department": {}, + "carlos-casares": {}, + "general-roca": {}, + "san-carlos-de-bariloche": {}, + "esquel": {}, + "perito-moreno": {}, + "bajo-caracoles": {}, + "el-chalt\u00e9n": {}, + "el-calafate": {}, + "puerto-natales": {}, + "r\u00edo-gallegos": {}, + "puerto-san-juli\u00e1n": {}, + "comodoro-rivadavia": {}, + "bah\u00eda-blanca": {}, + "santana-do-livramento": {}, + "salem": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "marietta": {}, + "akron": {}, + "jamestown": {}, + "oglesby": {}, + "lafayette": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "bedford": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "shaoxing": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "yongkang": {}, + "qiandaohu": {}, + "dexing": {}, + "huangshan": {}, + "hangzhou": { + "hospital_score": "5", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "citrusdal": {}, + "klawer": {}, + "seeheim": {}, + "l\u00fcderitz": {}, + "solitaire": {}, + "usakos": {}, + "grootfontein": {}, + "rundu": {}, + "gweta": {}, + "nata": {}, + "kasane": {}, + "binga": {}, + "kariba": {}, + "lusaka": {}, + "serenje": {}, + "isoka": {}, + "mbuyuni": {}, + "mkwaja": {}, + "tanga": {}, + "kibosho": {}, + "namanga": {}, + "voi": {}, + "tiwi": {}, + "hale": {}, + "dar-es-salaam": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "iringa": {}, + "karonga": {}, + "bana": {}, + "chirombo": {}, + "blantyre": {}, + "tete": {}, + "chimoio": {}, + "tofo-beach": {}, + "macia": {}, + "piet-retief": {}, + "clarens": {}, + "rafolatsane": {}, + "roma": {}, + "aliwal-north": {}, + "grahamstown": {}, + "ouplaas": {}, + "betty's-bay": {}, + "xishanzhen": {}, + "talek": {}, + "musoma": {}, + "mwanza": {}, + "muyinga": {}, + "bujumbura": {}, + "mbarara": {}, + "kampala": {}, + "kisumu": {}, + "hohhot": {}, + "erenhot": {}, + "zhangjiakou": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "binzhou": {}, + "huai'an": {}, + "xishuangbanna": {}, + "luang-namtha": {}, + "pak-prieo": {}, + "chumphon": {}, + "don-sak": {}, + "ang-thong": {}, + "tak-ok": {}, + "phu-sang": {}, + "pu'er": {}, + "honghe": {}, + "bose": {}, + "nanning": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "hengyang": {}, + "nanchang": {}, + "changsha": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "suzhou": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "monastir": {}, + "montb\u00e9liard": {}, + "rennes": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "albi": {}, + "biel/bienne": {}, + "besan\u00e7on": {}, + "portsmouth": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "belfort": {}, + "haute-corse": {}, + "atlantic-ocean": {}, + "corbara": {}, + "boise": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "siem-reap-province": {}, + "saransk": {}, + "anapa": {}, + "podgorica": {}, + "ohrid": {}, + "veliko-tarnovo": {}, + "plovdiv": {}, + "andros": {}, + "amorgos": {}, + "lombok-utara": {}, + "medan": {}, + "haleiwa": {}, + "san-rafael": {}, + "tahoe-city": {}, + "aptos": {}, + "san-jose": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "inverness": {}, + "fort-william": {}, + "kinlochleven": {}, + "isle-of-eigg": {}, + "mallaig": {}, + "vatican-city": {}, + "posola": {}, + "flensburg": {}, + "trassenheide": {}, + "mont-blanc": {}, + "breckenridge": {}, + "alcoutim": {}, + "sintra": {}, + "ballarat": {}, + "torres-del-paine": {}, + "coroico": {}, + "puno": {}, + "myitkyina": {}, + "indawgyi-lake": {}, + "annapurna-circuit": {}, + "dakar": {}, + "cervera": {}, + "naxos": {}, + "platanias": {}, + "agios-nikolaos": {}, + "ierapetra": {}, + "matala-beach": {}, + "gazi": {}, + "yerevan": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "hilversum": {}, + "andorra-la-vella": {}, + "agliana": {}, + "nikko-shi": {}, + "takayama-mura": {}, + "shirakawa-mura": {}, + "andorra": {}, + "praia": {}, + "sao-filipe": {}, + "sal": {}, + "santiago-de-compostela": {}, + "praia-de-montalvo": {}, + "vigo": {}, + "a-coruna": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "ortigueira": {}, + "ribadeo": {}, + "arenas-de-cabrales": {}, + "gij\u00f3n": {}, + "picos-de-europa": {}, + "parroquia-de-ajo": {}, + "cagliari": { + "hospital_score": "4", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "bodenw\u00f6hr": {}, + "regensburg": {}, + "isla-grande": {}, + "minca": {}, + "gili-meno": {}, + "pulau-gili-gede": {}, + "icaria": {}, + "koufonisia": {}, + "meerhout": {}, + "aachen": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "lido-di-jesolo": {}, + "srebrenica": {}, + "banja-luka": {}, + "cheltenham": {}, + "jeju-si": {}, + "liverpool": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "pune": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "1", + "peace_score": "2" + }, + "pushkar-lake-\u092a\u0941\u0937\u094d\u0915\u0930-\u0938\u0930\u094b\u0935\u0930": {}, + "puerto-de-santa-maria-cadiz": {}, + "bielefeld": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "okinawa-city": {}, + "arga": {}, + "surat": {}, + "genoa": {}, + "lucerne": {}, + "united-states-virgin-islands": {}, + "turks-and-caicos-islands": {}, + "kansas-city": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "columbia": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "cozumel": {}, + "jungfraujoch": {}, + "guangdong": {}, + "jericoacoara": {}, + "brno": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "4" + }, + "kyiv-international-airport-(zhuliany)": {}, + "beijing-capital-international-airport": {}, + "ningbo": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "yiwu": {}, + "fort-collins": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "raleigh": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "grand-rapids": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "south-bend": {}, + "fremont": {}, + "laguna-beach": {}, + "union-glacier": {}, + "concord": {}, + "cumberland-county": {}, + "hood-river": {}, + "mah\u00e9": {}, + "panajachel": {}, + "amman": {}, + "jarabacoa": {}, + "south-padre-island-drive": {}, + "ouanaminthe-arrondissement": {}, + "durango": {}, + "devon": {}, + "galle-district": {}, + "hikkaduwa": {}, + "eggenfelden": {}, + "kaiserslautern": {}, + "suva": {}, + "larnaca": { + "hospital_score": "0", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "st.-paul's-bay": {}, + "san-jos\u00e9-del-cabo": {}, + "bermuda": {}, + "gwangju": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "scranton": {}, + "palisades-park": {}, + "burlington": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "joshua-tree": {}, + "columbus": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ko-yao-yai": {}, + "toowoomba": {}, + "phitsanulok": {}, + "niigata-prefecture": {}, + "qatar": {}, + "swinoujscie": {}, + "bodo": {}, + "dominican-republic": {}, + "costa-rica": {}, + "jamaica": {}, + "mexico": {}, + "austria": {}, + "switzerland": {}, + "germany": {}, + "bastimentos": {}, + "jaco-beach": {}, + "bejuco-beach": {}, + "holetown": {}, + "flamingo": {}, + "pompeii": {}, + "san-juan": {}, + "yabucoa": {}, + "san-pedro-de-atacama": {}, + "antofagasta": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "4" + }, + "savannah": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "evans": {}, + "riomaggiore": {}, + "bretenoux": {}, + "anchorage": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "4", + "peace_score": "3" + }, + "garmisch-partenkirchen": {}, + "cuxhaven": {}, + "haltwhistle": {}, + "isle-of-islay": {}, + "galway": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "shkod\u00ebr": {}, + "plitvi\u010dka-jezera": {}, + "koper": {}, + "fort-mcmurray": {}, + "elk-point": {}, + "yorkton": {}, + "thunder-bay": {}, + "sault-ste.-marie": {}, + "nominingue": {}, + "moncton": {}, + "cape-breton-island": {}, + "channel-port-aux-basques": {}, + "gros-morne-national-park": {}, + "st.-john's": {}, + "san-pedro-sula": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "pe\u00f1a-blanca": {}, + "moyogalpa": {}, + "correos-de-costa-rica": {}, + "mindo-lago": {}, + "ba\u00f1os-de-agua-santa": {}, + "ibarra": {}, + "stani\u0107i": {}, + "portrush": {}, + "kaunas": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "scharnhausen": {}, + "raseiniai": {}, + "koh-phangan": {}, + "manuel-antonio": {}, + "covilh\u00e3": {}, + "mafra": {}, + "alkmaar": {}, + "epe": {}, + "limassol": {}, + "s\u00e3o-marcos-da-serra": {}, + "beja": {}, + "m\u00e9rtola": {}, + "charleston": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "south-africa": {}, + "sierra-leone": {}, + "jordan": {}, + "nuweiba": {}, + "eilat": {}, + "niagara-falls": {}, + "haridwar": {}, + "canazei": {}, + "sri-lanka": {}, + "stintino": {}, + "sassari": {}, + "bacalar": {}, + "bantayan-island": {}, + "bordeaux": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "brest": {}, + "lincolnshire": {}, + "new-hope": {}, + "saratoga": {}, + "sleaford": {}, + "oakham": {}, + "ewerby": {}, + "folkestone": {}, + "delray-beach": {}, + "bury-saint-edmunds": {}, + "milton-keynes": {}, + "valrico": {}, + "louny": {}, + "karlovy-vary": {}, + "gloucester": {}, + "bury-st-edmunds": {}, + "beverly-hills": {}, + "grimsby": {}, + "windsor": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "4" + }, + "denver-city": {}, + "preston": {}, + "harrisonburg": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "darmstadt": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "virginia-beach": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "laie": {}, + "alushta": {}, + "aqaba": {}, + "wadi-musa": {}, + "acre": {}, + "haifa": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "2" + }, + "rosh-hanikra": {}, + "empuriabrava": {}, + "roses": {}, + "figueres": {}, + "pitlochry": {}, + "freiburg": {}, + "giessen": {}, + "pag": {}, + "new-york": {}, + "gozo": {}, + "ercolano": {}, + "genga": {}, + "borgo-maggiore": {}, + "ciampino": {}, + "saxon-switzerland-national-park": {}, + "arendal": {}, + "munich-airport": {}, + "copenhagen-airport": {}, + "oslo-airport": {}, + "muir-woods-national-monument": {}, + "stockholm-arlanda-airport": {}, + "osl": {}, + "ponte-alc\u00e1cer-do-sal": {}, + "aljezur": {}, + "lagoa": {}, + "vila-real-de-santo-ant\u00f3nio": {}, + "rio-maior": {}, + "arn": {}, + "lillehammer": {}, + "lom": {}, + "jotunheimen-national-park": {}, + "lesja": {}, + "trollstigen-utsiktspunkt": {}, + "geiranger": {}, + "strynefjellet": {}, + "loen": {}, + "gloppen": {}, + "gaular": {}, + "balestrand": {}, + "jondal": {}, + "folgefonna-nasjonalpark": {}, + "preikestolen": {}, + "peniche": {}, + "castelo-branco": {}, + "idanha-a-nova": {}, + "biograd-na-moru": {}, + "zaglav-bay": {}, + "vrgada": {}, + "murter": {}, + "kornati-national-park": {}, + "nature-park-tela\u0161\u0107ica": {}, + "sali": {}, + "zaglav": {}, + "fujiyoshida-shi": {}, + "kobe": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "kristiansand": {}, + "rotorua": {}, + "taupo": {}, + "picton": {}, + "tasman-district": {}, + "nelson": {}, + "westport": {}, + "west-coast-region": {}, + "otago-region": {}, + "southland-region": {}, + "kollam": {}, + "madurai": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "qormi": {}, + "bru": {}, + "skiathos": {}, + "santa-cruz-island": {}, + "san-crist\u00f3bal-island": {}, + "puerto-ayora": {}, + "puerto-villamil": {}, + "trinidad": {}, + "panama-citypanama": {}, + "bastasi": {}, + "plu\u017eine": {}, + "herceg-novi": {}, + "erez": {}, + "chattahoochee-hills": {}, + "sandefjord": {}, + "hyderabad": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "kul": {}, + "abang": {}, + "d\u00edli": {}, + "pemenang": {}, + "karangasem-sub-district": {}, + "chiang-dao": {}, + "ban-tai": {}, + "thai-mueang": {}, + "takua-pa": {}, + "ella": {}, + "unawatuna": {}, + "galle": {}, + "mysuru": {}, + "hampi": {}, + "anjuna": {}, + "arambol": {}, + "satna": {}, + "narita": {}, + "hirtshals": {}, + "auswitch": {}, + "batam": {}, + "ewr": {}, + "napa": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ventura": {}, + "vallejo": {}, + "ams": {}, + "opo": {}, + "guimar\u00e3es-municipality": {}, + "braga": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "tabua\u00e7o": {}, + "lamego-municipality": {}, + "tomar-municipality": {}, + "batalha": {}, + "zagora": {}, + "parque-natural-de-sintra-cascais": {}, + "farol-de-sagres": {}, + "cabo-sard\u00e3o": {}, + "praia-de-vila-nova-de-milfontes": {}, + "sines": {}, + "set\u00fabal": {}, + "torres-vedras": {}, + "\u00f3bidos": {}, + "stn": {}, + "maui": {}, + "ankara": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "tanabe": {}, + "niseko-cho": {}, + "bellingham": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "anaheim": {}, + "canada": {}, + "texas": {}, + "san-salvador": {}, + "huntsville": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "pontevedra": {}, + "muscle-shoals": {}, + "astana": {}, + "san-vito-lo-capo": {}, + "puerto-moyogalpa": {}, + "ciudad-dario": {}, + "playa-esterillos-oeste": {}, + "bahia-ballena": {}, + "": {}, + "chontales-department": {}, + "le-havre": {}, + "santo-domingo-este": {}, + "nevada": {}, + "bormes-les-mimosas": {}, + "coachella": {}, + "takayama": {}, + "syros": {}, + "tortola": {}, + "chetumal": {}, + "acapulco": {}, + "tijuana": {}, + "tampico": {}, + "pilsen": {}, + "mannheim": {}, + "kailua": {}, + "rajasthan": {}, + "orachha": {}, + "khajuraho": {}, + "xochitepec-municipality": {}, + "naoussa": {}, + "la-orotava": {}, + "dayton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bah\u00eda-solano-(mutis)": {}, + "renton": {}, + "tempe": {}, + "mt.-fuji": {}, + "olzheim": {}, + "rust": {}, + "lausanne": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "colmar": {}, + "coldrano": {}, + "mamer": {}, + "ringk\u00f8bing": {}, + "kayl": {}, + "rabat": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "la-thuile": {}, + "pr\u00e9-saint-didier": {}, + "lake-district-national-park": {}, + "jinju-si": {}, + "ajaccio": {}, + "sarasota": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "grand-bahama-island": {}, + "key-west": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "arluno": {}, + "kiruna": {}, + "gujo-hachiman": {}, + "jeonju-si": {}, + "amman-governorate": {}, + "la-plagne": {}, + "loul\u00e9": {}, + "tauranga": {}, + "tekapo": {}, + "wanaka": {}, + "nazca": {}, + "sucre": {}, + "easter-island": {}, + "pichilemu": {}, + "pampanga": {}, + "kanazawa": {}, + "cameron-highlands": {}, + "uz\u00e8s": {}, + "metropolitan-city-of-bari": {}, + "h\u00f6llviken": {}, + "cavite-city": {}, + "banaue": {}, + "sagada": {}, + "saas-fee": {}, + "bruce-peninsula-national-park": {}, + "mont-tremblant": {}, + "hart-im-zillertal": {}, + "skye": {}, + "marina": {}, + "yosemite-village": {}, + "shady-cove": {}, + "kaohsiung-city": {}, + "dulan-county": {}, + "general-santos": {}, + "v\u00e9zac": {}, + "narbonne": {}, + "metropolitan-city-of-genoa": {}, + "macei\u00f3": {}, + "los-cabos-municipality": {}, + "\u0161ekovi\u0107i": {}, + "plymouth": {}, + "tuzla": {}, + "matanzas-province": {}, + "north-berwick": {}, + "trieste": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "3" + }, + "vodice": {}, + "carlisle": {}, + "st.-p\u00f6lten": {}, + "rovinj": {}, + "constanta": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "pristina-district": {}, + "stavros": {}, + "osaka-prefecture": {}, + "weimar": {}, + "stralsund": {}, + "freiburg-im-breisgau": {}, + "oberstdorf": {}, + "rostock": {}, + "g\u00f6ttingen": {}, + "lahinch": {}, + "trento": { + "hospital_score": "0", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "2", + "peace_score": "3" + }, + "sardinia": {}, + "ring-of-kerry": {}, + "bundoran": {}, + "bourdeaux": {}, + "glastonbury": {}, + "ballycotton": {}, + "hildesheim": {}, + "rochester": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "new-delhi": {}, + "fatehpur-sikri-old": {}, + "ithaca": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "zipolite": {}, + "pammukale": {}, + "cappadocia": {}, + "caen": {}, + "longford": {}, + "gainesville": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "herr\u00e4ng": {}, + "taroko-national-park": {}, + "killarney": {}, + "tupiza": {}, + "potos\u00ed": {}, + "la-higuera": {}, + "isla-del-sol": {}, + "cabanaconde-district": {}, + "barranca-district": {}, + "trujillo": {}, + "mancora": {}, + "isabela": {}, + "ambato-canton": {}, + "quilotoa": {}, + "latacunga": {}, + "puerto-l\u00f3pez": {}, + "canoa": {}, + "mompiche": {}, + "mindo-canopy-adventure": {}, + "ipiales": {}, + "san-agust\u00edn": {}, + "villavieja": {}, + "manizales": {}, + "filandia": {}, + "salento": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "2" + }, + "providencia-y-santa-catalina-(santa-isabel)": {}, + "pontevedra-province": {}, + "cambados": {}, + "faro-district": {}, + "el-hierro": {}, + "ponte-de-lima": {}, + "aveiro": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "evora": {}, + "kerala": {}, + "kapas-island": {}, + "terengganu": {}, + "banda-aceh": {}, + "we-island": {}, + "philippines": {}, + "langkawi-island": {}, + "senaru": {}, + "kupang": {}, + "timor-leste": {}, + "ponta-delgada": {}, + "benidorm": {}, + "la-manga": {}, + "miravet": {}, + "zorritos": {}, + "kagawa-prefecture": {}, + "hokkaid\u014d": {}, + "nagasaki-prefecture": {}, + "fukushima-prefecture": {}, + "new-jersey": {}, + "saitama-prefecture": {}, + "sakai-city": {}, + "chillicothe": {}, + "sitges": {}, + "ikebukuro": {}, + "xiamen": {}, + "trumbull": {}, + "st.-thomas": {}, + "guadeloupe": {}, + "basingstoke": {}, + "tuxtla-guti\u00e9rrez": {}, + "fort-myers": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "mysore": {}, + "vi\u00f1a-del-mar": {}, + "marbella": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "kenting": {}, + "okinawa-island": {}, + "sunshine-coast": {}, + "red-hill": {}, + "bunbury": {}, + "fremantle": {}, + "mcleod-ganj": {}, + "camden": {}, + "greymouth": {}, + "waitakere": {}, + "eloy": {}, + "telegraph-cove": {}, + "maribor": {}, + "fredericksburg": {}, + "kutaisi": {}, + "poprad": {}, + "patagonia": {}, + "north-carolina": {}, + "provincetown": {}, + "seririt": {}, + "rincon": {}, + "prizren": {}, + "prishtina": {}, + "rasno": {}, + "shimizu": {}, + "san-antonio": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "west-palm-beach": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "1", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "burning-man-festival": {}, + "courchevel-moriond-1650": {}, + "annecy": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "beaune": {}, + "rhodope-mountains": {}, + "hossegor": {}, + "los-gatos": {}, + "providenciales": {}, + "r\u00e2mnicu-v\u00e2lcea": {}, + "v\u00e2lcea-county": {}, + "phayao": {}, + "lampang": {}, + "m\u00e1ncora-district": {}, + "beacon": {}, + "sepang": {}, + "bloomington": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "setagaya": {}, + "leyte": {}, + "dumaguete": {}, + "mactan": {}, + "hilo": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bansko": {}, + "crown-heights": {}, + "chelmsford": {}, + "milltown-malbay": {}, + "jinhua": {}, + "holyhead": {}, + "colorado-springs": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "naxxar": {}, + "lysice": {}, + "mikulov": {}, + "tel\u010d": {}, + "sinio": {}, + "san-raffaele-cimena": {}, + "\u017ediar": {}, + "angoul\u00eame": {}, + "\u010desk\u00fd-krumlov": {}, + "buleleng": {}, + "magelang": {}, + "semarang": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "taormina": {}, + "las-cruces": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "tam-k\u1ef3": {}, + "santa-clara": {}, + "candi-dasa": {}, + "burgos": {}, + "pamplona": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "raxendorf": {}, + "ko-phangan": {}, + "guillaumes": {}, + "taipeitaiwan": {}, + "xian": {}, + "lodz": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "3" + }, + "yokohama": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "mexico-citymexico": {}, + "falls-village": {}, + "danville": {}, + "stuart": {}, + "salinas": {}, + "chios": {}, + "sankt-wolfgang": {}, + "salisbury": {}, + "roanoke": {}, + "connecticut": {}, + "fourka": {}, + "black-forest": {}, + "cayman-islands": {}, + "united-states": {}, + "danang": {}, + "javea": {}, + "triebel/vogtl.": {}, + "uelsen": {}, + "tully": {}, + "cashmere": {}, + "k\u00fchlungsborn": {}, + "messina": {}, + "kotor-municipality": {}, + "moganshan-lodge": {}, + "taoyuan-district": {}, + "port-stephens": {}, + "cotacachi": {}, + "patras": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ancona": {}, + "liechtenstein": {}, + "uerikon": {}, + "cozumel-island": {}, + "belize-city": {}, + "ontario": {}, + "western-springs": {}, + "gold-beach": {}, + "krong-battambang": {}, + "aurland": {}, + "fresvik-\u00f8vre": {}, + "stryn": {}, + "aalesund": {}, + "british-columbia": {}, + "hamilton-island": {}, + "weggis": {}, + "arles": {}, + "towcester": {}, + "pesaro": {}, + "khon-kaen": {}, + "savannakhet-province": {}, + "budoni": {}, + "saint-kitts": {}, + "kumlinge": {}, + "ruidoso": {}, + "it\u014d": {}, + "pomarance": {}, + "aalborg": {}, + "valloire": {}, + "kingston-upon-thames": {}, + "siargao-island": {}, + "ushaia": {}, + "tena": {}, + "nijeveen": {}, + "lobitos-district": {}, + "clermont-ferrand": {}, + "le-puy-en-velay": {}, + "feurs": {}, + "sanibel-island": {}, + "st.-petersburg": {}, + "gap": {}, + "v\u1ecbnh-h\u1ea1-long-(ha-long-bay)": {}, + "\u0111i\u1ec7n-d\u01b0\u01a1ng": {}, + "le-grau-du-roi": {}, + "marmande": {}, + "sweden": {}, + "iceland": {}, + "new-zealand": {}, + "indonesia": {}, + "czech-republic": {}, + "grand-cayman-drive": {}, + "bay-islands": {}, + "nobeoka-shi": {}, + "beppu-shi": {}, + "\u9ed2\u5ddd\u6e29\u6cc9-(kurokawa-hotspring)": {}, + "kumamoto": {}, + "shimabara-shi": {}, + "himeji-shi": {}, + "\u767d\u5ddd\u90f7-(shirakawa-go)": {}, + "lukang": {}, + "monterey": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "hallstatt": {}, + "nanjing": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "zhengzhou": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "luoyang": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "xinxiang": {}, + "qufu": {}, + "tai'an": {}, + "penglai": {}, + "jinan": { + "hospital_score": "5", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "dalian": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "qinhuangdao": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "chengde": {}, + "leshan": {}, + "kaili-city": {}, + "jilin-city": {}, + "tianjin": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "ballenstedt": {}, + "magdeburg": {}, + "leiden": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "cochem": {}, + "trier": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "ouddorp": {}, + "alphen-aan-den-rijn": {}, + "breda": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "4" + }, + "chorv\u00e1tsky-grob": {}, + "leiderdorp": {}, + "svolv\u00e6r": {}, + "banjul": {}, + "monteverde-cloud-forest": {}, + "princeton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "monterosso": {}, + "nava": {}, + "foz": {}, + "mont-saint-michel-abbey": {}, + "falset": {}, + "volterra": {}, + "montepulciano": {}, + "koyasan-kongobuji-temple": {}, + "locronan": {}, + "dinan": {}, + "saint-malo": {}, + "dune-of-pilat": {}, + "soorts-hossegor": {}, + "estaca-de-bares-lighthouse": {}, + "biarritz": {}, + "sarlat-la-can\u00e9da": {}, + "rocamadour": {}, + "la-roque-gageac": {}, + "beynac-et-cazenac": {}, + "p\u00e9rigueux": {}, + "doolin-cliff": {}, + "dingle": {}, + "blarney": {}, + "kinsale": {}, + "puerto-de-la-cruz": {}, + "viveiro": {}, + "praia-do-rosa": {}, + "massachusetts": {}, + "crete-region": {}, + "cephalonia": {}, + "grospierres": {}, + "angers": {}, + "penv\u00e9nan": {}, + "pornic": {}, + "combloux": {}, + "nogent-sur-seine": {}, + "guidel": {}, + "la-rochelle": {}, + "vittel": {}, + "les-sables-d'olonne": {}, + "parco-nazionale-delle-cinque-terre": {}, + "vieques": {}, + "british-virgin-islands": {}, + "santar\u00e9m": {}, + "santa-ana": {}, + "pretoria": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "erlangen": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "bridgetown": {}, + "auckland-region": {}, + "hakodate": {}, + "sitka": {}, + "pensacola-beach": {}, + "monterrey": {}, + "estes-park": {}, + "guernsey": {}, + "deadwood": {}, + "gorgona-island": {}, + "san-andr\u00e9s-and-providencia": {}, + "manzanares": {}, + "n\u00eemes": {}, + "koblenz": {}, + "\u0161ibenik": {}, + "bremen": { + "hospital_score": "4", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "m\u00fcnster": {}, + "campeche": {}, + "san-miguel-de-cozumel": {}, + "usedom": {}, + "agadir": {}, + "almer\u00eda": {}, + "hervey-bay": {}, + "airlie-beach": {}, + "sahaja-sawah-resort": {}, + "guatemala-city": {}, + "bronx": {}, + "black-rock-city-municipal-airport-(88nv)": {}, + "kos-island": {}, + "lleida": {}, + "tours": {}, + "central-coast": {}, + "freetown": {}, + "verbier": {}, + "truckee": {}, + "newburyport": {}, + "alc\u00fadia": {}, + "rusutsu": {}, + "niseko": {}, + "chitose": {}, + "atlantic-city": {}, + "glacier-national-park-of-canada": {}, + "big-white-mountain": {}, + "revelstoke": {}, + "kelowna": {}, + "col\u00f3n-island": {}, + "charlottesville": {}, + "playa-buen-hombre": {}, + "cabaretepuerto-plata-province": {}, + "cemoro-lawang": {}, + "san-miguel-de-allende": {}, + "punta-del-este": {}, + "zanzibar-town": {}, + "erg-chebbi": {}, + "la-tremblade": {}, + "piran": {}, + "fujinomiya-shi": {}, + "naoshima-cho": {}, + "takamatsu-shi": {}, + "caruaru": {}, + "recife": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "garanhuns": {}, + "petrolina": {}, + "cheonan-si": {}, + "toyama-shi": {}, + "phatthalung": {}, + "trat": {}, + "tasmania": {}, + "tannhausen": {}, + "6458": {}, + "ranalt": {}, + "langesberg": {}, + "zams": {}, + "faro-municipality": {}, + "sagres": {}, + "sousse-governorate": {}, + "farmington": {}, + "montenegro": {}, + "lake-bled": {}, + "marrakesh-tensift-el-haouz": {}, + "f\u00e8s-boulemane": {}, + "providence": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "zhuhai": {}, + "broadstairs": {}, + "quetzaltenango": {}, + "santo-domingo-province": {}, + "winchester": {}, + "mikkeli": {}, + "armonk": {}, + "ninh-b\u00ecnh": {}, + "berat": {}, + "dh\u00ebrmi-": {}, + "ohrid-municipality": {}, + "sighi\u0219oara": {}, + "sibiu": {}, + "deva": {}, + "krommenie": {}, + "bolzano": {}, + "zanzibar-north-region": {}, + "namibia": {}, + "kamanjab": {}, + "walvis-bay": {}, + "britstown": {}, + "addo-elephant-national-park": {}, + "wilderness-dunes": {}, + "agulhas": {}, + "kernville": {}, + "cienfuegos": {}, + "curitiba": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "palmas": {}, + "sidrol\u00e2ndia": {}, + "campo-grande": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "la-crosse": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "juarez": {}, + "orange": {}, + "fort-worth": {}, + "ciudad-juarez": {}, + "krong-preah-sihanouk": {}, + "islay": {}, + "chulilla": {}, + "valle-de-bravo": {}, + "chiang-mai-thailand": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "gustavus": {}, + "balangan-beach": {}, + "pulukan": {}, + "baqueira-beret-sa": {}, + "puc\u00f3n": {}, + "lacanau-oc\u00e9an": {}, + "davao": {}, + "tibet": {}, + "sochi": {}, + "sicily": {}, + "saint-martin": {}, + "uvita": {}, + "dominical-costa-rica-real-estate": {}, + "tarapoto": {}, + "rurrenabaquebeni-department": {}, + "la-paz-department": {}, + "alto-para\u00edso-de-goi\u00e1s": {}, + "liptovsk\u00fd-mikul\u00e1\u0161": {}, + "h\u00e9v\u00edz": {}, + "madonna-di-campiglio": {}, + "enschede": {}, + "hannover": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "rimini": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "san-siro-stadium": {}, + "province-of-rimini": {}, + "seceda": {}, + "san-quirico-d'orciaprovince-of-siena": {}, + "funes": {}, + "san-quirico-d'orcia": {}, + "reine": {}, + "saint-barthelemy": {}, + "sandy-ground": {}, + "expo-2015-village": {}, + "le-tofane": {}, + "monte-cristallo": {}, + "colle-santa-lucia": {}, + "tre-cime-di-lavaredo": {}, + "rifugio-scoiattoli": {}, + "black-canyon-of-the-gunnison-national-park": {}, + "bonneville-salt-flats": {}, + "grand-teton-national-park": {}, + "sturgis": {}, + "vik": {}, + "h\u00f6fn": {}, + "st\u00f6\u00f0varfj\u00f6r\u00f0ur": {}, + "m\u00fdvatn": {}, + "h\u00fasav\u00edk": {}, + "dalvik": {}, + "bor\u00f0eyri": {}, + "\u00edsafj\u00f6r\u00f0ur": {}, + "patreksfj\u00f6r\u00f0ur": {}, + "cortina-d'ampezzo": {}, + "asiago": {}, + "gouda": {}, + "gustavia": {}, + "grand-case": {}, + "nyalam": {}, + "tingri": {}, + "xigaze": {}, + "shigatsetibet": {}, + "zedangzhen": {}, + "lhasa": {}, + "xining": {}, + "l\u00fcbeck": {}, + "fredrikstad": {}, + "stavanger": {}, + "flor\u00f8": {}, + "m\u00e5l\u00f8y": {}, + "kristiansund": {}, + "fredericia": {}, + "valdobbiadene": {}, + "ko-ngai": {}, + "koh-mook-sivalai-beach-resort": {}, + "bagno-vignoni": {}, + "orta-san-giulio": {}, + "peschici": {}, + "asolo": {}, + "castelluccio": {}, + "spoleto": {}, + "valeggio-sul-mincio": {}, + "norcia": {}, + "ko-yao-noi": {}, + "ko-phi-phi-lee": {}, + "railay-beach": {}, + "koh-jum": {}, + "kingman": {}, + "amarillo": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "tulsa": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "passo-dello-stelvio": {}, + "vipiteno": {}, + "civitavecchia-port": {}, + "ashdod": {}, + "savona": {}, + "maldives": {}, + "qasr-al-sarab-desert-resort-by-anantara": {}, + "atacama-desert": {}, + "salinas-grandes": {}, + "iguazu-falls": {}, + "brunico": {}, + "diani-beach": {}, + "amboseli-national-park": {}, + "taita-hills": {}, + "tsavo-west-national-park": {}, + "tsavo-east-national-park": {}, + "leukerbad": {}, + "saint-moritz": {}, + "saturnia": {}, + "olbia": {}, + "utah": {}, + "scottsdale": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "san-ramon": {}, + "kor\u010dula": {}, + "livermore": {}, + "ko-taosurat-thani-thailand": {}, + "grand-haven": {}, + "mancelona": {}, + "harmony": {}, + "oklahoma-city": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "north-shore-oahu-hawaii": {}, + "uluwatu-temple": {}, + "denpasar-city": {}, + "bowen-island": {}, + "ulu-watu-beach": {}, + "d\u00f6sselbuschberg": {}, + "plakias": {}, + "province-of-trieste": {}, + "san-clemente": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "berkeley": {}, + "patong": {}, + "encinitas": {}, + "carlsbad": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "clayton": {}, + "watertown": {}, + "umbriatico": {}, + "perugia": {}, + "tuscania": {}, + "jackson-hole-mountain-resort": {}, + "thermopolis": {}, + "powell": {}, + "oceanport": {}, + "incline-village-crystal-bay": {}, + "kirkwood": {}, + "varadaiahpalem": {}, + "noordwijk": {}, + "la-quinta": {}, + "mong-kok": {}, + "quincy": {}, + "lake-garda": {}, + "sankt-johann": {}, + "prince-edward-island": {}, + "kusadasi": {}, + "tunisia": {}, + "digne": {}, + "nevers": {}, + "neversfrance": {}, + "tri-trang-beach": {}, + "la-spezia": {}, + "rijeka": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "phong-nha---ke-bang-national-park-headquarter": {}, + "kuchingsarawak-malaysia": {}, + "flachau": {}, + "doetinchem": {}, + "pulau-tioman": {}, + "nes": {}, + "little-corn-island": {}, + "balg\u00fce": {}, + "les-menuires": {}, + "jijoca-de-jericoacoara": {}, + "s\u00eblva": {}, + "megchelen": {}, + "mulu-national-park": {}, + "ischgl": {}, + "yichang": { + "hospital_score": "0", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "s\u00f6lden": {}, + "glenwood-springs": {}, + "willemstad": {}, + "lloret-de-mar": {}, + "nesebar": {}, + "si\u00f3fok": {}, + "pu\u0142awy": {}, + "homer": {}, + "seward": {}, + "bellagio": {}, + "dominical-sushi": {}, + "uvita-island": {}, + "letchworth-state-park-visitors-center": {}, + "positano": {}, + "wenzhou": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "antelope-canyon": {}, + "university-of-hawaii-maui-college": {}, + "pahoa": {}, + "manhattan": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "pacific-beach": {}, + "mount-wellington": {}, + "cronulla": {}, + "coogee": {}, + "playa-maderas": {}, + "celebration-place": {}, + "chattanooga": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "cardiff-by-the-sea": {}, + "rosemary-beach": {}, + "brooklyn": {}, + "los-roques-airport": {}, + "caracas": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "2" + }, + "celebration-village": {}, + "malibu": {}, + "perpignan": {}, + "aix-les-bains": {}, + "la\u00e0s": {}, + "hermanus": {}, + "kenton-on-sea": {}, + "stellenbosch": {}, + "okanagan-lake": {}, + "brioude": {}, + "ba\u00f1os": {}, + "hitra": {}, + "palm-bay": {}, + "kongsberg": {}, + "fjellv\u00e6rs\u00f8ya": {}, + "siquijor": {}, + "fillan": {}, + "link\u00f6ping": {}, + "whittier": {}, + "panglao": {}, + "port-elizaberth": {}, + "lake-placid": {}, + "olongapo": {}, + "central-region": {}, + "onomichi": {}, + "malacca-city": {}, + "garderen": {}, + "province-of-messina": {}, + "olympia": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "goldsboro": {}, + "montevideo-department": {}, + "durham": {}, + "greenville": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bulgaria": {}, + "caribbean-sea": {}, + "sombor": {}, + "porto-cervo": {}, + "thun": {}, + "alvdal": {}, + "iqaluit": {}, + "sapporohokkaido-prefecture": {}, + "dieppe": {}, + "rouen": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "kruibeke": {}, + "orl\u00e9ans": {}, + "saint-\u00e9milion": {}, + "montilliers": {}, + "coutances": {}, + "notre-dame-de-bondeville": {}, + "amfreville-sur-iton": {}, + "villejuif": {}, + "val-de-reuil": {}, + "the-void": {}, + "destin": {}, + "qingdao": { + "hospital_score": "0", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "brotas": {}, + "borborema": {}, + "\u00f6l\u00fcdeniz-sahil": {}, + "midigama-beach": {}, + "bran": {}, + "komotini": {}, + "n\u00fcrburg": {}, + "khanom": {}, + "palestine": {}, + "sotogrande": {}, + "luang-prabang-province": {}, + "mal\u00e9": {}, + "korday": {}, + "manama": {}, + "similan-islands": {}, + "phu-khao-lak": {}, + "pore\u010d": {}, + "bosnia-and-herzegovina": {}, + "cala-millor": {}, + "qena": {}, + "playa-puerto-de-pollensa": {}, + "magaluf": {}, + "rukatunturintie": {}, + "oulu": { + "hospital_score": "5", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "st.-johann-in-tirol": {}, + "kaprun": {}, + "s\u00f6ll": {}, + "taba": {}, + "petra": {}, + "ein-bokek": {}, + "ceuta": {}, + "garda": {}, + "palanga": {}, + "lipno-nad-vltavou": {}, + "temple": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "garabito": {}, + "orizaba": {}, + "tlacotalpan": {}, + "puerto-\u00e1ngel": {}, + "lewiston": {}, + "franklin": {}, + "la-valle": {}, + "chapel-hill": {}, + "iragocho": {}, + "topton": {}, + "ahakista": {}, + "manarola": {}, + "audincourt": {}, + "trets": {}, + "oleiros": {}, + "koh-lanta": {}, + "orebi\u0107": {}, + "lake-balaton": {}, + "talalla": {}, + "louisville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hershey": {}, + "huntington-beach": {}, + "philipsburg": {}, + "vit\u00f3ria": {}, + "tabatinga": {}, + "san-pedro": {}, + "santander": {}, + "selong-belanak-beach": {}, + "dettenhausen": {}, + "bochum": {}, + "kempfenhausen": {}, + "chur": {}, + "st.-cristina-valgardena---st.-christina-in-groeden": {}, + "mosteiros": {}, + "furnas": {}, + "t\u00e4by": {}, + "bierlingen": {}, + "rottenburg-am-neckar": {}, + "adeje": {}, + "icod-de-los-vinos": {}, + "solingen": {}, + "krebs": {}, + "bisztynek": {}, + "\u0142eba": {}, + "s\u0142upsk": {}, + "torbole-beach": {}, + "laas": {}, + "pfunds": {}, + "haiming": {}, + "walchensee": {}, + "erfurt": {}, + "hutchinson": {}, + "burgfelden": {}, + "tremosine": {}, + "corse-du-sud": {}, + "argyle": {}, + "college-park": {}, + "biddeford": {}, + "h\u1ea1-long": {}, + "myrtle-beach": {}, + "sant'elpidio-a-mare": {}, + "paderborn": {}, + "sylt": {}, + "brescia": {}, + "reggio-emilia": {}, + "probolinggo": {}, + "besisahar": {}, + "cherating": {}, + "sasebo-shi": {}, + "onomichi-shi": {}, + "shuzenji-temple": {}, + "saunderstown": {}, + "ballstad": {}, + "stranda": {}, + "eidfjord": {}, + "pensacola": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "crystal-river": {}, + "ginnie-springs": {}, + "boquete-district": {}, + "col\u00f3n": {}, + "south-hill": {}, + "blacksburg": {}, + "annapolis": {}, + "kemah": {}, + "con-dao-island": {}, + "la-grande-motte": {}, + "saint-lucia": {}, + "napier": {}, + "shreveport": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "brunswick": {}, + "forest": {}, + "p\u0101hoa": {}, + "princeville": {}, + "walldorf": {}, + "monnickendam": {}, + "bowling-green": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "nusa-dua-beach": {}, + "portobelo": {}, + "gamboa-rainforest-resort": {}, + "sooke": {}, + "gerlach": {}, + "death-valley": {}, + "big-bend-national-park": {}, + "kill-devil-hills": {}, + "warner-robins": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bismarck": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "dell": {}, + "cloudcroft": {}, + "huarilihue": {}, + "nelson-new-zealand": {}, + "cahors": {}, + "blackpool": {}, + "jan-thiel": {}, + "tarragona": {}, + "thasos": {}, + "tanzania": {}, + "pilani": {}, + "nice-c\u00f4te-d'azur-airport": {}, + "nozawa-onsen-snow-resort": {}, + "campos-do-jord\u00e3o": {}, + "olinda": {}, + "blumenau": {}, + "iguaz\u00fa-department": {}, + "ciudad-del-este": {}, + "osnabr\u00fcck": {}, + "campinas": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "iporanga": {}, + "porto-alegre": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "capitania": {}, + "bertioga": {}, + "gramado": {}, + "capit\u00f3lio": {}, + "key-largo": {}, + "st.-augustine": {}, + "vicksburg": {}, + "baton-rouge": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "grand-canyon-village": {}, + "miaoli": {}, + "jupiter": {}, + "calp": {}, + "clapham-common": {}, + "new-smyrna-beach": {}, + "tepoztl\u00e1n": {}, + "casa-de-campo": {}, + "zakynthos": {}, + "las-terrenas": {}, + "lanzhou": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "dunhuang": {}, + "wuhu": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "wollongong": {}, + "nilai": {}, + "caorle": {}, + "bibione-thermae": {}, + "province-of-pisa": {}, + "aberystwyth": {}, + "cumbria": {}, + "texel": {}, + "winterberg": {}, + "bramberg-am-wildkogel": {}, + "amersfoort": {}, + "zell-am-ziller": {}, + "jansk\u00e9-l\u00e1zn\u011b": {}, + "lincoln": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "carrollton": {}, + "kearney": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "green-bay": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "mccall": {}, + "gauteng": {}, + "ronda": {}, + "g\u00fc\u00e9jar-sierra": {}, + "gcn": {}, + "monument-valley": {}, + "juan-dolio": {}, + "boca-chica": {}, + "stoke-on-trent": {}, + "\u015fanl\u0131urfa": {}, + "kayseri": {}, + "ko\u0142obrzeg": {}, + "rodellar": {}, + "kilkenny": {}, + "bolta\u00f1a": {}, + "langres": {}, + "troyes": {}, + "newcastle": {}, + "surin": {}, + "uyuni": {}, + "leknes-vest": {}, + "flores-timur": {}, + "lombok-barat": {}, + "m\u00f8re-og-romsdal-county-municipality": {}, + "southern-peninsula-region": {}, + "tinghir": {}, + "errachidia": {}, + "midelt": {}, + "meknes": {}, + "bethlehem-governorate": {}, + "ramallah": {}, + "nazareth": {}, + "lawrence-cave-camp-(barrah-siq": {}, + "toru\u0144": {}, + "tawang": {}, + "jorhat": {}, + "mon": {}, + "kohima": {}, + "imphal": {}, + "tengnoupal": {}, + "zhangjiajie-grand-canyon": {}, + "matsumoto-shi": {}, + "choibalsan": {}, + "kh\u00f6vsg\u00f6l-province": {}, + "jiayuguan": {}, + "zhangye": {}, + "xiahe-county": {}, + "larung-gar-buddhist-academy-\u8272\u8fbe\u5587\u8363\u5bfa\u4e94\u660e\u4f5b\u5b66\u9662": {}, + "d\u00eaq\u00ean-county": {}, + "honghe-hani-and-yi-autonomous-prefecture": {}, + "ha-tien-market": {}, + "pakse": {}, + "matara": {}, + "french-riviera": {}, + "hanover": {}, + "taoyuan-city": {}, + "mississippi": {}, + "jaffna": {}, + "coron-island": {}, + "province-of-syracuse": {}, + "cinqueterre": {}, + "san-gimignano": {}, + "ios": {}, + "m\u00edkonos": {}, + "s\u00e3o-jos\u00e9-do-rio-preto": {}, + "davis": {}, + "caxias-do-sul": {}, + "santa-f\u00e9-do-sul": {}, + "hawaii": {}, + "tavistock": {}, + "southport": {}, + "piura": {}, + "royal-leamington-spa": {}, + "mons": {}, + "kajaani": {}, + "lumbini": {}, + "faizabad": {}, + "kanpur": {}, + "bikaner": {}, + "godhra": {}, + "malvan": {}, + "benaulim": {}, + "kong-lor-eco-lodge": {}, + "thakhek-travel-lodge": {}, + "batu-feringghi": {}, + "arley": {}, + "tabanan": {}, + "jimbaran": {}, + "nova-gradi\u0161ka": {}, + "nuneaton": {}, + "giverny": {}, + "boulogne-sur-mer": {}, + "erkelenz": {}, + "domburg": {}, + "toamasina": {}, + "missoula": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "5", + "peace_score": "3" + }, + "punta-gorda": {}, + "lihue": {}, + "shandong": {}, + "jining": {}, + "yunnan": {}, + "labin": {}, + "zrenjanin": {}, + "tavira": {}, + "punta-umbr\u00eda": {}, + "huelva": {}, + "oliva": {}, + "castell\u00f3-de-la-plana": {}, + "tortosa": {}, + "colera": {}, + "b\u00e9ziers": {}, + "fr\u00e9jus": {}, + "ventimiglia": {}, + "sanremo": {}, + "imperia": {}, + "ceriale": {}, + "verona": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "d\u01b0\u01a1ng-\u0111\u00f4ng": {}, + "puerto-plata": {}, + "sos\u00faa": {}, + "bad-kleinkirchheim": {}, + "subotica": {}, + "jablanica": {}, + "vicenza": {}, + "cinque-terre-point": {}, + "scalea": {}, + "paola": {}, + "marinella": {}, + "san-ferdinando": {}, + "acireale": {}, + "villa-san-giovanni": {}, + "taranto": {}, + "alberobello": {}, + "monopoli": {}, + "polignano-a-mare": {}, + "mola-di-bari": {}, + "ticao-island": {}, + "hollywood-hills": {}, + "boca-raton": {}, + "cocoa-beach": {}, + "gilford": {}, + "asbury-park": {}, + "morrison": {}, + "chula-vista": {}, + "redmond": {}, + "st.-anthony": {}, + "londonderry": {}, + "liscannor": {}, + "ballymackey": {}, + "ephesus-archaeological-museum": {}, + "cal-vis\u00f3": {}, + "west-nusa-tenggara": {}, + "isla-holbox": {}, + "brattleboro": {}, + "rio-rancho": {}, + "mazunte": {}, + "taroudant": {}, + "lorient": {}, + "quepos-marina": {}, + "plouhenic": {}, + "albania": {}, + "nagarkot": {}, + "odemira": {}, + "faial-island": {}, + "ruse": {}, + "lesbos-prefecture": {}, + "dorset": {}, + "forest-of-dean": {}, + "dordogne": {}, + "prachuap-khiri-khan": {}, + "vanuatu": {}, + "pueblo": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "0", + "racial_tolerance": "5", + "peace_score": "3" + }, + "citt\u00e0-di-san-marino": {}, + "petit-bourg": {}, + "ilhabela": {}, + "nantou-county": {}, + "simpsonville": {}, + "alvor": {}, + "perranporth": {}, + "gandia": {}, + "tamsui-district": {}, + "yilan-county": {}, + "kenting-national-forest-recreation-area": {}, + "yilan-city": {}, + "uruguay": {}, + "s\u00e3o-sebasti\u00e3o": {}, + "manab\u00ed-province": {}, + "ica-region": {}, + "ollantaytambo": {}, + "pelotas": {}, + "colonia-del-sacramento": {}, + "weinheim": {}, + "herford": {}, + "ferrel": {}, + "supetar": {}, + "krom\u011b\u0159\u00ed\u017e": {}, + "arlon": {}, + "saint-helena": {}, + "vail": {}, + "nosy-be": {}, + "saint-denis": {}, + "monkey-bay": {}, + "kigoma-region": {}, + "jinja-district": {}, + "treasure-beach": {}, + "cotopaxi-province": {}, + "tegucigalpa": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "el-tunco": {}, + "porto-viro": {}, + "mae-nam": {}, + "kalamata": {}, + "pretoriuskop": {}, + "lesotho": {}, + "sani-pass": {}, + "coffee-bay": {}, + "moalboal": {}, + "broadford": {}, + "sukapura": {}, + "salawas": {}, + "malpura": {}, + "chiayi-city": {}, + "brockville": {}, + "eastbourne": {}, + "brixen": {}, + "corniglia": {}, + "tak": {}, + "grand-turk-island": {}, + "alaska": {}, + "nias-selatan": {}, + "padang-padang-beach": {}, + "lembongan-island": {}, + "sea-bright": {}, + "amberg": {}, + "uppsala": {}, + "cheongju-si": {}, + "cham": {}, + "george-townpenang-malaysia": {}, + "ibusuki": {}, + "ko-chang": {}, + "shanghai-pudong-international-airport": {}, + "maldon": {}, + "newton-abbot": {}, + "da-luciano": {}, + "milazzo": {}, + "cefal\u00f9": {}, + "val-d'is\u00e8re": {}, + "morzine": {}, + "teignmouth": {}, + "ottery-st-mary": {}, + "newquay": {}, + "tisno": {}, + "bergamo": {}, + "c\u00e9ret": {}, + "wolverhampton": {}, + "guildford": {}, + "province-of-ancona": {}, + "bagni-di-lucca": {}, + "borgue": {}, + "lampang-luang": {}, + "uthai": {}, + "trang": {}, + "kaikoura": {}, + "yamanouchi-machi": {}, + "townsville-city": {}, + "east-nusa-tenggara-province": {}, + "castell\u00f3n-de-la-plana": {}, + "saaremaa": {}, + "p\u00e4rnu": {}, + "panarea": {}, + "lipari": {}, + "pachino": {}, + "ragusa": {}, + "marsala": {}, + "rueda": {}, + "alghero": {}, + "sumberkima": {}, + "kalbarri": {}, + "denham": {}, + "carnarvon": {}, + "exmouth": {}, + "karratha": {}, + "ramada-eco-beach-resort": {}, + "broome": {}, + "port-hedland": {}, + "karijini-national-park": {}, + "newman": {}, + "western-australia": {}, + "geraldton": {}, + "cervantes": {}, + "perth-airport": {}, + "ko-racha-yai": {}, + "trincomalee": {}, + "polonnaruwa": {}, + "yala": {}, + "tangalle": {}, + "peratallada": {}, + "nuuk": {}, + "ilulissat": {}, + "umag": {}, + "motovun": {}, + "hull": {}, + "t\u00f3rshavn": {}, + "la-palma": {}, + "kyrenia-harbour": {}, + "bornholm": {}, + "novocheboksarsk": {}, + "ghandruk": {}, + "ghode-pani": {}, + "ulleri": {}, + "gokarna": {}, + "lech": {}, + "dornbirn": {}, + "memmingen": {}, + "amalfi-coast": {}, + "delmar": {}, + "ojai": {}, + "izamal": {}, + "labadee": {}, + "gr\u00f6benzell": {}, + "porto-seguro": {}, + "s\u00e3o-mateus": {}, + "altenburg": {}, + "sierra-nevada": {}, + "upper-bavaria": {}, + "georgia": {}, + "caerleon": {}, + "caldicot": {}, + "balne\u00e1rio-cambori\u00fa": {}, + "bitola": {}, + "kavala": {}, + "vallon-pont-d'arc": {}, + "chalon-sur-sa\u00f4ne": {}, + "saint-anth\u00e8me": {}, + "tivat": {}, + "olympiaki-akti": {}, + "cyclades": {}, + "jomtien": {}, + "alanya": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "san-crist\u00f3bal-de-la-laguna": {}, + "galveston": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "dillon": {}, + "girona-province": {}, + "mallorca": {}, + "matar\u00f3": {}, + "accra": {}, + "yaounde": {}, + "panam\u00e1-city": {}, + "boquete": {}, + "san-marcos-la-laguna": {}, + "juba": {}, + "ulyanovsk": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "tolyatti": {}, + "samara": {}, + "mae-sariang": {}, + "kazan": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "1" + }, + "chelyabinsk": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "astrakhan": {}, + "p\u00e9cs": {}, + "airport-kiev-(iev)": {}, + "drammen": {}, + "rawdon": {}, + "aosta": {}, + "maplewood": {}, + "winston-salem": {}, + "mankato": {}, + "stirling": {}, + "golden-valley": {}, + "vernazza": {}, + "kohub": {}, + "mazatl\u00e1n": {}, + "cook-islands": {}, + "dennis-port": {}, + "svalbard": {}, + "frisco": {}, + "sioux-falls": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "beaumont": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "great-smoky-mountains": {}, + "mammoth-cave": {}, + "pingyao": {}, + "datong": {}, + "krong-kampot": {}, + "london-borough-of-hammersmith-and-fulham": {}, + "saitama": {}, + "seneffe": {}, + "roumazi\u00e8res-loubert": {}, + "irun": {}, + "perros-guirec": {}, + "nerima-ku": {}, + "fujikawaguchiko-machi": {}, + "din-daeng": {}, + "heistlaan": {}, + "zbiroh": {}, + "kutn\u00e1-hora": {}, + "plze\u0148": {}, + "l\u00e0o-cai": {}, + "b\u1eafc-h\u00e0": {}, + "m\u1ef9-tho": {}, + "myanmar-(burma)": {}, + "china": {}, + "iran": {}, + "jioufen": {}, + "cat-ba": {}, + "concepci\u00f3n": {}, + "ribes-de-freser": {}, + "shikoku-kawabejinnai": {}, + "lapland": {}, + "taman-negara-national-park-malaysia": {}, + "vientiane-province": {}, + "pihtipudas": {}, + "poitiers": {}, + "slovenj-gradec": {}, + "dongguan": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "jervis-bay": {}, + "darwin": {}, + "guizhou": {}, + "mount-isa-city": {}, + "albury": {}, + "tulamben": {}, + "gala-yuzawa-snow-resort-\u30ac\u30fc\u30e9\u6e6f\u6ca2\u30b9\u30ce\u30fc\u30ea\u30be\u30fc\u30c8": {}, + "gili-islands": {}, + "tioman-island": {}, + "mersing": {}, + "kawaguchi": {}, + "lembang": {}, + "sighnaghi": {}, + "dimitsana": {}, + "nafplio": {}, + "fira": {}, + "kalabaka": {}, + "gjirokaster": {}, + "mali-losinj": {}, + "pa\u0161man": {}, + "bansk\u00e1-bystrica": {}, + "province-of-verona": {}, + "ensenada": {}, + "brittany": {}, + "pushkar": {}, + "puducherry": {}, + "troy": {}, + "changzhou": {}, + "varkala-beach": {}, + "ajanta-caves": {}, + "ellora": {}, + "aurangabad": {}, + "apulia": {}, + "mauthausen": {}, + "corsica": {}, + "sungai-petani": {}, + "chiclayo": {}, + "tumbes": {}, + "kasol": {}, + "yokosuka": {}, + "san-isidro-de-el-general": {}, + "garwood": {}, + "leh": {}, + "la-serena": {}, + "koh-yao-yai-village": {}, + "island-of-hawai'i": {}, + "playa-larga": {}, + "middletown": {}, + "calistoga": {}, + "man-o-war-cay": {}, + "alexander-island": {}, + "rehoboth-beach": {}, + "ica": {}, + "duck": {}, + "kilimanjaro": {}, + "heidenheim": {}, + "ingolstadt": {}, + "maine": {}, + "united-kingdom": {}, + "uganda": {}, + "sicil\u00ec": {}, + "brownfield": {}, + "hadley": {}, + "colchester": {}, + "bethel": {}, + "lasqueti-island": {}, + "yuma": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "leicester": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "evrenseki": {}, + "hombrechtikon": {}, + "eisfeldgermany": {}, + "trub": {}, + "emeryville": {}, + "granada-hills": {}, + "canoga-park": {}, + "fallbrook": {}, + "st.-croix": {}, + "coral-springs": {}, + "arlington-county": {}, + "cana\u00e1n": {}, + "mesa": {}, + "lake-worth": {}, + "vista": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kitchener": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "ben-lomond": {}, + "kings-beach": {}, + "east-jesus": {}, + "riverside": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "irvine": {}, + "puntarenas": {}, + "huacachi": {}, + "jard\u00edn": {}, + "novocherkassk": {}, + "gelendzhik": {}, + "bryansk": {}, + "grodno": {}, + "sigulda": {}, + "gudauri": {}, + "mestia": {}, + "gyumri": {}, + "goris": {}, + "sevan": {}, + "yalta": {}, + "albstadt-ebingen": {}, + "albstadt": {}, + "portree": {}, + "isle-of-mull": {}, + "czechia": {}, + "koh-lanta-district": {}, + "chamb\u00e9ry": {}, + "tongariro-national-park": {}, + "tamblingan-lake": {}, + "fujikawaguchiko": {}, + "vinales": {}, + "atacama": {}, + "valdivia": {}, + "nicaragua": {}, + "montezuma": {}, + "uralla": {}, + "eden": {}, + "k\u014dchi-prefecture": {}, + "koh-phayam": {}, + "haugesund": {}, + "zhanjiang": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "fuengirola": {}, + "bordighera": {}, + "sant'ambrogio-di-valpolicella": {}, + "marone": {}, + "white-stone": {}, + "potomac": {}, + "versano": {}, + "negrar": {}, + "province-of-imperia": {}, + "c\u00e1ceres": {}, + "jerez": {}, + "madiha-beach": {}, + "vieux-boucau-les-bains": {}, + "seignosse": {}, + "luz": {}, + "morro-jable": {}, + "arugam-bay": {}, + "playa-guiones": {}, + "wagrain": {}, + "mount-hood": {}, + "hyatt-lake-road": {}, + "west-point": {}, + "shaver-lake": {}, + "kassel": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "bolton-est": {}, + "geilo": {}, + "port-shepstone": {}, + "gonubie": {}, + "wilderness": {}, + "cintsa-east": {}, + "east-london": {}, + "port-alfred": {}, + "south-cape-dc": {}, + "plettenberg-bay": {}, + "sedgefield": {}, + "swellendam": {}, + "still-bay": {}, + "simsbury": {}, + "wellfleet": {}, + "f\u00fcssen": {}, + "joliet": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "amherst": {}, + "albany": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "termes": {}, + "telford": {}, + "motueka": {}, + "arcosanti": {}, + "r\u00edo-cuarto": {}, + "bastia": {}, + "trnava": {}, + "potsdam": {}, + "inle": {}, + "new-bagan": {}, + "pyin-u-lwin": {}, + "mandalay-region": {}, + "pocono-laurel-lake": {}, + "ko-lanta-yai": {}, + "fuzhou": {}, + "nakhon-sawan": {}, + "koh-kong-province": {}, + "koh-rong-samloem": {}, + "nusapenida": {}, + "gili-trawangan-beach": {}, + "singaraja": {}, + "sekumpul": {}, + "kintamani": {}, + "bang-sare": {}, + "chon-buri": {}, + "sattahip": {}, + "ban-amphoe": {}, + "ubon-ratchathani": {}, + "tad-tayicsua": {}, + "tad-lo-village": {}, + "pakbeng": {}, + "huay-xai": {}, + "bourg-saint-maurice": {}, + "ko-muk": {}, + "fire-island-pines": {}, + "buenos-aires-province": {}, + "madagascar": {}, + "rinc\u00f3n": {}, + "lemnos": {}, + "hirafu": {}, + "asahidake-onsen": {}, + "furano": {}, + "knoxville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "mandeville": {}, + "miyako-jima": {}, + "tarama-island": {}, + "tuy-h\u00f2a": {}, + "ohakune": {}, + "turangi": {}, + "rasdhoo": {}, + "nuwara-eliya": {}, + "polhena-beach": {}, + "paxos": {}, + "mazet-saint-voy": {}, + "surrey": {}, + "roberval": {}, + "sudbury": {}, + "wells": {}, + "prince-george": {}, + "haida-gwaii": {}, + "esteli": {}, + "happy-valley-goose-bay": {}, + "annapurna-base-camp": {}, + "bulembu": {}, + "mara-triangle---maasai-mara-national-reserve": {}, + "mpigi": {}, + "kibale": {}, + "conakry": {}, + "culiac\u00e1n": {}, + "ko-phayam": {}, + "marfa": {}, + "nowy-sacz": {}, + "modena": { + "hospital_score": "2", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "nagpur": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "1", + "peace_score": "2" + }, + "kanha-tiger-reserve": {}, + "marari-beach-alappuzha": {}, + "mei\u00dfen": {}, + "bad-muskau-[de]---\u0142\u0119knica-[pl]": {}, + "levi": {}, + "coast-province": {}, + "localita'-marilleva-1400": {}, + "akumal": {}, + "elche": {}, + "les-orres": {}, + "druskininkai-municipality": {}, + "chaweng-beach": {}, + "karon-beach": {}, + "arkhangelsk": {}, + "ungasan": {}, + "tandil": {}, + "seogwipo-si": {}, + "sanya": {}, + "tula": {}, + "three-rivers": {}, + "big-bear-lake": {}, + "kahului": {}, + "friedrichshafen": {}, + "lindau": {}, + "berchtesgaden": {}, + "redondo-beach": {}, + "marina-del-rey": {}, + "coeur-d'alene": {}, + "leavenworth": {}, + "dundee": {}, + "celle": {}, + "biesenthal": {}, + "idra": {}, + "bishop": {}, + "akko": {}, + "offenbach": {}, + "stubaital": {}, + "creuzburg": {}, + "unsere-liebe-frau-im-walde-st.-felix": {}, + "\u00e7e\u015fme": {}, + "olten": {}, + "santiago-de-compostelaspain": {}, + "rostov-on-don": {}, + "zakinthos": {}, + "nettuno": {}, + "listvyanka": {}, + "perm": {}, + "v\u0169ng-t\u00e0u": {}, + "mindat": {}, + "kudat": {}, + "metz": {}, + "berg\u00e8res-l\u00e8s-vertus": {}, + "vrouwenpolder": {}, + "oslob": {}, + "legian": {}, + "ger\u00eas-equi'desafios": {}, + "guimar\u00e3es": {}, + "\u6b66\u9675\u6e90-wulingyuan-zhangjiajie-national-forest-park": {}, + "khorat": {}, + "sundsvall": {}, + "s\u00e3o-vicente": {}, + "ludwigsburg": {}, + "rethymno": {}, + "lady-elliot-island": {}, + "baden-baden": {}, + "figueira-da-foz": {}, + "reims": {}, + "hai-phong": {}, + "halong-bay-vietnam": {}, + "sapa-vietnam": {}, + "jambiani": {}, + "erg-chigaga-luxury-desert-camp-morocco": {}, + "agdz": {}, + "suez-canal": {}, + "safaga": {}, + "red-sea": {}, + "fujairah": {}, + "saint-anton-am-arlberg": {}, + "snowshoe": {}, + "brown-bluff": {}, + "sun-valley": {}, + "koh-samui": {}, + "province-of-palermo": {}, + "passau": {}, + "puerto-su\u00e1rez-international-airport-(psz)": {}, + "santa-cruz-de-la-sierra": {}, + "temecula": {}, + "sevilla": {}, + "bowie": {}, + "terre-haute": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "guadalcanal": {}, + "dunnellon": {}, + "tallahassee": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hampstead": {}, + "riyadh": { + "hospital_score": "4", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "oswego": {}, + "north-royalton": {}, + "nashua": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "marlborough": {}, + "wichita": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "lebanon": {}, + "glens-falls": {}, + "charmey": {}, + "farrell": {}, + "cabourg": {}, + "lemmon": {}, + "augusta": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "ipatinga": {}, + "piscataway-township": {}, + "wisconsin-rapids": {}, + "ludlow": {}, + "alpharetta": {}, + "mckinney": {}, + "malvern": {}, + "gillam": {}, + "springville": {}, + "needham": {}, + "saguenay": {}, + "hyde-park": {}, + "saskatoon": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "gilbert": {}, + "north-reading": {}, + "woburn": {}, + "hammond": {}, + "bhutan": {}, + "port-vila": {}, + "vuokatti": {}, + "puerto-rico-de-canary-islands": {}, + "yakutsk": {}, + "turkmenbashi": {}, + "ashgabat": {}, + "t\u00fcrkmenabat": {}, + "termez": {}, + "taraz": {}, + "gorz\u00f3w-wielkopolski": {}, + "umm-qais": {}, + "jerash": {}, + "luqa": {}, + "ouarzazate-": {}, + "tavira-": {}, + "monsaraz-": {}, + "greater-sudbury": {}, + "bac\u0103u": {}, + "iasi": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "sherborne": {}, + "podgoria": {}, + "nis": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "ternopil": {}, + "parry-sound": {}, + "cieszyn": {}, + "\u010desk\u00e9-bud\u011bjovice": {}, + "bydgoszcz": {}, + "chernivtsi": {}, + "uzhhorod": {}, + "bournemouth": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "3" + }, + "bangor": {}, + "hastings": {}, + "shrewsbury": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "isle-of-wight": {}, + "truro": {}, + "canterbury": {}, + "st.-ives": {}, + "speyer": {}, + "bad-d\u00fcrkheim": {}, + "parma": {}, + "waterloo": {}, + "nantucket": {}, + "ravenna": {}, + "mantua": {}, + "urbino": {}, + "gubbio": {}, + "orvieto": {}, + "sperlonga": {}, + "baia-domizia-villaggio-camping": {}, + "pasto": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "2" + }, + "puerto-maldonado": {}, + "guanacaste-province": {}, + "o\u2018ahu": {}, + "saint-barth\u00e9lemy": {}, + "ulan-ude": {}, + "noida": { + "hospital_score": "1", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "2" + }, + "chikuma-shi": {}, + "hermosa-beach": {}, + "orick": {}, + "chenonceaux": {}, + "ciutadella": {}, + "lahaina": {}, + "minnetonka": {}, + "cusco-region": {}, + "georgetown": {}, + "snowmass-village": {}, + "mammoth-lakes": {}, + "gemeinde-kitzb\u00fchel": {}, + "serre-chevalier": {}, + "soldeu": {}, + "puebla-city": {}, + "xalapa": {}, + "loreto": {}, + "koya": {}, + "calella-de-palafrugell": {}, + "puerto-aventuras": {}, + "valledupar": {}, + "bagan-serai": {}, + "ninh-v\u00e2n": {}, + "baturiti": {}, + "kota-bharu": {}, + "pulau-perhentian": {}, + "kazanlak": {}, + "puerto-colombia": {}, + "yucatan": {}, + "l\u00e1zaro-c\u00e1rdenas": {}, + "zug": {}, + "alpes-maritimes": {}, + "papua-new-guinea": {}, + "lapa": {}, + "aqaba-governorate": {}, + "madaba-governorate": {}, + "krasnaya-polyana": {}, + "north-platte": {}, + "weston": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "cuautla": {}, + "dixon": {}, + "ketchikan": {}, + "san-ignacio": {}, + "tikal": {}, + "lamanai-alley": {}, + "corozal-district": {}, + "kohunlich": {}, + "tinum": {}, + "telchaquillo": {}, + "uxmal": {}, + "orange-walk-district": {}, + "monterey-bay": {}, + "canton": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "derby": {}, + "frome": {}, + "peterborough": {}, + "great-malvern": {}, + "hatfield": {}, + "ipswich": {}, + "bradford": {}, + "rotherham": {}, + "loughborough": {}, + "province-of-lecco": {}, + "tyl\u00f6sand": {}, + "jimera-de-l\u00edbar": {}, + "la-codosera": {}, + "mokrin-house": {}, + "dead-sea": {}, + "merzouga": {}, + "inca-trail": {}, + "gianyar": {}, + "igar": {}, + "altomonte": {}, + "velebit": {}, + "mokrin": {}, + "playa-de-las-am\u00e9ricas": {}, + "apt": {}, + "fribourg": {}, + "aurillac": {}, + "n'djamena": {}, + "port-au-prince": {}, + "morelia": {}, + "tigerton": {}, + "orange-city": {}, + "phang-nga": {}, + "khao-sok-national-park": {}, + "tofino": {}, + "bukovel": {}, + "saint-tropez": {}, + "mackay": {}, + "ayr": {}, + "trinity-beach": {}, + "borl\u00e4nge": {}, + "v\u00e4stervik": {}, + "helsingborg": {}, + "nilaveli": {}, + "nallathanniya": {}, + "jabiru": {}, + "katherine": {}, + "tennant-creek": {}, + "yulara": {}, + "coober-pedy": {}, + "san-simeon": {}, + "madera": {}, + "ridgecrest": {}, + "amargosa-valley": {}, + "mesquite": {}, + "springdale": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hanksville": {}, + "page": {}, + "rarotonga": {}, + "zimbabwe": {}, + "zambia": {}, + "botswana": {}, + "parque-nacional-iguaz\u00fa-(argentina)": {}, + "criccieth": {}, + "kalkan": {}, + "kettering": {}, + "hereford": {}, + "batsi": {}, + "sutton-benger": {}, + "gloucestershire": {}, + "kendal": {}, + "churchstoke": {}, + "barnsley": {}, + "alpendorf": {}, + "les-gets": {}, + "krefeld": {}, + "castellabate": {}, + "bundi": {}, + "bhopal": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "2" + }, + "krong-siem-reap": {}, + "c\u00e1diz": {}, + "uluru-kata-tjuta-national-park": {}, + "laval": {}, + "crawley": {}, + "amundsen-scott": {}, + "lefkada": {}, + "sithonia": {}, + "tsushima": {}, + "sura-thani": {}, + "pyeongchang-olympic-stadium": {}, + "woodstock": {}, + "hudson": {}, + "jiufen": {}, + "shui-she": {}, + "wenwu-temple": {}, + "yidashao-lakeside-trail": {}, + "xuanguang-temple": {}, + "\u5411\u5c71\u884c\u653f\u4e2d\u5fc3-xiangshan-visitor-center": {}, + "jiaozuo": {}, + "tongyeong-si": {}, + "bonda": {}, + "abiansemal": {}, + "batubulan": {}, + "kinosaki-onsen": {}, + "amed": {}, + "baker": {}, + "hoover-dam": {}, + "eastmont-hills": {}, + "sausalito": {}, + "ferropolis": {}, + "leuven": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "kaesong": {}, + "saint-rapha\u00ebl": {}, + "bort-les-orgues": {}, + "umbria": {}, + "st.-moritz": {}, + "turkish-republic-of-northern-cyprus": {}, + "kilifi": {}, + "santa-teresa-beach": {}, + "bibione": {}, + "sch\u00f6nberg-lachtal": {}, + "okrug-gornji": {}, + "kuchl": {}, + "barnaul": {}, + "egypt": {}, + "kazakhstan": {}, + "sharjah": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "1", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "ghana": {}, + "sanary-sur-mer": {}, + "himeji": {}, + "shibu-onsen": {}, + "royan": {}, + "mazerolles": {}, + "clisson": {}, + "bourges": {}, + "sarzana": {}, + "carrara": {}, + "lago-atitl\u00e1n": {}, + "livingston": {}, + "semuc-champey": {}, + "cob\u00e1n": {}, + "chichen-itza-rest-stop": {}, + "karaikudi": {}, + "sivakasi": {}, + "balearic-islands": {}, + "punta-maroma": {}, + "chich\u00e9n-itz\u00e1": {}, + "la-mongie": {}, + "ajmer": {}, + "chittorgarh": {}, + "visalia": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "port-d'alc\u00fadia": {}, + "ypres": {}, + "westvleteren": {}, + "hadera": {}, + "pite\u0219ti": {}, + "vama-veche": {}, + "harlech": {}, + "glenaire": {}, + "krong-svay-rieng": {}, + "huesca": {}, + "oualidia": {}, + "miri": {}, + "bain-boeuf": {}, + "huatulco": {}, + "puerto-quetzal": {}, + "revest-des-brousses": {}, + "manosque": {}, + "cruis": {}, + "crest": {}, + "sainte-ad\u00e8le": {}, + "flic-en-flac": {}, + "cap-ha\u00eftien": {}, + "charlotte-amalie": {}, + "basseterre": {}, + "geoje-si": {}, + "chabris": {}, + "islamorada": {}, + "tirano": {}, + "dunedin": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "5", + "peace_score": "4" + }, + "tikal-national-park": {}, + "grand-canyon-national-park-airport": {}, + "hammamet": {}, + "monteverde": {}, + "vaasa": {}, + "gruissan": {}, + "besal\u00fa": {}, + "canmore": {}, + "veracruz": {}, + "annecyfrance": {}, + "el-castillo": {}, + "la-fortuna": {}, + "romer\u00e9e": {}, + "douala": {}, + "sandpoint": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "montbazens": {}, + "collines-de-niassam": {}, + "d\u00e9sert-de-lompoul": {}, + "podor": {}, + "clinton": {}, + "joplin": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "springfield": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "bomono": {}, + "ivalo": {}, + "austral-islands": {}, + "papeete": {}, + "provo": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "saratoga-springs": {}, + "rutland": {}, + "sea-island": {}, + "kendwa": {}, + "adirondack": {}, + "skaneateles": {}, + "coco": {}, + "jay": {}, + "j\u016brmala": {}, + "debrecen": {}, + "kaliningrad": { + "hospital_score": "1", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "barcelona-province": {}, + "adriatic-sea": {}, + "crawford": {}, + "barboursville": {}, + "bradenton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kentucky-dam-village-resort-state-park": {}, + "khmelnytskyi": {}, + "vaitape": {}, + "myoko-kogen-station": {}, + "niseko-village": {}, + "labuan-bajo": {}, + "cesenatico": {}, + "zugdidi": {}, + "gori": {}, + "shaki": {}, + "virginia": {}, + "seaside": {}, + "norman": {}, + "jacksonville-beach": {}, + "apple-valley": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "landelles-et-coupigny": {}, + "kapas-island-resort": {}, + "pangkor": {}, + "keswick": {}, + "garbicz-jolanta.-piekarnia": {}, + "talamanca": {}, + "bluefields": {}, + "sonoma-county": {}, + "pocono-mountains": {}, + "death-valley-national-park": {}, + "rosenheim": {}, + "laholm": {}, + "locarno": {}, + "capital-region": {}, + "brea": {}, + "kortrijk": {}, + "harare": {}, + "westford": {}, + "medvode": {}, + "dakhla": {}, + "pennington": {}, + "puerto-soley": {}, + "apeldoorn": {}, + "chiapas": {}, + "thap-sakae": {}, + "trogir": {}, + "livigno": {}, + "piano-di-sorrento": {}, + "chrudim": {}, + "mamaia": {}, + "rapallo": {}, + "suceava": {}, + "piatra-neam\u021b": {}, + "moieciu": {}, + "cyprus": {}, + "port-aransas": {}, + "dirksland": {}, + "gjendesheim": {}, + "nowy-s\u0105cz": {}, + "sant-lloren\u00e7-de-morunys": {}, + "matera": {}, + "rabat-sal\u00e9-k\u00e9nitra": {}, + "akyaka": {}, + "avanos": {}, + "saman\u00e1": {}, + "saint-thomas": {}, + "ahangama": {}, + "ho-chi-minh": {}, + "thame": {}, + "tp.-hu\u1ebf": {}, + "tp.-ch\u00e2u-\u0111\u1ed1c": {}, + "cuernavaca": {}, + "\u00f6rnsk\u00f6ldsvik": {}, + "mentawai-island": {}, + "point-pleasant": {}, + "borough-of-point-pleasant": {}, + "dijon": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "newport-beach": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "danbury": {}, + "zama": {}, + "bahlingen": {}, + "melle": {}, + "neustift-im-stubaital": {}, + "l\u00fcsens": {}, + "obermieming": {}, + "grainau": {}, + "costa-teguise": {}, + "condrieu": {}, + "asti": {}, + "karachi": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "1", + "racial_tolerance": "4", + "peace_score": "1" + }, + "lumajang": {}, + "cemoro": {}, + "nusa-penida-island": {}, + "lembengan": {}, + "teriberka": {}, + "phan-thiet": {}, + "serfaus": {}, + "voronezh": {}, + "saalbach-hinterglemm": {}, + "keflav\u00edk": {}, + "santa-cristina-valgardena": {}, + "la-digue": {}, + "praslin": {}, + "karl\u0161tejn": {}, + "mdina": {}, + "port-antonio": {}, + "bohus-malm\u00f6n": {}, + "zlatar": {}, + "maspalomas": {}, + "altai-krai": {}, + "novokuznetsk": {}, + "lichada": {}, + "trosa": {}, + "horst": {}, + "radio-kootwijk": {}, + "breivikbotn": {}, + "alta": {}, + "honningsv\u00e5g": {}, + "kampeerterrein-de-lievelinge": {}, + "lund": {}, + "aalst": {}, + "gol": {}, + "tr\u00e6na": {}, + "etten-leur": {}, + "suwon-si": {}, + "bra": {}, + "duluth": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "daytona-beach": {}, + "figeac": {}, + "antibes": {}, + "greensboro": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "west-virginia": {}, + "wappingers-falls": {}, + "hatch": {}, + "gatlinburg": {}, + "katoomba": {}, + "mystery-bay": {}, + "mount-cook": {}, + "te-anau": {}, + "special-region-of-yogyakarta": {}, + "sandakan": {}, + "semporna": {}, + "fujiyoshida": {}, + "andaz-maui-at-wailea-resort": {}, + "tennessee": {}, + "la-ceiba": {}, + "le\u00f3n": {}, + "alajuela-province": {}, + "\u00e9voramonte": {}, + "belitung": {}, + "ende-sub-district": {}, + "kelimutu": {}, + "maumere": {}, + "palembang": {}, + "geelong": {}, + "ulm": {}, + "essen": {}, + "morschen": {}, + "sorocaba": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "len\u00e7\u00f3is": {}, + "visconde-de-mau\u00e1": {}, + "sugar-land": {}, + "ouro-preto": {}, + "aracaju": {}, + "kihei": {}, + "saint-pierre": {}, + "bayville": {}, + "cinque-terre": {}, + "monselice": {}, + "michigan": {}, + "long-island": {}, + "gig-harbor": {}, + "la-romana": {}, + "petrozavodsk": {}, + "monster": {}, + "dankov": {}, + "gudauri-ski-resort": {}, + "oryol": {}, + "los-gigantes": {}, + "nida": {}, + "mbeya-region": {}, + "puerto-montt": {}, + "oskarshamn": {}, + "gimmelwald": {}, + "rottnest-island": {}, + "koh-rong-sanloem": {}, + "koh-thmei": {}, + "louangphabang": {}, + "agde": {}, + "la-loupe": {}, + "dzaoudzi": {}, + "jesolo": {}, + "asilah": {}, + "v\u00e4xj\u00f6": {}, + "ryazan": {}, + "nizhny": {}, + "cao-l\u00e3nh": {}, + "illinois": {}, + "hope": {}, + "river-falls": {}, + "glencoe": {}, + "chalten-suites-hotel": {}, + "calafate-parque-hotel": {}, + "armenia": {}, + "capadoccia-view-hotel": {}, + "plitvice-rastovaca": {}, + "mahahual": {}, + "bucaramanga": { + "hospital_score": "0", + "english_speaking": "2", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "2" + }, + "l\u00e4rz": {}, + "m\u00fchlhausen/th\u00fcringen": {}, + "baden-w\u00fcrttemberg": {}, + "lower-austria": {}, + "\u010dern\u00e1-hora": {}, + "andaman-sea": {}, + "turku": {}, + "\u30cb\u30bb\u30b3\u30a2\u30f3\u30cc\u30d7\u30ea\u56fd\u969b\u30b9\u30ad\u30fc\u5834-(niseko-annupuri-international-ski-area)": {}, + "petaluma": {}, + "baja-california-sur": {}, + "cabarete-beach": {}, + "palm-desert": {}, + "saint-r\u00e9my-de-provence": {}, + "ridgway": {}, + "hotchkiss": {}, + "ketchum": {}, + "punta-de-mita": {}, + "wellington-region": {}, + "deauville": {}, + "playa-santa-teresa": {}, + "telluride": {}, + "valdez": {}, + "paralimni": {}, + "passy": {}, + "protaras": {}, + "mari-el-republic": {}, + "callao-salvaje": {}, + "komatsu": {}, + "yamanashi-prefecture": {}, + "karuizawa": {}, + "waukesha": {}, + "cupertino": {}, + "silicon-valley": {}, + "province-of-salerno": {}, + "falmouth": {}, + "pre\u0161ov-region": {}, + "\u00f8rsta": {}, + "vihula-parish": {}, + "desenzano-del-garda": {}, + "terni": {}, + "gotland-county": {}, + "cambridgeshire": {}, + "bracknell": {}, + "wakefield": {}, + "comano-terme": {}, + "bolton": {}, + "providence-county": {}, + "tyne-and-wear": {}, + "billund": {}, + "yorkshire-dales-national-park": {}, + "maspalomas-beach": {}, + "doolin": {}, + "odenton": {}, + "fort-portal": {}, + "samos": {}, + "paripueira": {}, + "tobago": {}, + "port-of-spain": {}, + "les-mar\u00e9cottes": {}, + "kosovo": {}, + "ferrara": { + "hospital_score": "5", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "arturo-merino-ben\u00edtez-international-airport": {}, + "sao-paulo-international-airport": {}, + "mont-sal\u00e8ve": {}, + "yangshuo-county": {}, + "charleroi": {}, + "tangier-tetouan": {}, + "la-manzanilla": {}, + "estosadok": {}, + "perast": {}, + "somo": {}, + "lake-atitlan": {}, + "brela": {}, + "doboj": {}, + "giza": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "1", + "racial_tolerance": "3", + "peace_score": "2" + }, + "ch\u00e2tel": {}, + "izola": {}, + "niort": {}, + "poronin": {}, + "squamish": {}, + "lillooet": {}, + "salmon-arm": {}, + "valemount": {}, + "hinton": {}, + "lake-louise": {}, + "golden": {}, + "invermere": {}, + "hvide-sande": {}, + "husum": {}, + "mandello-del-lario": {}, + "trasquera": {}, + "meezen": {}, + "kenting-national-park": {}, + "sun-moon-lake": {}, + "yamanouchi": {}, + "nakatsugawa": {}, + "hashimoto": {}, + "alappuzha": {}, + "munnar": {}, + "udawalawe": {}, + "bundala": {}, + "\u00e9vora": {}, + "nazar\u00e9": {}, + "guarda": {}, + "karlskrona": {}, + "g\u00e5rdby-kyrka": {}, + "visby": {}, + "gorinchem": {}, + "bad-w\u00f6rishofen": {}, + "staffelsee": {}, + "havelsee": {}, + "sievershausen": {}, + "rivas": {}, + "sierpe": {}, + "m\u00e9rida": {}, + "matagalpa": {}, + "bijagua": {}, + "alajuela": {}, + "punta-zicatela": {}, + "playa-zipolite": {}, + "bakersfield": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "lake-havasu-city": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "seligman": {}, + "oljato-monument-valley": {}, + "wahweap": {}, + "bryce-canyon": {}, + "qualicum-beach": {}, + "port-alberni": {}, + "enderby": {}, + "mathes": {}, + "abela": {}, + "lacanau": {}, + "liencres": {}, + "cangas-de-on\u00eds": {}, + "grazalema": {}, + "erg-chigaga": {}, + "mhamid": {}, + "tafraoute": {}, + "mirleft": {}, + "la-aldea-de-san-nicol\u00e1s": {}, + "arinaga": {}, + "alm\u00e1ciga": {}, + "agulo": {}, + "opua": {}, + "upper-moutere": {}, + "murchison": {}, + "punakaiki": {}, + "hokitika": {}, + "fox-glacier": {}, + "lumsden": {}, + "milford-sound": {}, + "monowai": {}, + "owaka": {}, + "herbert": {}, + "pigeon-bay": {}, + "woodchester": {}, + "mount-gambier": {}, + "port-campbell": {}, + "devonport": {}, + "mount-coolum": {}, + "culik": {}, + "hu'u": {}, + "senggigi": {}, + "kinabatangan-river": {}, + "sepilok": {}, + "mount-kinabalu": {}, + "gunung-mulu-national-park": {}, + "ban-krut": {}, + "ko-kut": {}, + "kratie": {}, + "don-khon": {}, + "phong-nha-ke-bang-national-park": {}, + "port-barton": {}, + "nagasaki": {}, + "iki-island": {}, + "kamikawa": {}, + "toyama": {}, + "minobu": {}, + "chigasaki": {}, + "salina": {}, + "artemas": {}, + "manakau": {}, + "summertown": {}, + "decorah": {}, + "gin-gin": {}, + "childers": {}, + "kaslo": {}, + "parihaka-gate": {}, + "kopu": {}, + "thames": {}, + "waikanae": {}, + "maungakaramea": {}, + "ngaruawahia": {}, + "blenheim": {}, + "ashburton": {}, + "patons-rock": {}, + "gisborne": {}, + "kaiwaka": {}, + "oneriri-road": {}, + "levin": {}, + "shannon": {}, + "te-horo": {}, + "upper-hutt": {}, + "waikawa": {}, + "hedensted": {}, + "cayo-santa-mar\u00eda": {}, + "noum\u00e9a": {}, + "old-town-of-lijiang": {}, + "camino-de-santiago": {}, + "saint-jean-pied-de-port": {}, + "tarn": {}, + "chartres": {}, + "newark-liberty-international-airport": {}, + "teton-village": {}, + "cedar-city": {}, + "park-slope": {}, + "anguilla": {}, + "shannon-international-airport": {}, + "capetown-church-of-christ": {}, + "porto-de-galinhos": {}, + "mindelo": {}, + "mardin-province": {}, + "l'isle-sur-la-sorgue": {}, + "guimaraes": {}, + "abisko": {}, + "lansing": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "canary-islands": {}, + "vila-do-porto": {}, + "puerto-sandino": {}, + "south-caicos": {}, + "f\u00e1tima": {}, + "lourdes": {}, + "kemer": {}, + "harstad": {}, + "sisimiut": {}, + "kangerlussuaq": {}, + "lake-baikal": {}, + "banos": {}, + "ponferrada": {}, + "suzhou-district": {}, + "senderiz": {}, + "chamonix-mont-blanc": {}, + "mariposa": {}, + "andalusia": {}, + "tongatapu": {}, + "nessebar": {}, + "playa-venao": {}, + "beatty": {}, + "middleburg": {}, + "vladivostok": {}, + "jim-thorpe": {}, + "lukla": {}, + "ranong": {}, + "gallarate": {}, + "tren\u010d\u00edn": {}, + "bacolod": {}, + "puerto-prinsesa": {}, + "johor": {}, + "indore": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "2" + }, + "lucknow": { + "hospital_score": "0", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "1", + "peace_score": "2" + }, + "colva": {}, + "igatpuri": {}, + "dehradun": {}, + "idukki": {}, + "addu-city": {}, + "giardini-naxos": {}, + "poasito": {}, + "san-pedro-la-laguna": {}, + "s\u00e1mara": {}, + "santa-marianita": {}, + "iquique": { + "hospital_score": "1", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "4" + }, + "arica": {}, + "nusa-dua": {}, + "bintulu": {}, + "pamalican-island": {}, + "worms": {}, + "ravensburg": {}, + "igis": {}, + "lao-cai": {}, + "verdun-sur-garonne": {}, + "b\u1ea3o-l\u1ed9c": {}, + "s\u01a1n-tr\u1ea1ch": {}, + "tuy\u00ean-quang": {}, + "cao-b\u1eb1ng": {}, + "l\u1ea1ng-s\u01a1n": {}, + "binic": {}, + "phoenixville": {}, + "paju-si": {}, + "wengen": {}, + "lauterbrunnen": {}, + "cao-bang": {}, + "b\u1eafc-k\u1ea1n-province": {}, + "mount-fuji": {}, + "phan-r\u00ed-c\u1eeda": {}, + "jiuzhai-valley-national-park": {}, + "emeishan": {}, + "lang-co-beach": {}, + "ayutthaya-historical-park": {}, + "c\u1ea7n-gi\u1edd": {}, + "vevey": {}, + "zanzibar-city": {}, + "cantabria": {}, + "basque-country": {}, + "nouvelle-aquitaine": {}, + "pays-de-la-loire": {}, + "lower-normandy": {}, + "kenting-beach": {}, + "oloron-sainte-marie": {}, + "tuherahera": {}, + "\u014duturoa": {}, + "huahine": {}, + "punaauia": {}, + "pihaena": {}, + "glyfada": {}, + "bahia": {}, + "tempio-pausania": {}, + "g\u0127ajnsielem": {}, + "cabo-frio": {}, + "pireas": {}, + "frigiliana": {}, + "pardubice": {}, + "\u00fast\u00ed-nad-labem": {}, + "lignano-sabbiadoro": {}, + "martos": {}, + "murska-sobota": {}, + "maubeuge": {}, + "lappeenranta": {}, + "brindisi": {}, + "vrindavan": {}, + "tiraspol": {}, + "sonoma": {}, + "u\u017eice": {}, + "sechelt": {}, + "whitehorse": {}, + "phong-natural-heritage-area": {}, + "freeport": {}, + "port-said": {}, + "carlotta": {}, + "clorinda": {}, + "trebinje": {}, + "porto-de-galinhas": {}, + "ostrava": {}, + "bia\u0142ystok": {}, + "puerto-de-mog\u00e1n": {}, + "holland": {}, + "grand-forks": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "subic-bay": {}, + "swan-lake": {}, + "rancho-mirage": {}, + "scotts-valley": {}, + "b\u00f6blingen": {}, + "neuschwanstein-castle": {}, + "forks": {}, + "kinabatangan": {}, + "rosendale": {}, + "punta-del-diablo": {}, + "colonia-del-sacramentocolonia": {}, + "c\u00f4n-\u0111\u1ea3o": {}, + "krk": {}, + "carbost": {}, + "champaign": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "skagway": {}, + "oceanside": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "naperville": {}, + "hernicourt": {}, + "jena": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "martinique": {}, + "bad-bentheim": {}, + "quarteira": {}, + "bordeira": {}, + "zambujeira-do-mar": {}, + "porto-covo": {}, + "melides": {}, + "alc\u00e1cer-do-sal": {}, + "lagoa-de-albufeira": {}, + "friday-harbor": {}, + "manitou-springs": {}, + "florissant": {}, + "alamosa": {}, + "munduk-sari": {}, + "besakih": {}, + "ratanakiri-province": {}, + "sean-monorom": {}, + "krati\u00e9": {}, + "buren": {}, + "bremerhaven": {}, + "bolsterlang": {}, + "dammam": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "1", + "racial_tolerance": "2", + "peace_score": "2" + }, + "guarulhos": {}, + "tagbilaran": {}, + "cochabamba": {}, + "ibiza-town": {}, + "gaborone": {}, + "j\u00f6nk\u00f6ping": {}, + "mersin": {}, + "mahmutlar": {}, + "al-khor": {}, + "salabah": {}, + "karlovac-county": {}, + "high-wycombe": {}, + "hertford": {}, + "el-cuyo": {}, + "lombok-tengah": {}, + "chimborazo-province": {}, + "coevorden": {}, + "duino-aurisina": {}, + "maspalomas-oasis": {}, + "lorgues": {}, + "camag\u00fcey": {}, + "george": {}, + "mytilene": {}, + "skala-sikamineas": {}, + "eaton-rapids": {}, + "tahiti": {}, + "western-division": {}, + "grosseto": {}, + "carrick-on-shannon": {}, + "metropolitan-city-of-bologna": {}, + "thonon-les-bains": {}, + "radisson-blu-resort": {}, + "heilbronn": {}, + "saman\u00e1-province": {}, + "immenstadt-i.-allg\u00e4u": {}, + "aarau": {}, + "miyazaki": {}, + "\u03bb\u03ae\u03bc\u03bd\u03bf\u03c2-(limnos)": {}, + "dnipro": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "3", + "female_friendly": "1", + "racial_tolerance": "1", + "peace_score": "1" + }, + "frederick": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "tekapo-springs": {}, + "t\u00fcbingen": {}, + "solothurn": {}, + "ribeir\u00e3o-preto": {}, + "exuma": {}, + "chester": {}, + "bemidji": {}, + "dubuque": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "iowa": {}, + "st.-cloud": {}, + "touques": {}, + "\u00f6stersund": {}, + "ripatransone": {}, + "gelsenkirchen": {}, + "port-de-s\u00f3ller": {}, + "torbole": {}, + "zell-am-see": {}, + "huis-ten-bosch": {}, + "bethesda": {}, + "kalibo": {}, + "peoria": { + "hospital_score": "5", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "versailles": {}, + "sioux-city": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "daanbantayan": {}, + "koloa": {}, + "soyaniquilpan-de-ju\u00e1rez": {}, + "cedar-key": {}, + "windermere": {}, + "avoriaz": {}, + "reunion-island": {}, + "perhentian-island": {}, + "dieng": {}, + "jember-regency": {}, + "decatur-island": {}, + "surakarta": { + "hospital_score": "3", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "eureka-springs": {}, + "badlands-national-park": {}, + "keystone": {}, + "glacier-national-park---west-entrance": {}, + "idaho": {}, + "sayulita-beach": {}, + "tampere": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "mol": {}, + "biloxi": {}, + "great-falls": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "sn\u00e6fellsb\u00e6r": {}, + "liep\u0101ja": {}, + "masai-mara-kenya": {}, + "danakil-depression": {}, + "grenada": {}, + "saint-vincent-and-the-grenadines": {}, + "castello-tesino": {}, + "wismar": {}, + "liepen": {}, + "yangon-region": {}, + "alcabideche": {}, + "imbituba": {}, + "arezzo": {}, + "las-vegas-strip": {}, + "tubar\u00e3o": {}, + "quezon-city": {}, + "maroochydore": {}, + "trapani": {}, + "leander": {}, + "henningsv\u00e6r": {}, + "krager\u00f8": {}, + "nainital": {}, + "ranthambore-national-park": {}, + "madaba": {}, + "f\u00e4viken-magasinet": {}, + "camber": {}, + "agios-andreas": {}, + "grenaa": {}, + "limin-chersonissou": {}, + "cape-cod-national-seashore": {}, + "chico": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "lisdoonvarna": {}, + "miraflores": {}, + "norfolk": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "barichara": {}, + "stevenson": {}, + "yachats": {}, + "kalama": {}, + "molde": {}, + "r\u00f8ros": {}, + "cabin-beach-resort": {}, + "exincourt": {}, + "south-woodstock": {}, + "foster-city": {}, + "arco": {}, + "west-glacier": {}, + "fernie": {}, + "pray": {}, + "mitchell": {}, + "incheon": {}, + "halle": {}, + "oita-shi": {}, + "kota-tinggi": {}, + "bintan": {}, + "pyeongchang-gun": {}, + "sokcho-si": {}, + "cape-reinga": {}, + "paihia": {}, + "whakatane": {}, + "new-plymouth": {}, + "whanganui": {}, + "glenorchy": {}, + "stewart-island": {}, + "invercargill": {}, + "oamaru": {}, + "lake-tekapo": {}, + "hof": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "wei\u00dfenst\u00e4dter-see": {}, + "hittisau": {}, + "berghotel-rudolfsh\u00fctte": {}, + "augsburg": {}, + "hoher-dachstein": {}, + "boca-de-yuma": {}, + "castries-city": {}, + "saint-john's": {}, + "tarifaspain": {}, + "santa-rosa": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "starigrad": {}, + "coburg": {}, + "erding": {}, + "vejprty": {}, + "k\u00fchtai": {}, + "bad-steben": {}, + "al\u00f3nnisos": {}, + "octopus-resort": {}, + "batangas": {}, + "lian": {}, + "para\u00f1aque": {}, + "atimonan": {}, + "camarines-norte": {}, + "puerto-del-rosario": {}, + "los-cabos": {}, + "koszalin": {}, + "torun": {}, + "st.-joseph": {}, + "serravalle-scrivia": {}, + "murcia": {}, + "sevilla-la-nueva": {}, + "wacken": {}, + "monte-carlo": {}, + "lunenburg": {}, + "santa-ana-municipality": {}, + "cop\u00e1n-ruinas": {}, + "placencia": {}, + "rio-dulce": {}, + "deqen": {}, + "potosi": {}, + "hebron": {}, + "kalispell": {}, + "schl\u00e4gl": {}, + "nakhon-si-thammarat": {}, + "canoa-quebrada": {}, + "monrovia": {}, + "bad-aussee": {}, + "konzell": {}, + "frauenau": {}, + "weiden-in-der-oberpfalz": {}, + "neumarkt-i.-d.-opf.": {}, + "kohukohu": {}, + "pukekohe": {}, + "mt-taranaki": {}, + "wanganui": {}, + "takaka": {}, + "abel-tasman-national-park": {}, + "kongahu": {}, + "karamea": {}, + "catlins-road": {}, + "riverton": {}, + "haast": {}, + "hokitika-gorge": {}, + "pancake-rocks": {}, + "arthur's-pass-national-park": {}, + "akaroa": {}, + "omarama": {}, + "cromwell": {}, + "balclutha": {}, + "papatowai": {}, + "moeraki-boulders": {}, + "alexandra": {}, + "mount-cook-national-park": {}, + "geraldine": {}, + "cape-palliser": {}, + "te-puke": {}, + "tiritiri-matangi": {}, + "waihi": {}, + "te-rerenga": {}, + "hahei-beach": {}, + "whitianga": {}, + "karekare-beach": {}, + "dargaville": {}, + "90-mile-beach": {}, + "paihia-beach": {}, + "whangarei": {}, + "balatonf\u00fcred": {}, + "tokushima-prefecture": {}, + "gavdos": {}, + "paleochora": {}, + "attica-region": {}, + "palaiochora": {}, + "douarnenez": {}, + "quimper": {}, + "jammu": {}, + "jhansi": {}, + "almere": { + "hospital_score": "4", + "english_speaking": "4", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "4" + }, + "larvik": {}, + "kirchberg-in-tirol": {}, + "armadale": {}, + "fort-augustus": {}, + "cape-verde": {}, + "drachten": {}, + "la-digue-and-inner-islands": {}, + "klippan": {}, + "port-louis-district": {}, + "kristianstad": {}, + "bruxelles-formation": {}, + "playa-de-magaluf": {}, + "udine": {}, + "haskovo": {}, + "craiova": {}, + "lycian-way-trail": {}, + "aigues-mortes": {}, + "juiz-de-fora": {}, + "lake-titicaca": {}, + "colca-canyon": {}, + "meaux": {}, + "\u00e9crosnes": {}, + "la-clusaz": {}, + "montlaux": {}, + "solsona": {}, + "brian\u00e7on": {}, + "audierne": {}, + "gresse-en-vercors": {}, + "sierre": {}, + "havelock-island": {}, + "eskilstuna": {}, + "ha\u00dfloch": {}, + "b\u00fchl": {}, + "daugavpils": {}, + "unna": {}, + "logro\u00f1o": {}, + "conil-de-la-frontera": {}, + "algeciras": {}, + "chiclana-de-la-frontera": {}, + "olomouc": {}, + "los-llanos-de-aridane": {}, + "tokyo-prefecture": {}, + "pacentro": {}, + "royal-oak": {}, + "algiers": {}, + "poipu-hawaii": {}, + "ile-de-la-r\u00e9union-tourisme": {}, + "cayenne": {}, + "b\u00e1varo": {}, + "arrifana": {}, + "zarautz": {}, + "nusa-lembongan-island": {}, + "castell-platja-d'aro": {}, + "serbia": {}, + "macedonia-(fyrom)": {}, + "slovakia": {}, + "mar\u00edlia": {}, + "dessau-ro\u00dflau": {}, + "burntwood": {}, + "deutsch-kaltenbrunn": {}, + "hermosillo": {}, + "villach": {}, + "civitavecchia": {}, + "murata": {}, + "frankfurt-airport": {}, + "seattle-tacoma-international-airport": {}, + "columbia-falls": {}, + "grand-beach": {}, + "grand-marais": {}, + "copper-harbor": {}, + "northfield": {}, + "west-lafayette": {}, + "tumbabiro": {}, + "corsham": {}, + "koyasan": {}, + "kirkwall": {}, + "oban": {}, + "zamberk": {}, + "kruscica": {}, + "veszpr\u00e9m": {}, + "vranov-nad-dyj\u00ed": {}, + "sargans": {}, + "halle-(saale)": {}, + "mal\u00e1-fatra": {}, + "g\u00f6rlitz": {}, + "\u017eamberk": {}, + "selk": {}, + "k\u00f8ge": {}, + "\u00e4ngelholm": {}, + "vitlycke-museum": {}, + "oppdal": {}, + "formofoss": {}, + "t\u00e4rnaby": {}, + "arvidsjaur": {}, + "kalix": {}, + "pyh\u00e4j\u00e4rvi": {}, + "pyh\u00e4-h\u00e4kki-national-park": {}, + "kunda": {}, + "kryziu-kalnas": {}, + "august\u00f3w": {}, + "avebury": {}, + "stonehenge": {}, + "rivne": {}, + "ganja": {}, + "hy\u014dgo-prefecture": {}, + "alikes-camping-ammouliani": {}, + "sahara-desert": {}, + "lajatico": {}, + "londrina": {}, + "laurencekirk": {}, + "tingsryd": {}, + "saint-george": {}, + "neunkirchen": {}, + "lahr": {}, + "great-stirrup-cay": {}, + "courtenay": {}, + "rizhao": {}, + "kaeo": {}, + "ahvaz": {}, + "tidewater": {}, + "driftpile": {}, + "fort-macleod": {}, + "bradley": {}, + "krynica-zdr\u00f3j": {}, + "billings": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "5", + "peace_score": "3" + }, + "praia-massarandupio": {}, + "osasco": {}, + "roskilde": {}, + "krus\u00e5": {}, + "bad-gandersheim": {}, + "egnach": {}, + "ribeauvill\u00e9": {}, + "dransfeld": {}, + "ribe": {}, + "lidk\u00f6ping": {}, + "newport": {}, + "wuppertal": {}, + "eguisheim": {}, + "gosau": {}, + "rothenburg-ob-der-tauber": {}, + "ilmenau": {}, + "quedlinburg": {}, + "schwerin": {}, + "belgorod": {}, + "hajd\u00faszoboszl\u00f3": {}, + "guna-yala": {}, + "gorgona": {}, + "jurere-leste": {}, + "ribeira-grande": {}, + "povoa\u00e7\u00e3o": {}, + "katerini": {}, + "gy\u0151r": {}, + "pragser-wildsee-/-lago-di-braies": {}, + "courmayeur": {}, + "gressoney-saint-jean": {}, + "waianae": {}, + "conway": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kells": {}, + "anahola-beach": {}, + "praia-da-areia-branca": {}, + "caceres": {}, + "alexandria-governorate": {}, + "waregem": {}, + "matosinhos": {}, + "strombolilipari": {}, + "province-of-catania": {}, + "v\u00e4ckels\u00e5ng": {}, + "trysil": {}, + "bjurs\u00e5s": {}, + "klosters-dorf": {}, + "keszthely": {}, + "armidale": {}, + "scone": {}, + "ohau": {}, + "national-park": {}, + "cape-foulwind": {}, + "barrys-bay": {}, + "tapachula": {}, + "pist\u00e9": {}, + "resistencia": {}, + "jaco": {}, + "pisac": {}, + "greve-in-chianti": {}, + "svay-rieng-province": {}, + "dauphin-island": {}, + "iraq": {}, + "gaeta": {}, + "denton": {}, + "steamboat-springs": {}, + "hu\u00e9moz": {}, + "natal": { + "hospital_score": "2", + "english_speaking": "2", + "nightlife": "5", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "guarabira": {}, + "lu\u00eds-correia": {}, + "big-sur": {}, + "s\u00e8te": {}, + "villeneuvette": {}, + "tatti": {}, + "fubine": {}, + "n\u00e4rpes": {}, + "chom-thong-district": {}, + "khao-lak-thailand": {}, + "guararema": {}, + "paignton": {}, + "okanagan-valley": {}, + "le\u00f3n-department": {}, + "cartago": {}, + "benevento": {}, + "siurana": {}, + "haaren": {}, + "mombarcaro": {}, + "puerto-pe\u00f1asco": {}, + "porto-venere": {}, + "montalcino": {}, + "maiori": {}, + "dossenheim": {}, + "yucat\u00e1n": {}, + "nosara": {}, + "faringdon": {}, + "oulx": {}, + "amazonas-region": {}, + "paraguay": {}, + "allentown": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "uruapan": {}, + "zirahu\u00e9n": {}, + "p\u00e1tzcuaro": {}, + "carnikava": {}, + "lannion": {}, + "gjirokast\u00ebr-county": {}, + "warwick": {}, + "mar-del-plata": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "new-hampshire": {}, + "redang-island": {}, + "mangsit": {}, + "hradec-kr\u00e1lov\u00e9": {}, + "tacloban": {}, + "kuwait-city": {}, + "apia": {}, + "osh-region": {}, + "selemadeg": {}, + "alba": {}, + "belluno": {}, + "manado": {}, + "bergues": {}, + "arzon": {}, + "san-giustino": {}, + "new-braunfels": {}, + "da-nangvietnam": {}, + "alfta": {}, + "otaru": {}, + "lake-akan": {}, + "kushiro": {}, + "abashiri": {}, + "nakafurano": {}, + "fukuoka-prefecture": {}, + "naoshima": {}, + "beloi": {}, + "borgarnes": {}, + "albufeira/lisbon": {}, + "ames": {}, + "lucainena-de-las-torres": {}, + "los-dolses": {}, + "lichtenstein-castle": {}, + "baumholder": {}, + "arcata": {}, + "xiangtan-county": {}, + "viareggio": {}, + "levanto": {}, + "ngorongoro": {}, + "manyara-region": {}, + "ha-long-bay": {}, + "alwar": {}, + "paramaribo": {}, + "new-harmony": {}, + "miles-city": {}, + "poplar": {}, + "mackinaw-city": {}, + "cal\u00e7ad\u00e3o-de-porto-de-galinhas": {}, + "campina-grande": {}, + "rua-praia-de-pipa": {}, + "morada-nova": {}, + "pacifica": {}, + "lawrence": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "colorado": {}, + "northern-ireland": {}, + "taganrog": {}, + "loket": {}, + "taganrogrostov-oblast": {}, + "chilmark": {}, + "ollantaytambo-sun-temple": {}, + "punta-hermosa": {}, + "budens": {}, + "san-vicente-de-la-barquera": {}, + "el-jadida": {}, + "bayam\u00f3n": {}, + "szczyrk": {}, + "cailungo": {}, + "livorno": {}, + "gon\u00e7alves": {}, + "comandatuba": {}, + "jo\u00e3o-pessoa": {}, + "trancoso": {}, + "cuiab\u00e1": {}, + "svendborg": {}, + "walt-disney-world-resort": {}, + "jurer\u00ea-internacional": {}, + "scuol": {}, + "ba\u0161ka": {}, + "tuttlingen": {}, + "altaussee": {}, + "tirolo---tirol": {}, + "klagenfurt": {}, + "heiligenblut": {}, + "ramsau": {}, + "vitebsk": {}, + "groeningen": {}, + "san-blas-islands": {}, + "tiradentes": {}, + "eureka": {}, + "cape-cod-national-seashore-hq": {}, + "the-hamptons": {}, + "yingkou": {}, + "legnica": {}, + "joinville": {}, + "neuch\u00e2tel": {}, + "concepcion": {}, + "tacoma": {}, + "san-mateo": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "3" + }, + "paia": {}, + "beach-wall": {}, + "psp": {}, + "lhr": {}, + "los-altos": {}, + "bethany-park": {}, + "straid-road-ballynure": {}, + "arcadia": {}, + "ko-olina-beach-villas-resort": {}, + "kapolei": {}, + "antrim": {}, + "occidental": {}, + "westminster": {}, + "wellsburg": {}, + "coolanowle": {}, + "beaverton": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "shimla": {}, + "haiti": {}, + "val-david": {}, + "mount-bromo": {}, + "bocas-del-toro-archipelago": {}, + "zihuatanejo": {}, + "lethbridge": {}, + "w\u00fcrzburg": {}, + "kimberley": {}, + "united-arab-emirates": {}, + "dhaka-division": {}, + "trinidad-and-tobago": {}, + "ukraine": {}, + "rostov-oblast": {}, + "cugir": {}, + "san-franciscoca": {}, + "cresco": {}, + "arches-national-park": {}, + "seneca-rocks": {}, + "wiener-neustadt": {}, + "gro\u00dfebersdorf": {}, + "aqua-dome-l\u00e4ngenfeld": {}, + "barchfeld": {}, + "wiesau": {}, + "gais": {}, + "bar-municipality": {}, + "ocean-city": {}, + "albenga": {}, + "zufre": {}, + "white-sand-beach": {}, + "kirkenes": {}, + "north-cape": {}, + "hemsedal": {}, + "montfort-sur-argens": {}, + "calitri": {}, + "san-lorenzo-in-campo": {}, + "l\u00f8kken": {}, + "woking": {}, + "passail": {}, + "bah\u00eda-feliz": {}, + "fig-tree-bay": {}, + "hythe": {}, + "sandusky": {}, + "finland": {}, + "presidente-prudente": {}, + "\u0161iauliai": {}, + "girne": {}, + "nicosiacyprus": {}, + "siedlce": {}, + "administrative-unit-maribor": {}, + "r\u0113zekne-municipality": {}, + "kranjska-gora": {}, + "trabzon": {}, + "bayburt": {}, + "jeric\u00f3": {}, + "sort": {}, + "kalpitiya": {}, + "aktau": {}, + "rygge": {}, + "turks-islands": {}, + "tychy": {}, + "udawalawa": {}, + "ambalangoda": {}, + "ja-ela": {}, + "gampola": {}, + "badulla": {}, + "grimaud": {}, + "trentino-alto-adige/south-tyrol": {}, + "gliwice": {}, + "komodo-island": {}, + "rochester-hills": {}, + "st.-julian's": {}, + "banne": {}, + "la-ventana": {}, + "bah\u00eda-asunci\u00f3n": {}, + "rico": {}, + "pemberton": {}, + "poulsbo": {}, + "el-pescadero": {}, + "creston": {}, + "whangamata": {}, + "gnarabup": {}, + "lancelin": {}, + "aschaffenburggermany": {}, + "aschaffenburg": {}, + "conshohocken": {}, + "palolem-beach": {}, + "agonda-beach": {}, + "cola-beach": {}, + "sifnos-port": {}, + "milos-port": {}, + "amorgos-port": {}, + "koufonissi-port": {}, + "irakleia-port": {}, + "naxos-port": {}, + "mykonos-port": {}, + "pyatigorsk": {}, + "elbrus-summit-(5642m)-": {}, + "tarskoe": {}, + "breithorn-summit-(4164m)": {}, + "cervinia-valtournenche": {}, + "king-of-prussia": {}, + "hersonissos-maris": {}, + "varzo": {}, + "mont-blanc-summit-(4810m)": {}, + "canasvieiras": {}, + "rio-urubu": {}, + "al-ain": {}, + "yas-island": {}, + "st.-corona-am-wechsel": {}, + "kangaroo-island": {}, + "el-jem": {}, + "port-el-kantaoui": {}, + "sousse-": {}, + "kottayam": {}, + "vagator-beach": {}, + "kallithea-beach": {}, + "thoddoo": {}, + "titusville": {}, + "alona-beach": {}, + "togian-islands": {}, + "ampana-kota": {}, + "tagbilaran-city": {}, + "feldkirch": {}, + "san-lucas-el-grande": {}, + "holbox": {}, + "san-jos\u00e9-costa-rica-temple": {}, + "australian-capital-territory": {}, + "taxco": {}, + "twizel": {}, + "lower-shotover": {}, + "karangarua": {}, + "barrytown": {}, + "riwaka": {}, + "glenduan": {}, + "tairua": {}, + "saint-paul's-bay": {}, + "col\u00f3n-province": {}, + "miyajima-island": {}, + "islamabad": { + "hospital_score": "3", + "english_speaking": "2", + "nightlife": "1", + "female_friendly": "1", + "racial_tolerance": "4", + "peace_score": "1" + }, + "tsukuba": {}, + "ourense": {}, + "crimea": {}, + "stantsiya-roza-khutor": {}, + "zheleznogorsk": {}, + "abkhazia": {}, + "eski\u015fehir": {}, + "jericoacoara-beach": {}, + "horsham": {}, + "urbana": {}, + "redwood-city": {}, + "adrasan": {}, + "bogor": {}, + "baja-california": {}, + "kukup": {}, + "wuxi": { + "hospital_score": "2", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "1", + "peace_score": "3" + }, + "mianyang": {}, + "fort-walton-beach": {}, + "liberiaguanacaste": {}, + "itapema": {}, + "oberkirch": {}, + "racine": {}, + "santa-eul\u00e0ria-des-riu": {}, + "benalm\u00e1dena": {}, + "koh-lanta.": {}, + "mirissa-beach": {}, + "hikkaduwa-beach": {}, + "kitesurfing-lanka": {}, + "rayong": {}, + "santany\u00ed": {}, + "tofo": {}, + "milos": {}, + "calfosch": {}, + "ringwood": {}, + "gorakhpur": {}, + "maharajganj": {}, + "prievidza-district": {}, + "la-vega": {}, + "g\u0127arb": {}, + "greenwich": {}, + "m\u00f6nchengladbach": {}, + "nerja": {}, + "beaucaire": {}, + "valbonne": {}, + "songkhla": {}, + "kasimov": {}, + "bay-islands-department": {}, + "huez": {}, + "burgsvik": {}, + "cervinia-2001": {}, + "val-d'isere-3300": {}, + "harrisburg": {}, + "sarpsborg": {}, + "rhinebeck": {}, + "port-st.-lucie": {}, + "pleasant-valley": {}, + "clermont": {}, + "queens": {}, + "fermoy": {}, + "hokkaido-prefecture": {}, + "mijas": {}, + "lichfield": {}, + "cogolin": {}, + "hiroshima-prefecture": {}, + "baleal": {}, + "maria-alm": {}, + "kitzbuhel": {}, + "hong-kong-island": {}, + "carcavelos": {}, + "parede": {}, + "konya": { + "hospital_score": "3", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "2" + }, + "via-lago-di-garda": {}, + "zeist": {}, + "suwon": { + "hospital_score": "4", + "english_speaking": "2", + "nightlife": "2", + "female_friendly": "4", + "racial_tolerance": "3", + "peace_score": "3" + }, + "bayan-lepas": {}, + "comares": {}, + "hamois": {}, + "manzanillo": {}, + "la-tour-du-pin": {}, + "fukushima": {}, + "uriangato": {}, + "nicoya": {}, + "totnes": {}, + "everglades": {}, + "jezerce": {}, + "vail-ski-resort": {}, + "jamul": {}, + "barnstable-county": {}, + "azraq-water-reserve": {}, + "sochi-olympic-park": {}, + "kruger-gate": {}, + "mar\u010dana": {}, + "hav\u00ed\u0159ov": {}, + "follonica": {}, + "patti": {}, + "gandhinagar": {}, + "patna": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "1", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "2" + }, + "alstonville": {}, + "kulebaki": {}, + "lehi": {}, + "lehiut": {}, + "lake-comoitaly": {}, + "santa-cruz-department": {}, + "whitsundays": {}, + "bentotasouthern-province": {}, + "bentota": {}, + "santa-margherita-liguremetropolitan-city-of-genoa": {}, + "laag-zuthem": {}, + "ko-panyi": {}, + "u.s.-virgin-islands": {}, + "sebayur-island": {}, + "sumba-timur": {}, + "sumbawa": {}, + "sauternes": {}, + "province-of-bergamo": {}, + "bjursas": {}, + "riksgr\u00e4nsen": {}, + "lund-university": {}, + "vernon": {}, + "port-townsend": {}, + "m\u00e1ncora-districtpiura": {}, + "s\u00e3o-jos\u00e9-dos-campos": {}, + "fishers": {}, + "nizhnekamsk": {}, + "singen": {}, + "\u015bwidnica": {}, + "fortuna": {}, + "metepec": {}, + "coste\u00f1o-beach": {}, + "woodbridge": {}, + "upperville": {}, + "bracey": {}, + "nathrop": {}, + "panama-city-beach": {}, + "gleneden-beach": {}, + "bozman": {}, + "el-chorro": {}, + "county-donegal": {}, + "fairgrove": {}, + "kuantan": {}, + "purmamarca": {}, + "taboga": {}, + "cdg": {}, + "amsterdam-airport-schiphol": {}, + "playa-coronado": {}, + "david": {}, + "jyvaskyla": { + "hospital_score": "3", + "english_speaking": "4", + "nightlife": "4", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "4" + }, + "krathi": {}, + "espoo": {}, + "kemerovo": {}, + "tomsk": { + "hospital_score": "5", + "english_speaking": "1", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "1" + }, + "killington": {}, + "silver-spring": {}, + "omi\u0161": {}, + "slavonski-brod": {}, + "negotin": {}, + "belogradchik": {}, + "sapareva-banya": {}, + "sozopol": {}, + "murighiol": {}, + "dunaf\u00f6ldv\u00e1r": {}, + "mosonmagyar\u00f3v\u00e1r": {}, + "cricket-st-thomas": {}, + "bridgwater": {}, + "kehl": {}, + "gaschurn": {}, + "romans-sur-is\u00e8re": {}, + "maseru": {}, + "western-cape": {}, + "mundaka": {}, + "blankenberge": {}, + "hourtin": {}, + "stein-am-rhein": {}, + "reus": {}, + "ponce": {}, + "comala": {}, + "colima": {}, + "naousa": {}, + "x\u00e0bia": {}, + "mecca": {}, + "yanbu": {}, + "milford": {}, + "hopfgarten-markt": {}, + "montgai": {}, + "lewes": {}, + "stowe": {}, + "bridgeton": {}, + "slade": {}, + "fayetteville": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "new-paltz": {}, + "saint-johnsbury": {}, + "franconia": {}, + "alsfeld": {}, + "f\u0103g\u0103ra\u0219": {}, + "lascaux-19130": {}, + "montauban": {}, + "loupiac": {}, + "gaillac": {}, + "siargao": {}, + "westhampton-beach": {}, + "dundalk": {}, + "pontecesures": {}, + "heredia-province": {}, + "ticino": {}, + "grisslehamn": {}, + "verdon-gorge": {}, + "kiel": {}, + "saint-croix": {}, + "woodward": {}, + "marano-di-valpolicella": {}, + "via-roncofreddo": {}, + "lake-iseo": {}, + "alsace": {}, + "badenweiler": {}, + "azabujuban": {}, + "mori": {}, + "montefioralle": {}, + "blaye": {}, + "n\u00e9rac": {}, + "roussillon": {}, + "moustiers-sainte-marie": {}, + "m\u00e9xico": {}, + "carson-city": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "5", + "racial_tolerance": "4", + "peace_score": "3" + }, + "s\u00f8rv\u00e5gen": {}, + "svolv\u00e6r-havn": {}, + "abisko-\u00f6stra": {}, + "zlatibor": {}, + "latvia": {}, + "lithuania": {}, + "hungary": {}, + "santar\u00e9m-district": {}, + "\u00e9vora-district": {}, + "cascais-municipal-aerodrome": {}, + "kissimmee": {}, + "bushmills": {}, + "enniskillen": {}, + "bayeux": {}, + "ena": {}, + "pilsen-plaza": {}, + "kodagu": {}, + "fairfield": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "noord": {}, + "tullamore": {}, + "wausau": {}, + "dmanisi": {}, + "borjomi": {}, + "vilnius-county": {}, + "segovia": {}, + "aviemore": {}, + "pau": {}, + "rochegude": {}, + "casteljaloux": {}, + "futuroscope": {}, + "soltau": {}, + "munster": {}, + "turckheim": {}, + "rieupeyroux": {}, + "disneyland-paris": {}, + "gundershoffen": {}, + "le-pouliguen": {}, + "volta-mantovana": {}, + "yass": {}, + "coolangatta": {}, + "crescent-head": {}, + "north-haven": {}, + "tamworth": {}, + "ramona": {}, + "volpaia": {}, + "panzano-in-chianti": {}, + "lastra-a-signa": {}, + "roz-sur-couesnon": {}, + "mont-saint-michel": {}, + "ferrugem": {}, + "san-mart\u00edn-de-los-andes": {}, + "puerto-madryn": {}, + "bareilly": {}, + "port-blair": {}, + "meerut": {}, + "kota": {}, + "vung-tau": {}, + "vashist": {}, + "bir": {}, + "bhagalpur": {}, + "jaigaon": {}, + "phuentsholing": {}, + "tosh-": {}, + "dharamshala": {}, + "vellore": {}, + "allahabad": {}, + "mirzapur": {}, + "robertsganj": {}, + "jaunpur": {}, + "kings-mountain": {}, + "ziro": {}, + "le-grazie": {}, + "bar\u00e8ges": {}, + "juicy-oasis-retreat-&-spa": {}, + "phan-rang-th\u00e1p-ch\u00e0m": {}, + "ufa": {}, + "simferopol": {}, + "maui-brewing-company": {}, + "vale-de-telhas": {}, + "torshavn": {}, + "\u00e7\u0131ral\u0131": {}, + "veliko-tarnovo-province": {}, + "\u0431\u0443\u043a\u043e\u0432\u0435\u043b\u044c-/-bukovel": {}, + "halstatt": {}, + "ny\u00edregyh\u00e1za": {}, + "chiang-mairoi-et-thailand": {}, + "pachuca": {}, + "toluca": {}, + "lerma": {}, + "san-crist\u00f3bal": {}, + "castelnuovo-di-val-di-cecina": {}, + "larissa": {}, + "ringe": {}, + "jiquilillo": {}, + "south-beach": {}, + "otres-beach": {}, + "chachoengsao": {}, + "kasar-devi": {}, + "nakhon-ratchasima": {}, + "ploiesti": { + "hospital_score": "1", + "english_speaking": "5", + "nightlife": "2", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "4" + }, + "vega-de-san-mateo": {}, + "woodbury": {}, + "petoskey": {}, + "dawson-creek": {}, + "gila": {}, + "discovery-bay": {}, + "niter\u00f3i": {}, + "rosariosanta-f\u00e9": {}, + "kaduna-state": {}, + "maryland": {}, + "santiago-de-los-caballeros": {}, + "donegal": {}, + "skibbereen": {}, + "southsea-castle": {}, + "antigua-and-barbuda": {}, + "kenya": {}, + "arcachon": {}, + "basse-terre": {}, + "l'\u00eele-d'yeu": {}, + "vinalhaven": {}, + "santhiya-koh-yao-yai-resort-&-spa": {}, + "treviso": { + "hospital_score": "4", + "english_speaking": "3", + "nightlife": "4", + "female_friendly": "4", + "racial_tolerance": "2", + "peace_score": "3" + }, + "burnham-on-crouch": {}, + "pirovac": {}, + "orange-beach": {}, + "santarem": {}, + "st-john's": {}, + "corpus-christi": { + "hospital_score": "4", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "4", + "peace_score": "3" + }, + "baguio-philippines": {}, + "united-states-of-america": {}, + "moldova": {}, + "vitoria-gasteiz": {}, + "saint-martin-de-belleville": {}, + "st.-george": {}, + "heroica-veracruz": {}, + "kopaonik": {}, + "zaporizhzhya": {}, + "forl\u00ec": {}, + "pleasant-hill": {}, + "wyoming": {}, + "lamai-beach": {}, + "summerside": {}, + "langkawikedah-malaysia": {}, + "canton-of-z\u00fcrich": {}, + "jinchuan": {}, + "kokkola": {}, + "djibouti-city": {}, + "thomonde": {}, + "canet-de-mar": {}, + "huldenberg": {}, + "weipa": {}, + "timaru": {}, + "cl-cala-de-bou": {}, + "dxb": {}, + "sassenheim": {}, + "laguna-niguel": {}, + "mount-katahdin": {}, + "mill-valley": {}, + "bregenz": {}, + "dalaman": {}, + "ayvalik": {}, + "bolay\u0131r-plaj\u0131": {}, + "rambukkana": {}, + "girne-sahili": {}, + "hohenems": {}, + "lima-regionperu": {}, + "gu\u00e9thary": {}, + "saint-gilles": {}, + "rye": {}, + "tupungato": {}, + "isabela-island": {}, + "cotopaxi": {}, + "jaibalito": {}, + "kru\u0161etnica": {}, + "playas-de-tijuana": {}, + "ube": { + "hospital_score": "4", + "english_speaking": "1", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "3", + "peace_score": "4" + }, + "sequoia-national-forest": {}, + "para\u0107in": {}, + "rorschach-hafen-station": {}, + "belle-river-district-high-school": {}, + "kusatsu-machi": {}, + "simpson-bay": {}, + "wailea-makena": {}, + "veran\u00f3polis": {}, + "le-tampon": {}, + "grand-baie": {}, + "pearl-city": {}, + "palau": {}, + "la-maddalena": {}, + "bonifacio": {}, + "fernandina-beach": {}, + "new-london": {}, + "newport-news": {}, + "dunoon": {}, + "gourette": {}, + "al\u00e8s": {}, + "kefalonia": {}, + "szeged": {}, + "anglesey": {}, + "snowdonia-national-park": {}, + "palo": {}, + "ararangu\u00e1": {}, + "ormond-beach": {}, + "west-jefferson": {}, + "rossland": {}, + "disneyland-resort": {}, + "phuketthailand": {}, + "roseville": {}, + "garberville": {}, + "kahuku": {}, + "bustarviejo": {}, + "janesville": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "3", + "racial_tolerance": "4", + "peace_score": "3" + }, + "hengelo": {}, + "ooty": {}, + "yeoford": {}, + "lakota": {}, + "north-dakota": {}, + "san-sebasti\u00e1n-de-la-gomera": {}, + "salima-district": {}, + "farnborough": {}, + "sumter": {}, + "albuquerquenm": {}, + "kozhikode": { + "hospital_score": "2", + "english_speaking": "3", + "nightlife": "2", + "female_friendly": "2", + "racial_tolerance": "2", + "peace_score": "2" + }, + "tusayan": {}, + "belden": {}, + "saurimo": {}, + "stoneham": {}, + "oregon": {}, + "montana": {}, + "mount-rushmore-national-memorial": {}, + "estevan": {}, + "helensburgh": {}, + "grimentz": {}, + "dharavandhoo": {}, + "ross-on-wye": {}, + "san-gil": {}, + "koh-rong-beach": {}, + "vyborg": {}, + "veliky-novgorod": {}, + "pripyat": {}, + "cheboksary": {}, + "diveevsky": {}, + "nikolsk": {}, + "orillia": {}, + "kawartha-lakes": {}, + "florida-city": {}, + "castries": {}, + "roseau": {}, + "fort-de-france": {}, + "rancho-palos-verdes": {}, + "marigot": {}, + "piombino": {}, + "freckenfeld": {}, + "hergiswil": {}, + "wetzikon": {}, + "mellingen": {}, + "neuenhof": {}, + "wettingen": {}, + "parque-nacional-manuel-antonio": {}, + "ayacucho": {}, + "brockvilleon": {}, + "goa-velha": {}, + "chapala": {}, + "playa-el-tunco": {}, + "mount-maunganui": {}, + "maastrichtnetherlands": {}, + "togo": {}, + "plano": {}, + "joao-pessoa": { + "hospital_score": "1", + "english_speaking": "1", + "nightlife": "4", + "female_friendly": "3", + "racial_tolerance": "2", + "peace_score": "3" + }, + "vernantes": {}, + "buen-hombre": {}, + "mobile": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "2", + "racial_tolerance": "3", + "peace_score": "3" + }, + "baler": {}, + "cabo-pulmo-national-park": {}, + "ripon": {}, + "aluthgama": {}, + "pennsylvania": {}, + "puerto-escondido-international-airport": {}, + "jekyll-island": {}, + "playa-flamingo": {}, + "scotia": {}, + "thiruvalla-town": {}, + "san-pedrito-beach": {}, + "townsend": {}, + "tangstad": {}, + "costa-da-caparica": {}, + "napili-honokowai": {}, + "el-prodigio": {}, + "rio-claro": {}, + "ceduna": {}, + "santa-cruz-de-le\u00f3n-cort\u00e9s": {}, + "osa-peninsula": {}, + "yantzaza": {}, + "arabba": {}, + "chopok": {}, + "trieste-\u2013-friuli-venezia-giulia-airport": {}, + "hitler's-tea-house": {}, + "mildenberg": {}, + "tupapa-tapere": {}, + "glace-bay": {}, + "margarita-island-venezuela": {}, + "kyotokyoto-prefecture": {}, + "cazenovia": {}, + "englewood": {}, + "neenah": {}, + "bang-lamung-\u0e15\u0e33\u0e1a\u0e25-\u0e1a\u0e32\u0e07\u0e25\u0e30\u0e21\u0e38\u0e07": {}, + "gornja-nugla": {}, + "muggia": {}, + "montanitasanta-elena": {}, + "in\u010dukalns": {}, + "sunrise-beach": {}, + "berrien-township": {}, + "st.-john'snl": {}, + "daytona-beach-shores": {}, + "puerto-morelos": {}, + "san-teodoro": {}, + "kragujevac": {}, + "\u010da\u010dak": {}, + "vrnja\u010dka-banja": {}, + "kraljevo": {}, + "novi-pazar": {}, + "muizenberg": {}, + "zuidwolde": {}, + "estoniya": {}, + "kawaihaehi": {}, + "castlemaine": {}, + "deception-bay": {}, + "emu-plains": {}, + "penrith": {}, + "blue-mountains": {}, + "sun-city": {}, + "ardebil": {}, + "sarp": {}, + "grand-lake": {}, + "newark-nj": {}, + "pichincha-province": {}, + "lake-atitl\u00e1nsolol\u00e1-department": {}, + "mon\u00f2ver": {}, + "westhampton": {}, + "kabul": {}, + "bryson-city": {}, + "marysville": { + "hospital_score": "2", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "5", + "peace_score": "3" + }, + "martel": {}, + "cepagatti": {}, + "saint-jouin": {}, + "villers-sur-mer": {}, + "salles": {}, + "oyr\u00e9": {}, + "noirmoutier-en-l'\u00eele": {}, + "dinard": {}, + "sunshine-coast-regional": {}, + "samo\u00ebns": {}, + "monschau": {}, + "galapagos": {}, + "phalaborwa": {}, + "komi\u017ea": {}, + "guaimaca": {}, + "lubbock": { + "hospital_score": "3", + "english_speaking": "5", + "nightlife": "3", + "female_friendly": "4", + "racial_tolerance": "4", + "peace_score": "3" + }, + "kaaawa": {}, + "playa-de-las-americas": {}, + "vieux-fort": {}, + "united-states-space-camp": {}, + "fort-sumter-national-monument": {}, + "seabrook-island": {}, + "moss-vale": {}, + "gunning": {}, + "cowra": {}, + "parkes-regional-airport-(pke)": {}, + "nananu-i-ra-island": {}, + "peniscola": {}, + "vila-nova-de-milfontes": {}, + "leverkusen": {}, + "draper": {}, + "oak-city": {}, + "lehman-caves": {}, + "ely": {}, + "yosemite-junction": {}, + "nayarit": {}, + "neftekamsk": {}, + "erbil": {}, + "sana'a": {}, + "gagra": {}, + "valencia-city": {}, + "ulsan": {}, + "sandy-springs": {}, + "palm-harbor": {}, + "culebra": {}, + "water-island": {}, + "tarpon-springs": {} + } +} \ No newline at end of file diff --git a/data/trips.csv b/data/trips.csv index b0e3bf158fbc0ae2375bfc7591d538ccfeb0b165..3c258d2b61e52c3cd14f7c5799da9b219a82ae2b 100644 --- a/data/trips.csv +++ b/data/trips.csv @@ -825,7 +825,7 @@ adamnowek, London, United Kingdom, 2006-01-18, 2006-01-19, 1.0, 51.5073509, -0.1 adamnowek, Exeter, United Kingdom, 2006-01-17, 2006-01-18, 1.0, 50.718412, -3.5338990000000194 adamnowek, Bristol, United Kingdom, 2006-01-16, 2006-01-17, 1.0, 51.454513, -2.5879099999999653 adamnowek, Cardiff, United Kingdom, 2006-01-15, 2006-01-16, 1.0, 51.48158100000001, -3.1790899999999738 -adamnowek, London, United Kingdom, 20016-01-12, 2006-01-15, 2.0, 51.5073509, -0.12775829999998223 +adamnowek, London, United Kingdom, 2016-01-12, 2006-01-15, 2.0, 51.5073509, -0.12775829999998223 adamnowek, Vancouver, Canada, 2005-12-15, 2006-01-12, 28.0, 49.2827291, -123.12073750000002 adamnowek, New York City, United States, 2005-12-09, 2005-12-15, 6.0, 40.7127837, -74.00594130000002 adamnowek, Vancouver, Canada, 2005-11-13, 2005-12-09, 26.0, 49.2827291, -123.12073750000002 @@ -19740,7 +19740,6 @@ jeffmadduxcpa, Hoi An, Vietnam, 2015-12-08, 2015-12-08, 1.0, 15.8800584, 108.338 jeffmadduxcpa, Da Nang, Vietnam, 2015-12-03, 2015-12-17, 14.0, 16.0544068, 108.20216670000002 jeffmadduxcpa, San Francisco, United States, 2015-12-02, 2015-12-02, 1.0, 37.7749295, -122.41941550000001 jeffmadduxcpa, Seattle, United States, 2015-10-24, 2015-10-26, 2.0, 47.6062095, -122.3320708 -jeffmadduxcpa, Napa, United States, Oct 18, 2015, Oct 18, 2015, 1.0, 38.2971, -122.2855 jeffmadduxcpa, South Lake Tahoe, United States, 2015-08-30, 2015-08-31, 1.0, 38.9332, -119.9843 jeffmadduxcpa, San Francisco, United States, 2015-06-15, 2015-06-17, 2.0, 37.7749295, -122.41941550000001 jeffmadduxcpa, Puerto Vallarta, Mexico, 2015-05-10, 2015-05-27, 17.0, 20.65340699999999, -105.2253316 @@ -19751,16 +19750,12 @@ jeffmadduxcpa, Puerto Vallarta, Mexico, 2014-11-16, 2014-11-20, 4.0, 20.65340699 jeffmadduxcpa, Seattle, United States, 2014-09-27, 2014-09-29, 2.0, 47.6062095, -122.3320708 jeffmadduxcpa, Napa, United States, 2014-09-06, 2014-09-06, 1.0, 38.2975381, -122.28686500000003 jeffmadduxcpa, San Francisco, United States, 2014-08-24, 2014-08-26, 2.0, 37.7749295, -122.41941550000001 -jeffmadduxcpa, Lake Tahoe, United States, Apr 11, 2014, Apr 13, 2014, 2.0, 39.09684929999999, -120.0323507 jeffmadduxcpa, Maui, United States, 2014-01-15, 2014-01-20, 5.0, 20.7983626, -156.33192529999997 jeffmadduxcpa, Portland, United States, 2013-09-20, 2013-09-22, 2.0, 45.52306220000001, -122.67648159999999 jeffmadduxcpa, Seattle, United States, 2013-06-22, 2013-06-26, 4.0, 47.6062095, -122.3320708 jeffmadduxcpa, Berkeley, United States, 2013-06-02, 2013-06-02, 1.0, 37.8715926, -122.27274699999998 jeffmadduxcpa, Las Vegas, United States, 2012-11-28, 2012-11-30, 2.0, 36.1699412, -115.13982959999998 jeffmadduxcpa, San Luis Obispo, United States, 2012-09-15, 2012-09-16, 1.0, 35.28275240000001, -120.6596156 -jeffmadduxcpa, Lake Tahoe, United States, Jul 20, 2012, Jul 22, 2012, 2.0, 39.09684929999999, -120.0323507 -jeffmadduxcpa, Lake Tahoe, United States, Jul 4, 2012, Jul 4, 2012, 1.0, 39.09684929999999, -120.0323507 -jeffmadduxcpa, Reno, United States, Aug 23, 2011, Aug 25, 2011, 2.0, 39.5296329, -119.8138027 jeffmadduxcpa, Santa Monica, United States, 2011-02-01, 2011-02-02, 1.0, 34.0194543, -118.4911912 jeffmadduxcpa, Patong, Thailand, 2010-04-27, 2010-04-29, 2.0, 7.8969151, 98.3020123 jeffmadduxcpa, Ko Lanta, Thailand, 2010-04-25, 2010-04-27, 2.0, 7.624367700000001, 99.07922630000007 @@ -19768,7 +19763,6 @@ jeffmadduxcpa, Ao Nang, Thailand, 2010-04-22, 2010-04-25, 3.0, 8.0120253, 98.837 jeffmadduxcpa, Ko Phi Phi, Thailand, 2010-04-16, 2010-04-22, 6.0, 7.747049899999999, 98.78596519999996 jeffmadduxcpa, Phuket, Thailand, 2010-04-15, 2010-04-16, 1.0, 7.8804479, 98.39225039999997 jeffmadduxcpa, Chiang Mai, Thailand, 2010-04-13, 2010-04-15, 2.0, 18.7888472, 98.9858313 -jeffmadduxcpa, Phra Nakhon Si Ayutthaya, Thailand, april 10, 2010, april 12, 2010, 2.0, 14.3532128, 100.56895989999998 jeffmadduxcpa, Bangkok, Thailand, 2010-04-08, 2010-04-10, 2.0, 13.7563309, 100.50176510000006 jeffmadduxcpa, San Francisco, United States, 2010-04-07, 2010-04-07, 1.0, 37.7749295, -122.41941550000001 jeffmadduxcpa, Denver, United States, 2008-03-09, 2008-03-16, 7.0, 39.7392358, -104.990251 diff --git a/src/crawler/__init__.py b/src/crawler/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/crawler/nomad_city_crawler.py b/src/crawler/nomad_city_crawler.py new file mode 100644 index 0000000000000000000000000000000000000000..3fa682272c0c3fecec93cc64230a03ba7e29e7b5 --- /dev/null +++ b/src/crawler/nomad_city_crawler.py @@ -0,0 +1,50 @@ +from typing import List, Dict + +from src.handler.csv_handler import CsvHandler +from src.handler.json_handler import JsonHandler +from src.scraper.scraper import Scraper + + +class NomadCityCrawler: + attribute_to_find = "data-key" + attribute_to_find_values = [ + "hospital_score", + "english_speaking", + "nightlife", + "female_friendly", + "racial_tolerance", + "peace_score"] + + @staticmethod + def get_cities_info(cities_to_browse: List[str]) -> dict: + cities_stats = {} + cities_stats["cities"] = {} + + for city in cities_to_browse: + print("working on " + city) + try: + cities_stats["cities"][city] = {} + + context = Scraper.at("https://nomadlist.com/" + city) + for key, element in context.with_attribute_having_values(NomadCityCrawler.attribute_to_find, NomadCityCrawler.attribute_to_find_values): + score = element.find().get_attribute_value("data-value") + cities_stats["cities"][city].update({key: score}) + + except Exception as e: + print("For city " + city) + print(e) + + return cities_stats + + +def main(): + cities = [] + for line in CsvHandler.load("./../../data/trips.csv")[1]: + cities.append(line["city"].lower().replace(" ", "-")) + + cities = list(dict.fromkeys(cities)) + cities_info = NomadCityCrawler.get_cities_info(cities) + JsonHandler.save("./../../data/cities_stats.json", cities_info) + + +main() \ No newline at end of file diff --git a/src/handler/__init__.py b/src/handler/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/handler/csv_handler.py b/src/handler/csv_handler.py new file mode 100644 index 0000000000000000000000000000000000000000..6c0bf6613d2be822c1cd87dbf66ee1dcb7aad8da --- /dev/null +++ b/src/handler/csv_handler.py @@ -0,0 +1,68 @@ +import csv +from typing import List + + +class CsvHandler: + + @staticmethod + def __removeInitSpace__(word: str) -> str: + """ + Removes space at index 0 if present + """ + if word.startswith(" "): + return word[1:] + else: + return word + + @staticmethod + def load(filepath: str) -> (List[str], List[dict]): + """ + Loads csv file + :param filepath: path to csv file + :return: tuple of (list of header params, list of dict in format: {header1: value1, header2: value2,...}) + """ + item_list = [] + with open(filepath, 'r') as csvFile: + header = csvFile.readline().split(",") + + for i in range(1, len(header)): + header[i] = CsvHandler.__removeInitSpace__(header[i]) + + reader = csv.reader(csvFile) + for row in reader: + for i in range(1, len(row)): + row[i] = CsvHandler.__removeInitSpace__(row[i]) + + dic = {} + for i in range(1, len(header)): + dic[header[i]] = row[i] + item_list.append(dic) + csvFile.close() + + return header, item_list + + @staticmethod + def save(filepath: str, header: list, csv_as_list_dic: List[dict]) -> None: + """ + Saves csv file into disk + :param filepath: path to save csv file (with filename) + :param header: header to save into file + :param csv_as_list_dic: list of dic in format {header1: value1, header2: value2,...} + :return: None + """ + with open(filepath, 'w') as csvFile: + header_line = "" + for headerItem in header: + header_line += headerItem + "," + header_line = header_line[0:len(header_line) - 1] + csvFile.write(header_line + "\n") + + for row in csv_as_list_dic: + line = "" + for headerItem in header: + line = line + row[headerItem] + "," + line = line[0:len(line) - 1] + csvFile.write(line + "\n") + csvFile.close() + + diff --git a/src/handler/json_handler.py b/src/handler/json_handler.py new file mode 100644 index 0000000000000000000000000000000000000000..9805cd018fc332b7e767c4536cb16c5455c4bee6 --- /dev/null +++ b/src/handler/json_handler.py @@ -0,0 +1,28 @@ +import json + + +class JsonHandler: + @staticmethod + def load(filepath: str) -> dict: + """ + Loads json from disk + :param filepath: path to json file (with filename) + :return: json as dict + """ + with open(filepath, 'r') as jsonFile: + json_as_string = jsonFile.read() + jsonFile.close() + return json.loads(json_as_string) + + @staticmethod + def save(filepath: str, json_as_dict: dict) -> None: + """ + Saves json into disk + :param filepath: path to save json file (with filename) + :param json_as_dict: dict + :return: None + """ + json_as_string = json.dumps(json_as_dict, indent=4) + with open(filepath, "w+") as jsonFile: + jsonFile.write(json_as_string) + jsonFile.close() diff --git a/src/scraper.py b/src/scraper.py index 775c5b40a4ea1588df1229891665e700260ad899..f8aeee79be016ed1327025f7ba016e847c0df147 100644 --- a/src/scraper.py +++ b/src/scraper.py @@ -1,8 +1,140 @@ -# PV254-city-recommender +from bs4 import BeautifulSoup +import requests -Project for PV254 (Fall 2019). Recommends a city based on your travel history. +BASE_URL = "https://nomadlist.com/" +DEFAULT_USER = "@levelsio" -## Dataset +def get_users(soup, n=1000): + """Gets users from "crossed paths with" section on a user's profile. + Args: + soup: BeautifulSoup object from loaded page + n: number of users to get + Returns: + List of users + """ + users = [] + user_index = 0 + while len(users) < n: + o = soup.find("div", {"id": "most-overlaps"}) + if o: + for a in o.find_all('a', href=True): + users.append(a['href']) + users = list(dict.fromkeys(users)) # removing duplicates # + page = requests.get(f"{BASE_URL}{users[user_index]}"); user_index+=1 + soup = BeautifulSoup(page.content, 'html.parser') + return users -The dataset is scraped from [nomadlist.com](www.nomadlist.com) -The dataset is found in `data/trips.csv` contains \ No newline at end of file +def get_most_visited_cities(soup): + """Gets the most visited cities by a user from 'Most visited section'. + Args: + soup: BeautifulSoup object from loaded page + Returns: + Dict of city: number of visits + """ + trips_to_cities = soup.find("div", class_="most_trips_to_cities") + trips_to_cities_name = trips_to_cities.div.find_all("li") + trips_to_cities_count = trips_to_cities.div.find_all("span", class_="extra-people-counter") + city_visits = dict() + for city, counter in zip(trips_to_cities_name, trips_to_cities_count): + city_visits[city["data-slug"]] = counter.text.strip("x") + return city_visits + +def get_most_time_spent(soup): + """Gets the most time spent in cities by a user from 'Most time spent section'. + Args: + soup: BeautifulSoup object from loaded page + Returns: + Dict of city: time spent + """ + most_visited_cities = soup.find_all("div", class_="most_visited_cities") + city_time = dict() + if len(most_visited_cities) > 1: + most_time_spent = most_visited_cities[1] # [1] because there's 2 divs with the same class name, i want the second one + most_time_spent_name = most_time_spent.div.find_all("li") + most_time_spent_count = most_time_spent.div.find_all("span", class_="extra-people-counter") + for city, time in zip(most_time_spent_name, most_time_spent_count): + city_time[city["data-slug"]] = time.text + return city_time + +def convert_time_to_days(t): + """ Converts time infomation in years and months to days + Args: + t: string of time + Returns: + time span as an integer (in days) + """ + try: + if t[-2:] == "yr": + return float(t[:-2])*30.5*365.25 + elif t[-2:] == "mo": + return float(t[:-2])*30.5 + elif t[-1:] == "d": + return float(t[:-1]) + else: + return float(t[:-2]) + except ValueError: + return t + +def convert_list_time_to_days(time): + """ Converts time spans in the form: ['1yr', '11mo', ...] to days. + Args: + time: list of times + Returns: + list of times in days + """ + time_in_days = [] + for t in time: + time_in_days.append(convert_time_to_days(t)) + return time_in_days + +def parse_trip_information(trip, user, table_row): + """ Gets relevant info from trip table row + Args: + trip: Specific trip to be parsed + user: User associated with the trip + table_row: csv string of rows to which a new trip info will be added + Returns: + One comma separated row corresponding to a single trip + """ + delimiter = ", " + table_row += user.strip("/@") + delimiter + city_name = trip.find("td", class_="name").h2.text.split(",")[0] + table_row += city_name + delimiter + table_row += trip.find("td", class_="country").text + delimiter + table_row += trip['data-date-start'] + delimiter + table_row += trip['data-date-end'] + delimiter + + table_row += str(convert_time_to_days(trip.find("td", class_="trip_start").find_next('td').text)) + delimiter + + table_row += trip['data-latitude'] + delimiter + trip['data-longitude'] + "\n" + + return table_row + +def create_dataset(n_users=3700): + """ Creates the user-trip dataset by scraping user web pages from nomadlist.com. + Dumps the output to 'trips.csv' file. + Args: + n_users: Number of users to searche for + """ + page = requests.get(f"{BASE_URL}{DEFAULT_USER}") + soup = BeautifulSoup(page.content, 'html.parser') + users = get_users(soup, n_users) + print(f"Found {len(users)} users.") + + f = open('trips.csv', 'w+', encoding="utf-8") + table_row="user, city, country, trip_start, trip_end, trip_duration, latitude, longitude\n" + + for user in users: + page = requests.get(f"{BASE_URL}{user}") + soup = BeautifulSoup(page.content, 'html.parser') + trips = soup.find_all("tr", class_="trip") + print(f"Found {len(trips)} trips for {user}.") + + for trip in trips: + table_row = parse_trip_information(trip, user, table_row) + f.write(table_row) + table_row = "" + f.close() + +if __name__ == "__main__": + create_dataset() \ No newline at end of file diff --git a/src/scraper/__init__.py b/src/scraper/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/scraper/scraper.py b/src/scraper/scraper.py new file mode 100644 index 0000000000000000000000000000000000000000..d8534d163df98ccb88e34ef52b8a26c94609967c --- /dev/null +++ b/src/scraper/scraper.py @@ -0,0 +1,63 @@ +from __future__ import annotations + +from typing import List, Dict + +from bs4 import BeautifulSoup +import requests + + +class ScraperBodyGet: + def __init__(self, soup: BeautifulSoup): + self.soup = soup + + def get_attribute_value(self, attribute: str): + return self.soup[attribute] + + def get_text(self): + return self.soup.get_text() + + def also(self): + return ScraperBodyInit(soup=self.soup) + + +class ScraperBodyInit: + soup: BeautifulSoup + element_name: str = None + element_attribute: (str, str) = None + + def __init__(self, soup: BeautifulSoup): + self.soup = soup + + def at_element(self, name_of_element: str) -> ScraperBodyInit: + self.element_name = name_of_element + return self + + def with_attribute_having_value(self, attribute: str, value: str) -> ScraperBodyInit: + self.element_attribute = (attribute, value) + return self + + def with_attribute_having_values(self, attribute: str, values: List[str]) -> List[(str, ScraperBodyInit)]: + results = [] + for value in values: + s = ScraperBodyInit(self.soup) + s.at_element(self.element_name) + s.with_attribute_having_value(attribute, value) + results.append((value, s)) + return results + + def find(self): + attrs = {self.element_attribute[0]: self.element_attribute[1]} + new_soup = self.soup.find(self.element_name, attrs) + return ScraperBodyGet(new_soup) + + def reset(self) -> None: + self.element_name = None + self.element_attribute = None + + +class Scraper: + @staticmethod + def at(web: str) -> ScraperBodyInit: + page = requests.get(web) + if page.status_code == 200: + return ScraperBodyInit(BeautifulSoup(page.content, "html.parser"))