www.wtw.com
Open in
urlscan Pro
3.124.255.39
Public Scan
Submitted URL: http://wtw.com/
Effective URL: https://www.wtw.com/en/
Submission: On August 12 via api from US — Scanned from DE
Effective URL: https://www.wtw.com/en/
Submission: On August 12 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /en/
<form method="post" action="/en/" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="https://ajax.aspnetcdn.com/ajax/4.6/1/WebForms.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
window.WebForm_PostBackOptions || document.write('<script type="text/javascript" src="/WebResource.axd?d=oCKj8IvNuIk7gy1HJUatdrxc44YP4nQWME8Wxdd6DGPnke3qspDXbthnORZlPAcXN7_u1xDrkIusxuRK-nyT4HeVlao1&t=637290645560000000"><\/script>'); //]]>
</script>
<script type="text/javascript">
//<![CDATA[
var jTemplateType = '0';
var loadedFromVersion = 'False';
var uiCulture = 'en-US'; //]]>
</script>
<script src="https://ajax.aspnetcdn.com/ajax/4.6/1/MicrosoftAjax.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
(window.Sys && Sys._Application && Sys.Observer) || document.write(
'<script type="text/javascript" src="/ScriptResource.axd?d=C0-jv8mCc3YH01nQBjS-_7iqxAhQwr1PAupAXWe9c-BPPGUzsXZR04BVmo0GfZ6DYf-qRgRxNRrIK4XxIcCtMtvwYi2DvMZh8gSrkeCsXgxJzW1HtAy8NZq70TAxcfFSjb7b6N-fcCXIWvVYDR11RiosX1o1&t=2a797f5c"><\/script>'
); //]]>
</script>
<script src="https://ajax.aspnetcdn.com/ajax/4.6/1/MicrosoftAjaxWebForms.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
(window.Sys && Sys.WebForms) || document.write(
'<script type="text/javascript" src="/ScriptResource.axd?d=CkWDPtA3hXBHN7AqG5hE3AqHF3VpqsYHc2CORuy9yY-68UdbUfqEq988tjrPIpe-j_OLXO-j30fU7S3eQMTXmXucYiW4XyTEgu6YEG0ouvBlwMiFFZrNJMo6VfqMY2-D_9TN8uAlpOAtlcy_A1FeI5E3pNtBAkyeM0UpNdqXkUDtx89Z0&t=2a797f5c"><\/script>'
); //]]>
</script>
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('scriptManager', 'form1', [], [], [], 90, '');
//]]>
</script>
<div class="pageWrap">
<script>
// function to load a javascript file ascynchronously then execute an action when it has been loaded
function lazyLoad(scriptUrl, callbackAction) {
$.ajax({
url: scriptUrl,
dataType: 'script',
cache: true, // or get new, fresh copy on every page load
success: function() {
// Callback
callbackAction();
}
});
}
$(document).ready(function() {
// lazy load the javascript for sharethis then when it is done, execute it
//replace parameters with client info as this is a mock sharethis account for presentation purposes only
var switchTo5x = true;
if (location.protocol === 'https:') {
lazyLoad('https://ws.sharethis.com/button/buttons.js', function() {
stLight.options({
publisher: "0d927153-0a6f-4fe8-8e22-ece1468175dc",
doNotHash: false,
doNotCopy: true,
hashAddressBar: false
});
});
} else {
lazyLoad('http://w.sharethis.com/button/buttons.js', function() {
stLight.options({
publisher: "0d927153-0a6f-4fe8-8e22-ece1468175dc",
doNotHash: false,
doNotCopy: true,
hashAddressBar: false
});
});
}
// if you wanted to add lazy loading for a slider this would be an example
// lazyLoad('/slider.js', function() { $('something').slider(); });
});
$(document).ready(function() {
$('#searchMain').parent().find('.ui-helper-hidden-accessible').hide();
var ddlCountry = $('.iAppsFormDdlCountry').first();
ddlCountry.empty();
ddlCountry.append('<option selected>Country *</option>');
$.each(countriesArray, function(_, val) {
ddlCountry.append(($('<option/>').val(val.countryname).html(val.countryname)));
});
$(ddlCountry).siblings('label').removeClass('show');
//Populate states drop down with default United States states
var ddlStates = $('.iAppsFormDdlState').first();
ddlStates.empty();
ddlStates.append('<option selected>State *</option>');
var filteredStates = $.grep(statesArray, function(val) {
return val.country == "United States";
});
$.each(filteredStates, function(_, val) {
ddlStates.append(($('<option/>').val(val.statename).html(val.statename)));
});
$(ddlStates).siblings('label').removeClass('show');
$("#searchMain").autocomplete({
source: function(request, response) {
$.ajax({
url: "/api/search/GetAutoComplete",
dataType: "json",
data: {
text: request.term,
Index: 'FrontEnd',
IndexName: 'iapps-xylem_analyticsde-wtw-en-front-prod'
},
success: function(data) {
if (data != null) {
$('#searchMain').parent().find('.ui-helper-hidden-accessible').hide();
response(data.options);
if (!data.options.length) {
$('#searchMain').parent().find('.ui-helper-hidden-accessible').hide();
}
}
},
error: function(request, status, error) {
console.log(error);
}
});
},
minLength: 2
});
});
function closePopup() {
$.magnificPopup.close();
}
function PopulateStates() {
var selCounty = $('.iAppsFormDdlCountry').first().val();
var ddlStates = $('.iAppsFormDdlState').first();
ddlStates.empty();
ddlStates.append('<option selected>State *</option>');
var filteredStates = $.grep(statesArray, function(val) {
return val.country == selCounty;
});
$.each(filteredStates, function(_, val) {
ddlStates.append(($('<option/>').val(val.statename).html(val.statename)));
});
$(ddlStates).siblings('label').removeClass('show');
}
</script>
<header class="headerMain">
<div class="noindex">
<div class="headerMain-util">
<div class="headerMain-utilInner">
<div class="headerMain-utilZone01">
<i class="placeholder" data-placeholderid="4405"></i>
<div class="logoMain">
<a href="https://www.wtw.com/en"></a>
</div>
</div>
<div class="headerMain-utilZone02">
</div>
<div class="headerMain-utilZone03">
<nav class="navUtil">
<ul class="CLHierarchicalNav"><i class="placeholder" data-placeholderid="7689"></i>
<li class="first"><a href="https://www.xylemanalytics.com/en" target="_blank">Xylem Analytics</a></li>
<li><a href="https://www.xylemanalytics.com/en/company/news" target="_blank">News</a></li>
<li class="last"><a href="https://www.xylem.com/" target="_blank">Xylem Inc.</a></li>
</ul>
</nav>
<i class="placeholder" data-placeholderid="5360"></i>
<div data-mfp-focus="#searchMain" data-mfp-src="#search-popup" class="searchToggle openPopup">Search</div>
<div class="popup mfp-hide popup--search" id="search-popup">
<div class="searchBox searchBox--main">
<input id="searchMain" type="text" placeholder="Search" name="" class="searchBox-textField ui-autocomplete-input" aria-label="Search" autocomplete="off"><span role="status" aria-live="polite"
class="ui-helper-hidden-accessible"></span>
<a class="searchBox-submit" id="searchBox-submit" href="javascript:void(0)" aria-label="Submit">Submit</a>
</div>
</div>
<script>
$(document).ready(function() {
$('#searchMain').keydown(function(event) {
if (event.keyCode == 13) {
event.preventDefault();
submitSiteSearch($('#searchMain').val());
}
});
$('#searchBox-submit').click(function() {
submitSiteSearch($('#searchMain').val());
});
});
function submitSiteSearch(searchVal) {
if (searchVal != "") {
document.location = 'https://www.wtw.com/en/search-results?q=' + encodeURI(searchVal);
}
}
</script>
<i class="placeholder" data-placeholderid="6919"></i>
<nav class="navLanguage">
<div class="navLanguageToggle flyout">
<a class="" href="http://www.wtw.com/en">English</a>
<ul class="flyout-content">
<li><a class="" href="http://www.wtw.com/de">German</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<div class="logoSlider">
<div class="contained">
<div class="logoSlider-images slick-initialized slick-slider">
<div aria-live="polite" class="slick-list draggable">
<div class="slick-track" role="listbox" style="opacity: 1; width: 935px; transform: translate3d(0px, 0px, 0px);">
<figure class="logoSlider-figure slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide00" style="width: 187px;"><a href="" tabindex="0"></a>
</figure>
<figure class="logoSlider-figure slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide01" style="width: 187px;"><a href="" tabindex="0"></a></figure>
<figure class="logoSlider-figure slick-slide slick-active" data-slick-index="2" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide02" style="width: 187px;"><a href="" tabindex="0"></a></figure>
<figure class="logoSlider-figure slick-slide slick-active" data-slick-index="3" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide03" style="width: 187px;"><a href="" tabindex="0"></a></figure>
<figure class="logoSlider-figure slick-slide slick-active" data-slick-index="4" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide04" style="width: 187px;"><a href="" tabindex="0"></a></figure>
</div>
</div>
</div>
</div>
</div>
<script>
$('.logoSlider-images').slick({
slidesToShow: 8,
slidesToScroll: 8,
dots: false,
infinite: true,
autoplay: false,
slide: 'figure',
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 5,
slidesToScroll: 5
}
}, {
breakpoint: 641,
settings: {
slidesToShow: 3,
slidesToScroll: 3
}
}, {
breakpoint: 500,
settings: {
slidesToShow: 3,
slidesToScroll: 3
}
}]
});
</script>
<div class="headerMain-main">
<div class="headerMain-mainInner">
<div class="headerMain-mainZone01">
</div>
<div class="headerMain-mainZone02">
</div>
<div class="headerMain-mainZone03">
<div>
<nav id="navMain" runat="server" class="navMain">
<ul>
<i class="placeholder" data-placeholderid="12300"></i>
<li class="hasChildren is-mega is-mega-col"><a href="https://www.xylemanalytics.com/en/products">Products</a>
<ul>
<div class="mega-container">
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/products/analyzers">Analyzers</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/landingpages/iq-sensor-net">IQ SENSOR NET Measuring Systems</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/products/oxitop-respirometers">OxiTop® - Respirometers</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/products/ph-orp-cond-do-meters-and-probes">pH/ORP, Cond, DO Meters and Probes</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/products/photometers-and-colorimeters">Photometers and Colorimeters</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/products/process-controllers-and-sensors">Process Controllers and Sensors</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/products/turbidimeters/turbidimeters-overview">Turbidimeters</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/products/water-quality-monitoring">Water quality monitoring</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/products">All Products (incl. SI Analytics and Bellingham + Stanley)</a></li>
</div>
</div>
</ul>
</li>
<li class="hasChildren is-mega is-mega-col"><a href="javascript:void(0)">Applications</a>
<ul>
<div class="mega-container">
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/agriculture">Agriculture</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/aquaculture">Aquaculture</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/drinking-water">Drinking Water</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/environmental-monitoring-surface-water">Environmental Monitoring (Surface Water)</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/food-and-beverage">Food and Beverages Solutions</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/industry">Industry</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/life-science">Life Science (Biotech Solutions)</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/applications/wastewater">Wastewater</a></li>
</div>
</div>
</ul>
</li>
<li class="hasChildren is-mega is-mega-col"><a href="javascript:void(0)">Parameters</a>
<ul>
<div class="mega-container">
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/ammonium">Ammonium</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/biochemical-oxygen-demand-bod">Biochemical Oxygen Demand - BOD</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/chemical-oxygen-demand-cod">Chemical Oxygen Demand - COD</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/chlorine">Chlorine</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/conductivity-and-salinity">Conductivity and Salinity</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/dissolved-oxygen-do">Dissolved Oxygen (D.O.)</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/nitrate-nitrite-and-nox">Nitrate, Nitrite and NOx</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/ph-and-orp-redox">ph and ORP-Redox</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/phosphate">Phosphate</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/sludge-level">Sludge Level</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/parameters/turbidity-and-tss">Turbidity and TSS</a></li>
</div>
</div>
</ul>
</li>
<li class=""><a href="https://www.xylemanalytics.com/en/customer-support/contact">Contact</a></li>
<li class="hasChildren"><a href="javascript:void(0)">Service</a>
<ul>
<div class="mega-container">
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/service/contact">Contact</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/service/downloads">Downloads</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/service/service-orders">Service Orders</a></li>
<li class=""><a href="https://www.wtw.com/en/service/aeo-certification">AEO Certification</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/customer-support/company-certificates">Company Certificates</a></li>
</div>
</div>
</ul>
</li>
<li class="hasChildren"><a href="javascript:void(0)">Company</a>
<ul>
<div class="mega-container">
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/company/news?brand=wtw">News</a></li>
<li class=""><a href="https://www.xylem.com/en-us/careers/">Careers</a></li>
<li class=""><a href="https://www.xylemanalytics.com/en/company/about-us">About us</a></li>
<li class=""><a href="https://www.xylem.com/siteassets/about-xylem/transparency-in-supply-chains.pdf">Transparency in Supply Chain</a></li>
</div>
<div>
<li class=""><a href="https://www.xylemanalytics.com/en/company/trade-shows-and-seminars">Trade Shows and Seminars</a></li>
<li class=""><a href="http://xylemwatermark.com/">Watermark</a></li>
</div>
</div>
</ul>
</li>
</ul>
</nav>
<div class="mobileDrawerToggle drawerToggle" data-for="globals-mobile" data-mobile="true"></div>
<input name="ctl01$Header$ctl00$hdnSearchText" type="hidden" id="ctl01_Header_ctl00_hdnSearchText" class="hdnSearchText" value="Search">
<input name="ctl01$Header$ctl00$hdnSearchSubmit" type="hidden" id="ctl01_Header_ctl00_hdnSearchSubmit" class="hdnSubmitText" value="Submit">
<input name="ctl01$Header$ctl00$hdnCancelText" type="hidden" id="ctl01_Header_ctl00_hdnCancelText" class="hdnCancelText" value="Cancel">
</div>
</div>
</div>
</div>
</div>
</header>
<script>
$('.searchToggle').html($('.hdnSearchText').val());
$('#searchMain').attr('placeholder', $('.hdnSearchText').val()).attr('aria-label', $('.hdnSearchText').val());
$('#searchBox-submit').attr('aria-label', $('.hdnSubmitText').val()).text($('.hdnSubmitText').val());
$('.popup--search .mfp-close').attr('title', $('.hdnCancelText').val());
</script>
<main>
<h1 class="h-visuallyHidden">WTW EN</h1>
<div id="ctl01_fwpzcMainContent">
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_57FinNbHJke" class="CLContentDataView">
<div class="slider sliderMain slick-initialized slick-slider slick-dotted" xmlns="http://www.w3.org/1999/xhtml" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:my-scripts" role="toolbar">
<div aria-live="polite" class="slick-list draggable">
<div class="slick-track" role="listbox" style="opacity: 1; width: 20800px;">
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="0" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide10"
style="width: 1600px; position: relative; left: 0px; top: 0px; z-index: 998; opacity: 0; transition: opacity 300ms ease 0s;">
<a href="https://www.xylemanalytics.com/en/landingpages/planning%20aids%20for%20plant%20constructors%20and%20engineering%20offices" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.xylemanalytics.com/image%20library/home/wtw-slider_planungshilfen_1920x700.jpg" data-sm="https://www.xylemanalytics.com/image%20library/home/wtw-slider_planungshilfen_700x225.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.xylemanalytics.com/image%20library/home/wtw-slider_planungshilfen_1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Planning aids for plant constructors & engineering offices</h2>
<p></p><ul><li>Selection aids for the sensors and systems</li><li>Technical data</li><li>Information on installation and digital communication</li><li>Planning tools</li></ul><p></p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide slick-current slick-active" data-slick-index="1" aria-hidden="false" tabindex="-1" role="option" aria-describedby="slick-slide11"
style="width: 1600px; position: relative; left: -1600px; top: 0px; z-index: 999; opacity: 1;">
<a href="https://www.xylemanalytics.com/en/general-product/id-1833/turbidity-meter-series-turb-plus-2000---wtw" tabindex="0">
<div class="sliderMainImage" data-lg="https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20slider/default/wtw-slider-turb_plus_2000-1920x700.jpg" data-sm="https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20slider/mobile/wtw-slider-turb_plus_2000-700x255.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20slider/default/wtw-slider-turb_plus_2000-1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Continuous Monitoring & Process Control</h2>
<p></p><ul><li>High accuracy – especially below 40 NTU</li><li>Safe & standard-compliant measurement </li><li>Data backup and ultrasonic cleaning</li></ul><p></p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="2" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide12"
style="width: 1600px; position: relative; left: -3200px; top: 0px; z-index: 998; opacity: 0;">
<a href="https://www.xylemanalytics.com/en/company/news/new-chlorine-analyzer-from-wtw" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.xylemanalytics.com/image%20library/home/wtw-slider-chlorine_3017m-1920x700.jpg" data-sm="https://www.xylemanalytics.com/image%20library/home/wtw-slider-chlorine_3017m-700x255.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.xylemanalytics.com/image%20library/home/wtw-slider-chlorine_3017m-1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Chlorine 3017M DPD Analyzer</h2>
<p></p><ul><li><15 minutes per month to exchange reagents</li><li>>30 days unattended runtime</li><li>No calibration required</li></ul><p></p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="3" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide13"
style="width: 1600px; position: relative; left: -4800px; top: 0px; z-index: 998; opacity: 0;">
<a href="https://www.xylemanalytics.com/en/company/news/optimize-your-ammonium-monitoring" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.xylemanalytics.com/image%20library/home/wtw-slider-alyza_iq_nh4_wwtp_effluent-1920x700.jpg" data-sm="https://www.xylemanalytics.com/image%20library/home/wtw-slider-alyza_iq_nh4_wwtp_effluent-700x255.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.xylemanalytics.com/image%20library/home/wtw-slider-alyza_iq_nh4_wwtp_effluent-1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Optimize your Ammonium Monitoring</h2>
<p>Alyza IQ: The Simple choice for NH<sub>4</sub> Analyzers</p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="4" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide14"
style="width: 1600px; position: relative; left: -6400px; top: 0px; z-index: 998; opacity: 0;">
<a href="https://www.xylemanalytics.com/en/company/news/optimize-your-phosphate-monitoring-and-control" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-Alyza_IQ_PO4_Effluent-1920x700.jpg" data-sm="https://www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-Alyza_IQ_PO4_Effluent-700x255.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-Alyza_IQ_PO4_Effluent-1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Optimize your Phosphate Monitoring and Control</h2>
<p>Alyza IQ: The Simple choice for PO<sub>4</sub> Analyzers</p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="5" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide15"
style="width: 1600px; position: relative; left: -8000px; top: 0px; z-index: 998; opacity: 0;">
<a href="https://www.xylemanalytics.com/en/products/oxitop-respirometers" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.xylemanalytics.com/Image%20Library/Home/WTW-Slider-OxiTop_i-1920x700.jpg" data-sm="https://www.xylemanalytics.com/Image%20Library/Home/WTW-Slider-OxiTop_i-700x255.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.xylemanalytics.com/Image%20Library/Home/WTW-Slider-OxiTop_i-1920x700.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">OxiTop<sup>®</sup>-i</h2>
<p>is setting a new benchmark in BOD measurement: </p><ul><li>Easy menu operation</li><li>Safety per direct monitoring</li><li>Direct results and curves at the display</li></ul><p></p>
</span>
</span>
</span>
</a>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="6" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide16"
style="width: 1600px; position: relative; left: -9600px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-Flusswasser_Spektralsensoren-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-Flusswasser_Spektralsensoren-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-Flusswasser_Spektralsensoren-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Surface Water Monitoring</h2>
<p>Reagent-free measurement of COD, Nitrate and Nitrite</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="7" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide17"
style="width: 1600px; position: relative; left: -11200px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_Tiefenmessung-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-IDS_Tiefenmessung-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_Tiefenmessung-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Depth measurements with IDS</h2>
<p>MultiLine® Multi 3430 IDS + MPP IDS: Profile measurement without tangled cables. Integrated air pressure compensated depth measurements. All parameters simultaneously.</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="8" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide18"
style="width: 1600px; position: relative; left: -12800px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_field-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-IDS_field-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_field-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Field measurements with IDS</h2>
<p>MultiLine® IDS + IDS sensors: Up to 3 channels. All parameters simultaneously.</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="9" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide19"
style="width: 1600px; position: relative; left: -14400px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_lab-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-IDS_lab-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_lab-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Lab measurements with IDS</h2>
<p>inoLab® Multi IDS + IDS sensors: Up to 3 channels. All parameters simultaneously,</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="10" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide110"
style="width: 1600px; position: relative; left: -16000px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-NOx_Nitratsensor-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-NOx_Nitratsensor-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-NOx_Nitratsensor-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">The new nitrate measurement</h2>
<p>Wiping and maintenance-free: Simple measurement directly in the process. No regular service required. Extremely durable.</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--leftTop slick-slide" data-slick-index="11" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide111"
style="width: 1600px; position: relative; left: -17600px; top: 0px; z-index: 998; opacity: 0;">
<div class="sliderMainImage" data-lg="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_wireless-1920x700.jpg"
data-sm="/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/mobile/WTW-Slider-IDS_wireless-700x255.jpg"
style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/WTW%20slider/default/WTW-Slider-IDS_wireless-1920x700.jpg');"
be_marvel="1"> </div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">IDS goes Wireless!</h2>
<p>Benefit from all advantages of the digital IDS system – now also wireless: No cables. Securely connected. Same module for all parameters.</p>
</span>
</span>
</span>
</div>
<div class="sliderMain-slide sliderMain-slide--rightBottom slick-slide" data-slick-index="12" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide112"
style="width: 1600px; position: relative; left: -19200px; top: 0px; z-index: 998; opacity: 0;">
<a href="https://www.xylemanalytics.com/File%20Library/Resource%20Library/WTW/04%20Flyers%20Brochures/ENG/WTW_Upgradeflyer_photoLab-6000_Upgrade_ENGLISH_20210526.pdf" tabindex="-1">
<div class="sliderMainImage" data-lg="https://www.xylemanalytics.com/image%20library/home/photolab7600_1920x700px.jpg" data-sm="https://www.xylemanalytics.com/image%20library/home/photolab7600_700x255px.jpg" style="background-position-y: -57.1804px; background-image: url('https://marvel-b1-cdn.bc0a.com/f00000000209071/www.xylemanalytics.com/image%20library/home/photolab7600_1920x700px.jpg');" be_marvel="1">
</div>
<span class="sliderMainContent">
<span class="sliderMainContent-inner">
<span class="sliderMainContent-copy">
<h2 class="sliderMainContent-heading">Upgrade for photoLab® 7000 Series</h2>
<p>Benefit from many advantages - From 6000 to 7000!</p>
</span>
</span>
</span>
</a>
</div>
</div>
</div>
<ul class="slick-dots" role="tablist" style="display: block;">
<li class="" aria-hidden="true" role="presentation" aria-selected="true" aria-controls="navigation10" id="slick-slide10"><button type="button" data-role="none" role="button" tabindex="0">1</button></li>
<li aria-hidden="false" role="presentation" aria-selected="false" aria-controls="navigation11" id="slick-slide11" class="slick-active"><button type="button" data-role="none" role="button" tabindex="0">2</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation12" id="slick-slide12"><button type="button" data-role="none" role="button" tabindex="0">3</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation13" id="slick-slide13"><button type="button" data-role="none" role="button" tabindex="0">4</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation14" id="slick-slide14"><button type="button" data-role="none" role="button" tabindex="0">5</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation15" id="slick-slide15"><button type="button" data-role="none" role="button" tabindex="0">6</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation16" id="slick-slide16"><button type="button" data-role="none" role="button" tabindex="0">7</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation17" id="slick-slide17"><button type="button" data-role="none" role="button" tabindex="0">8</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation18" id="slick-slide18"><button type="button" data-role="none" role="button" tabindex="0">9</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation19" id="slick-slide19"><button type="button" data-role="none" role="button" tabindex="0">10</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation110" id="slick-slide110"><button type="button" data-role="none" role="button" tabindex="0">11</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation111" id="slick-slide111"><button type="button" data-role="none" role="button" tabindex="0">12</button></li>
<li aria-hidden="true" role="presentation" aria-selected="false" aria-controls="navigation112" id="slick-slide112"><button type="button" data-role="none" role="button" tabindex="0">13</button></li>
</ul>
</div>
<script xmlns="http://www.w3.org/1999/xhtml" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:my-scripts">
$('.slider').slick({
arrows: false,
dots: true,
fade: true,
infinite: true,
autoplay: true,
autoplaySpeed: 4000,
speed: 300,
slidesToShow: 1,
slidesToScroll: 1
});
</script><input name="ctl01$fwpzcMainContent$fwpzcMainContent_57FinNbHJke$ctl01_fwpzcMainContent_fwpzcMainContent_57FinNbHJkeCallBack_ClientValues" type="hidden" id="ctl01_fwpzcMainContent_fwpzcMainContent_57FinNbHJkeCallBack_ClientValues"
value="0^ContentTitle DESC^">
</div>
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_5ZIfTkouud2">
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_5ZIfTkouud2_ctl00">
<div class="section">
<div class="contained">
<p>Since 2011, <strong>WTW</strong> is a brand of the <strong>Xylem</strong> Group, which operates worldwide in its core business of water. WTW is a part of the company division <strong>Xylem Analytics</strong>. With our new
website, we can present you a broader product range with additional brands as well as service and information about the application of our products. </p>
<p>The following websites are therefore designed in the xylem colors and summarized under the web address <a href="https://www.xylemanalytics.com/en/" title="" target="" rel="">www.xylemanalytics.com</a>.</p>
<h1>More than 70 years WTW</h1>
<p>We offer the most comprehensive program of high-quality measuring devices for water analysis in the world. Their reliability, operational safety and versatility have made WTW's products a worldwide industry standard:</p>
</div>
</div>
</div>
</div>
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_8XnKANI6WS8">
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_8XnKANI6WS8_ctl00">
<div class="section featureBlock featureBlock--two">
<div class="contained">
<div class="row">
<div class="column med-12">
<figure class="featureBlock-figure">
<a href="https://www.xylemanalytics.com/en/products/listing-wtw-lab-all">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Lab_and_Field_Instrumentation-600x338.jpg" alt="Laboratory and Field Instrumentation" be_marvel="1" onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Lab_and_Field_Instrumentation-600x338.jpg'">
</a>
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">Laboratory and Field Instrumentation</h3>
<p>Meters and measuring systems for electro-chemical, photometric, turbidity measurements as well as for the determination of biological degradability. </p>
<p>
<a class="btn" href="https://www.xylemanalytics.com/en/products/listing-wtw-lab-all">View WTW Lab Products</a>
</p>
</figcaption>
</figure>
</div>
<div class="column med-12">
<figure class="featureBlock-figure">
<a href="https://www.xylemanalytics.com/en/products/listing-wtw-process-all">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Online_Instrumentation-600x338.jpg" alt="Process Instrumentation (Online)" be_marvel="1" onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Online_Instrumentation-600x338.jpg'">
</a>
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">Process Instrumentation (Online)</h3>
<p>WTW offers the most complete series of measuring instrumentation as well as accessories for the measurement and monitoring of water and wastewater. </p>
<p>
<a class="btn" href="https://www.xylemanalytics.com/en/products/listing-wtw-process-all">View WTW's Process Instrumentation</a>
</p>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_5fml97PxN3M">
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_5fml97PxN3M_ctl00">
<div class="section featureBlock featureBlock--four section--contrastLight">
<div class="contained">
<h2 class="featureBlock-heading">Direct Contact</h2>
<div class="row">
<div class="column sm-12 lg-6">
<figure class="featureBlock-figure">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Tel-HQ-500x281.jpg" alt="Head Office" be_marvel="1"
onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Tel-HQ-500x281.jpg'">
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">Head Office</h3>
<p>+49 881 183-0 </p>
</figcaption>
</figure>
</div>
<div class="column sm-12 lg-6">
<figure class="featureBlock-figure">
<a href="mailto:Info.WTW@xylem.com">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Mail-HQ-500x281.jpg" alt="E-Mail" be_marvel="1" onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Mail-HQ-500x281.jpg'">
</a>
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">E-Mail</h3>
<p>
<a class="btn" href="mailto:Info.WTW@xylem.com">Write e-mail</a>
</p>
</figcaption>
</figure>
</div>
<div class="column sm-12 lg-6">
<figure class="featureBlock-figure">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Lab-TechSupp-500x281.jpg" alt="Laboratory: Technical Support" be_marvel="1"
onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Lab-TechSupp-500x281.jpg'">
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">Laboratory: Technical Support</h3>
<p>+49 881 183-321 </p>
</figcaption>
</figure>
</div>
<div class="column sm-12 lg-6">
<figure class="featureBlock-figure">
<img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Onl-TechSupp-500x281.jpg" alt="Online: Technical Support" be_marvel="1"
onerror="this.onerror=null;this.src='/Image%20Library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/WTW-Teaser-Onl-TechSupp-500x281.jpg'">
<figcaption class="featureBlock-figcaption">
<h3 class="featureBlock-subHeading">Online: Technical Support</h3>
<p>+49 881 183-322 </p>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_9eLHMJDtU15">
<div id="ctl01_fwpzcMainContent_fwpzcMainContent_9eLHMJDtU15_ctl00">
<div class="section">
<div class="contained">
<h2>Xylem Analytics provides with its brand WTW solutions for many challenges in water analysis:</h2>
<p>
<a href="https://www.xylemanalytics.com/en/products/listing-wtw-multiline-ids" title="WTW's MultiLine® IDS " target="_blank" rel=""><img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-multiline_ids-252x50.jpg" alt="" data-amp-height="28" data-amp-width="175" be_marvel="1" onerror="this.onerror=null;this.src='https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-multiline_ids-252x50.jpg'"></a><a href="https://www.xylemanalytics.com/en/products/listing-wtw-inolab-ids" title="WTW's inoLab® IDS" target="_blank" rel=""><img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-inolab_ids-237x50.jpg" alt="WTW inoLab® IDS" data-amp-height="28" data-amp-width="150" be_marvel="1" onerror="this.onerror=null;this.src='https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-inolab_ids-237x50.jpg'"></a><a href="https://www.xylemanalytics.com/en/products/respirometers" title="WTW's OxiTop®" target="_blank" rel=""><img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-oxitop-148x50.jpg" alt="WTW OxiTop®" data-amp-height="28" data-amp-width="100" be_marvel="1" onerror="this.onerror=null;this.src='https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-oxitop-148x50.jpg'"></a><a href="https://www.xylemanalytics.com/en/products/listing-wtw-photolab" title="WTW's photoLab®" target="_blank" rel=""><img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-photolab-188x50.jpg" alt="WTW photoLab®" data-amp-height="28" data-amp-width="120" be_marvel="1" onerror="this.onerror=null;this.src='https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-photolab-188x50.jpg'"></a><a href="https://www.xylemanalytics.com/en/landingpages/iq-sensor-net" title="WTW's IQ SENSOR NET" target="_blank"><img src="https://marvel-b1-cdn.bc0a.com/f00000000209071/www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-iqsn-274x50.jpg" alt="WTW IQ SENSOR NET" data-amp-height="28" data-amp-width="184" be_marvel="1" onerror="this.onerror=null;this.src='https://www.wtw.com/image%20library/3a4d1b0b-b92c-4a8c-bf87-7957ca7cbddb/wtw%20home/wtw-logo-iqsn-274x50.jpg'"></a><a href="https://www.xylemanalytics.com/en/products/listing-wtw-photolab" title="WTW's photoLab®" target="_blank" rel=""></a><a href="https://www.xylemanalytics.com/en/products/listing-wtw-photolab" title="WTW's photoLab®" target="_blank" rel=""></a>
</p>
<p>
<a href="https://www.xylemanalytics.com/en/products/listing-wtw-all" title="WTW Products" target="" rel="">View all WTW Products</a><br><a href="https://www.xylemanalytics.com/en/products" title="Products" target="" rel="">View all Products</a>
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footerMain">
<div class="be-ix-link-block">
<!-- be_ixf, bodystr, body_1 -->
</div>
<div class="noindex">
<div class="footermain-top">
<div class="footermain-topInner">
<div class="row">
<div class="column med-6"><span class="footerMain-heading">About us</span>
<nav class="footerMain-topNav">
<ul>
<li><a href="https://www.xylemanalytics.com/en/company/about-us">about Xylem Analytics</a></li>
<li><a href="https://sustainability.xylem.com">Xylem Sustainability</a></li>
<li><a href="http://xylemwatermark.com/">Xylem Watermark</a></li>
<li><a href="https://www.xylem.com/siteassets/about-xylem/transparency-in-supply-chains.pdf">Transparency in Supply Chain</a></li>
</ul>
</nav>
</div>
<div class="column med-6"><span class="footerMain-heading">Products & Service</span>
<nav class="footerMain-topNav">
<ul>
<li><a href="https://www.xylemanalytics.com/en/service/downloads">Downloads</a></li>
<li><a href="https://www.xylemanalytics.com/en/landingpages/iq-sensor-net">IQ SENSOR NET measuring system</a></li>
<li><a href="https://xylemanalytics.com/en/products/analyzers">TresCon® online analyzer</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-inolab-ids">inoLab® IDS benchtop meter</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-multiline-ids">MultiLine® IDS portable meter</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-ids-sensoren">IDS sensors</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-fdo">FDO® optical dissolved oxygen sensor</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-inolab">inoLab® benchtop meter</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-profiline">ProfiLine portable meter</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-photolab">photoLab® spectral and filter photometer</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/photometers-and-colorimeters/photoflex-series">pHotoFlex® portable colorimeter</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/respirometers">OxiTop® measuring system</a></li>
<li><a href="https://www.xylemanalytics.com/en/products/listing-wtw-trioxmatic">TriOxmatic® electrochemical D.O. sensors</a></li>
</ul>
</nav>
</div>
<div class="column med-6"><span class="footerMain-heading">Important</span>
<nav class="footerMain-topNav">
<ul>
<li><a href="https://www.xylemanalytics.com/en/customer-support/company-certificates">ISO 9001</a></li>
<li><a href="javascript:void(0)">AEO-F</a></li>
<li><a href="javascript:void(0)">DAkkS certified test lab</a></li>
<li><a href="javascript:void(0)">DWA</a></li>
<li><a href="javascript:void(0)">DECHEMA</a></li>
<li><a href="javascript:void(0)">DVGW</a></li>
</ul>
</nav>
</div>
<div class="column med-6">
<h4 class="footerMain-heading">Connect With Us</h4>
<nav class="footerMain-topNav footerMain-topNav--socialNav">
<ul>
<li><a href="https://www.facebook.com/WTW.WM" class="footerMainSocialLink footerMainSocialLink--facebook" aria-label="facebook"> </a></li>
<li><a href="https://www.youtube.com/WTWGmbHInternational" class="footerMainSocialLink footerMainSocialLink--youTube" aria-label="youTube"> </a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div class="footermain-bottom">
<div class="footermain-bottomInner">
<span class="footerMain-bottomInfo"> © 2021 Xylem Analytics Germany Sales GmbH & Co. KG. All names are registered tradenames or trademarks of Xylem Inc. or one of its subsidiaries. (build: 6.0.58.0) </span>
<nav class="footerMain-bottomNav">
<ul class="CLHierarchicalNav">
<li class="first"><a href="http://www.xylem.com/en-us/support/privacy/" target="_blank">Privacy Policy</a></li>
<li><a href="https://www.xylemanalytics.com/en/terms-and-conditions" target="_blank">Terms and Conditions</a></li>
<li><a href="https://www.xylemanalytics.com/en/elektrog-weee" target="_blank">ElektroG/WEEE</a></li>
<li class="last"><a href="https://www.xylemanalytics.com/en/imprint" target="_blank">Imprint</a></li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
<div class="drawer">
<div class="drawer-close">Close</div>
<div class="drawer-content">
<div class="globals-mobile drawerItem" data-id="globals-mobile">
<nav class="navMain-mobile">
<ul>
</ul>
</nav>
</div>
<div class="filters-mobile drawerItem" data-id="filters-mobile">
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
var requestQuote = getParameterByName("requestQuote");
if (requestQuote == "true") {
var sku = getParameterByName("sku");
var name = getParameterByName("name");
$(".txtQuoteProdSku").val(sku);
$(".txtQuoteProdName").val(name);
}
});
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)", "i"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
</script>
<script>
$('.galleryMainContainer .galleryMain').slick({
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
fade: true,
asNavFor: '.galleryNav'
//adaptiveHeight: true
});
$('.galleryMainContainer .galleryNav').slick({
slidesToShow: 5,
slidesToScroll: 1,
asNavFor: '.galleryMain',
dots: false,
//centerMode: true,
//centerPadding: '0',
focusOnSelect: true,
vertical: true,
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 5,
slidesToScroll: 5,
//vertical: false,
}
}, {
breakpoint: 641,
settings: {
slidesToShow: 5,
slidesToScroll: 5,
vertical: false,
}
}, {
breakpoint: 450,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
vertical: false,
}
}, ]
});
</script>
<script>
$('.imageGallery .galleryMain').slick({
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
fade: true,
asNavFor: '.galleryNav',
adaptiveHeight: true
});
$('.imageGallery .galleryNav').slick({
slidesToShow: 4,
slidesToScroll: 1,
asNavFor: '.galleryMain',
dots: false,
centerMode: true,
focusOnSelect: true,
variableWidth: true,
responsive: [{
breakpoint: 1022,
settings: {
slidesToShow: 3,
slidesToScroll: 3
}
}, {
breakpoint: 500,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
}]
});
</script>
<script>
$('.lightbox').each(function() {
var image = $(this).children('img').attr('src');
var text = $(this).find('.galleryMain-caption').text();
$(this).magnificPopup({
mainClass: 'mfp-fade',
items: [{
src: image,
title: text
}],
gallery: {
enabled: true
},
type: 'image'
});
});
</script>
<script>
function CustomDatepickerInit() {
//Display date pickers on input focus
$('.datepicker input').focus(function() {
var date;
var $el = $(this);
if ($(this).val() === "") {
date = new Date();
} else {
var datePart = $(this).val().split(".");
date = new Date(datePart[1] + "/" + datePart[0] + "/" + datePart[2]);
//date = new Date($(this).val());
}
createCalendar($el, date, false);
});
//Navigate to a different month on the calendar
$(document).on('click', '.datepicker-nav', function(event) {
var date = new Date($(this).attr('data-date'));
var $el = $(this).closest('.datepicker').children('input');
event.stopPropagation();
createCalendar($el, date, true);
});
//Add date value to input on calendar selection
$(document).on('click', '.datepicker .date', function() {
var $calendar = $(this).parents('.datepicker').children('.datepicker-calendar');
var $input = $(this).parents('.datepicker').children('input');
var date = new Date($(this).attr('data-date'));
var month = ("0" + (date.getMonth() + 1)).slice(-2)
var day = ("0" + date.getDate()).slice(-2)
var year = date.getFullYear();
var value = day + '.' + month + '.' + year;
//var value = month + '/' + day + '/' + year;
$input.val(value);
$calendar.remove();
});
//Hide datepicker-calender if click away on document
$(document).on('click', function(event) {
var $target = $(event.target);
if (!$target.parents('.datepicker-calendar').length && !$target.is('.datepicker-calendar') && !$target.is('.datepicker input')) {
$('.datepicker-calendar').remove();
}
});
}
function createCalendar(e, d, n) {
var $input = $(e);
var $datepicker = $input.closest('.datepicker');
var date = new Date(d);
var navClick = n;
var $calendar = $('<div class="datepicker-calendar" />');
var $headRow = $('<div class="datepicker-calendar-headRow" />');
var $dayRow = $('<div class="datepicker-calendar-dayRow" />');
var $bodyRow = $('<div class="datepicker-calendar-bodyRow" />');
var days = ['M', 'T', 'W', 'T', 'F', 'S', 'S'];
var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
var currentYear = date.getFullYear();
var currentMonth = date.getMonth();
var currentDay = date.getDate();
var todayDay = new Date().getDate();
var todayMonth = new Date().getMonth();
var todayYear = new Date().getFullYear();
var currentMonthValue = currentMonth + 1;
var currentMonthName = months[currentMonth];
var startDay = new Date(currentYear, currentMonth, 1).getDay();
var daysInMonth = new Date(currentYear, currentMonthValue, 0).getDate();
var previousDate = new Date(currentYear, currentMonth - 1, 1);
var nextDate = new Date(currentYear, currentMonth + 1, 1);
var gridLocationIndex = 1;
var dayCounter = 1;
var dateTitle = currentMonthName + " " + currentYear;
var thisDate;
$('.datepicker-calendar').remove();
//Create Head Row (Month)
for (var i = 0; i < 3; i++) {
if (i == 1) {
$headRow.append($('<div>' + dateTitle + '</div>'));
} else if (i === 0) {
$headRow.append($('<div class="datepicker-nav" data-date="' + previousDate + '" />'));
} else if (i == 2) {
$headRow.append($('<div class="datepicker-nav" data-date="' + nextDate + '" />'));
}
}
//Create Day Row (Days of Week)
for (var i = 0; i < 7; i++) {
$dayRow.append($('<div>' + days[i] + '</div>'));
}
//Create Body Rows (Days of Month)
while (dayCounter <= daysInMonth) {
//create blank squares for offset for previous month
if (gridLocationIndex < startDay) {
if (gridLocationIndex == startDay - 1) {
$bodyRow.append($('<div class="empty last" />'));
} else {
$bodyRow.append($('<div class="empty" />'));
}
}
//create calender days
else {
//check for a matching date that is already selected
if (dayCounter == currentDay && !navClick && !$input.val() == "") {
thisDate = new Date(currentYear, currentMonth, dayCounter);
//create highlighted square for the current day on the calendar
if (currentYear == todayYear && currentMonth == todayMonth && dayCounter == todayDay) {
$bodyRow.append($('<div class="today selected date" data-date="' + thisDate + '">' + dayCounter + '</div>'));
dayCounter++;
}
//create normal nonselected/current squares for the remaining days
else {
$bodyRow.append($('<div class="date selected" data-date="' + thisDate + '">' + dayCounter + '</div>'));
dayCounter++;
}
}
//if not matching selected date create days without selected class
else {
thisDate = new Date(currentYear, currentMonth, dayCounter);
//create highlighted square for the current day on the calendar
if (currentYear == todayYear && currentMonth == todayMonth && dayCounter == todayDay) {
$bodyRow.append($('<div class="today date" data-date="' + thisDate + '">' + dayCounter + '</div>'));
dayCounter++;
}
//create normal nonselected/current squares for the remaining days
else {
$bodyRow.append($('<div class="date" data-date="' + thisDate + '">' + dayCounter + '</div>'));
dayCounter++;
}
}
}
//increase gird location index number for each loop of days in the calender
gridLocationIndex++;
}
//Build calendar
$calendar.append($headRow).append($dayRow).append($bodyRow);
//Add calendar to the DOM
$datepicker.append($calendar);
}
</script>
<script>
$(document).ready(function() {
if (!$('.headerMain--stripped').length) {
var topDistance = $(window).scrollTop();
var navbarHeight = $('.headerMain-main').outerHeight();
var utilbarHeight = $('.headerMain-util').outerHeight();
var headerHeight = navbarHeight + utilbarHeight;
var utilFirst = false;
if ($('.headerMain-util').index() < $('.headerMain-main').index()) {
utilFirst = true;
}
$(window).scroll(function() {
var lastPosition = $(this).scrollTop();
if (lastPosition > topDistance) {
// I have scrolled down
if ($(window).scrollTop() > headerHeight) {
// I have scrolled past the header
$('body').removeClass('js-headerFixed--down').addClass('js-headerFixed--up');
$('.pageWrap').css('padding-top', navbarHeight);
$('.logoMain').insertBefore('.navMain');
$('.searchToggle').insertAfter('.navMain').addClass('is-moved');
} else {
$('body').removeClass('js-headerFixed--down').removeClass('js-headerFixed--up');
$('.pageWrap').css('padding-top', '');
$('.logoMain').prependTo('.headerMain-utilZone01');
$('.searchToggle').insertBefore('.navLanguage').removeClass('is-moved');
}
} else if (lastPosition + 2 < topDistance) {
// I have scrolled up
if (utilFirst) {
//The utility header is before the main header in the DOM
if ($(window).scrollTop() >= utilbarHeight) {
$('body').addClass('js-headerFixed--down').removeClass('js-headerFixed--up');
} else {
$('body').removeClass('js-headerFixed--down').removeClass('js-headerFixed--up');
$('.pageWrap').css('padding-top', '');
$('.logoMain').prependTo('.headerMain-utilZone01');
$('.searchToggle').insertBefore('.navLanguage').removeClass('is-moved');
Retach();
}
} else {
//The utility header is after the main header in the DOM
if ($(window).scrollTop() >= 1) {
$('body').addClass('js-headerFixed--down').removeClass('js-headerFixed--up');
} else {
$('body').removeClass('js-headerFixed--down').removeClass('js-headerFixed--up');
$('.pageWrap').css('padding-top', '');
}
}
}
topDistance = lastPosition;
});
}
});
function Retach() {
//attach main nav items to the main mobile nav in the drawer
$('.navMain > ul > li').retach({
destination: '.navMain-mobile > ul'
});
//attach util nav items to the main mobile nav in the drawer
$('.navUtil > ul > li').retach({
destination: '.navMain > ul',
mediaQuery: 1024
});
//attach search next to nav toggle on mobile
$('.searchToggle').retach({
destination: '.headerMain-mainZone03 > div',
prependAppend: 'prepend'
});
//send the filters to the drawer on mobile
$('.filters').retach({
destination: '.filters-mobile',
mediaQuery: 641
});
//attach util nav items to the main mobile nav in the drawer
$('.cartStatus').retach({
destination: '.headerMain-utilZone01',
prependAppend: 'prepend',
mediaQuery: 641
});
//attach logoMain to util2
$('.logoMain').retach({
destination: '.headerMain-utilZone02',
prependAppend: 'prepend',
mediaQuery: 641
});
//attach logoMain to util2
$('.navLanguage').retach({
destination: '.headerMain-utilZone02',
mediaQuery: 641
});
//attach util nav items to the main mobile nav in the drawer
$('.navUser').retach({
destination: '.headerMain-utilZone01',
prependAppend: 'prepend',
mediaQuery: 641
});
$('.navSignin').retach({
destination: '.headerMain-utilZone01',
prependAppend: 'prepend',
mediaQuery: 641
});
}
</script>
</div>
<script type="text/javascript" src="/jsfile/Basepage.js"></script>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="B4380F01">
</div>
<script type="text/javascript">
//<![CDATA[
var customFormJSMessages = {
"_IsRequired": "{0} is required.\nPlease enter a valid value.",
"_IsNotValid": "{0} is invalid.\nPlease enter a valid value.",
"_IsRequiredChoose": "{0} is required. Please choose a valid value.",
"_ShouldBeLessThan1CharactersInLength": "{0} should be less than {1} characters in length.",
"PleaseEnterTheExactTextFromTheField": "Please enter the exact text from the field."
};
var statesArray = [{
"statename": "Badakhshan",
"country": "Afghanistan"
}, {
"statename": "Badghis",
"country": "Afghanistan"
}, {
"statename": "Baghlan",
"country": "Afghanistan"
}, {
"statename": "Balkh",
"country": "Afghanistan"
}, {
"statename": "Bamian",
"country": "Afghanistan"
}, {
"statename": "Daykondi",
"country": "Afghanistan"
}, {
"statename": "Farah",
"country": "Afghanistan"
}, {
"statename": "Faryab",
"country": "Afghanistan"
}, {
"statename": "Ghazni",
"country": "Afghanistan"
}, {
"statename": "Ghowr",
"country": "Afghanistan"
}, {
"statename": "Helmand",
"country": "Afghanistan"
}, {
"statename": "Herat",
"country": "Afghanistan"
}, {
"statename": "Jowzjan",
"country": "Afghanistan"
}, {
"statename": "Kabul [Kabol]",
"country": "Afghanistan"
}, {
"statename": "Kandahar",
"country": "Afghanistan"
}, {
"statename": "Kapisa",
"country": "Afghanistan"
}, {
"statename": "Khowst",
"country": "Afghanistan"
}, {
"statename": "Konar [Kunar]",
"country": "Afghanistan"
}, {
"statename": "Kondoz [Kunduz]",
"country": "Afghanistan"
}, {
"statename": "Laghman",
"country": "Afghanistan"
}, {
"statename": "Lowgar",
"country": "Afghanistan"
}, {
"statename": "Nangrahar [Nangarhar]",
"country": "Afghanistan"
}, {
"statename": "Nimruz",
"country": "Afghanistan"
}, {
"statename": "Nurestan",
"country": "Afghanistan"
}, {
"statename": "Oruzgan [Uruzgan]",
"country": "Afghanistan"
}, {
"statename": "Paktia",
"country": "Afghanistan"
}, {
"statename": "Paktika",
"country": "Afghanistan"
}, {
"statename": "Panjshir",
"country": "Afghanistan"
}, {
"statename": "Parwan",
"country": "Afghanistan"
}, {
"statename": "Samangan",
"country": "Afghanistan"
}, {
"statename": "Sar-e Pol",
"country": "Afghanistan"
}, {
"statename": "Takhar",
"country": "Afghanistan"
}, {
"statename": "Wardak [Wardag]",
"country": "Afghanistan"
}, {
"statename": "Zabol [Zabul]",
"country": "Afghanistan"
}, {
"statename": "Berat",
"country": "Albania"
}, {
"statename": "Bulqizë",
"country": "Albania"
}, {
"statename": "Delvinë",
"country": "Albania"
}, {
"statename": "Devoll",
"country": "Albania"
}, {
"statename": "Dibër",
"country": "Albania"
}, {
"statename": "Durrës",
"country": "Albania"
}, {
"statename": "Elbasan",
"country": "Albania"
}, {
"statename": "Fier",
"country": "Albania"
}, {
"statename": "Gjirokastër",
"country": "Albania"
}, {
"statename": "Gramsh",
"country": "Albania"
}, {
"statename": "Has",
"country": "Albania"
}, {
"statename": "Kavajë",
"country": "Albania"
}, {
"statename": "Kolonjë",
"country": "Albania"
}, {
"statename": "Korçë",
"country": "Albania"
}, {
"statename": "Krujë",
"country": "Albania"
}, {
"statename": "Kuçovë",
"country": "Albania"
}, {
"statename": "Kukës",
"country": "Albania"
}, {
"statename": "Kurbin",
"country": "Albania"
}, {
"statename": "Lezhë",
"country": "Albania"
}, {
"statename": "Librazhd",
"country": "Albania"
}, {
"statename": "Lushnjë",
"country": "Albania"
}, {
"statename": "Malësi e Madhe",
"country": "Albania"
}, {
"statename": "Mallakastër",
"country": "Albania"
}, {
"statename": "Mat",
"country": "Albania"
}, {
"statename": "Mirditë",
"country": "Albania"
}, {
"statename": "Peqin",
"country": "Albania"
}, {
"statename": "Përmet",
"country": "Albania"
}, {
"statename": "Pogradec",
"country": "Albania"
}, {
"statename": "Pukë",
"country": "Albania"
}, {
"statename": "Sarandë",
"country": "Albania"
}, {
"statename": "Shkodër",
"country": "Albania"
}, {
"statename": "Skrapar",
"country": "Albania"
}, {
"statename": "Tepelenë",
"country": "Albania"
}, {
"statename": "Tiranë",
"country": "Albania"
}, {
"statename": "Tropojë",
"country": "Albania"
}, {
"statename": "Vlorë",
"country": "Albania"
}, {
"statename": "Adrar",
"country": "Algeria"
}, {
"statename": "Aïn Defla",
"country": "Algeria"
}, {
"statename": "Aïn Témouchent",
"country": "Algeria"
}, {
"statename": "Alger",
"country": "Algeria"
}, {
"statename": "Annaba",
"country": "Algeria"
}, {
"statename": "Batna",
"country": "Algeria"
}, {
"statename": "Béchar",
"country": "Algeria"
}, {
"statename": "Béjaïa",
"country": "Algeria"
}, {
"statename": "Biskra",
"country": "Algeria"
}, {
"statename": "Blida",
"country": "Algeria"
}, {
"statename": "Bordj Bou Arréridj",
"country": "Algeria"
}, {
"statename": "Bouira",
"country": "Algeria"
}, {
"statename": "Boumerdès",
"country": "Algeria"
}, {
"statename": "Chlef",
"country": "Algeria"
}, {
"statename": "Constantine",
"country": "Algeria"
}, {
"statename": "Djelfa",
"country": "Algeria"
}, {
"statename": "El Bayadh",
"country": "Algeria"
}, {
"statename": "El Oued",
"country": "Algeria"
}, {
"statename": "El Tarf",
"country": "Algeria"
}, {
"statename": "Ghardaïa",
"country": "Algeria"
}, {
"statename": "Guelma",
"country": "Algeria"
}, {
"statename": "Illizi",
"country": "Algeria"
}, {
"statename": "Jijel",
"country": "Algeria"
}, {
"statename": "Khenchela",
"country": "Algeria"
}, {
"statename": "Laghouat",
"country": "Algeria"
}, {
"statename": "Mascara",
"country": "Algeria"
}, {
"statename": "Médéa",
"country": "Algeria"
}, {
"statename": "Mila",
"country": "Algeria"
}, {
"statename": "Mostaganem",
"country": "Algeria"
}, {
"statename": "Msila",
"country": "Algeria"
}, {
"statename": "Naama",
"country": "Algeria"
}, {
"statename": "Oran",
"country": "Algeria"
}, {
"statename": "Ouargla",
"country": "Algeria"
}, {
"statename": "Oum el Bouaghi",
"country": "Algeria"
}, {
"statename": "Relizane",
"country": "Algeria"
}, {
"statename": "Saïda",
"country": "Algeria"
}, {
"statename": "Sétif",
"country": "Algeria"
}, {
"statename": "Sidi Bel Abbès",
"country": "Algeria"
}, {
"statename": "Skikda",
"country": "Algeria"
}, {
"statename": "Souk Ahras",
"country": "Algeria"
}, {
"statename": "Tamanghasset",
"country": "Algeria"
}, {
"statename": "Tébessa",
"country": "Algeria"
}, {
"statename": "Tiaret",
"country": "Algeria"
}, {
"statename": "Tindouf",
"country": "Algeria"
}, {
"statename": "Tipaza",
"country": "Algeria"
}, {
"statename": "Tissemsilt",
"country": "Algeria"
}, {
"statename": "Tizi Ouzou",
"country": "Algeria"
}, {
"statename": "Tlemcen",
"country": "Algeria"
}, {
"statename": "Andorra la Vella",
"country": "Andorra"
}, {
"statename": "Canillo",
"country": "Andorra"
}, {
"statename": "Encamp",
"country": "Andorra"
}, {
"statename": "Escaldes-Engordany",
"country": "Andorra"
}, {
"statename": "La Massana",
"country": "Andorra"
}, {
"statename": "Ordino",
"country": "Andorra"
}, {
"statename": "Sant Julià de Lòria",
"country": "Andorra"
}, {
"statename": "Bengo",
"country": "Angola"
}, {
"statename": "Benguela",
"country": "Angola"
}, {
"statename": "Bié",
"country": "Angola"
}, {
"statename": "Cabinda",
"country": "Angola"
}, {
"statename": "Cuando-Cubango",
"country": "Angola"
}, {
"statename": "Cuanza Norte",
"country": "Angola"
}, {
"statename": "Cuanza Sul",
"country": "Angola"
}, {
"statename": "Cunene",
"country": "Angola"
}, {
"statename": "Huambo",
"country": "Angola"
}, {
"statename": "Huíla",
"country": "Angola"
}, {
"statename": "Luanda",
"country": "Angola"
}, {
"statename": "Lunda Norte",
"country": "Angola"
}, {
"statename": "Lunda Sul",
"country": "Angola"
}, {
"statename": "Malange",
"country": "Angola"
}, {
"statename": "Moxico",
"country": "Angola"
}, {
"statename": "Namibe",
"country": "Angola"
}, {
"statename": "Uíge",
"country": "Angola"
}, {
"statename": "Zaire",
"country": "Angola"
}, {
"statename": "Barbuda",
"country": "Antigua and Barbuda"
}, {
"statename": "Redonda",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint George",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint John’s",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint Mary",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint Paul",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint Peter",
"country": "Antigua and Barbuda"
}, {
"statename": "Saint Philip",
"country": "Antigua and Barbuda"
}, {
"statename": "Buenos Aires",
"country": "Argentina"
}, {
"statename": "Catamarca",
"country": "Argentina"
}, {
"statename": "Chaco",
"country": "Argentina"
}, {
"statename": "Chubut",
"country": "Argentina"
}, {
"statename": "Ciudad Autónoma de Buenos Aires",
"country": "Argentina"
}, {
"statename": "Córdoba",
"country": "Argentina"
}, {
"statename": "Corrientes",
"country": "Argentina"
}, {
"statename": "Entre Ríos",
"country": "Argentina"
}, {
"statename": "Formosa",
"country": "Argentina"
}, {
"statename": "Jujuy",
"country": "Argentina"
}, {
"statename": "La Pampa",
"country": "Argentina"
}, {
"statename": "La Rioja",
"country": "Argentina"
}, {
"statename": "Mendoza",
"country": "Argentina"
}, {
"statename": "Misiones",
"country": "Argentina"
}, {
"statename": "Neuquén",
"country": "Argentina"
}, {
"statename": "Río Negro",
"country": "Argentina"
}, {
"statename": "Salta",
"country": "Argentina"
}, {
"statename": "San Juan",
"country": "Argentina"
}, {
"statename": "San Luis",
"country": "Argentina"
}, {
"statename": "Santa Cruz",
"country": "Argentina"
}, {
"statename": "Santa Fe",
"country": "Argentina"
}, {
"statename": "Santiago del Estero",
"country": "Argentina"
}, {
"statename": "Tierra del Fuego",
"country": "Argentina"
}, {
"statename": "Tucumán",
"country": "Argentina"
}, {
"statename": "Aragac?otn",
"country": "Armenia"
}, {
"statename": "Ararat",
"country": "Armenia"
}, {
"statename": "Armavir",
"country": "Armenia"
}, {
"statename": "Erevan",
"country": "Armenia"
}, {
"statename": "Gegark'unik'",
"country": "Armenia"
}, {
"statename": "Kotayk'",
"country": "Armenia"
}, {
"statename": "Lo?y",
"country": "Armenia"
}, {
"statename": "Širak",
"country": "Armenia"
}, {
"statename": "Syunik'",
"country": "Armenia"
}, {
"statename": "Tavuš",
"country": "Armenia"
}, {
"statename": "Vayoc Jor",
"country": "Armenia"
}, {
"statename": "Australian Capital Territory",
"country": "Australia"
}, {
"statename": "New South Wales",
"country": "Australia"
}, {
"statename": "Northern Territory",
"country": "Australia"
}, {
"statename": "Queensland",
"country": "Australia"
}, {
"statename": "South Australia",
"country": "Australia"
}, {
"statename": "Tasmania",
"country": "Australia"
}, {
"statename": "Victoria",
"country": "Australia"
}, {
"statename": "Western Australia",
"country": "Australia"
}, {
"statename": "Burgenland",
"country": "Austria"
}, {
"statename": "Kärnten",
"country": "Austria"
}, {
"statename": "Niederösterreich",
"country": "Austria"
}, {
"statename": "Oberösterreich",
"country": "Austria"
}, {
"statename": "Salzburg",
"country": "Austria"
}, {
"statename": "Steiermark",
"country": "Austria"
}, {
"statename": "Tirol",
"country": "Austria"
}, {
"statename": "Vorarlberg",
"country": "Austria"
}, {
"statename": "Wien",
"country": "Austria"
}, {
"statename": "Abseron",
"country": "Azerbaijan"
}, {
"statename": "Agcabädi",
"country": "Azerbaijan"
}, {
"statename": "Agdam",
"country": "Azerbaijan"
}, {
"statename": "Agdas",
"country": "Azerbaijan"
}, {
"statename": "Agstafa",
"country": "Azerbaijan"
}, {
"statename": "Agsu",
"country": "Azerbaijan"
}, {
"statename": "Äli Bayramli",
"country": "Azerbaijan"
}, {
"statename": "Astara",
"country": "Azerbaijan"
}, {
"statename": "Babäk",
"country": "Azerbaijan"
}, {
"statename": "Baki",
"country": "Azerbaijan"
}, {
"statename": "Balakän",
"country": "Azerbaijan"
}, {
"statename": "Bärdä",
"country": "Azerbaijan"
}, {
"statename": "Beyläqan",
"country": "Azerbaijan"
}, {
"statename": "Biläsuvar",
"country": "Azerbaijan"
}, {
"statename": "Cäbrayil",
"country": "Azerbaijan"
}, {
"statename": "Cälilabab",
"country": "Azerbaijan"
}, {
"statename": "Culfa",
"country": "Azerbaijan"
}, {
"statename": "Daskäsän",
"country": "Azerbaijan"
}, {
"statename": "Däväçi",
"country": "Azerbaijan"
}, {
"statename": "Füzuli",
"country": "Azerbaijan"
}, {
"statename": "Gädäbäy",
"country": "Azerbaijan"
}, {
"statename": "Gäncä",
"country": "Azerbaijan"
}, {
"statename": "Goranboy",
"country": "Azerbaijan"
}, {
"statename": "Göyçay",
"country": "Azerbaijan"
}, {
"statename": "Haciqabul",
"country": "Azerbaijan"
}, {
"statename": "Imisli",
"country": "Azerbaijan"
}, {
"statename": "Ismayilli",
"country": "Azerbaijan"
}, {
"statename": "Kälbäcär",
"country": "Azerbaijan"
}, {
"statename": "Kürdämir",
"country": "Azerbaijan"
}, {
"statename": "Laçin",
"country": "Azerbaijan"
}, {
"statename": "Länkäran",
"country": "Azerbaijan"
}, {
"statename": "Länkäran City",
"country": "Azerbaijan"
}, {
"statename": "Lerik",
"country": "Azerbaijan"
}, {
"statename": "Masalli",
"country": "Azerbaijan"
}, {
"statename": "Mingäçevir",
"country": "Azerbaijan"
}, {
"statename": "Naftalan",
"country": "Azerbaijan"
}, {
"statename": "Naxçivan",
"country": "Azerbaijan"
}, {
"statename": "Neftçala",
"country": "Azerbaijan"
}, {
"statename": "Oguz",
"country": "Azerbaijan"
}, {
"statename": "Ordubad",
"country": "Azerbaijan"
}, {
"statename": "Qäbälä",
"country": "Azerbaijan"
}, {
"statename": "Qax",
"country": "Azerbaijan"
}, {
"statename": "Qazax",
"country": "Azerbaijan"
}, {
"statename": "Qobustan",
"country": "Azerbaijan"
}, {
"statename": "Quba",
"country": "Azerbaijan"
}, {
"statename": "Qubadli",
"country": "Azerbaijan"
}, {
"statename": "Qusar",
"country": "Azerbaijan"
}, {
"statename": "Saatli",
"country": "Azerbaijan"
}, {
"statename": "Sabirabad",
"country": "Azerbaijan"
}, {
"statename": "Sädäräk",
"country": "Azerbaijan"
}, {
"statename": "Sahbuz",
"country": "Azerbaijan"
}, {
"statename": "Säki",
"country": "Azerbaijan"
}, {
"statename": "Säki City",
"country": "Azerbaijan"
}, {
"statename": "Salyan",
"country": "Azerbaijan"
}, {
"statename": "Samaxi",
"country": "Azerbaijan"
}, {
"statename": "Sämkir",
"country": "Azerbaijan"
}, {
"statename": "Samux",
"country": "Azerbaijan"
}, {
"statename": "Särur",
"country": "Azerbaijan"
}, {
"statename": "Siyäzän",
"country": "Azerbaijan"
}, {
"statename": "Sumqayit",
"country": "Azerbaijan"
}, {
"statename": "Susa",
"country": "Azerbaijan"
}, {
"statename": "Susa City",
"country": "Azerbaijan"
}, {
"statename": "Tärtär",
"country": "Azerbaijan"
}, {
"statename": "Tovuz",
"country": "Azerbaijan"
}, {
"statename": "Ucar",
"country": "Azerbaijan"
}, {
"statename": "Xaçmaz",
"country": "Azerbaijan"
}, {
"statename": "Xankändi",
"country": "Azerbaijan"
}, {
"statename": "Xanlar",
"country": "Azerbaijan"
}, {
"statename": "Xizi",
"country": "Azerbaijan"
}, {
"statename": "Xocali",
"country": "Azerbaijan"
}, {
"statename": "Xocavänd",
"country": "Azerbaijan"
}, {
"statename": "Yardimli",
"country": "Azerbaijan"
}, {
"statename": "Yevlax",
"country": "Azerbaijan"
}, {
"statename": "Yevlax City",
"country": "Azerbaijan"
}, {
"statename": "Zängilan",
"country": "Azerbaijan"
}, {
"statename": "Zaqatala",
"country": "Azerbaijan"
}, {
"statename": "Zärdab",
"country": "Azerbaijan"
}, {
"statename": "Acklins Islands",
"country": "Bahamas"
}, {
"statename": "Berry Islands",
"country": "Bahamas"
}, {
"statename": "Bimini and Cat Cay",
"country": "Bahamas"
}, {
"statename": "Black Point",
"country": "Bahamas"
}, {
"statename": "Cat Island",
"country": "Bahamas"
}, {
"statename": "Central Abaco",
"country": "Bahamas"
}, {
"statename": "Central Andros",
"country": "Bahamas"
}, {
"statename": "Central Eleuthera",
"country": "Bahamas"
}, {
"statename": "City of Freeport",
"country": "Bahamas"
}, {
"statename": "Crooked Island and Long Cay",
"country": "Bahamas"
}, {
"statename": "East Grand Bahama",
"country": "Bahamas"
}, {
"statename": "Exuma",
"country": "Bahamas"
}, {
"statename": "Grand Cay",
"country": "Bahamas"
}, {
"statename": "Green Turtle Cay",
"country": "Bahamas"
}, {
"statename": "Harbour Island",
"country": "Bahamas"
}, {
"statename": "Hope Town",
"country": "Bahamas"
}, {
"statename": "Inagua",
"country": "Bahamas"
}, {
"statename": "Long Island",
"country": "Bahamas"
}, {
"statename": "Mangrove Cay",
"country": "Bahamas"
}, {
"statename": "Mayaguana",
"country": "Bahamas"
}, {
"statename": "Moore’s Island",
"country": "Bahamas"
}, {
"statename": "North Abaco",
"country": "Bahamas"
}, {
"statename": "North Andros",
"country": "Bahamas"
}, {
"statename": "North Eleuthera",
"country": "Bahamas"
}, {
"statename": "Ragged Island",
"country": "Bahamas"
}, {
"statename": "Rum Cay",
"country": "Bahamas"
}, {
"statename": "San Salvador",
"country": "Bahamas"
}, {
"statename": "South Abaco",
"country": "Bahamas"
}, {
"statename": "South Andros",
"country": "Bahamas"
}, {
"statename": "South Eleuthera",
"country": "Bahamas"
}, {
"statename": "Spanish Wells",
"country": "Bahamas"
}, {
"statename": "West Grand Bahama",
"country": "Bahamas"
}, {
"statename": "Al Janubiyah",
"country": "Bahrain"
}, {
"statename": "Al Manamah (Al ‘Asimah)",
"country": "Bahrain"
}, {
"statename": "Al Muharraq",
"country": "Bahrain"
}, {
"statename": "Al Wustá",
"country": "Bahrain"
}, {
"statename": "Ash Shamaliyah",
"country": "Bahrain"
}, {
"statename": "Bagerhat zila",
"country": "Bangladesh"
}, {
"statename": "Bandarban zila",
"country": "Bangladesh"
}, {
"statename": "Barguna zila",
"country": "Bangladesh"
}, {
"statename": "Barisal zila",
"country": "Bangladesh"
}, {
"statename": "Bhola zila",
"country": "Bangladesh"
}, {
"statename": "Bogra zila",
"country": "Bangladesh"
}, {
"statename": "Brahmanbaria zila",
"country": "Bangladesh"
}, {
"statename": "Chandpur zila",
"country": "Bangladesh"
}, {
"statename": "Chittagong zila",
"country": "Bangladesh"
}, {
"statename": "Chuadanga zila",
"country": "Bangladesh"
}, {
"statename": "Comilla zila",
"country": "Bangladesh"
}, {
"statename": "Cox's Bazar zila",
"country": "Bangladesh"
}, {
"statename": "Dhaka zila",
"country": "Bangladesh"
}, {
"statename": "Dinajpur zila",
"country": "Bangladesh"
}, {
"statename": "Faridpur zila",
"country": "Bangladesh"
}, {
"statename": "Feni zila",
"country": "Bangladesh"
}, {
"statename": "Gaibandha zila",
"country": "Bangladesh"
}, {
"statename": "Gazipur zila",
"country": "Bangladesh"
}, {
"statename": "Gopalganj zila",
"country": "Bangladesh"
}, {
"statename": "Habiganj zila",
"country": "Bangladesh"
}, {
"statename": "Jaipurhat zila",
"country": "Bangladesh"
}, {
"statename": "Jamalpur zila",
"country": "Bangladesh"
}, {
"statename": "Jessore zila",
"country": "Bangladesh"
}, {
"statename": "Jhalakati zila",
"country": "Bangladesh"
}, {
"statename": "Jhenaidah zila",
"country": "Bangladesh"
}, {
"statename": "Khagrachari zila",
"country": "Bangladesh"
}, {
"statename": "Khulna zila",
"country": "Bangladesh"
}, {
"statename": "Kishoreganj zila",
"country": "Bangladesh"
}, {
"statename": "Kurigram zila",
"country": "Bangladesh"
}, {
"statename": "Kushtia zila",
"country": "Bangladesh"
}, {
"statename": "Lakshmipur zila",
"country": "Bangladesh"
}, {
"statename": "Lalmonirhat zila",
"country": "Bangladesh"
}, {
"statename": "Madaripur zila",
"country": "Bangladesh"
}, {
"statename": "Magura zila",
"country": "Bangladesh"
}, {
"statename": "Manikganj zila",
"country": "Bangladesh"
}, {
"statename": "Meherpur zila",
"country": "Bangladesh"
}, {
"statename": "Moulvibazar zila",
"country": "Bangladesh"
}, {
"statename": "Munshiganj zila",
"country": "Bangladesh"
}, {
"statename": "Mymensingh zila",
"country": "Bangladesh"
}, {
"statename": "Naogaon zila",
"country": "Bangladesh"
}, {
"statename": "Narail zila",
"country": "Bangladesh"
}, {
"statename": "Narayanganj zila",
"country": "Bangladesh"
}, {
"statename": "Narsingdi zila",
"country": "Bangladesh"
}, {
"statename": "Natore zila",
"country": "Bangladesh"
}, {
"statename": "Nawabganj zila",
"country": "Bangladesh"
}, {
"statename": "Netrakona zila",
"country": "Bangladesh"
}, {
"statename": "Nilphamari zila",
"country": "Bangladesh"
}, {
"statename": "Noakhali zila",
"country": "Bangladesh"
}, {
"statename": "Pabna zila",
"country": "Bangladesh"
}, {
"statename": "Panchagarh zila",
"country": "Bangladesh"
}, {
"statename": "Patuakhali zila",
"country": "Bangladesh"
}, {
"statename": "Pirojpur zila",
"country": "Bangladesh"
}, {
"statename": "Rajbari zila",
"country": "Bangladesh"
}, {
"statename": "Rajshahi zila",
"country": "Bangladesh"
}, {
"statename": "Rangamati zila",
"country": "Bangladesh"
}, {
"statename": "Rangpur zila",
"country": "Bangladesh"
}, {
"statename": "Satkhira zila",
"country": "Bangladesh"
}, {
"statename": "Shariatpur zila",
"country": "Bangladesh"
}, {
"statename": "Sherpur zila",
"country": "Bangladesh"
}, {
"statename": "Sirajganj zila",
"country": "Bangladesh"
}, {
"statename": "Sunamganj zila",
"country": "Bangladesh"
}, {
"statename": "Sylhet zila",
"country": "Bangladesh"
}, {
"statename": "Tangail zila",
"country": "Bangladesh"
}, {
"statename": "Thakurgaon zila",
"country": "Bangladesh"
}, {
"statename": "Christ Church",
"country": "Barbados"
}, {
"statename": "Saint Andrew",
"country": "Barbados"
}, {
"statename": "Saint George",
"country": "Barbados"
}, {
"statename": "Saint James",
"country": "Barbados"
}, {
"statename": "Saint John",
"country": "Barbados"
}, {
"statename": "Saint Joseph",
"country": "Barbados"
}, {
"statename": "Saint Lucy",
"country": "Barbados"
}, {
"statename": "Saint Michael",
"country": "Barbados"
}, {
"statename": "Saint Peter",
"country": "Barbados"
}, {
"statename": "Saint Philip",
"country": "Barbados"
}, {
"statename": "Saint Thomas",
"country": "Barbados"
}, {
"statename": "Brestskaya voblasts",
"country": "Belarus"
}, {
"statename": "Homyel'skaya voblasts",
"country": "Belarus"
}, {
"statename": "Horad Minsk",
"country": "Belarus"
}, {
"statename": "Hrodzenskaya voblasts",
"country": "Belarus"
}, {
"statename": "Mahilyowskaya voblasts",
"country": "Belarus"
}, {
"statename": "Minskaya voblasts",
"country": "Belarus"
}, {
"statename": "Vitsyebskaya voblasts",
"country": "Belarus"
}, {
"statename": "Antwerpen",
"country": "Belgium"
}, {
"statename": "Brabant Wallon",
"country": "Belgium"
}, {
"statename": "Brussels",
"country": "Belgium"
}, {
"statename": "Hainaut",
"country": "Belgium"
}, {
"statename": "Liège",
"country": "Belgium"
}, {
"statename": "Limburg",
"country": "Belgium"
}, {
"statename": "Luxembourg",
"country": "Belgium"
}, {
"statename": "Namur",
"country": "Belgium"
}, {
"statename": "Oost-Vlaanderen",
"country": "Belgium"
}, {
"statename": "Vlaams Brabant",
"country": "Belgium"
}, {
"statename": "West-Vlaanderen",
"country": "Belgium"
}, {
"statename": "Belize",
"country": "Belize"
}, {
"statename": "Cayo",
"country": "Belize"
}, {
"statename": "Corozal",
"country": "Belize"
}, {
"statename": "Orange Walk",
"country": "Belize"
}, {
"statename": "Stann Creek",
"country": "Belize"
}, {
"statename": "Toledo",
"country": "Belize"
}, {
"statename": "Alibori",
"country": "Benin"
}, {
"statename": "Atakora",
"country": "Benin"
}, {
"statename": "Atlantique",
"country": "Benin"
}, {
"statename": "Borgou",
"country": "Benin"
}, {
"statename": "Collines",
"country": "Benin"
}, {
"statename": "Donga",
"country": "Benin"
}, {
"statename": "Kouffo",
"country": "Benin"
}, {
"statename": "Littoral",
"country": "Benin"
}, {
"statename": "Mono",
"country": "Benin"
}, {
"statename": "Ouémé",
"country": "Benin"
}, {
"statename": "Plateau",
"country": "Benin"
}, {
"statename": "Zou",
"country": "Benin"
}, {
"statename": "Bumthang",
"country": "Bhutan"
}, {
"statename": "Chhukha",
"country": "Bhutan"
}, {
"statename": "Dagana",
"country": "Bhutan"
}, {
"statename": "Gasa",
"country": "Bhutan"
}, {
"statename": "Ha",
"country": "Bhutan"
}, {
"statename": "Lhuentse",
"country": "Bhutan"
}, {
"statename": "Monggar",
"country": "Bhutan"
}, {
"statename": "Paro",
"country": "Bhutan"
}, {
"statename": "Pemagatshel",
"country": "Bhutan"
}, {
"statename": "Punakha",
"country": "Bhutan"
}, {
"statename": "Samdrup Jongkha",
"country": "Bhutan"
}, {
"statename": "Samtse",
"country": "Bhutan"
}, {
"statename": "Sarpang",
"country": "Bhutan"
}, {
"statename": "Thimphu",
"country": "Bhutan"
}, {
"statename": "Trashi Yangtse",
"country": "Bhutan"
}, {
"statename": "Trashigang",
"country": "Bhutan"
}, {
"statename": "Trongsa",
"country": "Bhutan"
}, {
"statename": "Tsirang",
"country": "Bhutan"
}, {
"statename": "Wangdue Phodrang",
"country": "Bhutan"
}, {
"statename": "Zhemgang",
"country": "Bhutan"
}, {
"statename": "Chuquisaca",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Cochabamba",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "El Beni",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "La Paz",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Oruro",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Pando",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Potosí",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Santa Cruz",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Tarija",
"country": "Bolivia, Plurinational State Of"
}, {
"statename": "Bosansko-podrinjski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Br?ko distrikt",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Federacija Bosna i Hercegovina",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Hercegova?ko-neretvanski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Kanton br. 10 (Livanjski kanton)",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Kanton Sarajevo",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Posavski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Republika Srpska",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Srednjobosanski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Tuzlanski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Unsko-sanski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Zapadnohercegova?ki kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Zeni?ko-dobojski kanton",
"country": "Bosnia and Herzegovina"
}, {
"statename": "Central",
"country": "Botswana"
}, {
"statename": "Ghanzi",
"country": "Botswana"
}, {
"statename": "Kgalagadi",
"country": "Botswana"
}, {
"statename": "Kgatleng",
"country": "Botswana"
}, {
"statename": "Kweneng",
"country": "Botswana"
}, {
"statename": "North-East",
"country": "Botswana"
}, {
"statename": "North-West",
"country": "Botswana"
}, {
"statename": "South-East",
"country": "Botswana"
}, {
"statename": "Southern",
"country": "Botswana"
}, {
"statename": "Acre",
"country": "Brazil"
}, {
"statename": "Alagoas",
"country": "Brazil"
}, {
"statename": "Amapá",
"country": "Brazil"
}, {
"statename": "Amazonas",
"country": "Brazil"
}, {
"statename": "Bahia",
"country": "Brazil"
}, {
"statename": "Ceará",
"country": "Brazil"
}, {
"statename": "Distrito Federal",
"country": "Brazil"
}, {
"statename": "Espírito Santo",
"country": "Brazil"
}, {
"statename": "Goiás",
"country": "Brazil"
}, {
"statename": "Maranhão",
"country": "Brazil"
}, {
"statename": "Mato Grosso",
"country": "Brazil"
}, {
"statename": "Mato Grosso do Sul",
"country": "Brazil"
}, {
"statename": "Minas Gerais",
"country": "Brazil"
}, {
"statename": "Pará",
"country": "Brazil"
}, {
"statename": "Paraíba",
"country": "Brazil"
}, {
"statename": "Paraná",
"country": "Brazil"
}, {
"statename": "Pernambuco",
"country": "Brazil"
}, {
"statename": "Piauí",
"country": "Brazil"
}, {
"statename": "Rio de Janeiro",
"country": "Brazil"
}, {
"statename": "Rio Grande do Norte",
"country": "Brazil"
}, {
"statename": "Rio Grande do Sul",
"country": "Brazil"
}, {
"statename": "Rondônia",
"country": "Brazil"
}, {
"statename": "Roraima",
"country": "Brazil"
}, {
"statename": "Santa Catarina",
"country": "Brazil"
}, {
"statename": "São Paulo",
"country": "Brazil"
}, {
"statename": "Sergipe",
"country": "Brazil"
}, {
"statename": "Tocantins",
"country": "Brazil"
}, {
"statename": "Belait",
"country": "Brunei Darussalam"
}, {
"statename": "Brunei-Muara",
"country": "Brunei Darussalam"
}, {
"statename": "Temburong",
"country": "Brunei Darussalam"
}, {
"statename": "Tutong",
"country": "Brunei Darussalam"
}, {
"statename": "Blagoevgrad",
"country": "Bulgaria"
}, {
"statename": "Burgas",
"country": "Bulgaria"
}, {
"statename": "Dobrich",
"country": "Bulgaria"
}, {
"statename": "Gabrovo",
"country": "Bulgaria"
}, {
"statename": "Haskovo",
"country": "Bulgaria"
}, {
"statename": "Kardzhali",
"country": "Bulgaria"
}, {
"statename": "Kjustendil",
"country": "Bulgaria"
}, {
"statename": "Lovech",
"country": "Bulgaria"
}, {
"statename": "Montana",
"country": "Bulgaria"
}, {
"statename": "Pazardzhik",
"country": "Bulgaria"
}, {
"statename": "Pernik",
"country": "Bulgaria"
}, {
"statename": "Pleven",
"country": "Bulgaria"
}, {
"statename": "Plovdiv",
"country": "Bulgaria"
}, {
"statename": "Razgrad",
"country": "Bulgaria"
}, {
"statename": "Ruse",
"country": "Bulgaria"
}, {
"statename": "Silistra",
"country": "Bulgaria"
}, {
"statename": "Sliven",
"country": "Bulgaria"
}, {
"statename": "Smolyan",
"country": "Bulgaria"
}, {
"statename": "Sofia",
"country": "Bulgaria"
}, {
"statename": "Sofia-Grad",
"country": "Bulgaria"
}, {
"statename": "Stara Zagora",
"country": "Bulgaria"
}, {
"statename": "Šumen",
"country": "Bulgaria"
}, {
"statename": "Targovishte",
"country": "Bulgaria"
}, {
"statename": "Varna",
"country": "Bulgaria"
}, {
"statename": "Veliko Tarnovo",
"country": "Bulgaria"
}, {
"statename": "Vidin",
"country": "Bulgaria"
}, {
"statename": "Vratsa",
"country": "Bulgaria"
}, {
"statename": "Yambol",
"country": "Bulgaria"
}, {
"statename": "Balé",
"country": "Burkina Faso"
}, {
"statename": "Bam",
"country": "Burkina Faso"
}, {
"statename": "Banwa",
"country": "Burkina Faso"
}, {
"statename": "Bazèga",
"country": "Burkina Faso"
}, {
"statename": "Boucle du Mouhoun",
"country": "Burkina Faso"
}, {
"statename": "Bougouriba",
"country": "Burkina Faso"
}, {
"statename": "Boulgou",
"country": "Burkina Faso"
}, {
"statename": "Boulkiemdé",
"country": "Burkina Faso"
}, {
"statename": "Cascades",
"country": "Burkina Faso"
}, {
"statename": "Centre",
"country": "Burkina Faso"
}, {
"statename": "Centre-Est",
"country": "Burkina Faso"
}, {
"statename": "Centre-Nord",
"country": "Burkina Faso"
}, {
"statename": "Centre-Ouest",
"country": "Burkina Faso"
}, {
"statename": "Centre-Sud",
"country": "Burkina Faso"
}, {
"statename": "Comoé",
"country": "Burkina Faso"
}, {
"statename": "Est",
"country": "Burkina Faso"
}, {
"statename": "Ganzourgou",
"country": "Burkina Faso"
}, {
"statename": "Gnagna",
"country": "Burkina Faso"
}, {
"statename": "Gourma",
"country": "Burkina Faso"
}, {
"statename": "Hauts-Bassins",
"country": "Burkina Faso"
}, {
"statename": "Houet",
"country": "Burkina Faso"
}, {
"statename": "Ioba",
"country": "Burkina Faso"
}, {
"statename": "Kadiogo",
"country": "Burkina Faso"
}, {
"statename": "Kénédougou",
"country": "Burkina Faso"
}, {
"statename": "Komondjari",
"country": "Burkina Faso"
}, {
"statename": "Kompienga",
"country": "Burkina Faso"
}, {
"statename": "Kossi",
"country": "Burkina Faso"
}, {
"statename": "Koulpélogo",
"country": "Burkina Faso"
}, {
"statename": "Kouritenga",
"country": "Burkina Faso"
}, {
"statename": "Kourwéogo",
"country": "Burkina Faso"
}, {
"statename": "Léraba",
"country": "Burkina Faso"
}, {
"statename": "Loroum",
"country": "Burkina Faso"
}, {
"statename": "Mouhoun",
"country": "Burkina Faso"
}, {
"statename": "Nahouri",
"country": "Burkina Faso"
}, {
"statename": "Namentenga",
"country": "Burkina Faso"
}, {
"statename": "Nayala",
"country": "Burkina Faso"
}, {
"statename": "Nord",
"country": "Burkina Faso"
}, {
"statename": "Noumbiel",
"country": "Burkina Faso"
}, {
"statename": "Oubritenga",
"country": "Burkina Faso"
}, {
"statename": "Oudalan",
"country": "Burkina Faso"
}, {
"statename": "Passoré",
"country": "Burkina Faso"
}, {
"statename": "Plateau-Central",
"country": "Burkina Faso"
}, {
"statename": "Poni",
"country": "Burkina Faso"
}, {
"statename": "Sahel",
"country": "Burkina Faso"
}, {
"statename": "Sanguié",
"country": "Burkina Faso"
}, {
"statename": "Sanmatenga",
"country": "Burkina Faso"
}, {
"statename": "Séno",
"country": "Burkina Faso"
}, {
"statename": "Sissili",
"country": "Burkina Faso"
}, {
"statename": "Soum",
"country": "Burkina Faso"
}, {
"statename": "Sourou",
"country": "Burkina Faso"
}, {
"statename": "Sud-Ouest",
"country": "Burkina Faso"
}, {
"statename": "Tapoa",
"country": "Burkina Faso"
}, {
"statename": "Tui",
"country": "Burkina Faso"
}, {
"statename": "Yagha",
"country": "Burkina Faso"
}, {
"statename": "Yatenga",
"country": "Burkina Faso"
}, {
"statename": "Ziro",
"country": "Burkina Faso"
}, {
"statename": "Zondoma",
"country": "Burkina Faso"
}, {
"statename": "Zoundwéogo",
"country": "Burkina Faso"
}, {
"statename": "Bubanza",
"country": "Burundi"
}, {
"statename": "Bujumbura Mairie",
"country": "Burundi"
}, {
"statename": "Bujumbura Rural",
"country": "Burundi"
}, {
"statename": "Bururi",
"country": "Burundi"
}, {
"statename": "Cankuzo",
"country": "Burundi"
}, {
"statename": "Cibitoke",
"country": "Burundi"
}, {
"statename": "Gitega",
"country": "Burundi"
}, {
"statename": "Karuzi",
"country": "Burundi"
}, {
"statename": "Kayanza",
"country": "Burundi"
}, {
"statename": "Kirundo",
"country": "Burundi"
}, {
"statename": "Makamba",
"country": "Burundi"
}, {
"statename": "Muramvya",
"country": "Burundi"
}, {
"statename": "Muyinga",
"country": "Burundi"
}, {
"statename": "Mwaro",
"country": "Burundi"
}, {
"statename": "Ngozi",
"country": "Burundi"
}, {
"statename": "Rutana",
"country": "Burundi"
}, {
"statename": "Ruyigi",
"country": "Burundi"
}, {
"statename": "Baat Dambang [Batdâmbâng]",
"country": "Cambodia"
}, {
"statename": "Banteay Mean Chey [Bântéay Méanchey]",
"country": "Cambodia"
}, {
"statename": "Kampong Chaam [Kâmpóng Cham]",
"country": "Cambodia"
}, {
"statename": "Kampong Chhnang [Kâmpóng Chhnang]",
"country": "Cambodia"
}, {
"statename": "Kampong Spueu [Kâmpóng Spœ]",
"country": "Cambodia"
}, {
"statename": "Kampong Thum [Kâmpóng Thum]",
"country": "Cambodia"
}, {
"statename": "Kampot [Kâmpôt]",
"country": "Cambodia"
}, {
"statename": "Kandaal [Kândal]",
"country": "Cambodia"
}, {
"statename": "Kaoh Kong [Kaôh Kong]",
"country": "Cambodia"
}, {
"statename": "Kracheh [Krâchéh]",
"country": "Cambodia"
}, {
"statename": "Krong Kaeb [Krong Kêb]",
"country": "Cambodia"
}, {
"statename": "Krong Pailin [Krong Pailin]",
"country": "Cambodia"
}, {
"statename": "Krong Preah Sihanouk [Krong Preah Sihanouk]",
"country": "Cambodia"
}, {
"statename": "Mondol Kiri [Môndól Kiri]",
"country": "Cambodia"
}, {
"statename": "Otdar Mean Chey [Otdâr Méanchey]",
"country": "Cambodia"
}, {
"statename": "Phnom Penh [Phnum Pénh]",
"country": "Cambodia"
}, {
"statename": "Pousaat [Pouthisat]",
"country": "Cambodia"
}, {
"statename": "Preah Vihear [Preah Vihéar]",
"country": "Cambodia"
}, {
"statename": "Prey Veaeng [Prey Vêng]",
"country": "Cambodia"
}, {
"statename": "Rotanak Kiri [Rôtânôkiri]",
"country": "Cambodia"
}, {
"statename": "Siem Reab [Siemréab]",
"country": "Cambodia"
}, {
"statename": "Stueng Traeng [Stœ?ng Trêng]",
"country": "Cambodia"
}, {
"statename": "Svaay Rieng [Svay Rieng]",
"country": "Cambodia"
}, {
"statename": "Taakaev [Takêv]",
"country": "Cambodia"
}, {
"statename": "Adamaoua",
"country": "Cameroon"
}, {
"statename": "Centre",
"country": "Cameroon"
}, {
"statename": "East",
"country": "Cameroon"
}, {
"statename": "Far North",
"country": "Cameroon"
}, {
"statename": "Littoral",
"country": "Cameroon"
}, {
"statename": "North",
"country": "Cameroon"
}, {
"statename": "North-West",
"country": "Cameroon"
}, {
"statename": "South",
"country": "Cameroon"
}, {
"statename": "South-West",
"country": "Cameroon"
}, {
"statename": "West",
"country": "Cameroon"
}, {
"statename": "Alberta",
"country": "Canada"
}, {
"statename": "British Columbia",
"country": "Canada"
}, {
"statename": "Manitoba",
"country": "Canada"
}, {
"statename": "New Brunswick",
"country": "Canada"
}, {
"statename": "Newfoundland and Labrador",
"country": "Canada"
}, {
"statename": "Northwest Territories",
"country": "Canada"
}, {
"statename": "Nova Scotia",
"country": "Canada"
}, {
"statename": "Nunavut",
"country": "Canada"
}, {
"statename": "Ontario",
"country": "Canada"
}, {
"statename": "Prince Edward Island",
"country": "Canada"
}, {
"statename": "Quebec",
"country": "Canada"
}, {
"statename": "Saskatchewan",
"country": "Canada"
}, {
"statename": "Yukon Territory",
"country": "Canada"
}, {
"statename": "Boa Vista",
"country": "Cape Verde"
}, {
"statename": "Brava",
"country": "Cape Verde"
}, {
"statename": "Ilhas de Barlavento",
"country": "Cape Verde"
}, {
"statename": "Ilhas de Sotavento",
"country": "Cape Verde"
}, {
"statename": "Maio",
"country": "Cape Verde"
}, {
"statename": "Mosteiros",
"country": "Cape Verde"
}, {
"statename": "Paul",
"country": "Cape Verde"
}, {
"statename": "Porto Novo",
"country": "Cape Verde"
}, {
"statename": "Praia",
"country": "Cape Verde"
}, {
"statename": "Ribeira Brava",
"country": "Cape Verde"
}, {
"statename": "Ribeira Grande",
"country": "Cape Verde"
}, {
"statename": "Ribeira Grande de Santiago",
"country": "Cape Verde"
}, {
"statename": "Santa Catarina",
"country": "Cape Verde"
}, {
"statename": "Santa Catarina do Fogo",
"country": "Cape Verde"
}, {
"statename": "Santa Cruz",
"country": "Cape Verde"
}, {
"statename": "São Domingos",
"country": "Cape Verde"
}, {
"statename": "São Filipe",
"country": "Cape Verde"
}, {
"statename": "São Lourenço dos Órgãos",
"country": "Cape Verde"
}, {
"statename": "São Miguel",
"country": "Cape Verde"
}, {
"statename": "São Salvador do Mundo",
"country": "Cape Verde"
}, {
"statename": "São Vicente",
"country": "Cape Verde"
}, {
"statename": "Tarrafal",
"country": "Cape Verde"
}, {
"statename": "Tarrafal de São Nicolau",
"country": "Cape Verde"
}, {
"statename": "Bodden Town",
"country": "Cayman Islands"
}, {
"statename": "Cayman Brac",
"country": "Cayman Islands"
}, {
"statename": "East End",
"country": "Cayman Islands"
}, {
"statename": "George Town",
"country": "Cayman Islands"
}, {
"statename": "Little Cayman",
"country": "Cayman Islands"
}, {
"statename": "North Side",
"country": "Cayman Islands"
}, {
"statename": "West Bay",
"country": "Cayman Islands"
}, {
"statename": "Bamingui-Bangoran",
"country": "Central African Republic"
}, {
"statename": "Bangui",
"country": "Central African Republic"
}, {
"statename": "Basse-Kotto",
"country": "Central African Republic"
}, {
"statename": "Gribingui",
"country": "Central African Republic"
}, {
"statename": "Haute-Kotto",
"country": "Central African Republic"
}, {
"statename": "Haute-Sangha / Mambéré-Kadéï",
"country": "Central African Republic"
}, {
"statename": "Haut-Mbomou",
"country": "Central African Republic"
}, {
"statename": "Kémo-Gribingui",
"country": "Central African Republic"
}, {
"statename": "Lobaye",
"country": "Central African Republic"
}, {
"statename": "Mbomou",
"country": "Central African Republic"
}, {
"statename": "Nana-Mambéré",
"country": "Central African Republic"
}, {
"statename": "Ombella-Mpoko",
"country": "Central African Republic"
}, {
"statename": "Ouaka",
"country": "Central African Republic"
}, {
"statename": "Ouham",
"country": "Central African Republic"
}, {
"statename": "Ouham-Pendé",
"country": "Central African Republic"
}, {
"statename": "Sangha",
"country": "Central African Republic"
}, {
"statename": "Vakaga",
"country": "Central African Republic"
}, {
"statename": "?ajjar Lam?s",
"country": "Chad"
}, {
"statename": "Al Ba?h?ah",
"country": "Chad"
}, {
"statename": "Al Buh?ayrah",
"country": "Chad"
}, {
"statename": "B?rk?",
"country": "Chad"
}, {
"statename": "Bah?r al Ghaz?l",
"country": "Chad"
}, {
"statename": "Inn?d?",
"country": "Chad"
}, {
"statename": "K?nim",
"country": "Chad"
}, {
"statename": "L?q?n al Gharb?",
"country": "Chad"
}, {
"statename": "L?q?n ash Sharq?",
"country": "Chad"
}, {
"statename": "M?nd?l",
"country": "Chad"
}, {
"statename": "M?y? K?bb? al Gharb?",
"country": "Chad"
}, {
"statename": "M?y? K?bb? ash Sharq?",
"country": "Chad"
}, {
"statename": "Mad?nat Injam?n?",
"country": "Chad"
}, {
"statename": "Q?r?",
"country": "Chad"
}, {
"statename": "S?l?",
"country": "Chad"
}, {
"statename": "Sal?m?t",
"country": "Chad"
}, {
"statename": "Sh?r? al Awsa?",
"country": "Chad"
}, {
"statename": "Sh?r? B?qirm?",
"country": "Chad"
}, {
"statename": "T?njil?",
"country": "Chad"
}, {
"statename": "Tibast?",
"country": "Chad"
}, {
"statename": "W?d? F?r?",
"country": "Chad"
}, {
"statename": "Wadd?y",
"country": "Chad"
}, {
"statename": "Aisén del General Carlos Ibáñez del Campo",
"country": "Chile"
}, {
"statename": "Antofagasta",
"country": "Chile"
}, {
"statename": "Araucanía",
"country": "Chile"
}, {
"statename": "Arica y Parinacota",
"country": "Chile"
}, {
"statename": "Atacama",
"country": "Chile"
}, {
"statename": "Bío-Bío",
"country": "Chile"
}, {
"statename": "Coquimbo",
"country": "Chile"
}, {
"statename": "Libertador General Bernardo O'Higgins",
"country": "Chile"
}, {
"statename": "Los Lagos",
"country": "Chile"
}, {
"statename": "Los Ríos",
"country": "Chile"
}, {
"statename": "Magallanes",
"country": "Chile"
}, {
"statename": "Maule",
"country": "Chile"
}, {
"statename": "Región Metropolitana de Santiago",
"country": "Chile"
}, {
"statename": "Tarapacá",
"country": "Chile"
}, {
"statename": "Valparaíso",
"country": "Chile"
}, {
"statename": "Anhui",
"country": "China"
}, {
"statename": "Aomen (zh) ***",
"country": "China"
}, {
"statename": "Beijing",
"country": "China"
}, {
"statename": "Chongqing",
"country": "China"
}, {
"statename": "Fujian",
"country": "China"
}, {
"statename": "Gansu",
"country": "China"
}, {
"statename": "Guangdong",
"country": "China"
}, {
"statename": "Guangxi",
"country": "China"
}, {
"statename": "Guizhou",
"country": "China"
}, {
"statename": "Hainan",
"country": "China"
}, {
"statename": "Hebei",
"country": "China"
}, {
"statename": "Heilongjiang",
"country": "China"
}, {
"statename": "Henan",
"country": "China"
}, {
"statename": "Hubei",
"country": "China"
}, {
"statename": "Hunan",
"country": "China"
}, {
"statename": "Jiangsu",
"country": "China"
}, {
"statename": "Jiangxi",
"country": "China"
}, {
"statename": "Jilin",
"country": "China"
}, {
"statename": "Liaoning",
"country": "China"
}, {
"statename": "Nei Mongol (mn)",
"country": "China"
}, {
"statename": "Ningxia",
"country": "China"
}, {
"statename": "Qinghai",
"country": "China"
}, {
"statename": "Shaanxi",
"country": "China"
}, {
"statename": "Shandong",
"country": "China"
}, {
"statename": "Shanghai",
"country": "China"
}, {
"statename": "Shanxi",
"country": "China"
}, {
"statename": "Sichuan",
"country": "China"
}, {
"statename": "Taiwan *",
"country": "China"
}, {
"statename": "Tianjin",
"country": "China"
}, {
"statename": "Xianggang (zh) **",
"country": "China"
}, {
"statename": "Xinjiang",
"country": "China"
}, {
"statename": "Xizang",
"country": "China"
}, {
"statename": "Yunnan",
"country": "China"
}, {
"statename": "Zhejiang",
"country": "China"
}, {
"statename": "Amazonas",
"country": "Colombia"
}, {
"statename": "Antioquia",
"country": "Colombia"
}, {
"statename": "Arauca",
"country": "Colombia"
}, {
"statename": "Atlántico",
"country": "Colombia"
}, {
"statename": "Bolívar",
"country": "Colombia"
}, {
"statename": "Boyacá",
"country": "Colombia"
}, {
"statename": "Caldas",
"country": "Colombia"
}, {
"statename": "Caquetá",
"country": "Colombia"
}, {
"statename": "Casanare",
"country": "Colombia"
}, {
"statename": "Cauca",
"country": "Colombia"
}, {
"statename": "Cesar",
"country": "Colombia"
}, {
"statename": "Chocó",
"country": "Colombia"
}, {
"statename": "Córdoba",
"country": "Colombia"
}, {
"statename": "Cundinamarca",
"country": "Colombia"
}, {
"statename": "Distrito Capital de Bogotá",
"country": "Colombia"
}, {
"statename": "Guainía",
"country": "Colombia"
}, {
"statename": "Guaviare",
"country": "Colombia"
}, {
"statename": "Huila",
"country": "Colombia"
}, {
"statename": "La Guajira",
"country": "Colombia"
}, {
"statename": "Magdalena",
"country": "Colombia"
}, {
"statename": "Meta",
"country": "Colombia"
}, {
"statename": "Nariño",
"country": "Colombia"
}, {
"statename": "Norte de Santander",
"country": "Colombia"
}, {
"statename": "Putumayo",
"country": "Colombia"
}, {
"statename": "Quindío",
"country": "Colombia"
}, {
"statename": "Risaralda",
"country": "Colombia"
}, {
"statename": "San Andrés, Providencia y Santa Catalina",
"country": "Colombia"
}, {
"statename": "Santander",
"country": "Colombia"
}, {
"statename": "Sucre",
"country": "Colombia"
}, {
"statename": "Tolima",
"country": "Colombia"
}, {
"statename": "Valle del Cauca",
"country": "Colombia"
}, {
"statename": "Vaupés",
"country": "Colombia"
}, {
"statename": "Vichada",
"country": "Colombia"
}, {
"statename": "Andjazîdja",
"country": "Comoros"
}, {
"statename": "Andjouân (Anjw?n)",
"country": "Comoros"
}, {
"statename": "Moûhîlî (M?h?l?)",
"country": "Comoros"
}, {
"statename": "Bouenza",
"country": "Congo"
}, {
"statename": "Brazzaville",
"country": "Congo"
}, {
"statename": "Cuvette",
"country": "Congo"
}, {
"statename": "Cuvette-Ouest",
"country": "Congo"
}, {
"statename": "Kouilou",
"country": "Congo"
}, {
"statename": "Lékoumou",
"country": "Congo"
}, {
"statename": "Likouala",
"country": "Congo"
}, {
"statename": "Niari",
"country": "Congo"
}, {
"statename": "Plateaux",
"country": "Congo"
}, {
"statename": "Pool",
"country": "Congo"
}, {
"statename": "Sangha",
"country": "Congo"
}, {
"statename": "Bandundu",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Bas-Congo",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Équateur",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Kasai-Occidental",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Kasai-Oriental",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Katanga",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Kinshasa",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Maniema",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Nord-Kivu",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Orientale",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Sud-Kivu",
"country": "Congo, The Democratic Republic Of The"
}, {
"statename": "Alajuela",
"country": "Costa Rica"
}, {
"statename": "Cartago",
"country": "Costa Rica"
}, {
"statename": "Guanacaste",
"country": "Costa Rica"
}, {
"statename": "Heredia",
"country": "Costa Rica"
}, {
"statename": "Limón",
"country": "Costa Rica"
}, {
"statename": "Puntarenas",
"country": "Costa Rica"
}, {
"statename": "San José",
"country": "Costa Rica"
}, {
"statename": "18 Montagnes (Région des)",
"country": "Côte D'Ivoire"
}, {
"statename": "Agnébi (Région de l')",
"country": "Côte D'Ivoire"
}, {
"statename": "Bafing (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Bas-Sassandra (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Denguélé (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Fromager (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Haut-Sassandra (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Lacs (Région des)",
"country": "Côte D'Ivoire"
}, {
"statename": "Lagunes (Région des)",
"country": "Côte D'Ivoire"
}, {
"statename": "Marahoué (Région de la)",
"country": "Côte D'Ivoire"
}, {
"statename": "Moyen-Cavally (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Moyen-Comoé (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Nzi-Comoé (Région)",
"country": "Côte D'Ivoire"
}, {
"statename": "Savanes (Région des)",
"country": "Côte D'Ivoire"
}, {
"statename": "Sud-Bandama (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Sud-Comoé (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Vallée du Bandama (Région de la)",
"country": "Côte D'Ivoire"
}, {
"statename": "Worodougou (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Zanzan (Région du)",
"country": "Côte D'Ivoire"
}, {
"statename": "Bjelovarsko-bilogorska županija",
"country": "Croatia"
}, {
"statename": "Brodsko-posavska županija",
"country": "Croatia"
}, {
"statename": "Dubrovacko-neretvanska županija",
"country": "Croatia"
}, {
"statename": "Grad Zagreb",
"country": "Croatia"
}, {
"statename": "Istarska županija",
"country": "Croatia"
}, {
"statename": "Karlovacka županija",
"country": "Croatia"
}, {
"statename": "Koprivnicko-križevacka županija",
"country": "Croatia"
}, {
"statename": "Krapinsko-zagorska županija",
"country": "Croatia"
}, {
"statename": "Licko-senjska županija",
"country": "Croatia"
}, {
"statename": "Medimurska županija",
"country": "Croatia"
}, {
"statename": "Osjecko-baranjska županija",
"country": "Croatia"
}, {
"statename": "Požeško-slavonska županija",
"country": "Croatia"
}, {
"statename": "Primorsko-goranska županija",
"country": "Croatia"
}, {
"statename": "Šibensko-kninska županija",
"country": "Croatia"
}, {
"statename": "Sisacko-moslavacka županija",
"country": "Croatia"
}, {
"statename": "Splitsko-dalmatinska županija",
"country": "Croatia"
}, {
"statename": "Varaždinska županija",
"country": "Croatia"
}, {
"statename": "Viroviticko-podravska županija",
"country": "Croatia"
}, {
"statename": "Vukovarsko-srijemska županija",
"country": "Croatia"
}, {
"statename": "Zadarska županija",
"country": "Croatia"
}, {
"statename": "Zagrebacka županija",
"country": "Croatia"
}, {
"statename": "Camagüey",
"country": "Cuba"
}, {
"statename": "Ciego de Ávila",
"country": "Cuba"
}, {
"statename": "Cienfuegos",
"country": "Cuba"
}, {
"statename": "Ciudad de La Habana",
"country": "Cuba"
}, {
"statename": "Granma",
"country": "Cuba"
}, {
"statename": "Guantánamo",
"country": "Cuba"
}, {
"statename": "Holguín",
"country": "Cuba"
}, {
"statename": "Isla de la Juventud",
"country": "Cuba"
}, {
"statename": "La Habana",
"country": "Cuba"
}, {
"statename": "Las Tunas",
"country": "Cuba"
}, {
"statename": "Matanzas",
"country": "Cuba"
}, {
"statename": "Pinar del Río",
"country": "Cuba"
}, {
"statename": "Sancti Spíritus",
"country": "Cuba"
}, {
"statename": "Santiago de Cuba",
"country": "Cuba"
}, {
"statename": "Villa Clara",
"country": "Cuba"
}, {
"statename": "Ammochostos",
"country": "Cyprus"
}, {
"statename": "Keryneia",
"country": "Cyprus"
}, {
"statename": "Larnaka",
"country": "Cyprus"
}, {
"statename": "Lefkosia",
"country": "Cyprus"
}, {
"statename": "Lemesos",
"country": "Cyprus"
}, {
"statename": "Pafos",
"country": "Cyprus"
}, {
"statename": "Jihoceský kraj",
"country": "Czech Republic"
}, {
"statename": "Jihomoravský kraj",
"country": "Czech Republic"
}, {
"statename": "Karlovarský kraj",
"country": "Czech Republic"
}, {
"statename": "Královéhradecký kraj",
"country": "Czech Republic"
}, {
"statename": "Liberecký kraj",
"country": "Czech Republic"
}, {
"statename": "Moravskoslezský kraj",
"country": "Czech Republic"
}, {
"statename": "Olomoucký kraj",
"country": "Czech Republic"
}, {
"statename": "Pardubický kraj",
"country": "Czech Republic"
}, {
"statename": "Plzenský kraj",
"country": "Czech Republic"
}, {
"statename": "Praha, hlavní mesto",
"country": "Czech Republic"
}, {
"statename": "Stredoceský kraj",
"country": "Czech Republic"
}, {
"statename": "Ústecký kraj",
"country": "Czech Republic"
}, {
"statename": "Vysocina",
"country": "Czech Republic"
}, {
"statename": "Zlínský kraj",
"country": "Czech Republic"
}, {
"statename": "Århus",
"country": "Denmark"
}, {
"statename": "Bornholm",
"country": "Denmark"
}, {
"statename": "Capital",
"country": "Denmark"
}, {
"statename": "Central Jutland",
"country": "Denmark"
}, {
"statename": "Frederiksberg City",
"country": "Denmark"
}, {
"statename": "Frederiksborg",
"country": "Denmark"
}, {
"statename": "Fyn",
"country": "Denmark"
}, {
"statename": "København",
"country": "Denmark"
}, {
"statename": "København City",
"country": "Denmark"
}, {
"statename": "Nordjylland",
"country": "Denmark"
}, {
"statename": "North Jutland",
"country": "Denmark"
}, {
"statename": "Ribe",
"country": "Denmark"
}, {
"statename": "Ringkøbing",
"country": "Denmark"
}, {
"statename": "Roskilde",
"country": "Denmark"
}, {
"statename": "Sønderjylland",
"country": "Denmark"
}, {
"statename": "South Denmark",
"country": "Denmark"
}, {
"statename": "Storstrøm",
"country": "Denmark"
}, {
"statename": "Vejle",
"country": "Denmark"
}, {
"statename": "Vestsjælland",
"country": "Denmark"
}, {
"statename": "Viborg",
"country": "Denmark"
}, {
"statename": "Zeeland",
"country": "Denmark"
}, {
"statename": "Ali Sabieh",
"country": "Djibouti"
}, {
"statename": "Arta",
"country": "Djibouti"
}, {
"statename": "Dikhil",
"country": "Djibouti"
}, {
"statename": "Djibouti",
"country": "Djibouti"
}, {
"statename": "Obock",
"country": "Djibouti"
}, {
"statename": "Tadjourah",
"country": "Djibouti"
}, {
"statename": "Saint Andrew",
"country": "Dominica"
}, {
"statename": "Saint David",
"country": "Dominica"
}, {
"statename": "Saint George",
"country": "Dominica"
}, {
"statename": "Saint John",
"country": "Dominica"
}, {
"statename": "Saint Joseph",
"country": "Dominica"
}, {
"statename": "Saint Luke",
"country": "Dominica"
}, {
"statename": "Saint Mark",
"country": "Dominica"
}, {
"statename": "Saint Patrick",
"country": "Dominica"
}, {
"statename": "Saint Paul",
"country": "Dominica"
}, {
"statename": "Saint Peter",
"country": "Dominica"
}, {
"statename": "Azua",
"country": "Dominican Republic"
}, {
"statename": "Bahoruco",
"country": "Dominican Republic"
}, {
"statename": "Barahona",
"country": "Dominican Republic"
}, {
"statename": "Dajabón",
"country": "Dominican Republic"
}, {
"statename": "Distrito Nacional (Santo Domingo)",
"country": "Dominican Republic"
}, {
"statename": "Duarte",
"country": "Dominican Republic"
}, {
"statename": "El Seybo [El Seibo]",
"country": "Dominican Republic"
}, {
"statename": "Espaillat",
"country": "Dominican Republic"
}, {
"statename": "Hato Mayor",
"country": "Dominican Republic"
}, {
"statename": "Independencia",
"country": "Dominican Republic"
}, {
"statename": "La Altagracia",
"country": "Dominican Republic"
}, {
"statename": "La Estrelleta [Elías Piña]",
"country": "Dominican Republic"
}, {
"statename": "La Romana",
"country": "Dominican Republic"
}, {
"statename": "La Vega",
"country": "Dominican Republic"
}, {
"statename": "María Trinidad Sánchez",
"country": "Dominican Republic"
}, {
"statename": "Monseñor Nouel",
"country": "Dominican Republic"
}, {
"statename": "Monte Cristi",
"country": "Dominican Republic"
}, {
"statename": "Monte Plata",
"country": "Dominican Republic"
}, {
"statename": "Pedernales",
"country": "Dominican Republic"
}, {
"statename": "Peravia",
"country": "Dominican Republic"
}, {
"statename": "Puerto Plata",
"country": "Dominican Republic"
}, {
"statename": "Salcedo",
"country": "Dominican Republic"
}, {
"statename": "Samaná",
"country": "Dominican Republic"
}, {
"statename": "San Cristóbal",
"country": "Dominican Republic"
}, {
"statename": "San Jose de Ocoa",
"country": "Dominican Republic"
}, {
"statename": "San Juan",
"country": "Dominican Republic"
}, {
"statename": "San Pedro de Macorís",
"country": "Dominican Republic"
}, {
"statename": "Sánchez Ramírez",
"country": "Dominican Republic"
}, {
"statename": "Santiago",
"country": "Dominican Republic"
}, {
"statename": "Santiago Rodríguez",
"country": "Dominican Republic"
}, {
"statename": "Valverde",
"country": "Dominican Republic"
}, {
"statename": "Azuay",
"country": "Ecuador"
}, {
"statename": "Bolívar",
"country": "Ecuador"
}, {
"statename": "Cañar",
"country": "Ecuador"
}, {
"statename": "Carchi",
"country": "Ecuador"
}, {
"statename": "Chimborazo",
"country": "Ecuador"
}, {
"statename": "Cotopaxi",
"country": "Ecuador"
}, {
"statename": "El Oro",
"country": "Ecuador"
}, {
"statename": "Esmeraldas",
"country": "Ecuador"
}, {
"statename": "Galápagos",
"country": "Ecuador"
}, {
"statename": "Guayas",
"country": "Ecuador"
}, {
"statename": "Imbabura",
"country": "Ecuador"
}, {
"statename": "Loja",
"country": "Ecuador"
}, {
"statename": "Los Ríos",
"country": "Ecuador"
}, {
"statename": "Manabí",
"country": "Ecuador"
}, {
"statename": "Morona-Santiago",
"country": "Ecuador"
}, {
"statename": "Napo",
"country": "Ecuador"
}, {
"statename": "Orellana",
"country": "Ecuador"
}, {
"statename": "Pastaza",
"country": "Ecuador"
}, {
"statename": "Pichincha",
"country": "Ecuador"
}, {
"statename": "Santa Elena",
"country": "Ecuador"
}, {
"statename": "Santo Domingo de los Tsachilas",
"country": "Ecuador"
}, {
"statename": "Sucumbíos",
"country": "Ecuador"
}, {
"statename": "Tungurahua",
"country": "Ecuador"
}, {
"statename": "Zamora-Chinchipe",
"country": "Ecuador"
}, {
"statename": "Ad Daqahliyah",
"country": "Egypt"
}, {
"statename": "Al Bahr al Ahmar",
"country": "Egypt"
}, {
"statename": "Al Buhayrah",
"country": "Egypt"
}, {
"statename": "Al Fayyum",
"country": "Egypt"
}, {
"statename": "Al Gharbiyah",
"country": "Egypt"
}, {
"statename": "Al Iskandariyah",
"country": "Egypt"
}, {
"statename": "Al Ism?`?l?yah",
"country": "Egypt"
}, {
"statename": "Al Jizah",
"country": "Egypt"
}, {
"statename": "Al Minufiyah",
"country": "Egypt"
}, {
"statename": "Al Minya",
"country": "Egypt"
}, {
"statename": "Al Qahirah",
"country": "Egypt"
}, {
"statename": "Al Qalyubiyah",
"country": "Egypt"
}, {
"statename": "Al Wadi al Jadid",
"country": "Egypt"
}, {
"statename": "al-Uqsur",
"country": "Egypt"
}, {
"statename": "As S?dis min Ukt?bar",
"country": "Egypt"
}, {
"statename": "As Suways",
"country": "Egypt"
}, {
"statename": "Ash Sharqiyah",
"country": "Egypt"
}, {
"statename": "Aswan",
"country": "Egypt"
}, {
"statename": "Asyut",
"country": "Egypt"
}, {
"statename": "B?r Sa`?d",
"country": "Egypt"
}, {
"statename": "Bani Suwayf",
"country": "Egypt"
}, {
"statename": "Dumyat",
"country": "Egypt"
}, {
"statename": "H?ulw?n",
"country": "Egypt"
}, {
"statename": "Janub Sina'",
"country": "Egypt"
}, {
"statename": "Kafr ash Shaykh",
"country": "Egypt"
}, {
"statename": "Matr?h",
"country": "Egypt"
}, {
"statename": "Qina",
"country": "Egypt"
}, {
"statename": "Shamal Sina'",
"country": "Egypt"
}, {
"statename": "Suhaj",
"country": "Egypt"
}, {
"statename": "Ahuachapán",
"country": "El Salvador"
}, {
"statename": "Cabañas",
"country": "El Salvador"
}, {
"statename": "Chalatenango",
"country": "El Salvador"
}, {
"statename": "Cuscatlán",
"country": "El Salvador"
}, {
"statename": "La Libertad",
"country": "El Salvador"
}, {
"statename": "La Paz",
"country": "El Salvador"
}, {
"statename": "La Unión",
"country": "El Salvador"
}, {
"statename": "Morazán",
"country": "El Salvador"
}, {
"statename": "San Miguel",
"country": "El Salvador"
}, {
"statename": "San Salvador",
"country": "El Salvador"
}, {
"statename": "San Vicente",
"country": "El Salvador"
}, {
"statename": "Santa Ana",
"country": "El Salvador"
}, {
"statename": "Sonsonate",
"country": "El Salvador"
}, {
"statename": "Usulután",
"country": "El Salvador"
}, {
"statename": "Annobón",
"country": "Equatorial Guinea"
}, {
"statename": "Bioko Norte",
"country": "Equatorial Guinea"
}, {
"statename": "Bioko Sur",
"country": "Equatorial Guinea"
}, {
"statename": "Centro Sur",
"country": "Equatorial Guinea"
}, {
"statename": "Kie-Ntem",
"country": "Equatorial Guinea"
}, {
"statename": "Litoral",
"country": "Equatorial Guinea"
}, {
"statename": "Región Continental",
"country": "Equatorial Guinea"
}, {
"statename": "Región Insular",
"country": "Equatorial Guinea"
}, {
"statename": "Wele-Nzás",
"country": "Equatorial Guinea"
}, {
"statename": "Anseba",
"country": "Eritrea"
}, {
"statename": "Debub",
"country": "Eritrea"
}, {
"statename": "Debubawi Keyih Bahri [Debub-Keih-Bahri]",
"country": "Eritrea"
}, {
"statename": "Gash-Barka",
"country": "Eritrea"
}, {
"statename": "Maakel [Maekel]",
"country": "Eritrea"
}, {
"statename": "Semenawi Keyih Bahri [Semien-Keih-Bahri]",
"country": "Eritrea"
}, {
"statename": "Harjumaa",
"country": "Estonia"
}, {
"statename": "Hiiumaa",
"country": "Estonia"
}, {
"statename": "Ida-Virumaa",
"country": "Estonia"
}, {
"statename": "Järvamaa",
"country": "Estonia"
}, {
"statename": "Jõgevamaa",
"country": "Estonia"
}, {
"statename": "Läänemaa",
"country": "Estonia"
}, {
"statename": "Lääne-Virumaa",
"country": "Estonia"
}, {
"statename": "Pärnumaa",
"country": "Estonia"
}, {
"statename": "Põlvamaa",
"country": "Estonia"
}, {
"statename": "Raplamaa",
"country": "Estonia"
}, {
"statename": "Saaremaa",
"country": "Estonia"
}, {
"statename": "Tartumaa",
"country": "Estonia"
}, {
"statename": "Valgamaa",
"country": "Estonia"
}, {
"statename": "Viljandimaa",
"country": "Estonia"
}, {
"statename": "Võrumaa",
"country": "Estonia"
}, {
"statename": "Adis Abeba",
"country": "Ethiopia"
}, {
"statename": "Afar",
"country": "Ethiopia"
}, {
"statename": "Amara",
"country": "Ethiopia"
}, {
"statename": "Binshangul Gumuz",
"country": "Ethiopia"
}, {
"statename": "Dire Dawa",
"country": "Ethiopia"
}, {
"statename": "Gambela Hizboch",
"country": "Ethiopia"
}, {
"statename": "Hareri Hizb",
"country": "Ethiopia"
}, {
"statename": "Oromiya",
"country": "Ethiopia"
}, {
"statename": "Sumale",
"country": "Ethiopia"
}, {
"statename": "Tigray",
"country": "Ethiopia"
}, {
"statename": "YeDebub Biheroch Bihereseboch na Hizboch",
"country": "Ethiopia"
}, {
"statename": "Central",
"country": "Fiji"
}, {
"statename": "Eastern",
"country": "Fiji"
}, {
"statename": "Northern",
"country": "Fiji"
}, {
"statename": "Rotuma",
"country": "Fiji"
}, {
"statename": "Western",
"country": "Fiji"
}, {
"statename": "Ahvenanmaan lääni",
"country": "Finland"
}, {
"statename": "Etelä-Suomen lääni",
"country": "Finland"
}, {
"statename": "Itä-Suomen lääni",
"country": "Finland"
}, {
"statename": "Länsi-Suomen lääni",
"country": "Finland"
}, {
"statename": "Lapin lääni",
"country": "Finland"
}, {
"statename": "Oulun lääni",
"country": "Finland"
}, {
"statename": "Ain",
"country": "France"
}, {
"statename": "Aisne",
"country": "France"
}, {
"statename": "Allier",
"country": "France"
}, {
"statename": "Alpes-de-Haute-Provence",
"country": "France"
}, {
"statename": "Alpes-Maritimes",
"country": "France"
}, {
"statename": "Ardèche",
"country": "France"
}, {
"statename": "Ardennes",
"country": "France"
}, {
"statename": "Ariège",
"country": "France"
}, {
"statename": "Aube",
"country": "France"
}, {
"statename": "Aude",
"country": "France"
}, {
"statename": "Aveyron",
"country": "France"
}, {
"statename": "Bas-Rhin",
"country": "France"
}, {
"statename": "Bouches-du-Rhône",
"country": "France"
}, {
"statename": "Calvados",
"country": "France"
}, {
"statename": "Cantal",
"country": "France"
}, {
"statename": "Charente",
"country": "France"
}, {
"statename": "Charente-Maritime",
"country": "France"
}, {
"statename": "Cher",
"country": "France"
}, {
"statename": "Clipperton",
"country": "France"
}, {
"statename": "Corrèze",
"country": "France"
}, {
"statename": "Corse-du-Sud",
"country": "France"
}, {
"statename": "Côte-d'Or",
"country": "France"
}, {
"statename": "Côtes-d'Armor",
"country": "France"
}, {
"statename": "Creuse",
"country": "France"
}, {
"statename": "Deux-Sèvres",
"country": "France"
}, {
"statename": "Dordogne",
"country": "France"
}, {
"statename": "Doubs",
"country": "France"
}, {
"statename": "Drôme",
"country": "France"
}, {
"statename": "Essonne",
"country": "France"
}, {
"statename": "Eure",
"country": "France"
}, {
"statename": "Eure-et-Loir",
"country": "France"
}, {
"statename": "Finistère",
"country": "France"
}, {
"statename": "Gard",
"country": "France"
}, {
"statename": "Gers",
"country": "France"
}, {
"statename": "Gironde",
"country": "France"
}, {
"statename": "Haute-Corse",
"country": "France"
}, {
"statename": "Haute-Garonne",
"country": "France"
}, {
"statename": "Haute-Loire",
"country": "France"
}, {
"statename": "Haute-Marne",
"country": "France"
}, {
"statename": "Hautes-Alpes",
"country": "France"
}, {
"statename": "Haute-Saône",
"country": "France"
}, {
"statename": "Haute-Savoie",
"country": "France"
}, {
"statename": "Hautes-Pyrénées",
"country": "France"
}, {
"statename": "Haute-Vienne",
"country": "France"
}, {
"statename": "Haut-Rhin",
"country": "France"
}, {
"statename": "Hauts-de-Seine",
"country": "France"
}, {
"statename": "Hérault",
"country": "France"
}, {
"statename": "Ille-et-Vilaine",
"country": "France"
}, {
"statename": "Indre",
"country": "France"
}, {
"statename": "Indre-et-Loire",
"country": "France"
}, {
"statename": "Isère",
"country": "France"
}, {
"statename": "Jura",
"country": "France"
}, {
"statename": "Landes",
"country": "France"
}, {
"statename": "Loire",
"country": "France"
}, {
"statename": "Loire-Atlantique",
"country": "France"
}, {
"statename": "Loiret",
"country": "France"
}, {
"statename": "Loir-et-Cher",
"country": "France"
}, {
"statename": "Lot",
"country": "France"
}, {
"statename": "Lot-et-Garonne",
"country": "France"
}, {
"statename": "Lozère",
"country": "France"
}, {
"statename": "Maine-et-Loire",
"country": "France"
}, {
"statename": "Manche",
"country": "France"
}, {
"statename": "Marne",
"country": "France"
}, {
"statename": "Mayenne",
"country": "France"
}, {
"statename": "Mayotte (see also separate entry under YT)",
"country": "France"
}, {
"statename": "Meurthe-et-Moselle",
"country": "France"
}, {
"statename": "Meuse",
"country": "France"
}, {
"statename": "Morbihan",
"country": "France"
}, {
"statename": "Moselle",
"country": "France"
}, {
"statename": "Nièvre",
"country": "France"
}, {
"statename": "Nord",
"country": "France"
}, {
"statename": "Nouvelle-Calédonie (see also separate entry under NC)",
"country": "France"
}, {
"statename": "Oise",
"country": "France"
}, {
"statename": "Orne",
"country": "France"
}, {
"statename": "Paris",
"country": "France"
}, {
"statename": "Pas-de-Calais",
"country": "France"
}, {
"statename": "Polynésie française (see also separate entry under PF)",
"country": "France"
}, {
"statename": "Puy-de-Dôme",
"country": "France"
}, {
"statename": "Pyrénées-Atlantiques",
"country": "France"
}, {
"statename": "Pyrénées-Orientales",
"country": "France"
}, {
"statename": "Rhône",
"country": "France"
}, {
"statename": "Saint-Barthélemy (see also separate entry under BL)",
"country": "France"
}, {
"statename": "Saint-Martin (see also separate entry under MF)",
"country": "France"
}, {
"statename": "Saint-Pierre-et-Miquelon (see also separate entry under PM)",
"country": "France"
}, {
"statename": "Saône-et-Loire",
"country": "France"
}, {
"statename": "Sarthe",
"country": "France"
}, {
"statename": "Savoie",
"country": "France"
}, {
"statename": "Seine-et-Marne",
"country": "France"
}, {
"statename": "Seine-Maritime",
"country": "France"
}, {
"statename": "Seine-Saint-Denis",
"country": "France"
}, {
"statename": "Somme",
"country": "France"
}, {
"statename": "Tarn",
"country": "France"
}, {
"statename": "Tarn-et-Garonne",
"country": "France"
}, {
"statename": "Terres Australes Françaises (see also separate entry under TF)",
"country": "France"
}, {
"statename": "Territoire de Belfort",
"country": "France"
}, {
"statename": "Val-de-Marne",
"country": "France"
}, {
"statename": "Val-d'Oise",
"country": "France"
}, {
"statename": "Var",
"country": "France"
}, {
"statename": "Vaucluse",
"country": "France"
}, {
"statename": "Vendée",
"country": "France"
}, {
"statename": "Vienne",
"country": "France"
}, {
"statename": "Vosges",
"country": "France"
}, {
"statename": "Wallis et Futuna (see also separate entry under WF)",
"country": "France"
}, {
"statename": "Yonne",
"country": "France"
}, {
"statename": "Yvelines",
"country": "France"
}, {
"statename": "Crozet Islands",
"country": "French Southern Territories"
}, {
"statename": "Ile Saint-Paul et Ile Amsterdam",
"country": "French Southern Territories"
}, {
"statename": "Iles Eparses",
"country": "French Southern Territories"
}, {
"statename": "Kerguelen",
"country": "French Southern Territories"
}, {
"statename": "Estuaire",
"country": "Gabon"
}, {
"statename": "Haut-Ogooué",
"country": "Gabon"
}, {
"statename": "Moyen-Ogooué",
"country": "Gabon"
}, {
"statename": "Ngounié",
"country": "Gabon"
}, {
"statename": "Nyanga",
"country": "Gabon"
}, {
"statename": "Ogooué-Ivindo",
"country": "Gabon"
}, {
"statename": "Ogooué-Lolo",
"country": "Gabon"
}, {
"statename": "Ogooué-Maritime",
"country": "Gabon"
}, {
"statename": "Woleu-Ntem",
"country": "Gabon"
}, {
"statename": "Banjul",
"country": "Gambia"
}, {
"statename": "Lower River",
"country": "Gambia"
}, {
"statename": "MacCarthy Island",
"country": "Gambia"
}, {
"statename": "North Bank",
"country": "Gambia"
}, {
"statename": "Upper River",
"country": "Gambia"
}, {
"statename": "Western",
"country": "Gambia"
}, {
"statename": "Abkhazia",
"country": "Georgia"
}, {
"statename": "Ajaria",
"country": "Georgia"
}, {
"statename": "Guria",
"country": "Georgia"
}, {
"statename": "Imereti",
"country": "Georgia"
}, {
"statename": "Kakheti",
"country": "Georgia"
}, {
"statename": "Kvemo Kartli",
"country": "Georgia"
}, {
"statename": "Mtskheta-Mtianeti",
"country": "Georgia"
}, {
"statename": "Racha-Lechkhumi [and] Kvemo Svaneti",
"country": "Georgia"
}, {
"statename": "Samegrelo-Zemo Svaneti",
"country": "Georgia"
}, {
"statename": "Samtskhe-Javakheti",
"country": "Georgia"
}, {
"statename": "Shida Kartli",
"country": "Georgia"
}, {
"statename": "Tbilisi",
"country": "Georgia"
}, {
"statename": "Baden-Württemberg",
"country": "Germany"
}, {
"statename": "Bayern",
"country": "Germany"
}, {
"statename": "Berlin",
"country": "Germany"
}, {
"statename": "Brandenburg",
"country": "Germany"
}, {
"statename": "Bremen",
"country": "Germany"
}, {
"statename": "Hamburg",
"country": "Germany"
}, {
"statename": "Hessen",
"country": "Germany"
}, {
"statename": "Mecklenburg-Vorpommern",
"country": "Germany"
}, {
"statename": "Niedersachsen",
"country": "Germany"
}, {
"statename": "Nordrhein-Westfalen",
"country": "Germany"
}, {
"statename": "Rheinland-Pfalz",
"country": "Germany"
}, {
"statename": "Saarland",
"country": "Germany"
}, {
"statename": "Sachsen",
"country": "Germany"
}, {
"statename": "Sachsen-Anhalt",
"country": "Germany"
}, {
"statename": "Schleswig-Holstein",
"country": "Germany"
}, {
"statename": "Thüringen",
"country": "Germany"
}, {
"statename": "Ashanti",
"country": "Ghana"
}, {
"statename": "Brong-Ahafo",
"country": "Ghana"
}, {
"statename": "Central",
"country": "Ghana"
}, {
"statename": "Eastern",
"country": "Ghana"
}, {
"statename": "Greater Accra",
"country": "Ghana"
}, {
"statename": "Northern",
"country": "Ghana"
}, {
"statename": "Upper East",
"country": "Ghana"
}, {
"statename": "Upper West",
"country": "Ghana"
}, {
"statename": "Volta",
"country": "Ghana"
}, {
"statename": "Western",
"country": "Ghana"
}, {
"statename": "Achaïa",
"country": "Greece"
}, {
"statename": "Agio Oros",
"country": "Greece"
}, {
"statename": "Aitolia kai Akarnania",
"country": "Greece"
}, {
"statename": "Argolida",
"country": "Greece"
}, {
"statename": "Arkadia",
"country": "Greece"
}, {
"statename": "Arta",
"country": "Greece"
}, {
"statename": "Attiki",
"country": "Greece"
}, {
"statename": "Chalkidiki",
"country": "Greece"
}, {
"statename": "Chania",
"country": "Greece"
}, {
"statename": "Chios",
"country": "Greece"
}, {
"statename": "Dodekanisos",
"country": "Greece"
}, {
"statename": "Drama",
"country": "Greece"
}, {
"statename": "Evros",
"country": "Greece"
}, {
"statename": "Evrytania",
"country": "Greece"
}, {
"statename": "Evvoia",
"country": "Greece"
}, {
"statename": "Florina",
"country": "Greece"
}, {
"statename": "Fokida",
"country": "Greece"
}, {
"statename": "Fthiotida",
"country": "Greece"
}, {
"statename": "Grevena",
"country": "Greece"
}, {
"statename": "Ileia",
"country": "Greece"
}, {
"statename": "Imathia",
"country": "Greece"
}, {
"statename": "Ioannina",
"country": "Greece"
}, {
"statename": "Irakleio",
"country": "Greece"
}, {
"statename": "Karditsa",
"country": "Greece"
}, {
"statename": "Kastoria",
"country": "Greece"
}, {
"statename": "Kavala",
"country": "Greece"
}, {
"statename": "Kefallonia",
"country": "Greece"
}, {
"statename": "Kerkyra",
"country": "Greece"
}, {
"statename": "Kilkis",
"country": "Greece"
}, {
"statename": "Korinthia",
"country": "Greece"
}, {
"statename": "Kozani",
"country": "Greece"
}, {
"statename": "Kyklades",
"country": "Greece"
}, {
"statename": "Lakonia",
"country": "Greece"
}, {
"statename": "Larisa",
"country": "Greece"
}, {
"statename": "Lasithi",
"country": "Greece"
}, {
"statename": "Lefkada",
"country": "Greece"
}, {
"statename": "Lesvos",
"country": "Greece"
}, {
"statename": "Magnisia",
"country": "Greece"
}, {
"statename": "Messinia",
"country": "Greece"
}, {
"statename": "Pella",
"country": "Greece"
}, {
"statename": "Pieria",
"country": "Greece"
}, {
"statename": "Preveza",
"country": "Greece"
}, {
"statename": "Rethymno",
"country": "Greece"
}, {
"statename": "Rodopi",
"country": "Greece"
}, {
"statename": "Samos",
"country": "Greece"
}, {
"statename": "Serres",
"country": "Greece"
}, {
"statename": "Thesprotia",
"country": "Greece"
}, {
"statename": "Thessaloniki",
"country": "Greece"
}, {
"statename": "Trikala",
"country": "Greece"
}, {
"statename": "Voiotia",
"country": "Greece"
}, {
"statename": "Xanthi",
"country": "Greece"
}, {
"statename": "Zakynthos",
"country": "Greece"
}, {
"statename": "Kommune Kujalleq (kl)",
"country": "Greenland"
}, {
"statename": "Kommuneqarfik Sermersooq (kl)",
"country": "Greenland"
}, {
"statename": "Qaasuitsup Kommunia (kl)",
"country": "Greenland"
}, {
"statename": "Qeqqata Kommunia (kl)",
"country": "Greenland"
}, {
"statename": "Saint Andrew",
"country": "Grenada"
}, {
"statename": "Saint David",
"country": "Grenada"
}, {
"statename": "Saint George",
"country": "Grenada"
}, {
"statename": "Saint John",
"country": "Grenada"
}, {
"statename": "Saint Mark",
"country": "Grenada"
}, {
"statename": "Saint Patrick",
"country": "Grenada"
}, {
"statename": "Southern Grenadine Islands",
"country": "Grenada"
}, {
"statename": "Alta Verapaz",
"country": "Guatemala"
}, {
"statename": "Baja Verapaz",
"country": "Guatemala"
}, {
"statename": "Chimaltenango",
"country": "Guatemala"
}, {
"statename": "Chiquimula",
"country": "Guatemala"
}, {
"statename": "El Progreso",
"country": "Guatemala"
}, {
"statename": "Escuintla",
"country": "Guatemala"
}, {
"statename": "Guatemala",
"country": "Guatemala"
}, {
"statename": "Huehuetenango",
"country": "Guatemala"
}, {
"statename": "Izabal",
"country": "Guatemala"
}, {
"statename": "Jalapa",
"country": "Guatemala"
}, {
"statename": "Jutiapa",
"country": "Guatemala"
}, {
"statename": "Petén",
"country": "Guatemala"
}, {
"statename": "Quetzaltenango",
"country": "Guatemala"
}, {
"statename": "Quiché",
"country": "Guatemala"
}, {
"statename": "Retalhuleu",
"country": "Guatemala"
}, {
"statename": "Sacatepéquez",
"country": "Guatemala"
}, {
"statename": "San Marcos",
"country": "Guatemala"
}, {
"statename": "Santa Rosa",
"country": "Guatemala"
}, {
"statename": "Sololá",
"country": "Guatemala"
}, {
"statename": "Suchitepéquez",
"country": "Guatemala"
}, {
"statename": "Totonicapán",
"country": "Guatemala"
}, {
"statename": "Zacapa",
"country": "Guatemala"
}, {
"statename": "Beyla",
"country": "Guinea"
}, {
"statename": "Boffa",
"country": "Guinea"
}, {
"statename": "Boké",
"country": "Guinea"
}, {
"statename": "Conakry",
"country": "Guinea"
}, {
"statename": "Coyah",
"country": "Guinea"
}, {
"statename": "Dabola",
"country": "Guinea"
}, {
"statename": "Dalaba",
"country": "Guinea"
}, {
"statename": "Dinguiraye",
"country": "Guinea"
}, {
"statename": "Dubréka",
"country": "Guinea"
}, {
"statename": "Faranah",
"country": "Guinea"
}, {
"statename": "Forécariah",
"country": "Guinea"
}, {
"statename": "Fria",
"country": "Guinea"
}, {
"statename": "Gaoual",
"country": "Guinea"
}, {
"statename": "Guékédou",
"country": "Guinea"
}, {
"statename": "Kankan",
"country": "Guinea"
}, {
"statename": "Kérouané",
"country": "Guinea"
}, {
"statename": "Kindia",
"country": "Guinea"
}, {
"statename": "Kissidougou",
"country": "Guinea"
}, {
"statename": "Koubia",
"country": "Guinea"
}, {
"statename": "Koundara",
"country": "Guinea"
}, {
"statename": "Kouroussa",
"country": "Guinea"
}, {
"statename": "Labé",
"country": "Guinea"
}, {
"statename": "Lélouma",
"country": "Guinea"
}, {
"statename": "Lola",
"country": "Guinea"
}, {
"statename": "Macenta",
"country": "Guinea"
}, {
"statename": "Mali",
"country": "Guinea"
}, {
"statename": "Mamou",
"country": "Guinea"
}, {
"statename": "Mandiana",
"country": "Guinea"
}, {
"statename": "Nzérékoré",
"country": "Guinea"
}, {
"statename": "Pita",
"country": "Guinea"
}, {
"statename": "Siguiri",
"country": "Guinea"
}, {
"statename": "Télimélé",
"country": "Guinea"
}, {
"statename": "Tougué",
"country": "Guinea"
}, {
"statename": "Yomou",
"country": "Guinea"
}, {
"statename": "Bafatá",
"country": "Guinea-Bissau"
}, {
"statename": "Biombo",
"country": "Guinea-Bissau"
}, {
"statename": "Bissau",
"country": "Guinea-Bissau"
}, {
"statename": "Bolama",
"country": "Guinea-Bissau"
}, {
"statename": "Cacheu",
"country": "Guinea-Bissau"
}, {
"statename": "Gabú",
"country": "Guinea-Bissau"
}, {
"statename": "Oio",
"country": "Guinea-Bissau"
}, {
"statename": "Quinara",
"country": "Guinea-Bissau"
}, {
"statename": "Tombali",
"country": "Guinea-Bissau"
}, {
"statename": "Barima-Waini",
"country": "Guyana"
}, {
"statename": "Cuyuni-Mazaruni",
"country": "Guyana"
}, {
"statename": "Demerara-Mahaica",
"country": "Guyana"
}, {
"statename": "East Berbice-Corentyne",
"country": "Guyana"
}, {
"statename": "Essequibo Islands-West Demerara",
"country": "Guyana"
}, {
"statename": "Mahaica-Berbice",
"country": "Guyana"
}, {
"statename": "Pomeroon-Supenaam",
"country": "Guyana"
}, {
"statename": "Potaro-Siparuni",
"country": "Guyana"
}, {
"statename": "Upper Demerara-Berbice",
"country": "Guyana"
}, {
"statename": "Upper Takutu-Upper Essequibo",
"country": "Guyana"
}, {
"statename": "Artibonite",
"country": "Haiti"
}, {
"statename": "Centre",
"country": "Haiti"
}, {
"statename": "Grande-Anse",
"country": "Haiti"
}, {
"statename": "Nord",
"country": "Haiti"
}, {
"statename": "Nord-Est",
"country": "Haiti"
}, {
"statename": "Nord-Ouest",
"country": "Haiti"
}, {
"statename": "Ouest",
"country": "Haiti"
}, {
"statename": "Sud",
"country": "Haiti"
}, {
"statename": "Sud-Est",
"country": "Haiti"
}, {
"statename": "Atlántida",
"country": "Honduras"
}, {
"statename": "Choluteca",
"country": "Honduras"
}, {
"statename": "Colón",
"country": "Honduras"
}, {
"statename": "Comayagua",
"country": "Honduras"
}, {
"statename": "Copán",
"country": "Honduras"
}, {
"statename": "Cortés",
"country": "Honduras"
}, {
"statename": "El Paraíso",
"country": "Honduras"
}, {
"statename": "Francisco Morazán",
"country": "Honduras"
}, {
"statename": "Gracias a Dios",
"country": "Honduras"
}, {
"statename": "Intibucá",
"country": "Honduras"
}, {
"statename": "Islas de la Bahía",
"country": "Honduras"
}, {
"statename": "La Paz",
"country": "Honduras"
}, {
"statename": "Lempira",
"country": "Honduras"
}, {
"statename": "Ocotepeque",
"country": "Honduras"
}, {
"statename": "Olancho",
"country": "Honduras"
}, {
"statename": "Santa Bárbara",
"country": "Honduras"
}, {
"statename": "Valle",
"country": "Honduras"
}, {
"statename": "Yoro",
"country": "Honduras"
}, {
"statename": "Bács-Kiskun",
"country": "Hungary"
}, {
"statename": "Baranya",
"country": "Hungary"
}, {
"statename": "Békés",
"country": "Hungary"
}, {
"statename": "Békéscsaba",
"country": "Hungary"
}, {
"statename": "Borsod-Abaúj-Zemplén",
"country": "Hungary"
}, {
"statename": "Budapest",
"country": "Hungary"
}, {
"statename": "Csongrád",
"country": "Hungary"
}, {
"statename": "Debrecen",
"country": "Hungary"
}, {
"statename": "Dunaújváros",
"country": "Hungary"
}, {
"statename": "Eger",
"country": "Hungary"
}, {
"statename": "Erd",
"country": "Hungary"
}, {
"statename": "Fejér",
"country": "Hungary"
}, {
"statename": "Gyor",
"country": "Hungary"
}, {
"statename": "Gyor-Moson-Sopron",
"country": "Hungary"
}, {
"statename": "Hajdú-Bihar",
"country": "Hungary"
}, {
"statename": "Heves",
"country": "Hungary"
}, {
"statename": "Hódmezovásárhely",
"country": "Hungary"
}, {
"statename": "Jász-Nagykun-Szolnok",
"country": "Hungary"
}, {
"statename": "Kaposvár",
"country": "Hungary"
}, {
"statename": "Kecskemét",
"country": "Hungary"
}, {
"statename": "Komárom-Esztergom",
"country": "Hungary"
}, {
"statename": "Miskolc",
"country": "Hungary"
}, {
"statename": "Nagykanizsa",
"country": "Hungary"
}, {
"statename": "Nógrád",
"country": "Hungary"
}, {
"statename": "Nyíregyháza",
"country": "Hungary"
}, {
"statename": "Pécs",
"country": "Hungary"
}, {
"statename": "Pest",
"country": "Hungary"
}, {
"statename": "Salgótarján",
"country": "Hungary"
}, {
"statename": "Somogy",
"country": "Hungary"
}, {
"statename": "Sopron",
"country": "Hungary"
}, {
"statename": "Szabolcs-Szatmár-Bereg",
"country": "Hungary"
}, {
"statename": "Szeged",
"country": "Hungary"
}, {
"statename": "Székesfehérvár",
"country": "Hungary"
}, {
"statename": "Szekszárd",
"country": "Hungary"
}, {
"statename": "Szolnok",
"country": "Hungary"
}, {
"statename": "Szombathely",
"country": "Hungary"
}, {
"statename": "Tatabánya",
"country": "Hungary"
}, {
"statename": "Tolna",
"country": "Hungary"
}, {
"statename": "Vas",
"country": "Hungary"
}, {
"statename": "Veszprém",
"country": "Hungary"
}, {
"statename": "Veszprém City",
"country": "Hungary"
}, {
"statename": "Zala",
"country": "Hungary"
}, {
"statename": "Zalaegerszeg",
"country": "Hungary"
}, {
"statename": "Austurland",
"country": "Iceland"
}, {
"statename": "Höfuðborgarsvæði utan Reykjavíkur",
"country": "Iceland"
}, {
"statename": "Norðurland eystra",
"country": "Iceland"
}, {
"statename": "Norðurland vestra",
"country": "Iceland"
}, {
"statename": "Reykjavík",
"country": "Iceland"
}, {
"statename": "Suðurland",
"country": "Iceland"
}, {
"statename": "Suðurnes",
"country": "Iceland"
}, {
"statename": "Vestfirðir",
"country": "Iceland"
}, {
"statename": "Vesturland",
"country": "Iceland"
}, {
"statename": "Andaman and Nicobar Islands",
"country": "India"
}, {
"statename": "Andhra Pradesh",
"country": "India"
}, {
"statename": "Arunachal Pradesh",
"country": "India"
}, {
"statename": "Assam",
"country": "India"
}, {
"statename": "Bihar",
"country": "India"
}, {
"statename": "Chandigarh",
"country": "India"
}, {
"statename": "Chhattisgarh",
"country": "India"
}, {
"statename": "Dadra and Nagar Haveli",
"country": "India"
}, {
"statename": "Daman and Diu",
"country": "India"
}, {
"statename": "Delhi",
"country": "India"
}, {
"statename": "Goa",
"country": "India"
}, {
"statename": "Gujarat",
"country": "India"
}, {
"statename": "Haryana",
"country": "India"
}, {
"statename": "Himachal Pradesh",
"country": "India"
}, {
"statename": "Jammu and Kashmir",
"country": "India"
}, {
"statename": "Jharkhand",
"country": "India"
}, {
"statename": "Karnataka",
"country": "India"
}, {
"statename": "Kerala",
"country": "India"
}, {
"statename": "Lakshadweep",
"country": "India"
}, {
"statename": "Madhya Pradesh",
"country": "India"
}, {
"statename": "Maharashtra",
"country": "India"
}, {
"statename": "Manipur",
"country": "India"
}, {
"statename": "Meghalaya",
"country": "India"
}, {
"statename": "Mizoram",
"country": "India"
}, {
"statename": "Nagaland",
"country": "India"
}, {
"statename": "Orissa",
"country": "India"
}, {
"statename": "Pondicherry",
"country": "India"
}, {
"statename": "Punjab",
"country": "India"
}, {
"statename": "Rajasthan",
"country": "India"
}, {
"statename": "Sikkim",
"country": "India"
}, {
"statename": "Tamil Nadu",
"country": "India"
}, {
"statename": "Tripura",
"country": "India"
}, {
"statename": "Uttar Pradesh",
"country": "India"
}, {
"statename": "Uttaranchal",
"country": "India"
}, {
"statename": "West Bengal",
"country": "India"
}, {
"statename": "Aceh",
"country": "Indonesia"
}, {
"statename": "Bali",
"country": "Indonesia"
}, {
"statename": "Bangka Belitung",
"country": "Indonesia"
}, {
"statename": "Banten",
"country": "Indonesia"
}, {
"statename": "Bengkulu",
"country": "Indonesia"
}, {
"statename": "Gorontalo",
"country": "Indonesia"
}, {
"statename": "Jakarta Raya",
"country": "Indonesia"
}, {
"statename": "Jambi",
"country": "Indonesia"
}, {
"statename": "Jawa Barat",
"country": "Indonesia"
}, {
"statename": "Jawa Tengah",
"country": "Indonesia"
}, {
"statename": "Jawa Timur",
"country": "Indonesia"
}, {
"statename": "Kalimantan Barat",
"country": "Indonesia"
}, {
"statename": "Kalimantan Selatan",
"country": "Indonesia"
}, {
"statename": "Kalimantan Tengah",
"country": "Indonesia"
}, {
"statename": "Kalimantan Timur",
"country": "Indonesia"
}, {
"statename": "Kepulauan Riau",
"country": "Indonesia"
}, {
"statename": "Lampung",
"country": "Indonesia"
}, {
"statename": "Maluku",
"country": "Indonesia"
}, {
"statename": "Maluku Utara",
"country": "Indonesia"
}, {
"statename": "Nusa Tenggara Barat",
"country": "Indonesia"
}, {
"statename": "Nusa Tenggara Timur",
"country": "Indonesia"
}, {
"statename": "Papua",
"country": "Indonesia"
}, {
"statename": "Papua Barat",
"country": "Indonesia"
}, {
"statename": "Riau",
"country": "Indonesia"
}, {
"statename": "Sulawesi Barat",
"country": "Indonesia"
}, {
"statename": "Sulawesi Selatan",
"country": "Indonesia"
}, {
"statename": "Sulawesi Tengah",
"country": "Indonesia"
}, {
"statename": "Sulawesi Tenggara",
"country": "Indonesia"
}, {
"statename": "Sulawesi Utara",
"country": "Indonesia"
}, {
"statename": "Sumatera Barat",
"country": "Indonesia"
}, {
"statename": "Sumatera Selatan",
"country": "Indonesia"
}, {
"statename": "Sumatera Utara",
"country": "Indonesia"
}, {
"statename": "Yogyakarta",
"country": "Indonesia"
}, {
"statename": "Ardabil",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Az¯arbayjan-e Gharbi",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Az¯arbayjan-e Sharqi",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Bushehr",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Chahar Mah¸all va Bakhtiari",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Esfahan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Fars",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Gilan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Golestan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Hamadan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Hormozgan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Ilam",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Kerman",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Kermanshah",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Khorasan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Khorasan-e Janubi",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Khorasan-e Razavi",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Khorasan-e Shemali",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Khuzestan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Kohkiluyeh va Buyer Ahmad",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Kordestan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Lorestan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Markazi",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Mazandaran",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Qazvin",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Qom",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Semnan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Sistan va Baluchestan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Tehran",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Yazd",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Zanjan",
"country": "Iran, Islamic Republic Of"
}, {
"statename": "Al Anbar",
"country": "Iraq"
}, {
"statename": "Al Basrah",
"country": "Iraq"
}, {
"statename": "Al Muthanná",
"country": "Iraq"
}, {
"statename": "Al Qadisiyah",
"country": "Iraq"
}, {
"statename": "An Najaf",
"country": "Iraq"
}, {
"statename": "Arbil",
"country": "Iraq"
}, {
"statename": "As Sulaymaniyah",
"country": "Iraq"
}, {
"statename": "At Ta'mim",
"country": "Iraq"
}, {
"statename": "Babil",
"country": "Iraq"
}, {
"statename": "Baghdad",
"country": "Iraq"
}, {
"statename": "Dahuk",
"country": "Iraq"
}, {
"statename": "Dhi Qar",
"country": "Iraq"
}, {
"statename": "Diyalá",
"country": "Iraq"
}, {
"statename": "Karbala'",
"country": "Iraq"
}, {
"statename": "Maysan",
"country": "Iraq"
}, {
"statename": "Ninawá",
"country": "Iraq"
}, {
"statename": "Salah ad Din",
"country": "Iraq"
}, {
"statename": "Wasit",
"country": "Iraq"
}, {
"statename": "Carlow",
"country": "Ireland"
}, {
"statename": "Cavan",
"country": "Ireland"
}, {
"statename": "Clare",
"country": "Ireland"
}, {
"statename": "Cork",
"country": "Ireland"
}, {
"statename": "Donegal",
"country": "Ireland"
}, {
"statename": "Dublin",
"country": "Ireland"
}, {
"statename": "Galway",
"country": "Ireland"
}, {
"statename": "Kerry",
"country": "Ireland"
}, {
"statename": "Kildare",
"country": "Ireland"
}, {
"statename": "Kilkenny",
"country": "Ireland"
}, {
"statename": "Laois",
"country": "Ireland"
}, {
"statename": "Leitrim",
"country": "Ireland"
}, {
"statename": "Limerick",
"country": "Ireland"
}, {
"statename": "Longford",
"country": "Ireland"
}, {
"statename": "Louth",
"country": "Ireland"
}, {
"statename": "Mayo",
"country": "Ireland"
}, {
"statename": "Meath",
"country": "Ireland"
}, {
"statename": "Monaghan",
"country": "Ireland"
}, {
"statename": "Offaly",
"country": "Ireland"
}, {
"statename": "Roscommon",
"country": "Ireland"
}, {
"statename": "Sligo",
"country": "Ireland"
}, {
"statename": "Tipperary",
"country": "Ireland"
}, {
"statename": "Waterford",
"country": "Ireland"
}, {
"statename": "Westmeath",
"country": "Ireland"
}, {
"statename": "Wexford",
"country": "Ireland"
}, {
"statename": "Wicklow",
"country": "Ireland"
}, {
"statename": "HaDarom",
"country": "Israel"
}, {
"statename": "Haifa",
"country": "Israel"
}, {
"statename": "HaMerkaz",
"country": "Israel"
}, {
"statename": "HaZafon",
"country": "Israel"
}, {
"statename": "Tel-Aviv",
"country": "Israel"
}, {
"statename": "Yerushalayim",
"country": "Israel"
}, {
"statename": "Abruzzo",
"country": "Italy"
}, {
"statename": "Agrigento",
"country": "Italy"
}, {
"statename": "Alessandria",
"country": "Italy"
}, {
"statename": "Ancona",
"country": "Italy"
}, {
"statename": "Aosta",
"country": "Italy"
}, {
"statename": "Arezzo",
"country": "Italy"
}, {
"statename": "Ascoli Piceno",
"country": "Italy"
}, {
"statename": "Asti",
"country": "Italy"
}, {
"statename": "Avellino",
"country": "Italy"
}, {
"statename": "Bari",
"country": "Italy"
}, {
"statename": "Barletta-Andria-Trani",
"country": "Italy"
}, {
"statename": "Basilicata",
"country": "Italy"
}, {
"statename": "Belluno",
"country": "Italy"
}, {
"statename": "Benevento",
"country": "Italy"
}, {
"statename": "Bergamo",
"country": "Italy"
}, {
"statename": "Biella",
"country": "Italy"
}, {
"statename": "Bologna",
"country": "Italy"
}, {
"statename": "Bolzano",
"country": "Italy"
}, {
"statename": "Brescia",
"country": "Italy"
}, {
"statename": "Brindisi",
"country": "Italy"
}, {
"statename": "Cagliari",
"country": "Italy"
}, {
"statename": "Calabria",
"country": "Italy"
}, {
"statename": "Caltanissetta",
"country": "Italy"
}, {
"statename": "Campania",
"country": "Italy"
}, {
"statename": "Campobasso",
"country": "Italy"
}, {
"statename": "Carbonia-Iglesias",
"country": "Italy"
}, {
"statename": "Caserta",
"country": "Italy"
}, {
"statename": "Catania",
"country": "Italy"
}, {
"statename": "Catanzaro",
"country": "Italy"
}, {
"statename": "Chieti",
"country": "Italy"
}, {
"statename": "Como",
"country": "Italy"
}, {
"statename": "Cosenza",
"country": "Italy"
}, {
"statename": "Cremona",
"country": "Italy"
}, {
"statename": "Crotone",
"country": "Italy"
}, {
"statename": "Cuneo",
"country": "Italy"
}, {
"statename": "Emilia-Romagna",
"country": "Italy"
}, {
"statename": "Enna",
"country": "Italy"
}, {
"statename": "Fermo",
"country": "Italy"
}, {
"statename": "Ferrara",
"country": "Italy"
}, {
"statename": "Firenze",
"country": "Italy"
}, {
"statename": "Foggia",
"country": "Italy"
}, {
"statename": "Forli-Cesena",
"country": "Italy"
}, {
"statename": "Friuli-Venezia Giulia",
"country": "Italy"
}, {
"statename": "Frosinone",
"country": "Italy"
}, {
"statename": "Genova",
"country": "Italy"
}, {
"statename": "Gorizia",
"country": "Italy"
}, {
"statename": "Grosseto",
"country": "Italy"
}, {
"statename": "Imperia",
"country": "Italy"
}, {
"statename": "Isernia",
"country": "Italy"
}, {
"statename": "La Spezia",
"country": "Italy"
}, {
"statename": "L'Aquila",
"country": "Italy"
}, {
"statename": "Latina",
"country": "Italy"
}, {
"statename": "Lazio",
"country": "Italy"
}, {
"statename": "Lecce",
"country": "Italy"
}, {
"statename": "Lecco",
"country": "Italy"
}, {
"statename": "Liguria",
"country": "Italy"
}, {
"statename": "Livorno",
"country": "Italy"
}, {
"statename": "Lodi",
"country": "Italy"
}, {
"statename": "Lombardia",
"country": "Italy"
}, {
"statename": "Lucca",
"country": "Italy"
}, {
"statename": "Macerata",
"country": "Italy"
}, {
"statename": "Mantova",
"country": "Italy"
}, {
"statename": "Marche",
"country": "Italy"
}, {
"statename": "Massa-Carrara",
"country": "Italy"
}, {
"statename": "Matera",
"country": "Italy"
}, {
"statename": "Medio Campidano",
"country": "Italy"
}, {
"statename": "Messina",
"country": "Italy"
}, {
"statename": "Milano",
"country": "Italy"
}, {
"statename": "Modena",
"country": "Italy"
}, {
"statename": "Molise",
"country": "Italy"
}, {
"statename": "Monza e Brianza",
"country": "Italy"
}, {
"statename": "Napoli",
"country": "Italy"
}, {
"statename": "Novara",
"country": "Italy"
}, {
"statename": "Nuoro",
"country": "Italy"
}, {
"statename": "Ogliastra",
"country": "Italy"
}, {
"statename": "Olbia-Tempio",
"country": "Italy"
}, {
"statename": "Oristano",
"country": "Italy"
}, {
"statename": "Padova",
"country": "Italy"
}, {
"statename": "Palermo",
"country": "Italy"
}, {
"statename": "Parma",
"country": "Italy"
}, {
"statename": "Pavia",
"country": "Italy"
}, {
"statename": "Perugia",
"country": "Italy"
}, {
"statename": "Pesaro e Urbino",
"country": "Italy"
}, {
"statename": "Pescara",
"country": "Italy"
}, {
"statename": "Piacenza",
"country": "Italy"
}, {
"statename": "Piemonte",
"country": "Italy"
}, {
"statename": "Pisa",
"country": "Italy"
}, {
"statename": "Pistoia",
"country": "Italy"
}, {
"statename": "Pordenone",
"country": "Italy"
}, {
"statename": "Potenza",
"country": "Italy"
}, {
"statename": "Prato",
"country": "Italy"
}, {
"statename": "Puglia",
"country": "Italy"
}, {
"statename": "Ragusa",
"country": "Italy"
}, {
"statename": "Ravenna",
"country": "Italy"
}, {
"statename": "Reggio Calabria",
"country": "Italy"
}, {
"statename": "Reggio Emilia",
"country": "Italy"
}, {
"statename": "Rieti",
"country": "Italy"
}, {
"statename": "Rimini",
"country": "Italy"
}, {
"statename": "Roma",
"country": "Italy"
}, {
"statename": "Rovigo",
"country": "Italy"
}, {
"statename": "Salerno",
"country": "Italy"
}, {
"statename": "Sardegna",
"country": "Italy"
}, {
"statename": "Sassari",
"country": "Italy"
}, {
"statename": "Savona",
"country": "Italy"
}, {
"statename": "Sicilia",
"country": "Italy"
}, {
"statename": "Siena",
"country": "Italy"
}, {
"statename": "Siracusa",
"country": "Italy"
}, {
"statename": "Sondrio",
"country": "Italy"
}, {
"statename": "Taranto",
"country": "Italy"
}, {
"statename": "Teramo",
"country": "Italy"
}, {
"statename": "Terni",
"country": "Italy"
}, {
"statename": "Torino",
"country": "Italy"
}, {
"statename": "Toscana",
"country": "Italy"
}, {
"statename": "Trapani",
"country": "Italy"
}, {
"statename": "Trentino-Alto Adige",
"country": "Italy"
}, {
"statename": "Trento",
"country": "Italy"
}, {
"statename": "Treviso",
"country": "Italy"
}, {
"statename": "Trieste",
"country": "Italy"
}, {
"statename": "Udine",
"country": "Italy"
}, {
"statename": "Umbria",
"country": "Italy"
}, {
"statename": "Valle d'Aosta",
"country": "Italy"
}, {
"statename": "Varese",
"country": "Italy"
}, {
"statename": "Veneto",
"country": "Italy"
}, {
"statename": "Venezia",
"country": "Italy"
}, {
"statename": "Verbano-Cusio-Ossola",
"country": "Italy"
}, {
"statename": "Vercelli",
"country": "Italy"
}, {
"statename": "Verona",
"country": "Italy"
}, {
"statename": "Vibo Valentia",
"country": "Italy"
}, {
"statename": "Vicenza",
"country": "Italy"
}, {
"statename": "Viterbo",
"country": "Italy"
}, {
"statename": "Clarendon",
"country": "Jamaica"
}, {
"statename": "Hanover",
"country": "Jamaica"
}, {
"statename": "Kingston",
"country": "Jamaica"
}, {
"statename": "Manchester",
"country": "Jamaica"
}, {
"statename": "Portland",
"country": "Jamaica"
}, {
"statename": "Saint Andrew",
"country": "Jamaica"
}, {
"statename": "Saint Ann",
"country": "Jamaica"
}, {
"statename": "Saint Catherine",
"country": "Jamaica"
}, {
"statename": "Saint Elizabeth",
"country": "Jamaica"
}, {
"statename": "Saint James",
"country": "Jamaica"
}, {
"statename": "Saint Mary",
"country": "Jamaica"
}, {
"statename": "Saint Thomas",
"country": "Jamaica"
}, {
"statename": "Trelawny",
"country": "Jamaica"
}, {
"statename": "Westmoreland",
"country": "Jamaica"
}, {
"statename": "Aiti [Aichi]",
"country": "Japan"
}, {
"statename": "Akita",
"country": "Japan"
}, {
"statename": "Aomori",
"country": "Japan"
}, {
"statename": "Ehime",
"country": "Japan"
}, {
"statename": "Gihu [Gifu]",
"country": "Japan"
}, {
"statename": "Gunma",
"country": "Japan"
}, {
"statename": "Hirosima [Hiroshima]",
"country": "Japan"
}, {
"statename": "Hokkaidô [Hokkaido]",
"country": "Japan"
}, {
"statename": "Hukui [Fukui]",
"country": "Japan"
}, {
"statename": "Hukuoka [Fukuoka]",
"country": "Japan"
}, {
"statename": "Hukusima [Fukushima]",
"country": "Japan"
}, {
"statename": "Hyôgo [Hyogo]",
"country": "Japan"
}, {
"statename": "Ibaraki",
"country": "Japan"
}, {
"statename": "Isikawa [Ishikawa]",
"country": "Japan"
}, {
"statename": "Iwate",
"country": "Japan"
}, {
"statename": "Kagawa",
"country": "Japan"
}, {
"statename": "Kagosima [Kagoshima]",
"country": "Japan"
}, {
"statename": "Kanagawa",
"country": "Japan"
}, {
"statename": "Kôti [Kochi]",
"country": "Japan"
}, {
"statename": "Kumamoto",
"country": "Japan"
}, {
"statename": "Kyôto [Kyoto]",
"country": "Japan"
}, {
"statename": "Mie",
"country": "Japan"
}, {
"statename": "Miyagi",
"country": "Japan"
}, {
"statename": "Miyazaki",
"country": "Japan"
}, {
"statename": "Nagano",
"country": "Japan"
}, {
"statename": "Nagasaki",
"country": "Japan"
}, {
"statename": "Nara",
"country": "Japan"
}, {
"statename": "Niigata",
"country": "Japan"
}, {
"statename": "Ôita [Oita]",
"country": "Japan"
}, {
"statename": "Okayama",
"country": "Japan"
}, {
"statename": "Okinawa",
"country": "Japan"
}, {
"statename": "Ôsaka [Osaka]",
"country": "Japan"
}, {
"statename": "Saga",
"country": "Japan"
}, {
"statename": "Saitama",
"country": "Japan"
}, {
"statename": "Siga [Shiga]",
"country": "Japan"
}, {
"statename": "Simane [Shimane]",
"country": "Japan"
}, {
"statename": "Sizuoka [Shizuoka]",
"country": "Japan"
}, {
"statename": "Tiba [Chiba]",
"country": "Japan"
}, {
"statename": "Tokusima [Tokushima]",
"country": "Japan"
}, {
"statename": "Tôkyô [Tokyo]",
"country": "Japan"
}, {
"statename": "Totigi [Tochigi]",
"country": "Japan"
}, {
"statename": "Tottori",
"country": "Japan"
}, {
"statename": "Toyama",
"country": "Japan"
}, {
"statename": "Wakayama",
"country": "Japan"
}, {
"statename": "Yamagata",
"country": "Japan"
}, {
"statename": "Yamaguti [Yamaguchi]",
"country": "Japan"
}, {
"statename": "Yamanasi [Yamanashi]",
"country": "Japan"
}, {
"statename": "?Ajlun",
"country": "Jordan"
}, {
"statename": "?Amman",
"country": "Jordan"
}, {
"statename": "Al Balqa'",
"country": "Jordan"
}, {
"statename": "Al Karak",
"country": "Jordan"
}, {
"statename": "Al Mafraq",
"country": "Jordan"
}, {
"statename": "Aqaba",
"country": "Jordan"
}, {
"statename": "At Tafilah",
"country": "Jordan"
}, {
"statename": "Az Zarqa'",
"country": "Jordan"
}, {
"statename": "Irbid",
"country": "Jordan"
}, {
"statename": "Jarash",
"country": "Jordan"
}, {
"statename": "Ma`an",
"country": "Jordan"
}, {
"statename": "Madaba",
"country": "Jordan"
}, {
"statename": "Almaty",
"country": "Kazakhstan"
}, {
"statename": "Almaty oblysy",
"country": "Kazakhstan"
}, {
"statename": "Aqmola oblysy",
"country": "Kazakhstan"
}, {
"statename": "Aqtöbe oblysy",
"country": "Kazakhstan"
}, {
"statename": "Astana",
"country": "Kazakhstan"
}, {
"statename": "Atyrau oblysy",
"country": "Kazakhstan"
}, {
"statename": "Batys Qazaqstan oblysy",
"country": "Kazakhstan"
}, {
"statename": "Bayqongyr",
"country": "Kazakhstan"
}, {
"statename": "Mangghystau oblysy",
"country": "Kazakhstan"
}, {
"statename": "Ongtüstik Qazaqstan oblysy",
"country": "Kazakhstan"
}, {
"statename": "Pavlodar oblysy",
"country": "Kazakhstan"
}, {
"statename": "Qaraghandy oblysy",
"country": "Kazakhstan"
}, {
"statename": "Qostanay oblysy",
"country": "Kazakhstan"
}, {
"statename": "Qyzylorda oblysy",
"country": "Kazakhstan"
}, {
"statename": "Shyghys Qazaqstan oblysy",
"country": "Kazakhstan"
}, {
"statename": "Soltüstik Qazaqstan oblysy",
"country": "Kazakhstan"
}, {
"statename": "Zhambyl oblysy",
"country": "Kazakhstan"
}, {
"statename": "Central",
"country": "Kenya"
}, {
"statename": "Coast",
"country": "Kenya"
}, {
"statename": "Eastern",
"country": "Kenya"
}, {
"statename": "Nairobi",
"country": "Kenya"
}, {
"statename": "North-Eastern",
"country": "Kenya"
}, {
"statename": "Nyanza",
"country": "Kenya"
}, {
"statename": "Rift Valley",
"country": "Kenya"
}, {
"statename": "Western",
"country": "Kenya"
}, {
"statename": "Gilbert Islands",
"country": "Kiribati"
}, {
"statename": "Line Islands",
"country": "Kiribati"
}, {
"statename": "Phoenix Islands",
"country": "Kiribati"
}, {
"statename": "Chagang-do",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Hamgyong-bukdo",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Hamgyong-namdo",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Hwanghae-bukto",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Hwanghae-namdo",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Kangwon-do",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Nason",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Pyongan-bukdo",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Pyongan-namdo",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Pyongyang",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Yanggang-do",
"country": "Korea, Democratic People's Republic Of"
}, {
"statename": "Busan Gwang'yeogsi [Pusan-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Chungcheongbugdo [Ch'ungch'ongbuk-do]",
"country": "Korea, Republic of"
}, {
"statename": "Chungcheongnamdo [Ch'ungch'ongnam-do]",
"country": "Korea, Republic of"
}, {
"statename": "Daegu Gwang'yeogsi [Taegu-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Daejeon Gwang'yeogsi [Taejon-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Gang'weondo [Kang-won-do]",
"country": "Korea, Republic of"
}, {
"statename": "Gwangju Gwang'yeogsi [Kwangju-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Gyeonggido [Kyonggi-do]",
"country": "Korea, Republic of"
}, {
"statename": "Gyeongsangbugdo [Kyongsangbuk-do]",
"country": "Korea, Republic of"
}, {
"statename": "Gyeongsangnamdo [Kyongsangnam-do]",
"country": "Korea, Republic of"
}, {
"statename": "Incheon Gwang'yeogsi [Inch'n-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Jejudo [Cheju-do]",
"country": "Korea, Republic of"
}, {
"statename": "Jeonrabugdo[Chollabuk-do]",
"country": "Korea, Republic of"
}, {
"statename": "Jeonranamdo [Chollanam-do]",
"country": "Korea, Republic of"
}, {
"statename": "Seoul Teugbyeolsi [Seoul-T'ukpyolshi]",
"country": "Korea, Republic of"
}, {
"statename": "Ulsan Gwang'yeogsi [Ulsan-Kwangyokshi]",
"country": "Korea, Republic of"
}, {
"statename": "Al Ahmadi",
"country": "Kuwait"
}, {
"statename": "Al Farwaniyah",
"country": "Kuwait"
}, {
"statename": "Al Jahrah",
"country": "Kuwait"
}, {
"statename": "Al Kuwayt",
"country": "Kuwait"
}, {
"statename": "Hawalli",
"country": "Kuwait"
}, {
"statename": "Mubarak al-Kabir",
"country": "Kuwait"
}, {
"statename": "Batken",
"country": "Kyrgyzstan"
}, {
"statename": "Bishkek",
"country": "Kyrgyzstan"
}, {
"statename": "Chü",
"country": "Kyrgyzstan"
}, {
"statename": "Jalal-Abad",
"country": "Kyrgyzstan"
}, {
"statename": "Naryn",
"country": "Kyrgyzstan"
}, {
"statename": "Osh",
"country": "Kyrgyzstan"
}, {
"statename": "Talas",
"country": "Kyrgyzstan"
}, {
"statename": "Ysyk-Köl",
"country": "Kyrgyzstan"
}, {
"statename": "Attapu [Attopeu]",
"country": "Laos"
}, {
"statename": "Bokèo",
"country": "Laos"
}, {
"statename": "Bolikhamxai [Borikhane]",
"country": "Laos"
}, {
"statename": "Champasak [Champassak]",
"country": "Laos"
}, {
"statename": "Houaphan",
"country": "Laos"
}, {
"statename": "Khammouan",
"country": "Laos"
}, {
"statename": "Louang Namtha",
"country": "Laos"
}, {
"statename": "Louangphabang [Louang Prabang]",
"country": "Laos"
}, {
"statename": "Oudômxai [Oudomsai]",
"country": "Laos"
}, {
"statename": "Phôngsali [Phong Saly]",
"country": "Laos"
}, {
"statename": "Salavan [Saravane]",
"country": "Laos"
}, {
"statename": "Savannakhét",
"country": "Laos"
}, {
"statename": "Vientiane",
"country": "Laos"
}, {
"statename": "Vientiane Prefecture",
"country": "Laos"
}, {
"statename": "Xaignabouli [Sayaboury]",
"country": "Laos"
}, {
"statename": "Xaisômboun",
"country": "Laos"
}, {
"statename": "Xékong [Sékong]",
"country": "Laos"
}, {
"statename": "Xiangkhoang [Xieng Khouang]",
"country": "Laos"
}, {
"statename": "Aizkraukles Aprinkis",
"country": "Latvia"
}, {
"statename": "Aluksnes Aprinkis",
"country": "Latvia"
}, {
"statename": "Balvu Aprinkis",
"country": "Latvia"
}, {
"statename": "Bauskas Aprinkis",
"country": "Latvia"
}, {
"statename": "Cesu Aprinkis",
"country": "Latvia"
}, {
"statename": "Daugavpils",
"country": "Latvia"
}, {
"statename": "Daugavpils Aprinkis",
"country": "Latvia"
}, {
"statename": "Dobeles Aprinkis",
"country": "Latvia"
}, {
"statename": "Gulbenes Aprinkis",
"country": "Latvia"
}, {
"statename": "Jekabpils Aprinkis",
"country": "Latvia"
}, {
"statename": "Jelgava",
"country": "Latvia"
}, {
"statename": "Jelgavas Aprinkis",
"country": "Latvia"
}, {
"statename": "Jurmala",
"country": "Latvia"
}, {
"statename": "Kraslavas Aprinkis",
"country": "Latvia"
}, {
"statename": "Kuldigas Aprinkis",
"country": "Latvia"
}, {
"statename": "Liepaja",
"country": "Latvia"
}, {
"statename": "Liepajas Aprinkis",
"country": "Latvia"
}, {
"statename": "Limbažu Aprinkis",
"country": "Latvia"
}, {
"statename": "Ludzas Aprinkis",
"country": "Latvia"
}, {
"statename": "Madonas Aprinkis",
"country": "Latvia"
}, {
"statename": "Ogres Aprinkis",
"country": "Latvia"
}, {
"statename": "Preilu Aprinkis",
"country": "Latvia"
}, {
"statename": "Rezekne",
"country": "Latvia"
}, {
"statename": "Rezeknes Aprinkis",
"country": "Latvia"
}, {
"statename": "Riga",
"country": "Latvia"
}, {
"statename": "Rigas Aprinkis",
"country": "Latvia"
}, {
"statename": "Saldus Aprinkis",
"country": "Latvia"
}, {
"statename": "Talsu Aprinkis",
"country": "Latvia"
}, {
"statename": "Tukuma Aprinkis",
"country": "Latvia"
}, {
"statename": "Valkas Aprinkis",
"country": "Latvia"
}, {
"statename": "Valmieras Aprinkis",
"country": "Latvia"
}, {
"statename": "Ventspils",
"country": "Latvia"
}, {
"statename": "Ventspils Aprinkis",
"country": "Latvia"
}, {
"statename": "Beirut",
"country": "Lebanon"
}, {
"statename": "El Béqaa",
"country": "Lebanon"
}, {
"statename": "Jabal Loubnâne",
"country": "Lebanon"
}, {
"statename": "Loubnâne ech Chemâli",
"country": "Lebanon"
}, {
"statename": "Loubnâne ej Jnoûbi",
"country": "Lebanon"
}, {
"statename": "Nabatîyé",
"country": "Lebanon"
}, {
"statename": "Berea",
"country": "Lesotho"
}, {
"statename": "Butha-Buthe",
"country": "Lesotho"
}, {
"statename": "Leribe",
"country": "Lesotho"
}, {
"statename": "Mafeteng",
"country": "Lesotho"
}, {
"statename": "Maseru",
"country": "Lesotho"
}, {
"statename": "Mohale's Hoek",
"country": "Lesotho"
}, {
"statename": "Mokhotlong",
"country": "Lesotho"
}, {
"statename": "Qacha's Nek",
"country": "Lesotho"
}, {
"statename": "Quthing",
"country": "Lesotho"
}, {
"statename": "Thaba-Tseka",
"country": "Lesotho"
}, {
"statename": "Bomi",
"country": "Liberia"
}, {
"statename": "Bong",
"country": "Liberia"
}, {
"statename": "Gbarpolu",
"country": "Liberia"
}, {
"statename": "Grand Bassa",
"country": "Liberia"
}, {
"statename": "Grand Cape Mount",
"country": "Liberia"
}, {
"statename": "Grand Gedeh",
"country": "Liberia"
}, {
"statename": "Grand Kru",
"country": "Liberia"
}, {
"statename": "Lofa",
"country": "Liberia"
}, {
"statename": "Margibi",
"country": "Liberia"
}, {
"statename": "Maryland",
"country": "Liberia"
}, {
"statename": "Montserrado",
"country": "Liberia"
}, {
"statename": "Nimba",
"country": "Liberia"
}, {
"statename": "River Gee",
"country": "Liberia"
}, {
"statename": "Rivercess",
"country": "Liberia"
}, {
"statename": "Sinoe",
"country": "Liberia"
}, {
"statename": "Al Butnan",
"country": "Libya"
}, {
"statename": "Al Jabal al Akh?ar",
"country": "Libya"
}, {
"statename": "Al Jabal al Gharb?",
"country": "Libya"
}, {
"statename": "Al Jifarah",
"country": "Libya"
}, {
"statename": "Al Jufrah",
"country": "Libya"
}, {
"statename": "Al Kufrah",
"country": "Libya"
}, {
"statename": "Al Marj",
"country": "Libya"
}, {
"statename": "Al Marqab",
"country": "Libya"
}, {
"statename": "Al W?h??t",
"country": "Libya"
}, {
"statename": "An Nuqat al Khams",
"country": "Libya"
}, {
"statename": "Az Zawiyah",
"country": "Libya"
}, {
"statename": "Banghazi",
"country": "Libya"
}, {
"statename": "Darnah",
"country": "Libya"
}, {
"statename": "Ghat",
"country": "Libya"
}, {
"statename": "Misratah",
"country": "Libya"
}, {
"statename": "Murzuq",
"country": "Libya"
}, {
"statename": "Nalut",
"country": "Libya"
}, {
"statename": "Sabha",
"country": "Libya"
}, {
"statename": "Surt",
"country": "Libya"
}, {
"statename": "Tarabulus",
"country": "Libya"
}, {
"statename": "W?d? ash Sh??i?",
"country": "Libya"
}, {
"statename": "Wadi al ?ayat",
"country": "Libya"
}, {
"statename": "Balzers",
"country": "Liechtenstein"
}, {
"statename": "Eschen",
"country": "Liechtenstein"
}, {
"statename": "Gamprin",
"country": "Liechtenstein"
}, {
"statename": "Mauren",
"country": "Liechtenstein"
}, {
"statename": "Planken",
"country": "Liechtenstein"
}, {
"statename": "Ruggell",
"country": "Liechtenstein"
}, {
"statename": "Schaan",
"country": "Liechtenstein"
}, {
"statename": "Schellenberg",
"country": "Liechtenstein"
}, {
"statename": "Triesen",
"country": "Liechtenstein"
}, {
"statename": "Triesenberg",
"country": "Liechtenstein"
}, {
"statename": "Vaduz",
"country": "Liechtenstein"
}, {
"statename": "Alytaus Apskritis",
"country": "Lithuania"
}, {
"statename": "Kauno Apskritis",
"country": "Lithuania"
}, {
"statename": "Klaipedos Apskritis",
"country": "Lithuania"
}, {
"statename": "Marijampoles Apskritis",
"country": "Lithuania"
}, {
"statename": "Panevežio Apskritis",
"country": "Lithuania"
}, {
"statename": "Šiauliu Apskritis",
"country": "Lithuania"
}, {
"statename": "Taurages Apskritis",
"country": "Lithuania"
}, {
"statename": "Telšiu Apskritis",
"country": "Lithuania"
}, {
"statename": "Utenos Apskritis",
"country": "Lithuania"
}, {
"statename": "Vilniaus Apskritis",
"country": "Lithuania"
}, {
"statename": "Diekirch",
"country": "Luxembourg"
}, {
"statename": "Grevenmacher",
"country": "Luxembourg"
}, {
"statename": "Luxembourg (fr)",
"country": "Luxembourg"
}, {
"statename": "Aerodrom *",
"country": "Macedonia"
}, {
"statename": "Aracinovo",
"country": "Macedonia"
}, {
"statename": "Berovo",
"country": "Macedonia"
}, {
"statename": "Bitola",
"country": "Macedonia"
}, {
"statename": "Bogdanci",
"country": "Macedonia"
}, {
"statename": "Bogovinje",
"country": "Macedonia"
}, {
"statename": "Bosilovo",
"country": "Macedonia"
}, {
"statename": "Brvenica",
"country": "Macedonia"
}, {
"statename": "Butel *",
"country": "Macedonia"
}, {
"statename": "Cair *",
"country": "Macedonia"
}, {
"statename": "Caška",
"country": "Macedonia"
}, {
"statename": "Centar *",
"country": "Macedonia"
}, {
"statename": "Centar Župa",
"country": "Macedonia"
}, {
"statename": "Cešinovo-Obleševo",
"country": "Macedonia"
}, {
"statename": "Cucer Sandevo",
"country": "Macedonia"
}, {
"statename": "Debar",
"country": "Macedonia"
}, {
"statename": "Debarca",
"country": "Macedonia"
}, {
"statename": "Delcevo",
"country": "Macedonia"
}, {
"statename": "Demir Hisar",
"country": "Macedonia"
}, {
"statename": "Demir Kapija",
"country": "Macedonia"
}, {
"statename": "Dojran",
"country": "Macedonia"
}, {
"statename": "Dolneni",
"country": "Macedonia"
}, {
"statename": "Drugovo",
"country": "Macedonia"
}, {
"statename": "Gazi Baba *",
"country": "Macedonia"
}, {
"statename": "Gevgelija",
"country": "Macedonia"
}, {
"statename": "Gjorce Petrov *",
"country": "Macedonia"
}, {
"statename": "Gostivar",
"country": "Macedonia"
}, {
"statename": "Gradsko",
"country": "Macedonia"
}, {
"statename": "Ilinden",
"country": "Macedonia"
}, {
"statename": "Jegunovce",
"country": "Macedonia"
}, {
"statename": "Karbinci",
"country": "Macedonia"
}, {
"statename": "Karpoš *",
"country": "Macedonia"
}, {
"statename": "Kavadarci",
"country": "Macedonia"
}, {
"statename": "Kicevo",
"country": "Macedonia"
}, {
"statename": "Kisela Voda *",
"country": "Macedonia"
}, {
"statename": "Kocani",
"country": "Macedonia"
}, {
"statename": "Konce",
"country": "Macedonia"
}, {
"statename": "Kratovo",
"country": "Macedonia"
}, {
"statename": "Kriva Palanka",
"country": "Macedonia"
}, {
"statename": "Krivogaštani",
"country": "Macedonia"
}, {
"statename": "Kruševo",
"country": "Macedonia"
}, {
"statename": "Kumanovo",
"country": "Macedonia"
}, {
"statename": "Lipkovo",
"country": "Macedonia"
}, {
"statename": "Lozovo",
"country": "Macedonia"
}, {
"statename": "Makedonska Kamenica",
"country": "Macedonia"
}, {
"statename": "Makedonski Brod",
"country": "Macedonia"
}, {
"statename": "Mavrovo-i-Rostuša",
"country": "Macedonia"
}, {
"statename": "Mogila",
"country": "Macedonia"
}, {
"statename": "Negotino",
"country": "Macedonia"
}, {
"statename": "Novaci",
"country": "Macedonia"
}, {
"statename": "Novo Selo",
"country": "Macedonia"
}, {
"statename": "Ohrid",
"country": "Macedonia"
}, {
"statename": "Oslomej",
"country": "Macedonia"
}, {
"statename": "Pehcevo",
"country": "Macedonia"
}, {
"statename": "Petrovec",
"country": "Macedonia"
}, {
"statename": "Plasnica",
"country": "Macedonia"
}, {
"statename": "Prilep",
"country": "Macedonia"
}, {
"statename": "Probištip",
"country": "Macedonia"
}, {
"statename": "Radoviš",
"country": "Macedonia"
}, {
"statename": "Rankovce",
"country": "Macedonia"
}, {
"statename": "Resen",
"country": "Macedonia"
}, {
"statename": "Rosoman",
"country": "Macedonia"
}, {
"statename": "Saraj *",
"country": "Macedonia"
}, {
"statename": "Skopje",
"country": "Macedonia"
}, {
"statename": "Sopište",
"country": "Macedonia"
}, {
"statename": "Staro Nagoricane",
"country": "Macedonia"
}, {
"statename": "Štip",
"country": "Macedonia"
}, {
"statename": "Struga",
"country": "Macedonia"
}, {
"statename": "Strumica",
"country": "Macedonia"
}, {
"statename": "Studenicani",
"country": "Macedonia"
}, {
"statename": "Šuto Orizari *",
"country": "Macedonia"
}, {
"statename": "Sveti Nikole",
"country": "Macedonia"
}, {
"statename": "Tearce",
"country": "Macedonia"
}, {
"statename": "Tetovo",
"country": "Macedonia"
}, {
"statename": "Valandovo",
"country": "Macedonia"
}, {
"statename": "Vasilevo",
"country": "Macedonia"
}, {
"statename": "Veles",
"country": "Macedonia"
}, {
"statename": "Vevcani",
"country": "Macedonia"
}, {
"statename": "Vinica",
"country": "Macedonia"
}, {
"statename": "Vraneštica",
"country": "Macedonia"
}, {
"statename": "Vrapcište",
"country": "Macedonia"
}, {
"statename": "Zajas",
"country": "Macedonia"
}, {
"statename": "Zelenikovo",
"country": "Macedonia"
}, {
"statename": "Želino",
"country": "Macedonia"
}, {
"statename": "Zrnovci",
"country": "Macedonia"
}, {
"statename": "Antananarivo",
"country": "Madagascar"
}, {
"statename": "Antsiranana",
"country": "Madagascar"
}, {
"statename": "Fianarantsoa",
"country": "Madagascar"
}, {
"statename": "Mahajanga",
"country": "Madagascar"
}, {
"statename": "Toamasina",
"country": "Madagascar"
}, {
"statename": "Toliara",
"country": "Madagascar"
}, {
"statename": "Balaka",
"country": "Malawi"
}, {
"statename": "Blantyre",
"country": "Malawi"
}, {
"statename": "Central Region",
"country": "Malawi"
}, {
"statename": "Chikwawa",
"country": "Malawi"
}, {
"statename": "Chiradzulu",
"country": "Malawi"
}, {
"statename": "Chitipa",
"country": "Malawi"
}, {
"statename": "Dedza",
"country": "Malawi"
}, {
"statename": "Dowa",
"country": "Malawi"
}, {
"statename": "Karonga",
"country": "Malawi"
}, {
"statename": "Kasungu",
"country": "Malawi"
}, {
"statename": "Likoma",
"country": "Malawi"
}, {
"statename": "Lilongwe",
"country": "Malawi"
}, {
"statename": "Machinga",
"country": "Malawi"
}, {
"statename": "Mangochi",
"country": "Malawi"
}, {
"statename": "Mchinji",
"country": "Malawi"
}, {
"statename": "Mulanje",
"country": "Malawi"
}, {
"statename": "Mwanza",
"country": "Malawi"
}, {
"statename": "Mzimba",
"country": "Malawi"
}, {
"statename": "Neno",
"country": "Malawi"
}, {
"statename": "Nkhata Bay",
"country": "Malawi"
}, {
"statename": "Nkhotakota",
"country": "Malawi"
}, {
"statename": "Northern Region",
"country": "Malawi"
}, {
"statename": "Nsanje",
"country": "Malawi"
}, {
"statename": "Ntcheu",
"country": "Malawi"
}, {
"statename": "Ntchisi",
"country": "Malawi"
}, {
"statename": "Phalombe",
"country": "Malawi"
}, {
"statename": "Rumphi",
"country": "Malawi"
}, {
"statename": "Salima",
"country": "Malawi"
}, {
"statename": "Southern Region",
"country": "Malawi"
}, {
"statename": "Thyolo",
"country": "Malawi"
}, {
"statename": "Zomba",
"country": "Malawi"
}, {
"statename": "Johor",
"country": "Malaysia"
}, {
"statename": "Kedah",
"country": "Malaysia"
}, {
"statename": "Kelantan",
"country": "Malaysia"
}, {
"statename": "Melaka",
"country": "Malaysia"
}, {
"statename": "Negeri Sembilan",
"country": "Malaysia"
}, {
"statename": "Pahang",
"country": "Malaysia"
}, {
"statename": "Perak",
"country": "Malaysia"
}, {
"statename": "Perlis",
"country": "Malaysia"
}, {
"statename": "Pulau Pinang",
"country": "Malaysia"
}, {
"statename": "Sabah",
"country": "Malaysia"
}, {
"statename": "Sarawak",
"country": "Malaysia"
}, {
"statename": "Selangor",
"country": "Malaysia"
}, {
"statename": "Terengganu",
"country": "Malaysia"
}, {
"statename": "Wilayah Persekutuan Kuala Lumpur",
"country": "Malaysia"
}, {
"statename": "Wilayah Persekutuan Labuan",
"country": "Malaysia"
}, {
"statename": "Wilayah Persekutuan Putrajaya",
"country": "Malaysia"
}, {
"statename": "Alif",
"country": "Maldives"
}, {
"statename": "Alif Dhaal",
"country": "Maldives"
}, {
"statename": "Baa",
"country": "Maldives"
}, {
"statename": "Dhaalu",
"country": "Maldives"
}, {
"statename": "Faafu",
"country": "Maldives"
}, {
"statename": "Gaaf Alif",
"country": "Maldives"
}, {
"statename": "Gaafu Dhaalu",
"country": "Maldives"
}, {
"statename": "Gnaviyani",
"country": "Maldives"
}, {
"statename": "Haa Alif",
"country": "Maldives"
}, {
"statename": "Haa Dhaalu",
"country": "Maldives"
}, {
"statename": "Kaafu",
"country": "Maldives"
}, {
"statename": "Laamu",
"country": "Maldives"
}, {
"statename": "Lhaviyani",
"country": "Maldives"
}, {
"statename": "Male",
"country": "Maldives"
}, {
"statename": "Meemu",
"country": "Maldives"
}, {
"statename": "Noonu",
"country": "Maldives"
}, {
"statename": "Raa",
"country": "Maldives"
}, {
"statename": "Seenu",
"country": "Maldives"
}, {
"statename": "Shaviyani",
"country": "Maldives"
}, {
"statename": "Thaa",
"country": "Maldives"
}, {
"statename": "Vaavu",
"country": "Maldives"
}, {
"statename": "Bamako",
"country": "Mali"
}, {
"statename": "Gao",
"country": "Mali"
}, {
"statename": "Kayes",
"country": "Mali"
}, {
"statename": "Kidal",
"country": "Mali"
}, {
"statename": "Koulikoro",
"country": "Mali"
}, {
"statename": "Mopti",
"country": "Mali"
}, {
"statename": "Ségou",
"country": "Mali"
}, {
"statename": "Sikasso",
"country": "Mali"
}, {
"statename": "Tombouctou",
"country": "Mali"
}, {
"statename": "Ailinglaplap",
"country": "Marshall Islands"
}, {
"statename": "Ailuk",
"country": "Marshall Islands"
}, {
"statename": "Arno",
"country": "Marshall Islands"
}, {
"statename": "Aur",
"country": "Marshall Islands"
}, {
"statename": "Ebon",
"country": "Marshall Islands"
}, {
"statename": "Enewetak",
"country": "Marshall Islands"
}, {
"statename": "Jabat",
"country": "Marshall Islands"
}, {
"statename": "Jaluit",
"country": "Marshall Islands"
}, {
"statename": "Kili",
"country": "Marshall Islands"
}, {
"statename": "Kwajalein",
"country": "Marshall Islands"
}, {
"statename": "Lae",
"country": "Marshall Islands"
}, {
"statename": "Lib",
"country": "Marshall Islands"
}, {
"statename": "Likiep",
"country": "Marshall Islands"
}, {
"statename": "Majuro",
"country": "Marshall Islands"
}, {
"statename": "Maloelap",
"country": "Marshall Islands"
}, {
"statename": "Mejit",
"country": "Marshall Islands"
}, {
"statename": "Mili",
"country": "Marshall Islands"
}, {
"statename": "Namdrik",
"country": "Marshall Islands"
}, {
"statename": "Namu",
"country": "Marshall Islands"
}, {
"statename": "Rongelap",
"country": "Marshall Islands"
}, {
"statename": "Ujae",
"country": "Marshall Islands"
}, {
"statename": "Utirik",
"country": "Marshall Islands"
}, {
"statename": "Wotho",
"country": "Marshall Islands"
}, {
"statename": "Wotje",
"country": "Marshall Islands"
}, {
"statename": "Adrar",
"country": "Mauritania"
}, {
"statename": "Assaba",
"country": "Mauritania"
}, {
"statename": "Brakna",
"country": "Mauritania"
}, {
"statename": "Dakhlet Nouâdhibou",
"country": "Mauritania"
}, {
"statename": "Gorgol",
"country": "Mauritania"
}, {
"statename": "Guidimaka",
"country": "Mauritania"
}, {
"statename": "Hodh ech Chargui",
"country": "Mauritania"
}, {
"statename": "Hodh el Gharbi",
"country": "Mauritania"
}, {
"statename": "Inchiri",
"country": "Mauritania"
}, {
"statename": "Nouakchott",
"country": "Mauritania"
}, {
"statename": "Tagant",
"country": "Mauritania"
}, {
"statename": "Tiris Zemmour",
"country": "Mauritania"
}, {
"statename": "Trarza",
"country": "Mauritania"
}, {
"statename": "Agalega Islands",
"country": "Mauritius"
}, {
"statename": "Beau Bassin-Rose Hill",
"country": "Mauritius"
}, {
"statename": "Black River",
"country": "Mauritius"
}, {
"statename": "Cargados Carajos Shoals [Saint Brandon Islands]",
"country": "Mauritius"
}, {
"statename": "Curepipe",
"country": "Mauritius"
}, {
"statename": "Flacq",
"country": "Mauritius"
}, {
"statename": "Grand Port",
"country": "Mauritius"
}, {
"statename": "Moka",
"country": "Mauritius"
}, {
"statename": "Pamplemousses",
"country": "Mauritius"
}, {
"statename": "Plaines Wilhems",
"country": "Mauritius"
}, {
"statename": "Port Louis City",
"country": "Mauritius"
}, {
"statename": "Port Louis District",
"country": "Mauritius"
}, {
"statename": "Quatre Bornes",
"country": "Mauritius"
}, {
"statename": "Rivière du Rempart",
"country": "Mauritius"
}, {
"statename": "Rodrigues Island",
"country": "Mauritius"
}, {
"statename": "Savanne",
"country": "Mauritius"
}, {
"statename": "Vacoas-Phoenix",
"country": "Mauritius"
}, {
"statename": "Aguascalientes",
"country": "Mexico"
}, {
"statename": "Baja California",
"country": "Mexico"
}, {
"statename": "Baja California Sur",
"country": "Mexico"
}, {
"statename": "Campeche",
"country": "Mexico"
}, {
"statename": "Chiapas",
"country": "Mexico"
}, {
"statename": "Chihuahua",
"country": "Mexico"
}, {
"statename": "Coahuila",
"country": "Mexico"
}, {
"statename": "Colima",
"country": "Mexico"
}, {
"statename": "Distrito Federal",
"country": "Mexico"
}, {
"statename": "Durango",
"country": "Mexico"
}, {
"statename": "Guanajuato",
"country": "Mexico"
}, {
"statename": "Guerrero",
"country": "Mexico"
}, {
"statename": "Hidalgo",
"country": "Mexico"
}, {
"statename": "Jalisco",
"country": "Mexico"
}, {
"statename": "México",
"country": "Mexico"
}, {
"statename": "Michoacán",
"country": "Mexico"
}, {
"statename": "Morelos",
"country": "Mexico"
}, {
"statename": "Nayarit",
"country": "Mexico"
}, {
"statename": "Nuevo León",
"country": "Mexico"
}, {
"statename": "Oaxaca",
"country": "Mexico"
}, {
"statename": "Puebla",
"country": "Mexico"
}, {
"statename": "Querétaro",
"country": "Mexico"
}, {
"statename": "Quintana Roo",
"country": "Mexico"
}, {
"statename": "San Luis Potosí",
"country": "Mexico"
}, {
"statename": "Sinaloa",
"country": "Mexico"
}, {
"statename": "Sonora",
"country": "Mexico"
}, {
"statename": "Tabasco",
"country": "Mexico"
}, {
"statename": "Tamaulipas",
"country": "Mexico"
}, {
"statename": "Tlaxcala",
"country": "Mexico"
}, {
"statename": "Veracruz",
"country": "Mexico"
}, {
"statename": "Yucatán",
"country": "Mexico"
}, {
"statename": "Zacatecas",
"country": "Mexico"
}, {
"statename": "Chuuk",
"country": "Micronesia, Federated States Of"
}, {
"statename": "Kosrae",
"country": "Micronesia, Federated States Of"
}, {
"statename": "Pohnpei",
"country": "Micronesia, Federated States Of"
}, {
"statename": "Yap",
"country": "Micronesia, Federated States Of"
}, {
"statename": "?old?ne?ti",
"country": "Moldova, Republic of"
}, {
"statename": "?tefan Vod?",
"country": "Moldova, Republic of"
}, {
"statename": "Anenii Noi",
"country": "Moldova, Republic of"
}, {
"statename": "B?l?i",
"country": "Moldova, Republic of"
}, {
"statename": "Basarabeasca",
"country": "Moldova, Republic of"
}, {
"statename": "Briceni",
"country": "Moldova, Republic of"
}, {
"statename": "C?l?ra?i",
"country": "Moldova, Republic of"
}, {
"statename": "C?u?eni",
"country": "Moldova, Republic of"
}, {
"statename": "Cahul",
"country": "Moldova, Republic of"
}, {
"statename": "Cantemir",
"country": "Moldova, Republic of"
}, {
"statename": "Chisinau",
"country": "Moldova, Republic of"
}, {
"statename": "Cimi?lia",
"country": "Moldova, Republic of"
}, {
"statename": "Criuleni",
"country": "Moldova, Republic of"
}, {
"statename": "Dondu?eni",
"country": "Moldova, Republic of"
}, {
"statename": "Drochia",
"country": "Moldova, Republic of"
}, {
"statename": "Dub?sari",
"country": "Moldova, Republic of"
}, {
"statename": "Edinet",
"country": "Moldova, Republic of"
}, {
"statename": "F?le?ti",
"country": "Moldova, Republic of"
}, {
"statename": "Flore?ti",
"country": "Moldova, Republic of"
}, {
"statename": "Gagauzia, Unitatea teritoriala autonoma (UTAG)",
"country": "Moldova, Republic of"
}, {
"statename": "Glodeni",
"country": "Moldova, Republic of"
}, {
"statename": "Hînce?ti",
"country": "Moldova, Republic of"
}, {
"statename": "Ialoveni",
"country": "Moldova, Republic of"
}, {
"statename": "Leova",
"country": "Moldova, Republic of"
}, {
"statename": "Nisporeni",
"country": "Moldova, Republic of"
}, {
"statename": "Ocni?a",
"country": "Moldova, Republic of"
}, {
"statename": "Orhei",
"country": "Moldova, Republic of"
}, {
"statename": "Rezina",
"country": "Moldova, Republic of"
}, {
"statename": "Rî?cani",
"country": "Moldova, Republic of"
}, {
"statename": "Sîngerei",
"country": "Moldova, Republic of"
}, {
"statename": "Soroca",
"country": "Moldova, Republic of"
}, {
"statename": "Stînga Nistrului, unitatea teritoriala din",
"country": "Moldova, Republic of"
}, {
"statename": "Str??eni",
"country": "Moldova, Republic of"
}, {
"statename": "Taraclia",
"country": "Moldova, Republic of"
}, {
"statename": "Telene?ti",
"country": "Moldova, Republic of"
}, {
"statename": "Tighina",
"country": "Moldova, Republic of"
}, {
"statename": "Ungheni",
"country": "Moldova, Republic of"
}, {
"statename": "Arhangay",
"country": "Mongolia"
}, {
"statename": "Bayanhongor",
"country": "Mongolia"
}, {
"statename": "Bayan-Ölgiy",
"country": "Mongolia"
}, {
"statename": "Bulgan",
"country": "Mongolia"
}, {
"statename": "Darhan uul",
"country": "Mongolia"
}, {
"statename": "Dornod",
"country": "Mongolia"
}, {
"statename": "Dornogovi",
"country": "Mongolia"
}, {
"statename": "Dundgovi",
"country": "Mongolia"
}, {
"statename": "Dzavhan",
"country": "Mongolia"
}, {
"statename": "Govi-Altay",
"country": "Mongolia"
}, {
"statename": "Govi-Sümber",
"country": "Mongolia"
}, {
"statename": "Hentiy",
"country": "Mongolia"
}, {
"statename": "Hovd",
"country": "Mongolia"
}, {
"statename": "Hövsgöl",
"country": "Mongolia"
}, {
"statename": "Ömnögovi",
"country": "Mongolia"
}, {
"statename": "Orhon",
"country": "Mongolia"
}, {
"statename": "Övörhangay",
"country": "Mongolia"
}, {
"statename": "Selenge",
"country": "Mongolia"
}, {
"statename": "Sühbaatar",
"country": "Mongolia"
}, {
"statename": "Töv",
"country": "Mongolia"
}, {
"statename": "Ulaanbaatar",
"country": "Mongolia"
}, {
"statename": "Uvs",
"country": "Mongolia"
}, {
"statename": "Andrijevica",
"country": "Montenegro"
}, {
"statename": "Bar",
"country": "Montenegro"
}, {
"statename": "Berane",
"country": "Montenegro"
}, {
"statename": "Bijelo Polje",
"country": "Montenegro"
}, {
"statename": "Budva",
"country": "Montenegro"
}, {
"statename": "Cetinje",
"country": "Montenegro"
}, {
"statename": "Danilovgrad",
"country": "Montenegro"
}, {
"statename": "Herceg-Novi",
"country": "Montenegro"
}, {
"statename": "Kolašin",
"country": "Montenegro"
}, {
"statename": "Kotor",
"country": "Montenegro"
}, {
"statename": "Mojkovac",
"country": "Montenegro"
}, {
"statename": "Nikšic´",
"country": "Montenegro"
}, {
"statename": "Plav",
"country": "Montenegro"
}, {
"statename": "Pljevlja",
"country": "Montenegro"
}, {
"statename": "Plužine",
"country": "Montenegro"
}, {
"statename": "Podgorica",
"country": "Montenegro"
}, {
"statename": "Rožaje",
"country": "Montenegro"
}, {
"statename": "Šavnik",
"country": "Montenegro"
}, {
"statename": "Tivat",
"country": "Montenegro"
}, {
"statename": "Ulcinj",
"country": "Montenegro"
}, {
"statename": "Žabljak",
"country": "Montenegro"
}, {
"statename": "Al Haouz",
"country": "Morocco"
}, {
"statename": "Al Hoceïma",
"country": "Morocco"
}, {
"statename": "Assa-Zag",
"country": "Morocco"
}, {
"statename": "Azilal",
"country": "Morocco"
}, {
"statename": "Ben Slimane",
"country": "Morocco"
}, {
"statename": "Beni Mellal",
"country": "Morocco"
}, {
"statename": "Berkane",
"country": "Morocco"
}, {
"statename": "Boujdour (EH)",
"country": "Morocco"
}, {
"statename": "Boulemane",
"country": "Morocco"
}, {
"statename": "Chefchaouen",
"country": "Morocco"
}, {
"statename": "Chichaoua",
"country": "Morocco"
}, {
"statename": "Chtouka-Ait Baha",
"country": "Morocco"
}, {
"statename": "El Hajeb",
"country": "Morocco"
}, {
"statename": "El Jadida",
"country": "Morocco"
}, {
"statename": "Errachidia",
"country": "Morocco"
}, {
"statename": "Es Smara (EH)",
"country": "Morocco"
}, {
"statename": "Essaouira",
"country": "Morocco"
}, {
"statename": "Figuig",
"country": "Morocco"
}, {
"statename": "Guelmim",
"country": "Morocco"
}, {
"statename": "Ifrane",
"country": "Morocco"
}, {
"statename": "Jrada",
"country": "Morocco"
}, {
"statename": "Kelaat es Sraghna",
"country": "Morocco"
}, {
"statename": "Kénitra",
"country": "Morocco"
}, {
"statename": "Khemisset",
"country": "Morocco"
}, {
"statename": "Khenifra",
"country": "Morocco"
}, {
"statename": "Khouribga",
"country": "Morocco"
}, {
"statename": "Laâyoune*",
"country": "Morocco"
}, {
"statename": "Laayoune-Boujdour-Sakia El Hamra",
"country": "Morocco"
}, {
"statename": "Larache",
"country": "Morocco"
}, {
"statename": "Mediouna",
"country": "Morocco"
}, {
"statename": "Moulay Yacoub",
"country": "Morocco"
}, {
"statename": "Nador",
"country": "Morocco"
}, {
"statename": "Nouaceur",
"country": "Morocco"
}, {
"statename": "Ouarzazate",
"country": "Morocco"
}, {
"statename": "Oued ed Dahab (EH)",
"country": "Morocco"
}, {
"statename": "Safi",
"country": "Morocco"
}, {
"statename": "Sefrou",
"country": "Morocco"
}, {
"statename": "Settat",
"country": "Morocco"
}, {
"statename": "Sidi Kacem",
"country": "Morocco"
}, {
"statename": "Tan-Tan",
"country": "Morocco"
}, {
"statename": "Taounate",
"country": "Morocco"
}, {
"statename": "Taourirt",
"country": "Morocco"
}, {
"statename": "Taroudant",
"country": "Morocco"
}, {
"statename": "Tata",
"country": "Morocco"
}, {
"statename": "Taza",
"country": "Morocco"
}, {
"statename": "Tiznit",
"country": "Morocco"
}, {
"statename": "Zagora",
"country": "Morocco"
}, {
"statename": "Cabo Delgado",
"country": "Mozambique"
}, {
"statename": "Gaza",
"country": "Mozambique"
}, {
"statename": "Inhambane",
"country": "Mozambique"
}, {
"statename": "Manica",
"country": "Mozambique"
}, {
"statename": "Maputo",
"country": "Mozambique"
}, {
"statename": "Maputo City",
"country": "Mozambique"
}, {
"statename": "Nampula",
"country": "Mozambique"
}, {
"statename": "Niassa",
"country": "Mozambique"
}, {
"statename": "Sofala",
"country": "Mozambique"
}, {
"statename": "Tete",
"country": "Mozambique"
}, {
"statename": "Zambézia",
"country": "Mozambique"
}, {
"statename": "Ayeyarwady",
"country": "Myanmar"
}, {
"statename": "Bago",
"country": "Myanmar"
}, {
"statename": "Chin",
"country": "Myanmar"
}, {
"statename": "Kachin",
"country": "Myanmar"
}, {
"statename": "Kayah",
"country": "Myanmar"
}, {
"statename": "Kayin",
"country": "Myanmar"
}, {
"statename": "Magway",
"country": "Myanmar"
}, {
"statename": "Mandalay",
"country": "Myanmar"
}, {
"statename": "Mon",
"country": "Myanmar"
}, {
"statename": "Rakhine",
"country": "Myanmar"
}, {
"statename": "Sagaing",
"country": "Myanmar"
}, {
"statename": "Shan",
"country": "Myanmar"
}, {
"statename": "Tanintharyi",
"country": "Myanmar"
}, {
"statename": "Yangon",
"country": "Myanmar"
}, {
"statename": "Caprivi",
"country": "Namibia"
}, {
"statename": "Erongo",
"country": "Namibia"
}, {
"statename": "Hardap",
"country": "Namibia"
}, {
"statename": "Karas",
"country": "Namibia"
}, {
"statename": "Khomas",
"country": "Namibia"
}, {
"statename": "Kunene",
"country": "Namibia"
}, {
"statename": "Ohangwena",
"country": "Namibia"
}, {
"statename": "Okavango",
"country": "Namibia"
}, {
"statename": "Omaheke",
"country": "Namibia"
}, {
"statename": "Omusati",
"country": "Namibia"
}, {
"statename": "Oshana",
"country": "Namibia"
}, {
"statename": "Oshikoto",
"country": "Namibia"
}, {
"statename": "Otjozondjupa",
"country": "Namibia"
}, {
"statename": "Aiwo",
"country": "Nauru"
}, {
"statename": "Anabar",
"country": "Nauru"
}, {
"statename": "Anetan",
"country": "Nauru"
}, {
"statename": "Anibare",
"country": "Nauru"
}, {
"statename": "Baiti",
"country": "Nauru"
}, {
"statename": "Boe",
"country": "Nauru"
}, {
"statename": "Buada",
"country": "Nauru"
}, {
"statename": "Denigomodu",
"country": "Nauru"
}, {
"statename": "Ewa",
"country": "Nauru"
}, {
"statename": "Ijuw",
"country": "Nauru"
}, {
"statename": "Meneng",
"country": "Nauru"
}, {
"statename": "Nibok",
"country": "Nauru"
}, {
"statename": "Uaboe",
"country": "Nauru"
}, {
"statename": "Yaren",
"country": "Nauru"
}, {
"statename": "Bagmati",
"country": "Nepal"
}, {
"statename": "Bheri",
"country": "Nepal"
}, {
"statename": "Dhawalagiri",
"country": "Nepal"
}, {
"statename": "Gandaki",
"country": "Nepal"
}, {
"statename": "Janakpur",
"country": "Nepal"
}, {
"statename": "Karnali",
"country": "Nepal"
}, {
"statename": "Kosi [Koshi]",
"country": "Nepal"
}, {
"statename": "Lumbini",
"country": "Nepal"
}, {
"statename": "Mahakali",
"country": "Nepal"
}, {
"statename": "Mechi",
"country": "Nepal"
}, {
"statename": "Narayani",
"country": "Nepal"
}, {
"statename": "Rapti",
"country": "Nepal"
}, {
"statename": "Sagarmatha",
"country": "Nepal"
}, {
"statename": "Seti",
"country": "Nepal"
}, {
"statename": "Drenthe",
"country": "Netherlands"
}, {
"statename": "Flevoland",
"country": "Netherlands"
}, {
"statename": "Friesland",
"country": "Netherlands"
}, {
"statename": "Gelderland",
"country": "Netherlands"
}, {
"statename": "Groningen",
"country": "Netherlands"
}, {
"statename": "Limburg",
"country": "Netherlands"
}, {
"statename": "Noord-Brabant",
"country": "Netherlands"
}, {
"statename": "Noord-Holland",
"country": "Netherlands"
}, {
"statename": "Overijssel",
"country": "Netherlands"
}, {
"statename": "Utrecht",
"country": "Netherlands"
}, {
"statename": "Zeeland",
"country": "Netherlands"
}, {
"statename": "Zuid-Holland",
"country": "Netherlands"
}, {
"statename": "Auckland",
"country": "New Zealand"
}, {
"statename": "Bay of Plenty",
"country": "New Zealand"
}, {
"statename": "Canterbury",
"country": "New Zealand"
}, {
"statename": "Chatham Islands Territory",
"country": "New Zealand"
}, {
"statename": "Gisborne District",
"country": "New Zealand"
}, {
"statename": "Hawkes's Bay",
"country": "New Zealand"
}, {
"statename": "Manawatu-Wanganui",
"country": "New Zealand"
}, {
"statename": "Marlborough District",
"country": "New Zealand"
}, {
"statename": "Nelson City",
"country": "New Zealand"
}, {
"statename": "North Island",
"country": "New Zealand"
}, {
"statename": "Northland",
"country": "New Zealand"
}, {
"statename": "Otago",
"country": "New Zealand"
}, {
"statename": "South Island",
"country": "New Zealand"
}, {
"statename": "Southland",
"country": "New Zealand"
}, {
"statename": "Taranaki",
"country": "New Zealand"
}, {
"statename": "Tasman District",
"country": "New Zealand"
}, {
"statename": "Waikato",
"country": "New Zealand"
}, {
"statename": "Wellington",
"country": "New Zealand"
}, {
"statename": "West Coast",
"country": "New Zealand"
}, {
"statename": "Atlántico Norte*",
"country": "Nicaragua"
}, {
"statename": "Atlántico Sur*",
"country": "Nicaragua"
}, {
"statename": "Boaco",
"country": "Nicaragua"
}, {
"statename": "Carazo",
"country": "Nicaragua"
}, {
"statename": "Chinandega",
"country": "Nicaragua"
}, {
"statename": "Chontales",
"country": "Nicaragua"
}, {
"statename": "Estelí",
"country": "Nicaragua"
}, {
"statename": "Granada",
"country": "Nicaragua"
}, {
"statename": "Jinotega",
"country": "Nicaragua"
}, {
"statename": "León",
"country": "Nicaragua"
}, {
"statename": "Madriz",
"country": "Nicaragua"
}, {
"statename": "Managua",
"country": "Nicaragua"
}, {
"statename": "Masaya",
"country": "Nicaragua"
}, {
"statename": "Matagalpa",
"country": "Nicaragua"
}, {
"statename": "Nueva Segovia",
"country": "Nicaragua"
}, {
"statename": "Río San Juan",
"country": "Nicaragua"
}, {
"statename": "Rivas",
"country": "Nicaragua"
}, {
"statename": "Agadez",
"country": "Niger"
}, {
"statename": "Diffa",
"country": "Niger"
}, {
"statename": "Dosso",
"country": "Niger"
}, {
"statename": "Maradi",
"country": "Niger"
}, {
"statename": "Niamey",
"country": "Niger"
}, {
"statename": "Tahoua",
"country": "Niger"
}, {
"statename": "Tillabéri",
"country": "Niger"
}, {
"statename": "Zinder",
"country": "Niger"
}, {
"statename": "Abia",
"country": "Nigeria"
}, {
"statename": "Abuja Federal Capital Territory",
"country": "Nigeria"
}, {
"statename": "Adamawa",
"country": "Nigeria"
}, {
"statename": "Akwa Ibom",
"country": "Nigeria"
}, {
"statename": "Anambra",
"country": "Nigeria"
}, {
"statename": "Bauchi",
"country": "Nigeria"
}, {
"statename": "Bayelsa",
"country": "Nigeria"
}, {
"statename": "Benue",
"country": "Nigeria"
}, {
"statename": "Borno",
"country": "Nigeria"
}, {
"statename": "Cross River",
"country": "Nigeria"
}, {
"statename": "Delta",
"country": "Nigeria"
}, {
"statename": "Ebonyi",
"country": "Nigeria"
}, {
"statename": "Edo",
"country": "Nigeria"
}, {
"statename": "Ekiti",
"country": "Nigeria"
}, {
"statename": "Enugu",
"country": "Nigeria"
}, {
"statename": "Gombe",
"country": "Nigeria"
}, {
"statename": "Imo",
"country": "Nigeria"
}, {
"statename": "Jigawa",
"country": "Nigeria"
}, {
"statename": "Kaduna",
"country": "Nigeria"
}, {
"statename": "Kano",
"country": "Nigeria"
}, {
"statename": "Katsina",
"country": "Nigeria"
}, {
"statename": "Kebbi",
"country": "Nigeria"
}, {
"statename": "Kogi",
"country": "Nigeria"
}, {
"statename": "Kwara",
"country": "Nigeria"
}, {
"statename": "Lagos",
"country": "Nigeria"
}, {
"statename": "Nassarawa",
"country": "Nigeria"
}, {
"statename": "Niger",
"country": "Nigeria"
}, {
"statename": "Ogun",
"country": "Nigeria"
}, {
"statename": "Ondo",
"country": "Nigeria"
}, {
"statename": "Osun",
"country": "Nigeria"
}, {
"statename": "Oyo",
"country": "Nigeria"
}, {
"statename": "Plateau",
"country": "Nigeria"
}, {
"statename": "Rivers",
"country": "Nigeria"
}, {
"statename": "Sokoto",
"country": "Nigeria"
}, {
"statename": "Taraba",
"country": "Nigeria"
}, {
"statename": "Yobe",
"country": "Nigeria"
}, {
"statename": "Zamfara",
"country": "Nigeria"
}, {
"statename": "Akershus",
"country": "Norway"
}, {
"statename": "Aust-Agder",
"country": "Norway"
}, {
"statename": "Buskerud",
"country": "Norway"
}, {
"statename": "Finnmark",
"country": "Norway"
}, {
"statename": "Hedmark",
"country": "Norway"
}, {
"statename": "Hordaland",
"country": "Norway"
}, {
"statename": "Jan Mayen (Arctic Region) (See also country code SJ)",
"country": "Norway"
}, {
"statename": "Møre og Romsdal",
"country": "Norway"
}, {
"statename": "Nordland",
"country": "Norway"
}, {
"statename": "Nord-Trøndelag",
"country": "Norway"
}, {
"statename": "Oppland",
"country": "Norway"
}, {
"statename": "Oslo",
"country": "Norway"
}, {
"statename": "Østfold",
"country": "Norway"
}, {
"statename": "Rogaland",
"country": "Norway"
}, {
"statename": "Sogn og Fjordane",
"country": "Norway"
}, {
"statename": "Sør-Trøndelag",
"country": "Norway"
}, {
"statename": "Svalbard (Arctic Region) (See also country code SJ)",
"country": "Norway"
}, {
"statename": "Telemark",
"country": "Norway"
}, {
"statename": "Troms",
"country": "Norway"
}, {
"statename": "Vest-Agder",
"country": "Norway"
}, {
"statename": "Vestfold",
"country": "Norway"
}, {
"statename": "Ad Dakhiliyah",
"country": "Oman"
}, {
"statename": "Al Batinah",
"country": "Oman"
}, {
"statename": "Al Buraymi",
"country": "Oman"
}, {
"statename": "Al Wustá",
"country": "Oman"
}, {
"statename": "Ash Sharqiyah",
"country": "Oman"
}, {
"statename": "Az? Z??hirah",
"country": "Oman"
}, {
"statename": "Masqat",
"country": "Oman"
}, {
"statename": "Musandam",
"country": "Oman"
}, {
"statename": "Z?uf?r",
"country": "Oman"
}, {
"statename": "Azad Kashmir",
"country": "Pakistan"
}, {
"statename": "Baluchistan (en)",
"country": "Pakistan"
}, {
"statename": "Federally Administered Tribal Areas",
"country": "Pakistan"
}, {
"statename": "Islamabad",
"country": "Pakistan"
}, {
"statename": "Northern Areas",
"country": "Pakistan"
}, {
"statename": "North-West Frontier",
"country": "Pakistan"
}, {
"statename": "Punjab",
"country": "Pakistan"
}, {
"statename": "Sind (en)",
"country": "Pakistan"
}, {
"statename": "Aimeliik",
"country": "Palau"
}, {
"statename": "Airai",
"country": "Palau"
}, {
"statename": "Angaur",
"country": "Palau"
}, {
"statename": "Hatobohei",
"country": "Palau"
}, {
"statename": "Kayangel",
"country": "Palau"
}, {
"statename": "Koror",
"country": "Palau"
}, {
"statename": "Melekeok",
"country": "Palau"
}, {
"statename": "Ngaraard",
"country": "Palau"
}, {
"statename": "Ngarchelong",
"country": "Palau"
}, {
"statename": "Ngardmau",
"country": "Palau"
}, {
"statename": "Ngatpang",
"country": "Palau"
}, {
"statename": "Ngchesar",
"country": "Palau"
}, {
"statename": "Ngeremlengui",
"country": "Palau"
}, {
"statename": "Ngiwal",
"country": "Palau"
}, {
"statename": "Peleliu",
"country": "Palau"
}, {
"statename": "Sonsorol",
"country": "Palau"
}, {
"statename": "Bocas del Toro",
"country": "Panama"
}, {
"statename": "Chiriquí",
"country": "Panama"
}, {
"statename": "Coclé",
"country": "Panama"
}, {
"statename": "Colón",
"country": "Panama"
}, {
"statename": "Darién",
"country": "Panama"
}, {
"statename": "Emberá",
"country": "Panama"
}, {
"statename": "Herrera",
"country": "Panama"
}, {
"statename": "Kuna Yala",
"country": "Panama"
}, {
"statename": "Los Santos",
"country": "Panama"
}, {
"statename": "Ngöbe-Buglé",
"country": "Panama"
}, {
"statename": "Panamá",
"country": "Panama"
}, {
"statename": "Veraguas",
"country": "Panama"
}, {
"statename": "Central",
"country": "Papua New Guinea"
}, {
"statename": "Chimbu",
"country": "Papua New Guinea"
}, {
"statename": "East New Britain",
"country": "Papua New Guinea"
}, {
"statename": "East Sepik",
"country": "Papua New Guinea"
}, {
"statename": "Eastern Highlands",
"country": "Papua New Guinea"
}, {
"statename": "Enga",
"country": "Papua New Guinea"
}, {
"statename": "Gulf",
"country": "Papua New Guinea"
}, {
"statename": "Madang",
"country": "Papua New Guinea"
}, {
"statename": "Manus",
"country": "Papua New Guinea"
}, {
"statename": "Milne Bay",
"country": "Papua New Guinea"
}, {
"statename": "Morobe",
"country": "Papua New Guinea"
}, {
"statename": "National Capital District (Port Moresby)",
"country": "Papua New Guinea"
}, {
"statename": "New Ireland",
"country": "Papua New Guinea"
}, {
"statename": "North Solomons",
"country": "Papua New Guinea"
}, {
"statename": "Northern",
"country": "Papua New Guinea"
}, {
"statename": "Sandaun [West Sepik]",
"country": "Papua New Guinea"
}, {
"statename": "Southern Highlands",
"country": "Papua New Guinea"
}, {
"statename": "West New Britain",
"country": "Papua New Guinea"
}, {
"statename": "Western",
"country": "Papua New Guinea"
}, {
"statename": "Western Highlands",
"country": "Papua New Guinea"
}, {
"statename": "Alto Paraguay",
"country": "Paraguay"
}, {
"statename": "Alto Paraná",
"country": "Paraguay"
}, {
"statename": "Amambay",
"country": "Paraguay"
}, {
"statename": "Asunción",
"country": "Paraguay"
}, {
"statename": "Boquerón",
"country": "Paraguay"
}, {
"statename": "Caaguazú",
"country": "Paraguay"
}, {
"statename": "Caazapá",
"country": "Paraguay"
}, {
"statename": "Canindeyú",
"country": "Paraguay"
}, {
"statename": "Central",
"country": "Paraguay"
}, {
"statename": "Concepción",
"country": "Paraguay"
}, {
"statename": "Cordillera",
"country": "Paraguay"
}, {
"statename": "Guairá",
"country": "Paraguay"
}, {
"statename": "Itapúa",
"country": "Paraguay"
}, {
"statename": "Misiones",
"country": "Paraguay"
}, {
"statename": "Ñeembucú",
"country": "Paraguay"
}, {
"statename": "Paraguarí",
"country": "Paraguay"
}, {
"statename": "Presidente Hayes",
"country": "Paraguay"
}, {
"statename": "San Pedro",
"country": "Paraguay"
}, {
"statename": "Amazonas",
"country": "Peru"
}, {
"statename": "Ancash",
"country": "Peru"
}, {
"statename": "Apurímac",
"country": "Peru"
}, {
"statename": "Arequipa",
"country": "Peru"
}, {
"statename": "Ayacucho",
"country": "Peru"
}, {
"statename": "Cajamarca",
"country": "Peru"
}, {
"statename": "Cusco [Cuzco]",
"country": "Peru"
}, {
"statename": "El Callao",
"country": "Peru"
}, {
"statename": "Huancavelica",
"country": "Peru"
}, {
"statename": "Huánuco",
"country": "Peru"
}, {
"statename": "Ica",
"country": "Peru"
}, {
"statename": "Junín",
"country": "Peru"
}, {
"statename": "La Libertad",
"country": "Peru"
}, {
"statename": "Lambayeque",
"country": "Peru"
}, {
"statename": "Lima",
"country": "Peru"
}, {
"statename": "Loreto",
"country": "Peru"
}, {
"statename": "Madre de Dios",
"country": "Peru"
}, {
"statename": "Moquegua",
"country": "Peru"
}, {
"statename": "Municipalidad Metropolitana de Lima",
"country": "Peru"
}, {
"statename": "Pasco",
"country": "Peru"
}, {
"statename": "Piura",
"country": "Peru"
}, {
"statename": "Puno",
"country": "Peru"
}, {
"statename": "San Martín",
"country": "Peru"
}, {
"statename": "Tacna",
"country": "Peru"
}, {
"statename": "Tumbes",
"country": "Peru"
}, {
"statename": "Ucayali",
"country": "Peru"
}, {
"statename": "Abra",
"country": "Philippines"
}, {
"statename": "Agusan del Norte",
"country": "Philippines"
}, {
"statename": "Agusan del Sur",
"country": "Philippines"
}, {
"statename": "Aklan",
"country": "Philippines"
}, {
"statename": "Albay",
"country": "Philippines"
}, {
"statename": "Antique",
"country": "Philippines"
}, {
"statename": "Apayao",
"country": "Philippines"
}, {
"statename": "Aurora",
"country": "Philippines"
}, {
"statename": "Autonomous Region in Muslim Mindanao (ARMM)",
"country": "Philippines"
}, {
"statename": "Basilan",
"country": "Philippines"
}, {
"statename": "Bataan",
"country": "Philippines"
}, {
"statename": "Batanes",
"country": "Philippines"
}, {
"statename": "Batangas",
"country": "Philippines"
}, {
"statename": "Benguet",
"country": "Philippines"
}, {
"statename": "Bicol (Region V)",
"country": "Philippines"
}, {
"statename": "Biliran",
"country": "Philippines"
}, {
"statename": "Bohol",
"country": "Philippines"
}, {
"statename": "Bukidnon",
"country": "Philippines"
}, {
"statename": "Bulacan",
"country": "Philippines"
}, {
"statename": "Cagayan",
"country": "Philippines"
}, {
"statename": "Cagayan Valley (Region II)",
"country": "Philippines"
}, {
"statename": "CALABARZON (Region IV-A)",
"country": "Philippines"
}, {
"statename": "Camarines Norte",
"country": "Philippines"
}, {
"statename": "Camarines Sur",
"country": "Philippines"
}, {
"statename": "Camiguin",
"country": "Philippines"
}, {
"statename": "Capiz",
"country": "Philippines"
}, {
"statename": "Caraga (Region XIII)",
"country": "Philippines"
}, {
"statename": "Catanduanes",
"country": "Philippines"
}, {
"statename": "Cavite",
"country": "Philippines"
}, {
"statename": "Cebu",
"country": "Philippines"
}, {
"statename": "Central Luzon (Region III)",
"country": "Philippines"
}, {
"statename": "Central Visayas (Region VII)",
"country": "Philippines"
}, {
"statename": "Compostela Valley",
"country": "Philippines"
}, {
"statename": "Cordillera Administrative Region (CAR)",
"country": "Philippines"
}, {
"statename": "Davao (Region XI)",
"country": "Philippines"
}, {
"statename": "Davao del Norte",
"country": "Philippines"
}, {
"statename": "Davao del Sur",
"country": "Philippines"
}, {
"statename": "Davao Oriental",
"country": "Philippines"
}, {
"statename": "Dinagat Islands",
"country": "Philippines"
}, {
"statename": "Eastern Samar",
"country": "Philippines"
}, {
"statename": "Eastern Visayas (Region VIII)",
"country": "Philippines"
}, {
"statename": "Guimaras",
"country": "Philippines"
}, {
"statename": "Ifugao",
"country": "Philippines"
}, {
"statename": "Ilocos (Region I)",
"country": "Philippines"
}, {
"statename": "Ilocos Norte",
"country": "Philippines"
}, {
"statename": "Ilocos Sur",
"country": "Philippines"
}, {
"statename": "Iloilo",
"country": "Philippines"
}, {
"statename": "Isabela",
"country": "Philippines"
}, {
"statename": "Kalinga",
"country": "Philippines"
}, {
"statename": "La Union",
"country": "Philippines"
}, {
"statename": "Laguna",
"country": "Philippines"
}, {
"statename": "Lanao del Norte",
"country": "Philippines"
}, {
"statename": "Lanao del Sur",
"country": "Philippines"
}, {
"statename": "Leyte",
"country": "Philippines"
}, {
"statename": "Maguindanao",
"country": "Philippines"
}, {
"statename": "Marinduque",
"country": "Philippines"
}, {
"statename": "Masbate",
"country": "Philippines"
}, {
"statename": "MIMAROPA (Region IV-B)",
"country": "Philippines"
}, {
"statename": "Mindoro Occidental",
"country": "Philippines"
}, {
"statename": "Mindoro Oriental",
"country": "Philippines"
}, {
"statename": "Misamis Occidental",
"country": "Philippines"
}, {
"statename": "Misamis Oriental",
"country": "Philippines"
}, {
"statename": "Mountain Province",
"country": "Philippines"
}, {
"statename": "National Capital Region",
"country": "Philippines"
}, {
"statename": "Negros Occidental",
"country": "Philippines"
}, {
"statename": "Negros Oriental",
"country": "Philippines"
}, {
"statename": "North Cotabato",
"country": "Philippines"
}, {
"statename": "Northern Mindanao (Region X)",
"country": "Philippines"
}, {
"statename": "Northern Samar",
"country": "Philippines"
}, {
"statename": "Nueva Ecija",
"country": "Philippines"
}, {
"statename": "Nueva Vizcaya",
"country": "Philippines"
}, {
"statename": "Palawan",
"country": "Philippines"
}, {
"statename": "Pampanga",
"country": "Philippines"
}, {
"statename": "Pangasinan",
"country": "Philippines"
}, {
"statename": "Quezon",
"country": "Philippines"
}, {
"statename": "Quirino",
"country": "Philippines"
}, {
"statename": "Rizal",
"country": "Philippines"
}, {
"statename": "Romblon",
"country": "Philippines"
}, {
"statename": "Sarangani",
"country": "Philippines"
}, {
"statename": "Shariff Kabunsuan",
"country": "Philippines"
}, {
"statename": "Siquijor",
"country": "Philippines"
}, {
"statename": "Soccsksargen (Region XII)",
"country": "Philippines"
}, {
"statename": "Sorsogon",
"country": "Philippines"
}, {
"statename": "South Cotabato",
"country": "Philippines"
}, {
"statename": "Southern Leyte",
"country": "Philippines"
}, {
"statename": "Sultan Kudarat",
"country": "Philippines"
}, {
"statename": "Sulu",
"country": "Philippines"
}, {
"statename": "Surigao del Norte",
"country": "Philippines"
}, {
"statename": "Surigao del Sur",
"country": "Philippines"
}, {
"statename": "Tarlac",
"country": "Philippines"
}, {
"statename": "Tawi-Tawi",
"country": "Philippines"
}, {
"statename": "Western Samar",
"country": "Philippines"
}, {
"statename": "Western Visayas (Region VI)",
"country": "Philippines"
}, {
"statename": "Zambales",
"country": "Philippines"
}, {
"statename": "Zamboanga del Norte",
"country": "Philippines"
}, {
"statename": "Zamboanga del Sur",
"country": "Philippines"
}, {
"statename": "Zamboanga Peninsula (Region IX)",
"country": "Philippines"
}, {
"statename": "Zamboanga Sibuguey [Zamboanga Sibugay]",
"country": "Philippines"
}, {
"statename": "Dolnoslaskie",
"country": "Poland"
}, {
"statename": "Kujawsko-pomorskie",
"country": "Poland"
}, {
"statename": "Lódzkie",
"country": "Poland"
}, {
"statename": "Lubelskie",
"country": "Poland"
}, {
"statename": "Lubuskie",
"country": "Poland"
}, {
"statename": "Malopolskie",
"country": "Poland"
}, {
"statename": "Mazowieckie",
"country": "Poland"
}, {
"statename": "Opolskie",
"country": "Poland"
}, {
"statename": "Podkarpackie",
"country": "Poland"
}, {
"statename": "Podlaskie",
"country": "Poland"
}, {
"statename": "Pomorskie",
"country": "Poland"
}, {
"statename": "Slaskie",
"country": "Poland"
}, {
"statename": "Swietokrzyskie",
"country": "Poland"
}, {
"statename": "Warminsko-mazurskie",
"country": "Poland"
}, {
"statename": "Wielkopolskie",
"country": "Poland"
}, {
"statename": "Zachodniopomorskie",
"country": "Poland"
}, {
"statename": "Aveiro",
"country": "Portugal"
}, {
"statename": "Beja",
"country": "Portugal"
}, {
"statename": "Braga",
"country": "Portugal"
}, {
"statename": "Bragança",
"country": "Portugal"
}, {
"statename": "Castelo Branco",
"country": "Portugal"
}, {
"statename": "Coimbra",
"country": "Portugal"
}, {
"statename": "Évora",
"country": "Portugal"
}, {
"statename": "Faro",
"country": "Portugal"
}, {
"statename": "Guarda",
"country": "Portugal"
}, {
"statename": "Leiria",
"country": "Portugal"
}, {
"statename": "Lisboa",
"country": "Portugal"
}, {
"statename": "Portalegre",
"country": "Portugal"
}, {
"statename": "Porto",
"country": "Portugal"
}, {
"statename": "Região Autónoma da Madeira",
"country": "Portugal"
}, {
"statename": "Região Autónoma dos Açores",
"country": "Portugal"
}, {
"statename": "Santarém",
"country": "Portugal"
}, {
"statename": "Setúbal",
"country": "Portugal"
}, {
"statename": "Viana do Castelo",
"country": "Portugal"
}, {
"statename": "Vila Real",
"country": "Portugal"
}, {
"statename": "Viseu",
"country": "Portugal"
}, {
"statename": "Ad Dawhah",
"country": "Qatar"
}, {
"statename": "Al Ghuwayriyah",
"country": "Qatar"
}, {
"statename": "Al Jumayliyah",
"country": "Qatar"
}, {
"statename": "Al Khawr",
"country": "Qatar"
}, {
"statename": "Al Wakrah",
"country": "Qatar"
}, {
"statename": "Ar Rayyan",
"country": "Qatar"
}, {
"statename": "Jariyan al Batnah",
"country": "Qatar"
}, {
"statename": "Madinat ash Shamal",
"country": "Qatar"
}, {
"statename": "Umm Sa'id",
"country": "Qatar"
}, {
"statename": "Umm Salal",
"country": "Qatar"
}, {
"statename": "Alba",
"country": "Romania"
}, {
"statename": "Arad",
"country": "Romania"
}, {
"statename": "Arges",
"country": "Romania"
}, {
"statename": "Bacau",
"country": "Romania"
}, {
"statename": "Bihor",
"country": "Romania"
}, {
"statename": "Bistrita-Nasaud",
"country": "Romania"
}, {
"statename": "Botosani",
"country": "Romania"
}, {
"statename": "Braila",
"country": "Romania"
}, {
"statename": "Brasov",
"country": "Romania"
}, {
"statename": "Bucuresti",
"country": "Romania"
}, {
"statename": "Buzau",
"country": "Romania"
}, {
"statename": "Calarasi",
"country": "Romania"
}, {
"statename": "Caras-Severin",
"country": "Romania"
}, {
"statename": "Cluj",
"country": "Romania"
}, {
"statename": "Constanta",
"country": "Romania"
}, {
"statename": "Covasna",
"country": "Romania"
}, {
"statename": "Dâmbovita",
"country": "Romania"
}, {
"statename": "Dolj",
"country": "Romania"
}, {
"statename": "Galati",
"country": "Romania"
}, {
"statename": "Giurgiu",
"country": "Romania"
}, {
"statename": "Gorj",
"country": "Romania"
}, {
"statename": "Harghita",
"country": "Romania"
}, {
"statename": "Hunedoara",
"country": "Romania"
}, {
"statename": "Ialomita",
"country": "Romania"
}, {
"statename": "Iasi",
"country": "Romania"
}, {
"statename": "Ilfov",
"country": "Romania"
}, {
"statename": "Maramures",
"country": "Romania"
}, {
"statename": "Mehedinti",
"country": "Romania"
}, {
"statename": "Mures",
"country": "Romania"
}, {
"statename": "Neamt",
"country": "Romania"
}, {
"statename": "Olt",
"country": "Romania"
}, {
"statename": "Prahova",
"country": "Romania"
}, {
"statename": "Salaj",
"country": "Romania"
}, {
"statename": "Satu Mare",
"country": "Romania"
}, {
"statename": "Sibiu",
"country": "Romania"
}, {
"statename": "Suceava",
"country": "Romania"
}, {
"statename": "Teleorman",
"country": "Romania"
}, {
"statename": "Timis",
"country": "Romania"
}, {
"statename": "Tulcea",
"country": "Romania"
}, {
"statename": "Vâlcea",
"country": "Romania"
}, {
"statename": "Vaslui",
"country": "Romania"
}, {
"statename": "Vrancea",
"country": "Romania"
}, {
"statename": "Adygeya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Altay, Respublika",
"country": "Russian Federation"
}, {
"statename": "Altayskiy kray",
"country": "Russian Federation"
}, {
"statename": "Amurskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Arkhangel'skaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Astrakhanskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Bashkortostan, Respublika",
"country": "Russian Federation"
}, {
"statename": "Belgorodskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Bryanskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Buryatiya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Chechenskaya Respublika",
"country": "Russian Federation"
}, {
"statename": "Chelyabinskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Chukotskiy avtonomnyy okrug",
"country": "Russian Federation"
}, {
"statename": "Chuvashskaya Respublika",
"country": "Russian Federation"
}, {
"statename": "Dagestan, Respublika",
"country": "Russian Federation"
}, {
"statename": "Ingushskaya Respublika [Respublika Ingushetiya]",
"country": "Russian Federation"
}, {
"statename": "Irkutskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Ivanovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Kabardino-Balkarskaya Respublika",
"country": "Russian Federation"
}, {
"statename": "Kaliningradskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Kalmykiya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Kaluzhskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Kamchatskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Karachayevo-Cherkesskaya Respublika",
"country": "Russian Federation"
}, {
"statename": "Kareliya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Kemerovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Khabarovskiy kray",
"country": "Russian Federation"
}, {
"statename": "Khakasiya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Khanty-Mansiyskiy avtonomnyy okrug [Yugra]",
"country": "Russian Federation"
}, {
"statename": "Kirovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Komi, Respublika",
"country": "Russian Federation"
}, {
"statename": "Komi-Permyak",
"country": "Russian Federation"
}, {
"statename": "Kostromskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Krasnodarskiy kray",
"country": "Russian Federation"
}, {
"statename": "Krasnoyarskiy kray",
"country": "Russian Federation"
}, {
"statename": "Kurganskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Kurskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Leningradskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Lipetskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Magadanskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Mariy El, Respublika",
"country": "Russian Federation"
}, {
"statename": "Mordoviya, Respublika",
"country": "Russian Federation"
}, {
"statename": "Moskovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Moskva",
"country": "Russian Federation"
}, {
"statename": "Murmanskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Nenetskiy avtonomnyy okrug",
"country": "Russian Federation"
}, {
"statename": "Nizhegorodskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Novgorodskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Novosibirskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Omskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Orenburgskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Orlovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Penzenskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Perm",
"country": "Russian Federation"
}, {
"statename": "Primorskiy kray",
"country": "Russian Federation"
}, {
"statename": "Pskovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Rostovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Ryazanskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Sakha, Respublika [Yakutiya]",
"country": "Russian Federation"
}, {
"statename": "Sakhalinskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Samarskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Sankt-Peterburg",
"country": "Russian Federation"
}, {
"statename": "Saratovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Severnaya Osetiya, Respublika [Alaniya] [Respublika Severnaya Osetiya-Alaniya]",
"country": "Russian Federation"
}, {
"statename": "Smolenskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Stavropol'skiy kray",
"country": "Russian Federation"
}, {
"statename": "Sverdlovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tambovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tatarstan, Respublika",
"country": "Russian Federation"
}, {
"statename": "Tomskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tul'skaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tverskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tyumenskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Tyva, Respublika [Tuva]",
"country": "Russian Federation"
}, {
"statename": "Udmurtskaya Respublika",
"country": "Russian Federation"
}, {
"statename": "Ul'yanovskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Vladimirskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Volgogradskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Vologodskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Voronezhskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Yamalo-Nenetskiy avtonomnyy okrug",
"country": "Russian Federation"
}, {
"statename": "Yaroslavskaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Yevreyskaya avtonomnaya oblast'",
"country": "Russian Federation"
}, {
"statename": "Zabajkal'skij kraj",
"country": "Russian Federation"
}, {
"statename": "Est",
"country": "Rwanda"
}, {
"statename": "Nord",
"country": "Rwanda"
}, {
"statename": "Ouest",
"country": "Rwanda"
}, {
"statename": "Sud",
"country": "Rwanda"
}, {
"statename": "Ville de Kigali",
"country": "Rwanda"
}, {
"statename": "Ascension",
"country": "Saint Helena, Ascension and Tristan Da Cunha"
}, {
"statename": "Saint Helena",
"country": "Saint Helena, Ascension and Tristan Da Cunha"
}, {
"statename": "Tristan da Cunha",
"country": "Saint Helena, Ascension and Tristan Da Cunha"
}, {
"statename": "Christ Church Nichola Town",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Anne Sandy Point",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint George Basseterre",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint George Gingerland",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint James Windward",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint John Capisterre",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint John Figtree",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Mary Cayon",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Paul Capisterre",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Paul Charlestown",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Peter Basseterre",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Thomas Lowland",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Saint Thomas Middle Island",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Trinity Palmetto Point",
"country": "Saint Kitts And Nevis"
}, {
"statename": "Charlotte",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "Grenadines",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "Saint Andrew",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "Saint David",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "Saint George",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "Saint Patrick",
"country": "Saint Vincent And The Grenedines"
}, {
"statename": "A'ana",
"country": "Samoa"
}, {
"statename": "Aiga-i-le-Tai",
"country": "Samoa"
}, {
"statename": "Atua",
"country": "Samoa"
}, {
"statename": "Fa'asaleleaga",
"country": "Samoa"
}, {
"statename": "Gaga'emauga",
"country": "Samoa"
}, {
"statename": "Gagaifomauga",
"country": "Samoa"
}, {
"statename": "Palauli",
"country": "Samoa"
}, {
"statename": "Satupa'itea",
"country": "Samoa"
}, {
"statename": "Tuamasaga",
"country": "Samoa"
}, {
"statename": "Va'a-o-Fonoti",
"country": "Samoa"
}, {
"statename": "Vaisigano",
"country": "Samoa"
}, {
"statename": "Acquaviva",
"country": "San Marino"
}, {
"statename": "Borgo Maggiore",
"country": "San Marino"
}, {
"statename": "Chiesanuova",
"country": "San Marino"
}, {
"statename": "Domagnano",
"country": "San Marino"
}, {
"statename": "Faetano",
"country": "San Marino"
}, {
"statename": "Fiorentino",
"country": "San Marino"
}, {
"statename": "Montegiardino",
"country": "San Marino"
}, {
"statename": "San Marino",
"country": "San Marino"
}, {
"statename": "Serravalle",
"country": "San Marino"
}, {
"statename": "Príncipe",
"country": "Sao Tome and Principe"
}, {
"statename": "São Tomé",
"country": "Sao Tome and Principe"
}, {
"statename": "?a'il",
"country": "Saudi Arabia"
}, {
"statename": "?Asir",
"country": "Saudi Arabia"
}, {
"statename": "Al ?udud ash Shamaliyah",
"country": "Saudi Arabia"
}, {
"statename": "Al Ba?ah",
"country": "Saudi Arabia"
}, {
"statename": "Al Jawf",
"country": "Saudi Arabia"
}, {
"statename": "Al Madinah",
"country": "Saudi Arabia"
}, {
"statename": "Al Qasim",
"country": "Saudi Arabia"
}, {
"statename": "Ar Riya?",
"country": "Saudi Arabia"
}, {
"statename": "Ash Sharqiyah",
"country": "Saudi Arabia"
}, {
"statename": "Jizan",
"country": "Saudi Arabia"
}, {
"statename": "Makkah",
"country": "Saudi Arabia"
}, {
"statename": "Najran",
"country": "Saudi Arabia"
}, {
"statename": "Tabuk",
"country": "Saudi Arabia"
}, {
"statename": "Dakar",
"country": "Senegal"
}, {
"statename": "Diourbel",
"country": "Senegal"
}, {
"statename": "Fatick",
"country": "Senegal"
}, {
"statename": "Kaffrine",
"country": "Senegal"
}, {
"statename": "Kaolack",
"country": "Senegal"
}, {
"statename": "Kédougou",
"country": "Senegal"
}, {
"statename": "Kolda",
"country": "Senegal"
}, {
"statename": "Louga",
"country": "Senegal"
}, {
"statename": "Matam",
"country": "Senegal"
}, {
"statename": "Saint-Louis",
"country": "Senegal"
}, {
"statename": "Sédhiou",
"country": "Senegal"
}, {
"statename": "Tambacounda",
"country": "Senegal"
}, {
"statename": "Thiès",
"country": "Senegal"
}, {
"statename": "Ziguinchor",
"country": "Senegal"
}, {
"statename": "Belgrade",
"country": "Serbia"
}, {
"statename": "Borski okrug",
"country": "Serbia"
}, {
"statename": "Brani?evski okrug",
"country": "Serbia"
}, {
"statename": "Jablani?ki okrug",
"country": "Serbia"
}, {
"statename": "Južnobanatski okrug",
"country": "Serbia"
}, {
"statename": "Južnobanatski okrug",
"country": "Serbia"
}, {
"statename": "Kolubarski okrug",
"country": "Serbia"
}, {
"statename": "Kosovski okrug",
"country": "Serbia"
}, {
"statename": "Kosovsko-Mitrova?ki okrug",
"country": "Serbia"
}, {
"statename": "Kosovsko-Pomoravski okrug",
"country": "Serbia"
}, {
"statename": "Ma?vanski okrug",
"country": "Serbia"
}, {
"statename": "Moravi?ki okrug",
"country": "Serbia"
}, {
"statename": "Nišavski okrug",
"country": "Serbia"
}, {
"statename": "P?injski okrug",
"country": "Serbia"
}, {
"statename": "Pe?ki okrug",
"country": "Serbia"
}, {
"statename": "Pirotski okrug",
"country": "Serbia"
}, {
"statename": "Podunavski okrug",
"country": "Serbia"
}, {
"statename": "Pomoravski okrug",
"country": "Serbia"
}, {
"statename": "Prizrenski okrug",
"country": "Serbia"
}, {
"statename": "Rasinski okrug",
"country": "Serbia"
}, {
"statename": "Raška okrug",
"country": "Serbia"
}, {
"statename": "Severnoba?ki okrug",
"country": "Serbia"
}, {
"statename": "Severnobanatski okrug",
"country": "Serbia"
}, {
"statename": "Srednjebanatski okrug",
"country": "Serbia"
}, {
"statename": "Sremski okrug",
"country": "Serbia"
}, {
"statename": "Šumadijski okrug",
"country": "Serbia"
}, {
"statename": "Toplièki okrug",
"country": "Serbia"
}, {
"statename": "Zajeèarski okrug",
"country": "Serbia"
}, {
"statename": "Zapadnobaèki okrug",
"country": "Serbia"
}, {
"statename": "Zlatiborski okrug",
"country": "Serbia"
}, {
"statename": "Anse aux Pins",
"country": "Seychelles"
}, {
"statename": "Anse Boileau",
"country": "Seychelles"
}, {
"statename": "Anse Étoile",
"country": "Seychelles"
}, {
"statename": "Anse Royale",
"country": "Seychelles"
}, {
"statename": "Au Cap",
"country": "Seychelles"
}, {
"statename": "Baie Lazare",
"country": "Seychelles"
}, {
"statename": "Baie Sainte Anne",
"country": "Seychelles"
}, {
"statename": "Beau Vallon",
"country": "Seychelles"
}, {
"statename": "Bel Air",
"country": "Seychelles"
}, {
"statename": "Bel Ombre",
"country": "Seychelles"
}, {
"statename": "Cascade",
"country": "Seychelles"
}, {
"statename": "English River",
"country": "Seychelles"
}, {
"statename": "Glacis",
"country": "Seychelles"
}, {
"statename": "Grand Anse Mahe",
"country": "Seychelles"
}, {
"statename": "Grand Anse Praslin",
"country": "Seychelles"
}, {
"statename": "La Digue",
"country": "Seychelles"
}, {
"statename": "Les Mamelles",
"country": "Seychelles"
}, {
"statename": "Mont Buxton",
"country": "Seychelles"
}, {
"statename": "Mont Fleuri",
"country": "Seychelles"
}, {
"statename": "Plaisance",
"country": "Seychelles"
}, {
"statename": "Pointe La Rue",
"country": "Seychelles"
}, {
"statename": "Port Glaud",
"country": "Seychelles"
}, {
"statename": "Roche Caiman",
"country": "Seychelles"
}, {
"statename": "Saint Louis",
"country": "Seychelles"
}, {
"statename": "Takamaka",
"country": "Seychelles"
}, {
"statename": "Eastern",
"country": "Sierra Leone"
}, {
"statename": "Northern",
"country": "Sierra Leone"
}, {
"statename": "Southern",
"country": "Sierra Leone"
}, {
"statename": "Western Area (Freetown)",
"country": "Sierra Leone"
}, {
"statename": "Singapore - No State",
"country": "Singapore"
}, {
"statename": "Banskobystrický kraj",
"country": "Slovakia"
}, {
"statename": "Bratislavský kraj",
"country": "Slovakia"
}, {
"statename": "Košický kraj",
"country": "Slovakia"
}, {
"statename": "Nitriansky kraj",
"country": "Slovakia"
}, {
"statename": "Prešovský kraj",
"country": "Slovakia"
}, {
"statename": "Trenciansky kraj",
"country": "Slovakia"
}, {
"statename": "Trnavský kraj",
"country": "Slovakia"
}, {
"statename": "Žilinský kraj",
"country": "Slovakia"
}, {
"statename": "Ajdovšcina",
"country": "Slovenia"
}, {
"statename": "Apa?e",
"country": "Slovenia"
}, {
"statename": "Beltinci",
"country": "Slovenia"
}, {
"statename": "Benedikt",
"country": "Slovenia"
}, {
"statename": "Bistrica ob Sotli",
"country": "Slovenia"
}, {
"statename": "Bled",
"country": "Slovenia"
}, {
"statename": "Bloke",
"country": "Slovenia"
}, {
"statename": "Bohinj",
"country": "Slovenia"
}, {
"statename": "Borovnica",
"country": "Slovenia"
}, {
"statename": "Bovec",
"country": "Slovenia"
}, {
"statename": "Braslovce",
"country": "Slovenia"
}, {
"statename": "Brda",
"country": "Slovenia"
}, {
"statename": "Brežice",
"country": "Slovenia"
}, {
"statename": "Brezovica",
"country": "Slovenia"
}, {
"statename": "Cankova",
"country": "Slovenia"
}, {
"statename": "Celje",
"country": "Slovenia"
}, {
"statename": "Cerklje na Gorenjskem",
"country": "Slovenia"
}, {
"statename": "Cerknica",
"country": "Slovenia"
}, {
"statename": "Cerkno",
"country": "Slovenia"
}, {
"statename": "Cerkvenjak",
"country": "Slovenia"
}, {
"statename": "Cirkulane",
"country": "Slovenia"
}, {
"statename": "Crenšovci",
"country": "Slovenia"
}, {
"statename": "Crna na Koroškem",
"country": "Slovenia"
}, {
"statename": "Crnomelj",
"country": "Slovenia"
}, {
"statename": "Destrnik",
"country": "Slovenia"
}, {
"statename": "Divaca",
"country": "Slovenia"
}, {
"statename": "Dobje",
"country": "Slovenia"
}, {
"statename": "Dobrepolje",
"country": "Slovenia"
}, {
"statename": "Dobrna",
"country": "Slovenia"
}, {
"statename": "Dobrova-Polhov Gradec",
"country": "Slovenia"
}, {
"statename": "Dobrovnik/Dobronak",
"country": "Slovenia"
}, {
"statename": "Dol pri Ljubljani",
"country": "Slovenia"
}, {
"statename": "Dolenjske Toplice",
"country": "Slovenia"
}, {
"statename": "Domžale",
"country": "Slovenia"
}, {
"statename": "Dornava",
"country": "Slovenia"
}, {
"statename": "Dravograd",
"country": "Slovenia"
}, {
"statename": "Duplek",
"country": "Slovenia"
}, {
"statename": "Gorenja vas-Poljane",
"country": "Slovenia"
}, {
"statename": "Gorišnica",
"country": "Slovenia"
}, {
"statename": "Gorje",
"country": "Slovenia"
}, {
"statename": "Gornja Radgona",
"country": "Slovenia"
}, {
"statename": "Gornji Grad",
"country": "Slovenia"
}, {
"statename": "Gornji Petrovci",
"country": "Slovenia"
}, {
"statename": "Grad",
"country": "Slovenia"
}, {
"statename": "Grosuplje",
"country": "Slovenia"
}, {
"statename": "Hajdina",
"country": "Slovenia"
}, {
"statename": "Hoce-Slivnica",
"country": "Slovenia"
}, {
"statename": "Hodoš/Hodos",
"country": "Slovenia"
}, {
"statename": "Horjul",
"country": "Slovenia"
}, {
"statename": "Hrastnik",
"country": "Slovenia"
}, {
"statename": "Hrpelje-Kozina",
"country": "Slovenia"
}, {
"statename": "Idrija",
"country": "Slovenia"
}, {
"statename": "Ig",
"country": "Slovenia"
}, {
"statename": "Ilirska Bistrica",
"country": "Slovenia"
}, {
"statename": "Ivancna Gorica",
"country": "Slovenia"
}, {
"statename": "Izola/Isola",
"country": "Slovenia"
}, {
"statename": "Jesenice",
"country": "Slovenia"
}, {
"statename": "Jezersko",
"country": "Slovenia"
}, {
"statename": "Juršinci",
"country": "Slovenia"
}, {
"statename": "Kamnik",
"country": "Slovenia"
}, {
"statename": "Kanal",
"country": "Slovenia"
}, {
"statename": "Kidricevo",
"country": "Slovenia"
}, {
"statename": "Kobarid",
"country": "Slovenia"
}, {
"statename": "Kobilje",
"country": "Slovenia"
}, {
"statename": "Kocevje",
"country": "Slovenia"
}, {
"statename": "Komen",
"country": "Slovenia"
}, {
"statename": "Komenda",
"country": "Slovenia"
}, {
"statename": "Koper/Capodistria",
"country": "Slovenia"
}, {
"statename": "Kosanjevica na Krki",
"country": "Slovenia"
}, {
"statename": "Kostel",
"country": "Slovenia"
}, {
"statename": "Kozje",
"country": "Slovenia"
}, {
"statename": "Kranj",
"country": "Slovenia"
}, {
"statename": "Kranjska Gora",
"country": "Slovenia"
}, {
"statename": "Križevci",
"country": "Slovenia"
}, {
"statename": "Krško",
"country": "Slovenia"
}, {
"statename": "Kungota",
"country": "Slovenia"
}, {
"statename": "Kuzma",
"country": "Slovenia"
}, {
"statename": "Laško",
"country": "Slovenia"
}, {
"statename": "Lenart",
"country": "Slovenia"
}, {
"statename": "Lendava/Lendva",
"country": "Slovenia"
}, {
"statename": "Litija",
"country": "Slovenia"
}, {
"statename": "Ljubljana",
"country": "Slovenia"
}, {
"statename": "Ljubno",
"country": "Slovenia"
}, {
"statename": "Ljutomer",
"country": "Slovenia"
}, {
"statename": "Logatec",
"country": "Slovenia"
}, {
"statename": "Log-Dragomer",
"country": "Slovenia"
}, {
"statename": "Loška dolina",
"country": "Slovenia"
}, {
"statename": "Loški Potok",
"country": "Slovenia"
}, {
"statename": "Lovrenc na Pohorju",
"country": "Slovenia"
}, {
"statename": "Luce",
"country": "Slovenia"
}, {
"statename": "Lukovica",
"country": "Slovenia"
}, {
"statename": "Majšperk",
"country": "Slovenia"
}, {
"statename": "Makole",
"country": "Slovenia"
}, {
"statename": "Maribor",
"country": "Slovenia"
}, {
"statename": "Markovci",
"country": "Slovenia"
}, {
"statename": "Medvode",
"country": "Slovenia"
}, {
"statename": "Mengeš",
"country": "Slovenia"
}, {
"statename": "Metlika",
"country": "Slovenia"
}, {
"statename": "Mežica",
"country": "Slovenia"
}, {
"statename": "Miklavž na Dravskem polju",
"country": "Slovenia"
}, {
"statename": "Miren-Kostanjevica",
"country": "Slovenia"
}, {
"statename": "Mirna Pec",
"country": "Slovenia"
}, {
"statename": "Mislinja",
"country": "Slovenia"
}, {
"statename": "Mokronog-Trebelno",
"country": "Slovenia"
}, {
"statename": "Moravce",
"country": "Slovenia"
}, {
"statename": "Moravske Toplice",
"country": "Slovenia"
}, {
"statename": "Mozirje",
"country": "Slovenia"
}, {
"statename": "Murska Sobota",
"country": "Slovenia"
}, {
"statename": "Muta",
"country": "Slovenia"
}, {
"statename": "Naklo",
"country": "Slovenia"
}, {
"statename": "Nazarje",
"country": "Slovenia"
}, {
"statename": "Nova Gorica",
"country": "Slovenia"
}, {
"statename": "Novo mesto",
"country": "Slovenia"
}, {
"statename": "Odranci",
"country": "Slovenia"
}, {
"statename": "Oplotnica",
"country": "Slovenia"
}, {
"statename": "Ormož",
"country": "Slovenia"
}, {
"statename": "Osilnica",
"country": "Slovenia"
}, {
"statename": "Pesnica",
"country": "Slovenia"
}, {
"statename": "Piran/Pirano",
"country": "Slovenia"
}, {
"statename": "Pivka",
"country": "Slovenia"
}, {
"statename": "Podcetrtek",
"country": "Slovenia"
}, {
"statename": "Podlehnik",
"country": "Slovenia"
}, {
"statename": "Podvelka",
"country": "Slovenia"
}, {
"statename": "Polj?ane",
"country": "Slovenia"
}, {
"statename": "Polzela",
"country": "Slovenia"
}, {
"statename": "Postojna",
"country": "Slovenia"
}, {
"statename": "Prebold",
"country": "Slovenia"
}, {
"statename": "Preddvor",
"country": "Slovenia"
}, {
"statename": "Prevalje",
"country": "Slovenia"
}, {
"statename": "Ptuj",
"country": "Slovenia"
}, {
"statename": "Puconci",
"country": "Slovenia"
}, {
"statename": "Race-Fram",
"country": "Slovenia"
}, {
"statename": "Radece",
"country": "Slovenia"
}, {
"statename": "Radenci",
"country": "Slovenia"
}, {
"statename": "Radlje ob Dravi",
"country": "Slovenia"
}, {
"statename": "Radovljica",
"country": "Slovenia"
}, {
"statename": "Ravne na Koroškem",
"country": "Slovenia"
}, {
"statename": "Razkrižje",
"country": "Slovenia"
}, {
"statename": "Re?ica ob Savinji",
"country": "Slovenia"
}, {
"statename": "Ren?e-Vogrsko",
"country": "Slovenia"
}, {
"statename": "Ribnica",
"country": "Slovenia"
}, {
"statename": "Ribnica na Pohorju",
"country": "Slovenia"
}, {
"statename": "Rogaška Slatina",
"country": "Slovenia"
}, {
"statename": "Rogašovci",
"country": "Slovenia"
}, {
"statename": "Rogatec",
"country": "Slovenia"
}, {
"statename": "Ruše",
"country": "Slovenia"
}, {
"statename": "Šalovci",
"country": "Slovenia"
}, {
"statename": "Selnica ob Dravi",
"country": "Slovenia"
}, {
"statename": "Semic",
"country": "Slovenia"
}, {
"statename": "Šempeter-Vrtojba",
"country": "Slovenia"
}, {
"statename": "Šencur",
"country": "Slovenia"
}, {
"statename": "Šentilj",
"country": "Slovenia"
}, {
"statename": "Šentjernej",
"country": "Slovenia"
}, {
"statename": "Šentjur pri Celju",
"country": "Slovenia"
}, {
"statename": "Šentrupert",
"country": "Slovenia"
}, {
"statename": "Sevnica",
"country": "Slovenia"
}, {
"statename": "Sežana",
"country": "Slovenia"
}, {
"statename": "Škocjan",
"country": "Slovenia"
}, {
"statename": "Škofja Loka",
"country": "Slovenia"
}, {
"statename": "Škofljica",
"country": "Slovenia"
}, {
"statename": "Slovenj Gradec",
"country": "Slovenia"
}, {
"statename": "Slovenska Bistrica",
"country": "Slovenia"
}, {
"statename": "Slovenske Konjice",
"country": "Slovenia"
}, {
"statename": "Šmarje pri Jelšah",
"country": "Slovenia"
}, {
"statename": "Šmarješke Toplice",
"country": "Slovenia"
}, {
"statename": "Šmartno ob Paki",
"country": "Slovenia"
}, {
"statename": "Šmartno pri Litiji",
"country": "Slovenia"
}, {
"statename": "Sodražica",
"country": "Slovenia"
}, {
"statename": "Solcava",
"country": "Slovenia"
}, {
"statename": "Šoštanj",
"country": "Slovenia"
}, {
"statename": "Središ?e ob Dravi",
"country": "Slovenia"
}, {
"statename": "Starše",
"country": "Slovenia"
}, {
"statename": "Štore",
"country": "Slovenia"
}, {
"statename": "Straža",
"country": "Slovenia"
}, {
"statename": "Sveta Ana",
"country": "Slovenia"
}, {
"statename": "Sveta Trojica v Slovenskih Goricah",
"country": "Slovenia"
}, {
"statename": "Sveti Andraž v Slovenskih goricah",
"country": "Slovenia"
}, {
"statename": "Sveti Jurij",
"country": "Slovenia"
}, {
"statename": "Sveti Jurij v Slovenskih Goricah",
"country": "Slovenia"
}, {
"statename": "Sveti Tomaž",
"country": "Slovenia"
}, {
"statename": "Tabor",
"country": "Slovenia"
}, {
"statename": "Tišina",
"country": "Slovenia"
}, {
"statename": "Tolmin",
"country": "Slovenia"
}, {
"statename": "Trbovlje",
"country": "Slovenia"
}, {
"statename": "Trebnje",
"country": "Slovenia"
}, {
"statename": "Trnovska vas",
"country": "Slovenia"
}, {
"statename": "Tržic",
"country": "Slovenia"
}, {
"statename": "Trzin",
"country": "Slovenia"
}, {
"statename": "Turnišce",
"country": "Slovenia"
}, {
"statename": "Velenje",
"country": "Slovenia"
}, {
"statename": "Velika Polana",
"country": "Slovenia"
}, {
"statename": "Velike Lašce",
"country": "Slovenia"
}, {
"statename": "Veržej",
"country": "Slovenia"
}, {
"statename": "Videm",
"country": "Slovenia"
}, {
"statename": "Vipava",
"country": "Slovenia"
}, {
"statename": "Vitanje",
"country": "Slovenia"
}, {
"statename": "Vodice",
"country": "Slovenia"
}, {
"statename": "Vojnik",
"country": "Slovenia"
}, {
"statename": "Vransko",
"country": "Slovenia"
}, {
"statename": "Vrhnika",
"country": "Slovenia"
}, {
"statename": "Vuzenica",
"country": "Slovenia"
}, {
"statename": "Zagorje ob Savi",
"country": "Slovenia"
}, {
"statename": "Žalec",
"country": "Slovenia"
}, {
"statename": "Zavrc",
"country": "Slovenia"
}, {
"statename": "Železniki",
"country": "Slovenia"
}, {
"statename": "Žetale",
"country": "Slovenia"
}, {
"statename": "Žiri",
"country": "Slovenia"
}, {
"statename": "Žirovnica",
"country": "Slovenia"
}, {
"statename": "Zrece",
"country": "Slovenia"
}, {
"statename": "Žužemberk",
"country": "Slovenia"
}, {
"statename": "Capital Territory (Honiara)",
"country": "Solomon Islands"
}, {
"statename": "Central",
"country": "Solomon Islands"
}, {
"statename": "Choiseul",
"country": "Solomon Islands"
}, {
"statename": "Guadalcanal",
"country": "Solomon Islands"
}, {
"statename": "Isabel",
"country": "Solomon Islands"
}, {
"statename": "Makira",
"country": "Solomon Islands"
}, {
"statename": "Malaita",
"country": "Solomon Islands"
}, {
"statename": "Rennell and Bellona",
"country": "Solomon Islands"
}, {
"statename": "Temotu",
"country": "Solomon Islands"
}, {
"statename": "Western",
"country": "Solomon Islands"
}, {
"statename": "Awdal",
"country": "Somalia"
}, {
"statename": "Bakool",
"country": "Somalia"
}, {
"statename": "Banaadir",
"country": "Somalia"
}, {
"statename": "Bari",
"country": "Somalia"
}, {
"statename": "Bay",
"country": "Somalia"
}, {
"statename": "Galguduud",
"country": "Somalia"
}, {
"statename": "Gedo",
"country": "Somalia"
}, {
"statename": "Hiiraan",
"country": "Somalia"
}, {
"statename": "Jubbada Dhexe",
"country": "Somalia"
}, {
"statename": "Jubbada Hoose",
"country": "Somalia"
}, {
"statename": "Mudug",
"country": "Somalia"
}, {
"statename": "Nugaal",
"country": "Somalia"
}, {
"statename": "Sanaag",
"country": "Somalia"
}, {
"statename": "Shabeellaha Dhexe",
"country": "Somalia"
}, {
"statename": "Shabeellaha Hoose",
"country": "Somalia"
}, {
"statename": "Sool",
"country": "Somalia"
}, {
"statename": "Togdheer",
"country": "Somalia"
}, {
"statename": "Woqooyi Galbeed",
"country": "Somalia"
}, {
"statename": "Eastern Cape",
"country": "South Africa"
}, {
"statename": "Free State",
"country": "South Africa"
}, {
"statename": "Gauteng",
"country": "South Africa"
}, {
"statename": "Kwazulu-Natal",
"country": "South Africa"
}, {
"statename": "Limpopo",
"country": "South Africa"
}, {
"statename": "Mpumalanga",
"country": "South Africa"
}, {
"statename": "Northern Cape",
"country": "South Africa"
}, {
"statename": "North-West",
"country": "South Africa"
}, {
"statename": "Western Cape",
"country": "South Africa"
}, {
"statename": "A Coruña",
"country": "Spain"
}, {
"statename": "Álava",
"country": "Spain"
}, {
"statename": "Albacete",
"country": "Spain"
}, {
"statename": "Alicante",
"country": "Spain"
}, {
"statename": "Almería",
"country": "Spain"
}, {
"statename": "Asturias",
"country": "Spain"
}, {
"statename": "Ávila",
"country": "Spain"
}, {
"statename": "Badajoz",
"country": "Spain"
}, {
"statename": "Baleares",
"country": "Spain"
}, {
"statename": "Barcelona",
"country": "Spain"
}, {
"statename": "Burgos",
"country": "Spain"
}, {
"statename": "Cáceres",
"country": "Spain"
}, {
"statename": "Cádiz",
"country": "Spain"
}, {
"statename": "Cantabria",
"country": "Spain"
}, {
"statename": "Castellón",
"country": "Spain"
}, {
"statename": "Ceuta",
"country": "Spain"
}, {
"statename": "Ciudad Real",
"country": "Spain"
}, {
"statename": "Córdoba",
"country": "Spain"
}, {
"statename": "Cuenca",
"country": "Spain"
}, {
"statename": "Girona",
"country": "Spain"
}, {
"statename": "Granada",
"country": "Spain"
}, {
"statename": "Guadalajara",
"country": "Spain"
}, {
"statename": "Guipúzcoa",
"country": "Spain"
}, {
"statename": "Huelva",
"country": "Spain"
}, {
"statename": "Huesca",
"country": "Spain"
}, {
"statename": "Jaén",
"country": "Spain"
}, {
"statename": "La Rioja",
"country": "Spain"
}, {
"statename": "Las Palmas",
"country": "Spain"
}, {
"statename": "León",
"country": "Spain"
}, {
"statename": "Lleida",
"country": "Spain"
}, {
"statename": "Lugo",
"country": "Spain"
}, {
"statename": "Madrid",
"country": "Spain"
}, {
"statename": "Málaga",
"country": "Spain"
}, {
"statename": "Melilla",
"country": "Spain"
}, {
"statename": "Murcia",
"country": "Spain"
}, {
"statename": "Navarra",
"country": "Spain"
}, {
"statename": "Ourense",
"country": "Spain"
}, {
"statename": "Palencia",
"country": "Spain"
}, {
"statename": "Pontevedra",
"country": "Spain"
}, {
"statename": "Salamanca",
"country": "Spain"
}, {
"statename": "Santa Cruz de Tenerife",
"country": "Spain"
}, {
"statename": "Segovia",
"country": "Spain"
}, {
"statename": "Sevilla",
"country": "Spain"
}, {
"statename": "Soria",
"country": "Spain"
}, {
"statename": "Tarragona",
"country": "Spain"
}, {
"statename": "Teruel",
"country": "Spain"
}, {
"statename": "Toledo",
"country": "Spain"
}, {
"statename": "Valencia",
"country": "Spain"
}, {
"statename": "Valladolid",
"country": "Spain"
}, {
"statename": "Vizcaya",
"country": "Spain"
}, {
"statename": "Zamora",
"country": "Spain"
}, {
"statename": "Zaragoza",
"country": "Spain"
}, {
"statename": "Amp?ra",
"country": "Sri Lanka"
}, {
"statename": "Anur?dhapura",
"country": "Sri Lanka"
}, {
"statename": "Badulla",
"country": "Sri Lanka"
}, {
"statename": "G?lla",
"country": "Sri Lanka"
}, {
"statename": "Gampaha",
"country": "Sri Lanka"
}, {
"statename": "Hambant??a",
"country": "Sri Lanka"
}, {
"statename": "K??amba",
"country": "Sri Lanka"
}, {
"statename": "Kalutara",
"country": "Sri Lanka"
}, {
"statename": "Kegalla",
"country": "Sri Lanka"
}, {
"statename": "Kilin?chchi",
"country": "Sri Lanka"
}, {
"statename": "Kuru?ægala",
"country": "Sri Lanka"
}, {
"statename": "M??ar?gala",
"country": "Sri Lanka"
}, {
"statename": "M?tale",
"country": "Sri Lanka"
}, {
"statename": "M?tara",
"country": "Sri Lanka"
}, {
"statename": "Madakalapuva",
"country": "Sri Lanka"
}, {
"statename": "Mahanuvara",
"country": "Sri Lanka"
}, {
"statename": "Mann?rama",
"country": "Sri Lanka"
}, {
"statename": "Mulativ",
"country": "Sri Lanka"
}, {
"statename": "Nuvara ?liya",
"country": "Sri Lanka"
}, {
"statename": "P???nnaruva",
"country": "Sri Lanka"
}, {
"statename": "Puttalama",
"country": "Sri Lanka"
}, {
"statename": "Ratnapura",
"country": "Sri Lanka"
}, {
"statename": "Triku??malaya",
"country": "Sri Lanka"
}, {
"statename": "Vavuniy?va",
"country": "Sri Lanka"
}, {
"statename": "Y?panaya",
"country": "Sri Lanka"
}, {
"statename": "A?ali an Nil",
"country": "Sudan"
}, {
"statename": "Al Ba?r al A?mar",
"country": "Sudan"
}, {
"statename": "Al Bu?ayrat",
"country": "Sudan"
}, {
"statename": "Al Jazirah",
"country": "Sudan"
}, {
"statename": "Al Khartum",
"country": "Sudan"
}, {
"statename": "Al Qa?arif",
"country": "Sudan"
}, {
"statename": "Al Wa?dah",
"country": "Sudan"
}, {
"statename": "An Nil",
"country": "Sudan"
}, {
"statename": "An Nil al Abya?",
"country": "Sudan"
}, {
"statename": "An Nil al Azraq",
"country": "Sudan"
}, {
"statename": "Ash Shamaliyah",
"country": "Sudan"
}, {
"statename": "Ba?r al Jabal",
"country": "Sudan"
}, {
"statename": "Gharb al Istiwa'iyah",
"country": "Sudan"
}, {
"statename": "Gharb Ba?r al Ghazal",
"country": "Sudan"
}, {
"statename": "Gharb Darfur",
"country": "Sudan"
}, {
"statename": "Gharb Kurdufan",
"country": "Sudan"
}, {
"statename": "Janub Darfur",
"country": "Sudan"
}, {
"statename": "Janub Kurdufan",
"country": "Sudan"
}, {
"statename": "Junqali",
"country": "Sudan"
}, {
"statename": "Kassala",
"country": "Sudan"
}, {
"statename": "Shamal Ba?r al Ghazal",
"country": "Sudan"
}, {
"statename": "Shamal Darfur",
"country": "Sudan"
}, {
"statename": "Shamal Kurdufan",
"country": "Sudan"
}, {
"statename": "Sharq al Istiwa'iyah",
"country": "Sudan"
}, {
"statename": "Sinnar",
"country": "Sudan"
}, {
"statename": "Warab",
"country": "Sudan"
}, {
"statename": "Brokopondo",
"country": "Suriname"
}, {
"statename": "Commewijne",
"country": "Suriname"
}, {
"statename": "Coronie",
"country": "Suriname"
}, {
"statename": "Marowijne",
"country": "Suriname"
}, {
"statename": "Nickerie",
"country": "Suriname"
}, {
"statename": "Para",
"country": "Suriname"
}, {
"statename": "Paramaribo",
"country": "Suriname"
}, {
"statename": "Saramacca",
"country": "Suriname"
}, {
"statename": "Sipaliwini",
"country": "Suriname"
}, {
"statename": "Wanica",
"country": "Suriname"
}, {
"statename": "Hhohho",
"country": "Swaziland"
}, {
"statename": "Lubombo",
"country": "Swaziland"
}, {
"statename": "Manzini",
"country": "Swaziland"
}, {
"statename": "Shiselweni",
"country": "Swaziland"
}, {
"statename": "Blekinge län [SE-10]",
"country": "Sweden"
}, {
"statename": "Dalarnas län [SE-20]",
"country": "Sweden"
}, {
"statename": "Gävleborgs län [SE-21]",
"country": "Sweden"
}, {
"statename": "Gotlands län [SE-09]",
"country": "Sweden"
}, {
"statename": "Hallands län [SE-13]",
"country": "Sweden"
}, {
"statename": "Jämtlands län [SE-23]",
"country": "Sweden"
}, {
"statename": "Jönköpings län [SE-06]",
"country": "Sweden"
}, {
"statename": "Kalmar län [SE-08]",
"country": "Sweden"
}, {
"statename": "Kronobergs län [SE-07]",
"country": "Sweden"
}, {
"statename": "Norrbottens län [SE-25]",
"country": "Sweden"
}, {
"statename": "Örebro län [SE-18]",
"country": "Sweden"
}, {
"statename": "Östergötlands län [SE-05]",
"country": "Sweden"
}, {
"statename": "Skåne län [SE-12]",
"country": "Sweden"
}, {
"statename": "Södermanlands län [SE-04]",
"country": "Sweden"
}, {
"statename": "Stockholms län [SE-01]",
"country": "Sweden"
}, {
"statename": "Uppsala län [SE-03]",
"country": "Sweden"
}, {
"statename": "Värmlands län [SE-17]",
"country": "Sweden"
}, {
"statename": "Västerbottens län [SE-24]",
"country": "Sweden"
}, {
"statename": "Västernorrlands län [SE-22]",
"country": "Sweden"
}, {
"statename": "Västmanlands län [SE-19]",
"country": "Sweden"
}, {
"statename": "Västra Götalands län [SE-14]",
"country": "Sweden"
}, {
"statename": "Aargau (de)",
"country": "Switzerland"
}, {
"statename": "Appenzell Ausserrhoden (de)",
"country": "Switzerland"
}, {
"statename": "Appenzell Innerrhoden (de)",
"country": "Switzerland"
}, {
"statename": "Basel-Landschaft (de)",
"country": "Switzerland"
}, {
"statename": "Basel-Stadt (de)",
"country": "Switzerland"
}, {
"statename": "Bern (de)",
"country": "Switzerland"
}, {
"statename": "Fribourg (fr)",
"country": "Switzerland"
}, {
"statename": "Genève (fr)",
"country": "Switzerland"
}, {
"statename": "Glarus (de)",
"country": "Switzerland"
}, {
"statename": "Graubünden (de)",
"country": "Switzerland"
}, {
"statename": "Jura (fr)",
"country": "Switzerland"
}, {
"statename": "Luzern (de)",
"country": "Switzerland"
}, {
"statename": "Neuchâtel (fr)",
"country": "Switzerland"
}, {
"statename": "Nidwalden (de)",
"country": "Switzerland"
}, {
"statename": "Obwalden (de)",
"country": "Switzerland"
}, {
"statename": "Sankt Gallen (de)",
"country": "Switzerland"
}, {
"statename": "Schaffhausen (de)",
"country": "Switzerland"
}, {
"statename": "Schwyz (de)",
"country": "Switzerland"
}, {
"statename": "Solothurn (de)",
"country": "Switzerland"
}, {
"statename": "Thurgau (de)",
"country": "Switzerland"
}, {
"statename": "Ticino (it)",
"country": "Switzerland"
}, {
"statename": "Uri (de)",
"country": "Switzerland"
}, {
"statename": "Valais (fr)",
"country": "Switzerland"
}, {
"statename": "Vaud (fr)",
"country": "Switzerland"
}, {
"statename": "Zug (de)",
"country": "Switzerland"
}, {
"statename": "Zürich (de)",
"country": "Switzerland"
}, {
"statename": "?alab",
"country": "Syrian Arab Republic"
}, {
"statename": "?amah",
"country": "Syrian Arab Republic"
}, {
"statename": "?ims",
"country": "Syrian Arab Republic"
}, {
"statename": "Al ?asakah",
"country": "Syrian Arab Republic"
}, {
"statename": "Al Ladhiqiyah",
"country": "Syrian Arab Republic"
}, {
"statename": "Al Qunaytirah",
"country": "Syrian Arab Republic"
}, {
"statename": "Ar Raqqah",
"country": "Syrian Arab Republic"
}, {
"statename": "As Suwayda'",
"country": "Syrian Arab Republic"
}, {
"statename": "Dar?a",
"country": "Syrian Arab Republic"
}, {
"statename": "Dayr az Zawr",
"country": "Syrian Arab Republic"
}, {
"statename": "Dimashq",
"country": "Syrian Arab Republic"
}, {
"statename": "Idlib",
"country": "Syrian Arab Republic"
}, {
"statename": "Rif Dimashq",
"country": "Syrian Arab Republic"
}, {
"statename": "Tartus",
"country": "Syrian Arab Republic"
}, {
"statename": "Changhua",
"country": "Taiwan, Province Of China"
}, {
"statename": "Chiayi",
"country": "Taiwan, Province Of China"
}, {
"statename": "Chiayi Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Hsinchu",
"country": "Taiwan, Province Of China"
}, {
"statename": "Hsinchu Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Hualien",
"country": "Taiwan, Province Of China"
}, {
"statename": "Ilan",
"country": "Taiwan, Province Of China"
}, {
"statename": "Kaohsiung",
"country": "Taiwan, Province Of China"
}, {
"statename": "Kaohsiung Special Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Keelung Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Miaoli",
"country": "Taiwan, Province Of China"
}, {
"statename": "Nantou",
"country": "Taiwan, Province Of China"
}, {
"statename": "Penghu",
"country": "Taiwan, Province Of China"
}, {
"statename": "Pingtung",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taichung",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taichung Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Tainan",
"country": "Taiwan, Province Of China"
}, {
"statename": "Tainan Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taipei",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taipei Special Municipality",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taitung",
"country": "Taiwan, Province Of China"
}, {
"statename": "Taoyuan",
"country": "Taiwan, Province Of China"
}, {
"statename": "Yunlin",
"country": "Taiwan, Province Of China"
}, {
"statename": "Dushambe, Dushanbe, Dušanbe, Dü?anbey",
"country": "Tajikistan"
}, {
"statename": "Gorno-Badakhshan",
"country": "Tajikistan"
}, {
"statename": "Khatlon",
"country": "Tajikistan"
}, {
"statename": "Sughd",
"country": "Tajikistan"
}, {
"statename": "Arusha",
"country": "Tanzania, United Republic of"
}, {
"statename": "Dar es Salaam",
"country": "Tanzania, United Republic of"
}, {
"statename": "Dodoma",
"country": "Tanzania, United Republic of"
}, {
"statename": "Iringa",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kagera",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kaskazini Pemba",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kaskazini Unguja",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kigoma",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kilimanjaro",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kusini Pemba",
"country": "Tanzania, United Republic of"
}, {
"statename": "Kusini Unguja",
"country": "Tanzania, United Republic of"
}, {
"statename": "Lindi",
"country": "Tanzania, United Republic of"
}, {
"statename": "Manyara",
"country": "Tanzania, United Republic of"
}, {
"statename": "Mara",
"country": "Tanzania, United Republic of"
}, {
"statename": "Mbeya",
"country": "Tanzania, United Republic of"
}, {
"statename": "Mjini Magharibi",
"country": "Tanzania, United Republic of"
}, {
"statename": "Morogoro",
"country": "Tanzania, United Republic of"
}, {
"statename": "Mtwara",
"country": "Tanzania, United Republic of"
}, {
"statename": "Mwanza",
"country": "Tanzania, United Republic of"
}, {
"statename": "Pwani",
"country": "Tanzania, United Republic of"
}, {
"statename": "Rukwa",
"country": "Tanzania, United Republic of"
}, {
"statename": "Ruvuma",
"country": "Tanzania, United Republic of"
}, {
"statename": "Shinyanga",
"country": "Tanzania, United Republic of"
}, {
"statename": "Singida",
"country": "Tanzania, United Republic of"
}, {
"statename": "Tabora",
"country": "Tanzania, United Republic of"
}, {
"statename": "Tanga",
"country": "Tanzania, United Republic of"
}, {
"statename": "Amnat Charoen",
"country": "Thailand"
}, {
"statename": "Ang Thong",
"country": "Thailand"
}, {
"statename": "Buri Ram",
"country": "Thailand"
}, {
"statename": "Chachoengsao",
"country": "Thailand"
}, {
"statename": "Chai Nat",
"country": "Thailand"
}, {
"statename": "Chaiyaphum",
"country": "Thailand"
}, {
"statename": "Chanthaburi",
"country": "Thailand"
}, {
"statename": "Chiang Mai",
"country": "Thailand"
}, {
"statename": "Chiang Rai",
"country": "Thailand"
}, {
"statename": "Chon Buri",
"country": "Thailand"
}, {
"statename": "Chumphon",
"country": "Thailand"
}, {
"statename": "Kalasin",
"country": "Thailand"
}, {
"statename": "Kamphaeng Phet",
"country": "Thailand"
}, {
"statename": "Kanchanaburi",
"country": "Thailand"
}, {
"statename": "Khon Kaen",
"country": "Thailand"
}, {
"statename": "Krabi",
"country": "Thailand"
}, {
"statename": "Krung Thep Maha Nakhon [Bangkok]",
"country": "Thailand"
}, {
"statename": "Lampang",
"country": "Thailand"
}, {
"statename": "Lamphun",
"country": "Thailand"
}, {
"statename": "Loei",
"country": "Thailand"
}, {
"statename": "Lop Buri",
"country": "Thailand"
}, {
"statename": "Mae Hong Son",
"country": "Thailand"
}, {
"statename": "Maha Sarakham",
"country": "Thailand"
}, {
"statename": "Mukdahan",
"country": "Thailand"
}, {
"statename": "Nakhon Nayok",
"country": "Thailand"
}, {
"statename": "Nakhon Pathom",
"country": "Thailand"
}, {
"statename": "Nakhon Phanom",
"country": "Thailand"
}, {
"statename": "Nakhon Ratchasima",
"country": "Thailand"
}, {
"statename": "Nakhon Sawan",
"country": "Thailand"
}, {
"statename": "Nakhon Si Thammarat",
"country": "Thailand"
}, {
"statename": "Nan",
"country": "Thailand"
}, {
"statename": "Narathiwat",
"country": "Thailand"
}, {
"statename": "Nong Bua Lam Phu",
"country": "Thailand"
}, {
"statename": "Nong Khai",
"country": "Thailand"
}, {
"statename": "Nonthaburi",
"country": "Thailand"
}, {
"statename": "Pathum Thani",
"country": "Thailand"
}, {
"statename": "Pattani",
"country": "Thailand"
}, {
"statename": "Phangnga",
"country": "Thailand"
}, {
"statename": "Phatthalung",
"country": "Thailand"
}, {
"statename": "Phatthaya",
"country": "Thailand"
}, {
"statename": "Phayao",
"country": "Thailand"
}, {
"statename": "Phetchabun",
"country": "Thailand"
}, {
"statename": "Phetchaburi",
"country": "Thailand"
}, {
"statename": "Phichit",
"country": "Thailand"
}, {
"statename": "Phitsanulok",
"country": "Thailand"
}, {
"statename": "Phra Nakhon Si Ayutthaya",
"country": "Thailand"
}, {
"statename": "Phrae",
"country": "Thailand"
}, {
"statename": "Phuket",
"country": "Thailand"
}, {
"statename": "Prachin Buri",
"country": "Thailand"
}, {
"statename": "Prachuap Khiri Khan",
"country": "Thailand"
}, {
"statename": "Ranong",
"country": "Thailand"
}, {
"statename": "Ratchaburi",
"country": "Thailand"
}, {
"statename": "Rayong",
"country": "Thailand"
}, {
"statename": "Roi Et",
"country": "Thailand"
}, {
"statename": "Sa Kaeo",
"country": "Thailand"
}, {
"statename": "Sakon Nakhon",
"country": "Thailand"
}, {
"statename": "Samut Prakan",
"country": "Thailand"
}, {
"statename": "Samut Sakhon",
"country": "Thailand"
}, {
"statename": "Samut Songkhram",
"country": "Thailand"
}, {
"statename": "Saraburi",
"country": "Thailand"
}, {
"statename": "Satun",
"country": "Thailand"
}, {
"statename": "Si Sa Ket",
"country": "Thailand"
}, {
"statename": "Sing Buri",
"country": "Thailand"
}, {
"statename": "Songkhla",
"country": "Thailand"
}, {
"statename": "Sukhothai",
"country": "Thailand"
}, {
"statename": "Suphan Buri",
"country": "Thailand"
}, {
"statename": "Surat Thani",
"country": "Thailand"
}, {
"statename": "Surin",
"country": "Thailand"
}, {
"statename": "Tak",
"country": "Thailand"
}, {
"statename": "Trang",
"country": "Thailand"
}, {
"statename": "Trat",
"country": "Thailand"
}, {
"statename": "Ubon Ratchathani",
"country": "Thailand"
}, {
"statename": "Udon Thani",
"country": "Thailand"
}, {
"statename": "Uthai Thani",
"country": "Thailand"
}, {
"statename": "Uttaradit",
"country": "Thailand"
}, {
"statename": "Yala",
"country": "Thailand"
}, {
"statename": "Yasothon",
"country": "Thailand"
}, {
"statename": "Aileu",
"country": "Timor-Leste"
}, {
"statename": "Ainaro",
"country": "Timor-Leste"
}, {
"statename": "Baucau",
"country": "Timor-Leste"
}, {
"statename": "Bobonaro",
"country": "Timor-Leste"
}, {
"statename": "Cova Lima",
"country": "Timor-Leste"
}, {
"statename": "Dili",
"country": "Timor-Leste"
}, {
"statename": "Ermera",
"country": "Timor-Leste"
}, {
"statename": "Lautem",
"country": "Timor-Leste"
}, {
"statename": "Liquiça",
"country": "Timor-Leste"
}, {
"statename": "Manatuto",
"country": "Timor-Leste"
}, {
"statename": "Manufahi",
"country": "Timor-Leste"
}, {
"statename": "Oecussi",
"country": "Timor-Leste"
}, {
"statename": "Viqueque",
"country": "Timor-Leste"
}, {
"statename": "Centre",
"country": "Togo"
}, {
"statename": "Kara",
"country": "Togo"
}, {
"statename": "Maritime (Région)",
"country": "Togo"
}, {
"statename": "Plateaux",
"country": "Togo"
}, {
"statename": "Savannes",
"country": "Togo"
}, {
"statename": "'Eua",
"country": "Tonga"
}, {
"statename": "Ha'apai",
"country": "Tonga"
}, {
"statename": "Niuas",
"country": "Tonga"
}, {
"statename": "Tongatapu",
"country": "Tonga"
}, {
"statename": "Vava'u",
"country": "Tonga"
}, {
"statename": "Arima",
"country": "Trinidad and Tobago"
}, {
"statename": "Chaguanas",
"country": "Trinidad and Tobago"
}, {
"statename": "Couva-Tabaquite-Talparo",
"country": "Trinidad and Tobago"
}, {
"statename": "Diego Martin",
"country": "Trinidad and Tobago"
}, {
"statename": "Eastern Tobago",
"country": "Trinidad and Tobago"
}, {
"statename": "Penal-Debe",
"country": "Trinidad and Tobago"
}, {
"statename": "Point Fortin",
"country": "Trinidad and Tobago"
}, {
"statename": "Port of Spain",
"country": "Trinidad and Tobago"
}, {
"statename": "Princes Town",
"country": "Trinidad and Tobago"
}, {
"statename": "Rio Claro-Mayaro",
"country": "Trinidad and Tobago"
}, {
"statename": "San Fernando",
"country": "Trinidad and Tobago"
}, {
"statename": "San Juan-Laventille",
"country": "Trinidad and Tobago"
}, {
"statename": "Sangre Grande",
"country": "Trinidad and Tobago"
}, {
"statename": "Siparia",
"country": "Trinidad and Tobago"
}, {
"statename": "Tunapuna-Piarco",
"country": "Trinidad and Tobago"
}, {
"statename": "Western Tobago",
"country": "Trinidad and Tobago"
}, {
"statename": "Béja",
"country": "Tunisia"
}, {
"statename": "Ben Arous",
"country": "Tunisia"
}, {
"statename": "Bizerte",
"country": "Tunisia"
}, {
"statename": "Gabès",
"country": "Tunisia"
}, {
"statename": "Gafsa",
"country": "Tunisia"
}, {
"statename": "Jendouba",
"country": "Tunisia"
}, {
"statename": "Kairouan",
"country": "Tunisia"
}, {
"statename": "Kasserine",
"country": "Tunisia"
}, {
"statename": "Kebili",
"country": "Tunisia"
}, {
"statename": "La Manouba",
"country": "Tunisia"
}, {
"statename": "L'Ariana",
"country": "Tunisia"
}, {
"statename": "Le Kef",
"country": "Tunisia"
}, {
"statename": "Mahdia",
"country": "Tunisia"
}, {
"statename": "Medenine",
"country": "Tunisia"
}, {
"statename": "Monastir",
"country": "Tunisia"
}, {
"statename": "Nabeul",
"country": "Tunisia"
}, {
"statename": "Sfax",
"country": "Tunisia"
}, {
"statename": "Sidi Bouzid",
"country": "Tunisia"
}, {
"statename": "Siliana",
"country": "Tunisia"
}, {
"statename": "Sousse",
"country": "Tunisia"
}, {
"statename": "Tataouine",
"country": "Tunisia"
}, {
"statename": "Tozeur",
"country": "Tunisia"
}, {
"statename": "Tunis",
"country": "Tunisia"
}, {
"statename": "Zaghouan",
"country": "Tunisia"
}, {
"statename": "Adana",
"country": "Turkey"
}, {
"statename": "Adiyaman",
"country": "Turkey"
}, {
"statename": "Afyon",
"country": "Turkey"
}, {
"statename": "Agri",
"country": "Turkey"
}, {
"statename": "Aksaray",
"country": "Turkey"
}, {
"statename": "Amasya",
"country": "Turkey"
}, {
"statename": "Ankara",
"country": "Turkey"
}, {
"statename": "Antalya",
"country": "Turkey"
}, {
"statename": "Ardahan",
"country": "Turkey"
}, {
"statename": "Artvin",
"country": "Turkey"
}, {
"statename": "Aydin",
"country": "Turkey"
}, {
"statename": "Balikesir",
"country": "Turkey"
}, {
"statename": "Bartin",
"country": "Turkey"
}, {
"statename": "Batman",
"country": "Turkey"
}, {
"statename": "Bayburt",
"country": "Turkey"
}, {
"statename": "Bilecik",
"country": "Turkey"
}, {
"statename": "Bingöl",
"country": "Turkey"
}, {
"statename": "Bitlis",
"country": "Turkey"
}, {
"statename": "Bolu",
"country": "Turkey"
}, {
"statename": "Burdur",
"country": "Turkey"
}, {
"statename": "Bursa",
"country": "Turkey"
}, {
"statename": "Çanakkale",
"country": "Turkey"
}, {
"statename": "Çankiri",
"country": "Turkey"
}, {
"statename": "Çorum",
"country": "Turkey"
}, {
"statename": "Denizli",
"country": "Turkey"
}, {
"statename": "Diyarbakir",
"country": "Turkey"
}, {
"statename": "Düzce",
"country": "Turkey"
}, {
"statename": "Edirne",
"country": "Turkey"
}, {
"statename": "Elazig",
"country": "Turkey"
}, {
"statename": "Erzincan",
"country": "Turkey"
}, {
"statename": "Erzurum",
"country": "Turkey"
}, {
"statename": "Eskisehir",
"country": "Turkey"
}, {
"statename": "Gaziantep",
"country": "Turkey"
}, {
"statename": "Giresun",
"country": "Turkey"
}, {
"statename": "Gümüshane",
"country": "Turkey"
}, {
"statename": "Hakkâri",
"country": "Turkey"
}, {
"statename": "Hatay",
"country": "Turkey"
}, {
"statename": "Içel",
"country": "Turkey"
}, {
"statename": "Igdir",
"country": "Turkey"
}, {
"statename": "Isparta",
"country": "Turkey"
}, {
"statename": "Istanbul",
"country": "Turkey"
}, {
"statename": "Izmir",
"country": "Turkey"
}, {
"statename": "Kahramanmaras",
"country": "Turkey"
}, {
"statename": "Karabük",
"country": "Turkey"
}, {
"statename": "Karaman",
"country": "Turkey"
}, {
"statename": "Kars",
"country": "Turkey"
}, {
"statename": "Kastamonu",
"country": "Turkey"
}, {
"statename": "Kayseri",
"country": "Turkey"
}, {
"statename": "Kilis",
"country": "Turkey"
}, {
"statename": "Kirikkale",
"country": "Turkey"
}, {
"statename": "Kirklareli",
"country": "Turkey"
}, {
"statename": "Kirsehir",
"country": "Turkey"
}, {
"statename": "Kocaeli",
"country": "Turkey"
}, {
"statename": "Konya",
"country": "Turkey"
}, {
"statename": "Kütahya",
"country": "Turkey"
}, {
"statename": "Malatya",
"country": "Turkey"
}, {
"statename": "Manisa",
"country": "Turkey"
}, {
"statename": "Mardin",
"country": "Turkey"
}, {
"statename": "Mugla",
"country": "Turkey"
}, {
"statename": "Mus",
"country": "Turkey"
}, {
"statename": "Nevsehir",
"country": "Turkey"
}, {
"statename": "Nigde",
"country": "Turkey"
}, {
"statename": "Ordu",
"country": "Turkey"
}, {
"statename": "Osmaniye",
"country": "Turkey"
}, {
"statename": "Rize",
"country": "Turkey"
}, {
"statename": "Sakarya",
"country": "Turkey"
}, {
"statename": "Samsun",
"country": "Turkey"
}, {
"statename": "Sanliurfa",
"country": "Turkey"
}, {
"statename": "Siirt",
"country": "Turkey"
}, {
"statename": "Sinop",
"country": "Turkey"
}, {
"statename": "Sirnak",
"country": "Turkey"
}, {
"statename": "Sivas",
"country": "Turkey"
}, {
"statename": "Tekirdag",
"country": "Turkey"
}, {
"statename": "Tokat",
"country": "Turkey"
}, {
"statename": "Trabzon",
"country": "Turkey"
}, {
"statename": "Tunceli",
"country": "Turkey"
}, {
"statename": "Usak",
"country": "Turkey"
}, {
"statename": "Van",
"country": "Turkey"
}, {
"statename": "Yalova",
"country": "Turkey"
}, {
"statename": "Yozgat",
"country": "Turkey"
}, {
"statename": "Zonguldak",
"country": "Turkey"
}, {
"statename": "Ahal",
"country": "Turkmenistan"
}, {
"statename": "Ashgabat, A?kabat",
"country": "Turkmenistan"
}, {
"statename": "Balkan",
"country": "Turkmenistan"
}, {
"statename": "Dasoguz",
"country": "Turkmenistan"
}, {
"statename": "Lebap",
"country": "Turkmenistan"
}, {
"statename": "Mary",
"country": "Turkmenistan"
}, {
"statename": "Funafuti",
"country": "Tuvalu"
}, {
"statename": "Nanumanga",
"country": "Tuvalu"
}, {
"statename": "Nanumea",
"country": "Tuvalu"
}, {
"statename": "Niutao",
"country": "Tuvalu"
}, {
"statename": "Nui",
"country": "Tuvalu"
}, {
"statename": "Nukufetau",
"country": "Tuvalu"
}, {
"statename": "Nukulaelae",
"country": "Tuvalu"
}, {
"statename": "Vaitupu",
"country": "Tuvalu"
}, {
"statename": "Abim",
"country": "Uganda"
}, {
"statename": "Adjumani",
"country": "Uganda"
}, {
"statename": "Amolatar",
"country": "Uganda"
}, {
"statename": "Amuria",
"country": "Uganda"
}, {
"statename": "Amuru",
"country": "Uganda"
}, {
"statename": "Apac",
"country": "Uganda"
}, {
"statename": "Arua",
"country": "Uganda"
}, {
"statename": "Budaka",
"country": "Uganda"
}, {
"statename": "Bududa",
"country": "Uganda"
}, {
"statename": "Bugiri",
"country": "Uganda"
}, {
"statename": "Bukedea",
"country": "Uganda"
}, {
"statename": "Bukwa",
"country": "Uganda"
}, {
"statename": "Buliisa",
"country": "Uganda"
}, {
"statename": "Bundibugyo",
"country": "Uganda"
}, {
"statename": "Bushenyi",
"country": "Uganda"
}, {
"statename": "Busia",
"country": "Uganda"
}, {
"statename": "Butaleja",
"country": "Uganda"
}, {
"statename": "Dokolo",
"country": "Uganda"
}, {
"statename": "Gulu",
"country": "Uganda"
}, {
"statename": "Hoima",
"country": "Uganda"
}, {
"statename": "Ibanda",
"country": "Uganda"
}, {
"statename": "Iganga",
"country": "Uganda"
}, {
"statename": "Isingiro",
"country": "Uganda"
}, {
"statename": "Jinja",
"country": "Uganda"
}, {
"statename": "Kaabong",
"country": "Uganda"
}, {
"statename": "Kabale",
"country": "Uganda"
}, {
"statename": "Kabarole",
"country": "Uganda"
}, {
"statename": "Kaberamaido",
"country": "Uganda"
}, {
"statename": "Kalangala",
"country": "Uganda"
}, {
"statename": "Kaliro",
"country": "Uganda"
}, {
"statename": "Kampala",
"country": "Uganda"
}, {
"statename": "Kamuli",
"country": "Uganda"
}, {
"statename": "Kamwenge",
"country": "Uganda"
}, {
"statename": "Kanungu",
"country": "Uganda"
}, {
"statename": "Kapchorwa",
"country": "Uganda"
}, {
"statename": "Kasese",
"country": "Uganda"
}, {
"statename": "Katakwi",
"country": "Uganda"
}, {
"statename": "Kayunga",
"country": "Uganda"
}, {
"statename": "Kibaale",
"country": "Uganda"
}, {
"statename": "Kiboga",
"country": "Uganda"
}, {
"statename": "Kiruhura",
"country": "Uganda"
}, {
"statename": "Kisoro",
"country": "Uganda"
}, {
"statename": "Kitgum",
"country": "Uganda"
}, {
"statename": "Koboko",
"country": "Uganda"
}, {
"statename": "Kotido",
"country": "Uganda"
}, {
"statename": "Kumi",
"country": "Uganda"
}, {
"statename": "Kyenjojo",
"country": "Uganda"
}, {
"statename": "Lira",
"country": "Uganda"
}, {
"statename": "Luwero",
"country": "Uganda"
}, {
"statename": "Lyantonde",
"country": "Uganda"
}, {
"statename": "Manafwa",
"country": "Uganda"
}, {
"statename": "Maracha",
"country": "Uganda"
}, {
"statename": "Masaka",
"country": "Uganda"
}, {
"statename": "Masindi",
"country": "Uganda"
}, {
"statename": "Mayuge",
"country": "Uganda"
}, {
"statename": "Mbale",
"country": "Uganda"
}, {
"statename": "Mbarara",
"country": "Uganda"
}, {
"statename": "Mityana",
"country": "Uganda"
}, {
"statename": "Moroto",
"country": "Uganda"
}, {
"statename": "Moyo",
"country": "Uganda"
}, {
"statename": "Mpigi",
"country": "Uganda"
}, {
"statename": "Mubende",
"country": "Uganda"
}, {
"statename": "Mukono",
"country": "Uganda"
}, {
"statename": "Nakapiripirit",
"country": "Uganda"
}, {
"statename": "Nakaseke",
"country": "Uganda"
}, {
"statename": "Nakasongola",
"country": "Uganda"
}, {
"statename": "Namutumba",
"country": "Uganda"
}, {
"statename": "Nebbi",
"country": "Uganda"
}, {
"statename": "Ntungamo",
"country": "Uganda"
}, {
"statename": "Oyam",
"country": "Uganda"
}, {
"statename": "Pader",
"country": "Uganda"
}, {
"statename": "Pallisa",
"country": "Uganda"
}, {
"statename": "Rakai",
"country": "Uganda"
}, {
"statename": "Rukungiri",
"country": "Uganda"
}, {
"statename": "Sembabule",
"country": "Uganda"
}, {
"statename": "Sironko",
"country": "Uganda"
}, {
"statename": "Soroti",
"country": "Uganda"
}, {
"statename": "Tororo",
"country": "Uganda"
}, {
"statename": "Wakiso",
"country": "Uganda"
}, {
"statename": "Yumbe",
"country": "Uganda"
}, {
"statename": "Cherkas'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Chernihivs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Chernivets'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Dnipropetrovs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Donets'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Ivano-Frankivs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Kharkivs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Khersons'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Khmel'nyts'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Kirovohrads'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Kyïv",
"country": "Ukraine"
}, {
"statename": "Kyïvs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Luhans'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "L'vivs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Mykolaïvs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Odes'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Poltavs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Respublika Krym",
"country": "Ukraine"
}, {
"statename": "Rivnens'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Sevastopol'",
"country": "Ukraine"
}, {
"statename": "Sums'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Ternopil's'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Vinnyts'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Volyns'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Zakarpats'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Zaporiz'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Zhytomyrs'ka Oblast'",
"country": "Ukraine"
}, {
"statename": "Abu Z¸aby [Abu Dhabi]",
"country": "United Arab Emirates"
}, {
"statename": "Ajman",
"country": "United Arab Emirates"
}, {
"statename": "Al Fujayrah",
"country": "United Arab Emirates"
}, {
"statename": "Ash Shariqah [Sharjah]",
"country": "United Arab Emirates"
}, {
"statename": "Dubayy [Dubai]",
"country": "United Arab Emirates"
}, {
"statename": "Ra’s al Khaymah",
"country": "United Arab Emirates"
}, {
"statename": "Umm al Qaywayn",
"country": "United Arab Emirates"
}, {
"statename": "Aberdeen City",
"country": "United Kingdom"
}, {
"statename": "Aberdeenshire",
"country": "United Kingdom"
}, {
"statename": "Angus",
"country": "United Kingdom"
}, {
"statename": "Antrim",
"country": "United Kingdom"
}, {
"statename": "Ards",
"country": "United Kingdom"
}, {
"statename": "Argyll and Bute",
"country": "United Kingdom"
}, {
"statename": "Armagh",
"country": "United Kingdom"
}, {
"statename": "Ballymena",
"country": "United Kingdom"
}, {
"statename": "Ballymoney",
"country": "United Kingdom"
}, {
"statename": "Banbridge",
"country": "United Kingdom"
}, {
"statename": "Barking and Dagenham",
"country": "United Kingdom"
}, {
"statename": "Barnet",
"country": "United Kingdom"
}, {
"statename": "Barnsley",
"country": "United Kingdom"
}, {
"statename": "Bath and North East Somerset",
"country": "United Kingdom"
}, {
"statename": "Bedfordshire",
"country": "United Kingdom"
}, {
"statename": "Belfast",
"country": "United Kingdom"
}, {
"statename": "Bexley",
"country": "United Kingdom"
}, {
"statename": "Birmingham",
"country": "United Kingdom"
}, {
"statename": "Blackburn with Darwen",
"country": "United Kingdom"
}, {
"statename": "Blackpool",
"country": "United Kingdom"
}, {
"statename": "Blaenau Gwent",
"country": "United Kingdom"
}, {
"statename": "Bolton",
"country": "United Kingdom"
}, {
"statename": "Bournemouth",
"country": "United Kingdom"
}, {
"statename": "Bracknell Forest",
"country": "United Kingdom"
}, {
"statename": "Bradford",
"country": "United Kingdom"
}, {
"statename": "Brent",
"country": "United Kingdom"
}, {
"statename": "Bridgend [Pen-y-bont ar Ogwr GB-POG]",
"country": "United Kingdom"
}, {
"statename": "Brighton and Hove",
"country": "United Kingdom"
}, {
"statename": "Bristol, City of",
"country": "United Kingdom"
}, {
"statename": "Bromley",
"country": "United Kingdom"
}, {
"statename": "Buckinghamshire",
"country": "United Kingdom"
}, {
"statename": "Bury",
"country": "United Kingdom"
}, {
"statename": "Caerphilly [Caerffili GB-CAF]",
"country": "United Kingdom"
}, {
"statename": "Calderdale",
"country": "United Kingdom"
}, {
"statename": "Cambridgeshire",
"country": "United Kingdom"
}, {
"statename": "Camden",
"country": "United Kingdom"
}, {
"statename": "Cardiff [Caerdydd GB-CRD]",
"country": "United Kingdom"
}, {
"statename": "Carmarthenshire [Sir Gaerfyrddin GB-GFY]",
"country": "United Kingdom"
}, {
"statename": "Carrickfergus",
"country": "United Kingdom"
}, {
"statename": "Castlereagh",
"country": "United Kingdom"
}, {
"statename": "Ceredigion [Sir Ceredigion]",
"country": "United Kingdom"
}, {
"statename": "Cheshire",
"country": "United Kingdom"
}, {
"statename": "Clackmannanshire",
"country": "United Kingdom"
}, {
"statename": "Coleraine",
"country": "United Kingdom"
}, {
"statename": "Conwy",
"country": "United Kingdom"
}, {
"statename": "Cookstown",
"country": "United Kingdom"
}, {
"statename": "Cornwall",
"country": "United Kingdom"
}, {
"statename": "Coventry",
"country": "United Kingdom"
}, {
"statename": "Craigavon",
"country": "United Kingdom"
}, {
"statename": "Croydon",
"country": "United Kingdom"
}, {
"statename": "Cumbria",
"country": "United Kingdom"
}, {
"statename": "Darlington",
"country": "United Kingdom"
}, {
"statename": "Denbighshire [Sir Ddinbych GB-DDB]",
"country": "United Kingdom"
}, {
"statename": "Derby",
"country": "United Kingdom"
}, {
"statename": "Derbyshire",
"country": "United Kingdom"
}, {
"statename": "Derry",
"country": "United Kingdom"
}, {
"statename": "Devon",
"country": "United Kingdom"
}, {
"statename": "Doncaster",
"country": "United Kingdom"
}, {
"statename": "Dorset",
"country": "United Kingdom"
}, {
"statename": "Down",
"country": "United Kingdom"
}, {
"statename": "Dudley",
"country": "United Kingdom"
}, {
"statename": "Dumfries and Galloway",
"country": "United Kingdom"
}, {
"statename": "Dundee City",
"country": "United Kingdom"
}, {
"statename": "Dungannon",
"country": "United Kingdom"
}, {
"statename": "Durham",
"country": "United Kingdom"
}, {
"statename": "Ealing",
"country": "United Kingdom"
}, {
"statename": "East Ayrshire",
"country": "United Kingdom"
}, {
"statename": "East Dunbartonshire",
"country": "United Kingdom"
}, {
"statename": "East Lothian",
"country": "United Kingdom"
}, {
"statename": "East Renfrewshire",
"country": "United Kingdom"
}, {
"statename": "East Riding of Yorkshire",
"country": "United Kingdom"
}, {
"statename": "East Sussex",
"country": "United Kingdom"
}, {
"statename": "Edinburgh, City of",
"country": "United Kingdom"
}, {
"statename": "Eilean Siar",
"country": "United Kingdom"
}, {
"statename": "Enfield",
"country": "United Kingdom"
}, {
"statename": "Essex",
"country": "United Kingdom"
}, {
"statename": "Falkirk",
"country": "United Kingdom"
}, {
"statename": "Fermanagh",
"country": "United Kingdom"
}, {
"statename": "Fife",
"country": "United Kingdom"
}, {
"statename": "Flintshire [Sir y Fflint GB-FFL]",
"country": "United Kingdom"
}, {
"statename": "Gateshead",
"country": "United Kingdom"
}, {
"statename": "Glasgow City",
"country": "United Kingdom"
}, {
"statename": "Gloucestershire",
"country": "United Kingdom"
}, {
"statename": "Greenwich",
"country": "United Kingdom"
}, {
"statename": "Gwynedd",
"country": "United Kingdom"
}, {
"statename": "Hackney",
"country": "United Kingdom"
}, {
"statename": "Halton",
"country": "United Kingdom"
}, {
"statename": "Hammersmith and Fulham",
"country": "United Kingdom"
}, {
"statename": "Hampshire",
"country": "United Kingdom"
}, {
"statename": "Haringey",
"country": "United Kingdom"
}, {
"statename": "Harrow",
"country": "United Kingdom"
}, {
"statename": "Hartlepool",
"country": "United Kingdom"
}, {
"statename": "Havering",
"country": "United Kingdom"
}, {
"statename": "Herefordshire, County of",
"country": "United Kingdom"
}, {
"statename": "Hertfordshire",
"country": "United Kingdom"
}, {
"statename": "Highland",
"country": "United Kingdom"
}, {
"statename": "Hillingdon",
"country": "United Kingdom"
}, {
"statename": "Hounslow",
"country": "United Kingdom"
}, {
"statename": "Inverclyde",
"country": "United Kingdom"
}, {
"statename": "Isle of Anglesey [Sir Ynys Môn GB-YNM]",
"country": "United Kingdom"
}, {
"statename": "Isle of Wight",
"country": "United Kingdom"
}, {
"statename": "Isles of Scilly",
"country": "United Kingdom"
}, {
"statename": "Islington",
"country": "United Kingdom"
}, {
"statename": "Kensington and Chelsea",
"country": "United Kingdom"
}, {
"statename": "Kent",
"country": "United Kingdom"
}, {
"statename": "Kingston upon Hull, City of",
"country": "United Kingdom"
}, {
"statename": "Kingston upon Thames",
"country": "United Kingdom"
}, {
"statename": "Kirklees",
"country": "United Kingdom"
}, {
"statename": "Knowsley",
"country": "United Kingdom"
}, {
"statename": "Lambeth",
"country": "United Kingdom"
}, {
"statename": "Lancashire",
"country": "United Kingdom"
}, {
"statename": "Larne",
"country": "United Kingdom"
}, {
"statename": "Leeds",
"country": "United Kingdom"
}, {
"statename": "Leicester",
"country": "United Kingdom"
}, {
"statename": "Leicestershire",
"country": "United Kingdom"
}, {
"statename": "Lewisham",
"country": "United Kingdom"
}, {
"statename": "Limavady",
"country": "United Kingdom"
}, {
"statename": "Lincolnshire",
"country": "United Kingdom"
}, {
"statename": "Lisburn",
"country": "United Kingdom"
}, {
"statename": "Liverpool",
"country": "United Kingdom"
}, {
"statename": "London, City of",
"country": "United Kingdom"
}, {
"statename": "Luton",
"country": "United Kingdom"
}, {
"statename": "Magherafelt",
"country": "United Kingdom"
}, {
"statename": "Manchester",
"country": "United Kingdom"
}, {
"statename": "Medway",
"country": "United Kingdom"
}, {
"statename": "Merthyr Tydfil [Merthyr Tudful GB-MTU]",
"country": "United Kingdom"
}, {
"statename": "Merton",
"country": "United Kingdom"
}, {
"statename": "Middlesbrough",
"country": "United Kingdom"
}, {
"statename": "Midlothian",
"country": "United Kingdom"
}, {
"statename": "Milton Keynes",
"country": "United Kingdom"
}, {
"statename": "Monmouthshire [Sir Fynwy GB-FYN]",
"country": "United Kingdom"
}, {
"statename": "Moray",
"country": "United Kingdom"
}, {
"statename": "Moyle",
"country": "United Kingdom"
}, {
"statename": "Neath Port Talbot [Castell-nedd Port Talbot GB-CTL]",
"country": "United Kingdom"
}, {
"statename": "Newcastle upon Tyne",
"country": "United Kingdom"
}, {
"statename": "Newham",
"country": "United Kingdom"
}, {
"statename": "Newport [Casnewydd GB-CNW]",
"country": "United Kingdom"
}, {
"statename": "Newry and Mourne",
"country": "United Kingdom"
}, {
"statename": "Newtownabbey",
"country": "United Kingdom"
}, {
"statename": "Norfolk",
"country": "United Kingdom"
}, {
"statename": "North Ayrshire",
"country": "United Kingdom"
}, {
"statename": "North Down",
"country": "United Kingdom"
}, {
"statename": "North East Lincolnshire",
"country": "United Kingdom"
}, {
"statename": "North Lanarkshire",
"country": "United Kingdom"
}, {
"statename": "North Lincolnshire",
"country": "United Kingdom"
}, {
"statename": "North Somerset",
"country": "United Kingdom"
}, {
"statename": "North Tyneside",
"country": "United Kingdom"
}, {
"statename": "North Yorkshire",
"country": "United Kingdom"
}, {
"statename": "Northamptonshire",
"country": "United Kingdom"
}, {
"statename": "Northumberland",
"country": "United Kingdom"
}, {
"statename": "Nottingham",
"country": "United Kingdom"
}, {
"statename": "Nottinghamshire",
"country": "United Kingdom"
}, {
"statename": "Oldham",
"country": "United Kingdom"
}, {
"statename": "Omagh",
"country": "United Kingdom"
}, {
"statename": "Orkney Islands",
"country": "United Kingdom"
}, {
"statename": "Oxfordshire",
"country": "United Kingdom"
}, {
"statename": "Pembrokeshire [Sir Benfro GB-BNF]",
"country": "United Kingdom"
}, {
"statename": "Perth and Kinross",
"country": "United Kingdom"
}, {
"statename": "Peterborough",
"country": "United Kingdom"
}, {
"statename": "Plymouth",
"country": "United Kingdom"
}, {
"statename": "Poole",
"country": "United Kingdom"
}, {
"statename": "Portsmouth",
"country": "United Kingdom"
}, {
"statename": "Powys",
"country": "United Kingdom"
}, {
"statename": "Reading",
"country": "United Kingdom"
}, {
"statename": "Redbridge",
"country": "United Kingdom"
}, {
"statename": "Redcar and Cleveland",
"country": "United Kingdom"
}, {
"statename": "Renfrewshire",
"country": "United Kingdom"
}, {
"statename": "Rhondda, Cynon, Taff [Rhondda, Cynon,Taf]",
"country": "United Kingdom"
}, {
"statename": "Richmond upon Thames",
"country": "United Kingdom"
}, {
"statename": "Rochdale",
"country": "United Kingdom"
}, {
"statename": "Rotherham",
"country": "United Kingdom"
}, {
"statename": "Rutland",
"country": "United Kingdom"
}, {
"statename": "Salford",
"country": "United Kingdom"
}, {
"statename": "Sandwell",
"country": "United Kingdom"
}, {
"statename": "Scottish Borders, The",
"country": "United Kingdom"
}, {
"statename": "Sefton",
"country": "United Kingdom"
}, {
"statename": "Sheffield",
"country": "United Kingdom"
}, {
"statename": "Shetland Islands",
"country": "United Kingdom"
}, {
"statename": "Shropshire",
"country": "United Kingdom"
}, {
"statename": "Slough",
"country": "United Kingdom"
}, {
"statename": "Solihull",
"country": "United Kingdom"
}, {
"statename": "Somerset",
"country": "United Kingdom"
}, {
"statename": "South Ayrshire",
"country": "United Kingdom"
}, {
"statename": "South Gloucestershire",
"country": "United Kingdom"
}, {
"statename": "South Lanarkshire",
"country": "United Kingdom"
}, {
"statename": "South Tyneside",
"country": "United Kingdom"
}, {
"statename": "Southampton",
"country": "United Kingdom"
}, {
"statename": "Southend-on-Sea",
"country": "United Kingdom"
}, {
"statename": "Southwark",
"country": "United Kingdom"
}, {
"statename": "St. Helens",
"country": "United Kingdom"
}, {
"statename": "Staffordshire",
"country": "United Kingdom"
}, {
"statename": "Stirling",
"country": "United Kingdom"
}, {
"statename": "Stockport",
"country": "United Kingdom"
}, {
"statename": "Stockton-on-Tees",
"country": "United Kingdom"
}, {
"statename": "Stoke-on-Trent",
"country": "United Kingdom"
}, {
"statename": "Strabane",
"country": "United Kingdom"
}, {
"statename": "Suffolk",
"country": "United Kingdom"
}, {
"statename": "Sunderland",
"country": "United Kingdom"
}, {
"statename": "Surrey",
"country": "United Kingdom"
}, {
"statename": "Sutton",
"country": "United Kingdom"
}, {
"statename": "Swansea [Abertawe GB-ATA]",
"country": "United Kingdom"
}, {
"statename": "Swindon",
"country": "United Kingdom"
}, {
"statename": "Tameside",
"country": "United Kingdom"
}, {
"statename": "Telford and Wrekin",
"country": "United Kingdom"
}, {
"statename": "Thurrock",
"country": "United Kingdom"
}, {
"statename": "Torbay",
"country": "United Kingdom"
}, {
"statename": "Torfaen [Tor-faen]",
"country": "United Kingdom"
}, {
"statename": "Tower Hamlets",
"country": "United Kingdom"
}, {
"statename": "Trafford",
"country": "United Kingdom"
}, {
"statename": "Vale of Glamorgan, The [Bro Morgannwg GB-BMG]",
"country": "United Kingdom"
}, {
"statename": "Wakefield",
"country": "United Kingdom"
}, {
"statename": "Walsall",
"country": "United Kingdom"
}, {
"statename": "Waltham Forest",
"country": "United Kingdom"
}, {
"statename": "Wandsworth",
"country": "United Kingdom"
}, {
"statename": "Warrington",
"country": "United Kingdom"
}, {
"statename": "Warwickshire",
"country": "United Kingdom"
}, {
"statename": "West Berkshire",
"country": "United Kingdom"
}, {
"statename": "West Dunbartonshire",
"country": "United Kingdom"
}, {
"statename": "West Lothian",
"country": "United Kingdom"
}, {
"statename": "West Sussex",
"country": "United Kingdom"
}, {
"statename": "Westminster",
"country": "United Kingdom"
}, {
"statename": "Wigan",
"country": "United Kingdom"
}, {
"statename": "Wiltshire",
"country": "United Kingdom"
}, {
"statename": "Windsor and Maidenhead",
"country": "United Kingdom"
}, {
"statename": "Wirral",
"country": "United Kingdom"
}, {
"statename": "Wokingham",
"country": "United Kingdom"
}, {
"statename": "Wolverhampton",
"country": "United Kingdom"
}, {
"statename": "Worcestershire",
"country": "United Kingdom"
}, {
"statename": "Wrexham [Wrecsam GB-WRC]",
"country": "United Kingdom"
}, {
"statename": "York",
"country": "United Kingdom"
}, {
"statename": "Alabama",
"country": "United States"
}, {
"statename": "Alaska",
"country": "United States"
}, {
"statename": "AMERICAN SAMOA",
"country": "United States"
}, {
"statename": "Arizona",
"country": "United States"
}, {
"statename": "Arkansas",
"country": "United States"
}, {
"statename": "California",
"country": "United States"
}, {
"statename": "Colorado",
"country": "United States"
}, {
"statename": "Connecticut",
"country": "United States"
}, {
"statename": "Delaware",
"country": "United States"
}, {
"statename": "District of Columbia",
"country": "United States"
}, {
"statename": "Florida",
"country": "United States"
}, {
"statename": "Georgia",
"country": "United States"
}, {
"statename": "Guam",
"country": "United States"
}, {
"statename": "Hawaii",
"country": "United States"
}, {
"statename": "Idaho",
"country": "United States"
}, {
"statename": "Illinois",
"country": "United States"
}, {
"statename": "Indiana",
"country": "United States"
}, {
"statename": "Iowa",
"country": "United States"
}, {
"statename": "Kansas",
"country": "United States"
}, {
"statename": "Kentucky",
"country": "United States"
}, {
"statename": "Louisiana",
"country": "United States"
}, {
"statename": "Maine",
"country": "United States"
}, {
"statename": "Maryland",
"country": "United States"
}, {
"statename": "Massachusetts",
"country": "United States"
}, {
"statename": "Michigan",
"country": "United States"
}, {
"statename": "Minnesota",
"country": "United States"
}, {
"statename": "Mississippi",
"country": "United States"
}, {
"statename": "Missouri",
"country": "United States"
}, {
"statename": "Montana",
"country": "United States"
}, {
"statename": "Nebraska",
"country": "United States"
}, {
"statename": "Nevada",
"country": "United States"
}, {
"statename": "New Hampshire",
"country": "United States"
}, {
"statename": "New Jersey",
"country": "United States"
}, {
"statename": "New Mexico",
"country": "United States"
}, {
"statename": "New York",
"country": "United States"
}, {
"statename": "North Carolina",
"country": "United States"
}, {
"statename": "North Dakota",
"country": "United States"
}, {
"statename": "Northern Mariana Islands",
"country": "United States"
}, {
"statename": "Ohio",
"country": "United States"
}, {
"statename": "Oklahoma",
"country": "United States"
}, {
"statename": "Oregon",
"country": "United States"
}, {
"statename": "Pennsylvania",
"country": "United States"
}, {
"statename": "Puerto Rico",
"country": "United States"
}, {
"statename": "Rhode Island",
"country": "United States"
}, {
"statename": "South Carolina",
"country": "United States"
}, {
"statename": "South Dakota",
"country": "United States"
}, {
"statename": "Tennessee",
"country": "United States"
}, {
"statename": "Texas",
"country": "United States"
}, {
"statename": "United States Minor Outlying Islands",
"country": "United States"
}, {
"statename": "Utah",
"country": "United States"
}, {
"statename": "Vermont",
"country": "United States"
}, {
"statename": "Virgin Islands, U.S.",
"country": "United States"
}, {
"statename": "Virginia",
"country": "United States"
}, {
"statename": "Washington",
"country": "United States"
}, {
"statename": "West Virginia",
"country": "United States"
}, {
"statename": "Wisconsin",
"country": "United States"
}, {
"statename": "Wyoming",
"country": "United States"
}, {
"statename": "Baker Island",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Howland Island",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Jarvis Island",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Johnston Atoll",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Kingman Reef",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Midway Islands",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Navassa Island",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Palmyra Atoll",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Wake Island",
"country": "United States Minor Outlying Islands"
}, {
"statename": "Artigas",
"country": "Uruguay"
}, {
"statename": "Durazno",
"country": "Uruguay"
}, {
"statename": "Flores",
"country": "Uruguay"
}, {
"statename": "Florida",
"country": "Uruguay"
}, {
"statename": "Lavalleja",
"country": "Uruguay"
}, {
"statename": "Maldonado",
"country": "Uruguay"
}, {
"statename": "Montevideo",
"country": "Uruguay"
}, {
"statename": "Paysandú",
"country": "Uruguay"
}, {
"statename": "Río Negro",
"country": "Uruguay"
}, {
"statename": "Rivera",
"country": "Uruguay"
}, {
"statename": "Rocha",
"country": "Uruguay"
}, {
"statename": "Salto",
"country": "Uruguay"
}, {
"statename": "San José",
"country": "Uruguay"
}, {
"statename": "Soriano",
"country": "Uruguay"
}, {
"statename": "Tacuarembó",
"country": "Uruguay"
}, {
"statename": "Treinta y Tres",
"country": "Uruguay"
}, {
"statename": "Andijon",
"country": "Uzbekistan"
}, {
"statename": "Buxoro",
"country": "Uzbekistan"
}, {
"statename": "Farg‘ona",
"country": "Uzbekistan"
}, {
"statename": "Jizzax",
"country": "Uzbekistan"
}, {
"statename": "Namangan",
"country": "Uzbekistan"
}, {
"statename": "Navoiy",
"country": "Uzbekistan"
}, {
"statename": "Qashqadaryo",
"country": "Uzbekistan"
}, {
"statename": "Qoraqalpog‘iston Respublikasi",
"country": "Uzbekistan"
}, {
"statename": "Samarqand",
"country": "Uzbekistan"
}, {
"statename": "Sirdaryo",
"country": "Uzbekistan"
}, {
"statename": "Surxondaryo",
"country": "Uzbekistan"
}, {
"statename": "Toshkent",
"country": "Uzbekistan"
}, {
"statename": "Toshkent City",
"country": "Uzbekistan"
}, {
"statename": "Xorazm",
"country": "Uzbekistan"
}, {
"statename": "Malampa",
"country": "Vanuatu"
}, {
"statename": "Pénama",
"country": "Vanuatu"
}, {
"statename": "Sanma",
"country": "Vanuatu"
}, {
"statename": "Shéfa",
"country": "Vanuatu"
}, {
"statename": "Taféa",
"country": "Vanuatu"
}, {
"statename": "Torba",
"country": "Vanuatu"
}, {
"statename": "Amazonas",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Anzoátegui",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Apure",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Aragua",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Barinas",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Bolívar",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Carabobo",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Cojedes",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Delta Amacuro",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Dependencias Federales",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Distrito Federal",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Falcón",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Guárico",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Lara",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Mérida",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Miranda",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Monagas",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Nueva Esparta",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Portuguesa",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Sucre",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Táchira",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Trujillo",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Vargas",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Yaracuy",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "Zulia",
"country": "Venezuela, Bolivarian Republic of"
}, {
"statename": "An Giang",
"country": "Viet Nam"
}, {
"statename": "Ba Ria - Vung Tau",
"country": "Viet Nam"
}, {
"statename": "Bac Can",
"country": "Viet Nam"
}, {
"statename": "Bac Giang",
"country": "Viet Nam"
}, {
"statename": "Bac Lieu",
"country": "Viet Nam"
}, {
"statename": "Bac Ninh",
"country": "Viet Nam"
}, {
"statename": "Ben Tre",
"country": "Viet Nam"
}, {
"statename": "Binh Dinh",
"country": "Viet Nam"
}, {
"statename": "Binh Duong",
"country": "Viet Nam"
}, {
"statename": "Binh Phuoc",
"country": "Viet Nam"
}, {
"statename": "Binh Thuan",
"country": "Viet Nam"
}, {
"statename": "Ca Mau",
"country": "Viet Nam"
}, {
"statename": "Can Tho",
"country": "Viet Nam"
}, {
"statename": "Cao Bang",
"country": "Viet Nam"
}, {
"statename": "Da Nang, thanh pho",
"country": "Viet Nam"
}, {
"statename": "Dac Lac",
"country": "Viet Nam"
}, {
"statename": "Dak Nong",
"country": "Viet Nam"
}, {
"statename": "Dien Bien",
"country": "Viet Nam"
}, {
"statename": "Dong Nai",
"country": "Viet Nam"
}, {
"statename": "Dong Thap",
"country": "Viet Nam"
}, {
"statename": "Gia Lai",
"country": "Viet Nam"
}, {
"statename": "Ha Giang",
"country": "Viet Nam"
}, {
"statename": "Ha Nam",
"country": "Viet Nam"
}, {
"statename": "Ha Noi, thu do",
"country": "Viet Nam"
}, {
"statename": "Ha Tay",
"country": "Viet Nam"
}, {
"statename": "Ha Tinh",
"country": "Viet Nam"
}, {
"statename": "Hai Duong",
"country": "Viet Nam"
}, {
"statename": "Hai Phong, thanh pho",
"country": "Viet Nam"
}, {
"statename": "Hau Giang",
"country": "Viet Nam"
}, {
"statename": "Ho Chi Minh, thanh pho [Sai Gon]",
"country": "Viet Nam"
}, {
"statename": "Hoa Binh",
"country": "Viet Nam"
}, {
"statename": "Hung Yen",
"country": "Viet Nam"
}, {
"statename": "Khanh Hoa",
"country": "Viet Nam"
}, {
"statename": "Kien Giang",
"country": "Viet Nam"
}, {
"statename": "Kon Tum",
"country": "Viet Nam"
}, {
"statename": "Lai Chau",
"country": "Viet Nam"
}, {
"statename": "Lam Dong",
"country": "Viet Nam"
}, {
"statename": "Lang Son",
"country": "Viet Nam"
}, {
"statename": "Lao Cai",
"country": "Viet Nam"
}, {
"statename": "Long An",
"country": "Viet Nam"
}, {
"statename": "Nam Dinh",
"country": "Viet Nam"
}, {
"statename": "Nghe An",
"country": "Viet Nam"
}, {
"statename": "Ninh Binh",
"country": "Viet Nam"
}, {
"statename": "Ninh Thuan",
"country": "Viet Nam"
}, {
"statename": "Phu Tho",
"country": "Viet Nam"
}, {
"statename": "Phu Yen",
"country": "Viet Nam"
}, {
"statename": "Quang Binh",
"country": "Viet Nam"
}, {
"statename": "Quang Nam",
"country": "Viet Nam"
}, {
"statename": "Quang Ngai",
"country": "Viet Nam"
}, {
"statename": "Quang Ninh",
"country": "Viet Nam"
}, {
"statename": "Quang Tri",
"country": "Viet Nam"
}, {
"statename": "Soc Trang",
"country": "Viet Nam"
}, {
"statename": "Son La",
"country": "Viet Nam"
}, {
"statename": "Tay Ninh",
"country": "Viet Nam"
}, {
"statename": "Thai Binh",
"country": "Viet Nam"
}, {
"statename": "Thai Nguyen",
"country": "Viet Nam"
}, {
"statename": "Thanh Hoa",
"country": "Viet Nam"
}, {
"statename": "Thua Thien-Hue",
"country": "Viet Nam"
}, {
"statename": "Tien Giang",
"country": "Viet Nam"
}, {
"statename": "Tra Vinh",
"country": "Viet Nam"
}, {
"statename": "Tuyen Quang",
"country": "Viet Nam"
}, {
"statename": "Vinh Long",
"country": "Viet Nam"
}, {
"statename": "Vinh Phuc",
"country": "Viet Nam"
}, {
"statename": "Yen Bai",
"country": "Viet Nam"
}, {
"statename": "Boujdour",
"country": "Western Sahara"
}, {
"statename": "Es Semara",
"country": "Western Sahara"
}, {
"statename": "Laayoune",
"country": "Western Sahara"
}, {
"statename": "Oued el Dahab",
"country": "Western Sahara"
}, {
"statename": "?Adan",
"country": "Yemen"
}, {
"statename": "?an‘?",
"country": "Yemen"
}, {
"statename": "Abyan",
"country": "Yemen"
}, {
"statename": "Ad D?li‘",
"country": "Yemen"
}, {
"statename": "Al ?udaydah",
"country": "Yemen"
}, {
"statename": "Al Bay?a'",
"country": "Yemen"
}, {
"statename": "Al Jawf",
"country": "Yemen"
}, {
"statename": "Al Mahrah",
"country": "Yemen"
}, {
"statename": "Al Mahwit",
"country": "Yemen"
}, {
"statename": "'Amran",
"country": "Yemen"
}, {
"statename": "Dhamar",
"country": "Yemen"
}, {
"statename": "Hadramawt",
"country": "Yemen"
}, {
"statename": "Hajjah",
"country": "Yemen"
}, {
"statename": "Ibb",
"country": "Yemen"
}, {
"statename": "La?ij",
"country": "Yemen"
}, {
"statename": "Ma'rib",
"country": "Yemen"
}, {
"statename": "Raymah",
"country": "Yemen"
}, {
"statename": "Sa`dah",
"country": "Yemen"
}, {
"statename": "San??",
"country": "Yemen"
}, {
"statename": "Shabwah",
"country": "Yemen"
}, {
"statename": "Ta?izz",
"country": "Yemen"
}, {
"statename": "Central",
"country": "Zambia"
}, {
"statename": "Copperbelt",
"country": "Zambia"
}, {
"statename": "Eastern",
"country": "Zambia"
}, {
"statename": "Luapula",
"country": "Zambia"
}, {
"statename": "Lusaka",
"country": "Zambia"
}, {
"statename": "Northern",
"country": "Zambia"
}, {
"statename": "North-Western",
"country": "Zambia"
}, {
"statename": "Southern",
"country": "Zambia"
}, {
"statename": "Western",
"country": "Zambia"
}, {
"statename": "Bulawayo",
"country": "Zimbabwe"
}, {
"statename": "Harare",
"country": "Zimbabwe"
}, {
"statename": "Manicaland",
"country": "Zimbabwe"
}, {
"statename": "Mashonaland Central",
"country": "Zimbabwe"
}, {
"statename": "Mashonaland East",
"country": "Zimbabwe"
}, {
"statename": "Mashonaland West",
"country": "Zimbabwe"
}, {
"statename": "Masvingo",
"country": "Zimbabwe"
}, {
"statename": "Matabeleland North",
"country": "Zimbabwe"
}, {
"statename": "Matabeleland South",
"country": "Zimbabwe"
}, {
"statename": "Midlands",
"country": "Zimbabwe"
}];
var countriesArray = [{
"countryname": "Afghanistan"
}, {
"countryname": "Åland Islands"
}, {
"countryname": "Albania"
}, {
"countryname": "Algeria"
}, {
"countryname": "American Samoa"
}, {
"countryname": "Andorra"
}, {
"countryname": "Angola"
}, {
"countryname": "Anguilla"
}, {
"countryname": "Antarctica"
}, {
"countryname": "Antigua and Barbuda"
}, {
"countryname": "Argentina"
}, {
"countryname": "Armenia"
}, {
"countryname": "Aruba"
}, {
"countryname": "Australia"
}, {
"countryname": "Austria"
}, {
"countryname": "Azerbaijan"
}, {
"countryname": "Bahamas"
}, {
"countryname": "Bahrain"
}, {
"countryname": "Bangladesh"
}, {
"countryname": "Barbados"
}, {
"countryname": "Belarus"
}, {
"countryname": "Belgium"
}, {
"countryname": "Belize"
}, {
"countryname": "Benin"
}, {
"countryname": "Bermuda"
}, {
"countryname": "Bhutan"
}, {
"countryname": "Bolivia, Plurinational State Of"
}, {
"countryname": "Bosnia and Herzegovina"
}, {
"countryname": "Botswana"
}, {
"countryname": "Bouvet Island"
}, {
"countryname": "Brazil"
}, {
"countryname": "British Indian Ocean Territory"
}, {
"countryname": "Brunei Darussalam"
}, {
"countryname": "Bulgaria"
}, {
"countryname": "Burkina Faso"
}, {
"countryname": "Burundi"
}, {
"countryname": "Cambodia"
}, {
"countryname": "Cameroon"
}, {
"countryname": "Canada"
}, {
"countryname": "Cape Verde"
}, {
"countryname": "Cayman Islands"
}, {
"countryname": "Central African Republic"
}, {
"countryname": "Chad"
}, {
"countryname": "Chile"
}, {
"countryname": "China"
}, {
"countryname": "Christmas Island"
}, {
"countryname": "Cocos (Keeling) Islands"
}, {
"countryname": "Colombia"
}, {
"countryname": "Comoros"
}, {
"countryname": "Congo"
}, {
"countryname": "Congo, The Democratic Republic Of The"
}, {
"countryname": "Cook Islands"
}, {
"countryname": "Costa Rica"
}, {
"countryname": "Côte D'Ivoire"
}, {
"countryname": "Croatia"
}, {
"countryname": "Cuba"
}, {
"countryname": "Cyprus"
}, {
"countryname": "Czech Republic"
}, {
"countryname": "Denmark"
}, {
"countryname": "Djibouti"
}, {
"countryname": "Dominica"
}, {
"countryname": "Dominican Republic"
}, {
"countryname": "Ecuador"
}, {
"countryname": "Egypt"
}, {
"countryname": "El Salvador"
}, {
"countryname": "Equatorial Guinea"
}, {
"countryname": "Eritrea"
}, {
"countryname": "Estonia"
}, {
"countryname": "Ethiopia"
}, {
"countryname": "Falkland Islands (Malvinas)"
}, {
"countryname": "Faroe Islands"
}, {
"countryname": "Fiji"
}, {
"countryname": "Finland"
}, {
"countryname": "France"
}, {
"countryname": "French Guiana"
}, {
"countryname": "French Polynesia"
}, {
"countryname": "French Southern Territories"
}, {
"countryname": "Gabon"
}, {
"countryname": "Gambia"
}, {
"countryname": "Georgia"
}, {
"countryname": "Germany"
}, {
"countryname": "Ghana"
}, {
"countryname": "Gibraltar"
}, {
"countryname": "Greece"
}, {
"countryname": "Greenland"
}, {
"countryname": "Grenada"
}, {
"countryname": "Guam"
}, {
"countryname": "Guatemala"
}, {
"countryname": "Guernsey"
}, {
"countryname": "Guinea"
}, {
"countryname": "Guinea-Bissau"
}, {
"countryname": "Guyana"
}, {
"countryname": "Haiti"
}, {
"countryname": "Heard Island and Mcdonald Islands"
}, {
"countryname": "Holy See (Vatican City State)"
}, {
"countryname": "Honduras"
}, {
"countryname": "Hong Kong"
}, {
"countryname": "Hungary"
}, {
"countryname": "Iceland"
}, {
"countryname": "India"
}, {
"countryname": "Indonesia"
}, {
"countryname": "Iran, Islamic Republic Of"
}, {
"countryname": "Iraq"
}, {
"countryname": "Ireland"
}, {
"countryname": "Isle of Man"
}, {
"countryname": "Israel"
}, {
"countryname": "Italy"
}, {
"countryname": "Jamaica"
}, {
"countryname": "Japan"
}, {
"countryname": "Jersey"
}, {
"countryname": "Jordan"
}, {
"countryname": "Kazakhstan"
}, {
"countryname": "Kenya"
}, {
"countryname": "Kiribati"
}, {
"countryname": "Korea, Democratic People's Republic Of"
}, {
"countryname": "Korea, Republic of"
}, {
"countryname": "Kuwait"
}, {
"countryname": "Kyrgyzstan"
}, {
"countryname": "Laos"
}, {
"countryname": "Latvia"
}, {
"countryname": "Lebanon"
}, {
"countryname": "Lesotho"
}, {
"countryname": "Liberia"
}, {
"countryname": "Libya"
}, {
"countryname": "Liechtenstein"
}, {
"countryname": "Lithuania"
}, {
"countryname": "Luxembourg"
}, {
"countryname": "Macau"
}, {
"countryname": "Macedonia"
}, {
"countryname": "Madagascar"
}, {
"countryname": "Malawi"
}, {
"countryname": "Malaysia"
}, {
"countryname": "Maldives"
}, {
"countryname": "Mali"
}, {
"countryname": "Malta"
}, {
"countryname": "Marshall Islands"
}, {
"countryname": "Martinique"
}, {
"countryname": "Mauritania"
}, {
"countryname": "Mauritius"
}, {
"countryname": "Mayotte"
}, {
"countryname": "Mexico"
}, {
"countryname": "Micronesia, Federated States Of"
}, {
"countryname": "Moldova, Republic of"
}, {
"countryname": "Monaco"
}, {
"countryname": "Mongolia"
}, {
"countryname": "Montenegro"
}, {
"countryname": "Montserrat"
}, {
"countryname": "Morocco"
}, {
"countryname": "Mozambique"
}, {
"countryname": "Myanmar"
}, {
"countryname": "Namibia"
}, {
"countryname": "Nauru"
}, {
"countryname": "Nepal"
}, {
"countryname": "Netherlands"
}, {
"countryname": "Netherlands Antilles"
}, {
"countryname": "New Caledonia"
}, {
"countryname": "New Zealand"
}, {
"countryname": "Nicaragua"
}, {
"countryname": "Niger"
}, {
"countryname": "Nigeria"
}, {
"countryname": "Niue"
}, {
"countryname": "Norfolk Island"
}, {
"countryname": "Northern Mariana Islands"
}, {
"countryname": "Norway"
}, {
"countryname": "Oman"
}, {
"countryname": "Pakistan"
}, {
"countryname": "Palau"
}, {
"countryname": "Palestinian Territory, Occupied"
}, {
"countryname": "Panama"
}, {
"countryname": "Papua New Guinea"
}, {
"countryname": "Paraguay"
}, {
"countryname": "Peru"
}, {
"countryname": "Philippines"
}, {
"countryname": "Pitcairn"
}, {
"countryname": "Poland"
}, {
"countryname": "Portugal"
}, {
"countryname": "Puerto Rico"
}, {
"countryname": "Qatar"
}, {
"countryname": "Réunion"
}, {
"countryname": "Romania"
}, {
"countryname": "Russian Federation"
}, {
"countryname": "Rwanda"
}, {
"countryname": "Saint Helena, Ascension and Tristan Da Cunha"
}, {
"countryname": "Saint Kitts And Nevis"
}, {
"countryname": "Saint Lucia"
}, {
"countryname": "Saint Pierre and Miquelon"
}, {
"countryname": "Saint Vincent And The Grenedines"
}, {
"countryname": "Samoa"
}, {
"countryname": "San Marino"
}, {
"countryname": "Sao Tome and Principe"
}, {
"countryname": "Saudi Arabia"
}, {
"countryname": "Senegal"
}, {
"countryname": "Serbia"
}, {
"countryname": "Seychelles"
}, {
"countryname": "Sierra Leone"
}, {
"countryname": "Singapore"
}, {
"countryname": "Slovakia"
}, {
"countryname": "Slovenia"
}, {
"countryname": "Solomon Islands"
}, {
"countryname": "Somalia"
}, {
"countryname": "South Africa"
}, {
"countryname": "South Georgia and The South Sandwich Islands"
}, {
"countryname": "South Sudan"
}, {
"countryname": "Spain"
}, {
"countryname": "Sri Lanka"
}, {
"countryname": "Sudan"
}, {
"countryname": "Suriname"
}, {
"countryname": "Svalbard and Jan Mayen"
}, {
"countryname": "Swaziland"
}, {
"countryname": "Sweden"
}, {
"countryname": "Switzerland"
}, {
"countryname": "Syrian Arab Republic"
}, {
"countryname": "Taiwan, Province Of China"
}, {
"countryname": "Tajikistan"
}, {
"countryname": "Tanzania, United Republic of"
}, {
"countryname": "Thailand"
}, {
"countryname": "Timor-Leste"
}, {
"countryname": "Togo"
}, {
"countryname": "Tokelau"
}, {
"countryname": "Tonga"
}, {
"countryname": "Trinidad and Tobago"
}, {
"countryname": "Tunisia"
}, {
"countryname": "Turkey"
}, {
"countryname": "Turkmenistan"
}, {
"countryname": "Turks and Caicos Islands"
}, {
"countryname": "Tuvalu"
}, {
"countryname": "Uganda"
}, {
"countryname": "Ukraine"
}, {
"countryname": "United Arab Emirates"
}, {
"countryname": "United Kingdom"
}, {
"countryname": "United States"
}, {
"countryname": "United States Minor Outlying Islands"
}, {
"countryname": "Uruguay"
}, {
"countryname": "Uzbekistan"
}, {
"countryname": "Vanuatu"
}, {
"countryname": "Venezuela, Bolivarian Republic of"
}, {
"countryname": "Viet Nam"
}, {
"countryname": "Virgin Islands, British"
}, {
"countryname": "Virgin Islands, U.S."
}, {
"countryname": "Wallis and Futuna"
}, {
"countryname": "Western Sahara"
}, {
"countryname": "Yemen"
}, {
"countryname": "Zambia"
}, {
"countryname": "Zimbabwe"
}]; //]]>
</script>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUJMTE1ODEyOTU4EBYGHg9fX0FudGlYc3JmVG9rZW4FIGQyN2I3OWRiYzZhOTQ2ODM4ZjA4OWU1Y2EwMmI2NzIxHhJfX0FudGlYc3JmVXNlck5hbWUFCUFub255bW91cx4TVmFsaWRhdGVSZXF1ZXN0TW9kZQIBZBYCAgEPFgIeBGxhbmcFAmVuFgQCAQ9kFgICBg9kFghmDxYEHgR0eXBlBQ90ZXh0L2phdmFzY3JpcHQeA3NyYwU6Ly9hamF4Lmdvb2dsZWFwaXMuY29tL2FqYXgvbGlicy9qcXVlcnkvMS45LjEvanF1ZXJ5Lm1pbi5qc2QCAQ8WBB8EBQ90ZXh0L2phdmFzY3JpcHQfBQU/Ly9hamF4Lmdvb2dsZWFwaXMuY29tL2FqYXgvbGlicy9qcXVlcnl1aS8xLjkuMS9qcXVlcnktdWkubWluLmpzZAICDxYEHwQFD3RleHQvamF2YXNjcmlwdB8FBRsvanMvQ3VzdG9tVHJhY2tpbmdTY3JpcHQuanNkAgMPFgQfBAUPdGV4dC9qYXZhc2NyaXB0HwUFJy9TY3JpcHQlMjBMaWJyYXJ5L2Zyb250LWVuZC9mcm9udEVuZC5qc2QCAw9kFgICBQ9kFgoCAw8PFgIeB1Zpc2libGVoZBYCAgEPZBYMAgIPFCsAAmRkZAIEDxQrAAJkZGQCBg8UKwACZGRkAgcPZBYGAgEPEGRkFgBkAgIPEGRkFgFmZAIDDxBkZBYBZmQCCg8UKwACZGRkAgsPFCsAAmRkZAIFDxYCHwZoZAIHD2QWAmYPZBYGZg9kFgRmDxYCHwZoZAIBD2QWAmYPZBYGZg8WAh8GaBYCZg9kFgICBA8PFgIeEENhdXNlc1ZhbGlkYXRpb25oZGQCAQ9kFgICAQ8PFgQeCENzc0NsYXNzBRFDTEhpZXJhcmNoaWNhbE5hdh4EXyFTQgICZBYCBQVjdGwwMA9kFgJmDxYCHgRUZXh0BbgCPHVsIGNsYXNzPSJDTEhpZXJhcmNoaWNhbE5hdiI+PGxpIGNsYXNzPSJmaXJzdCI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuIiB0YXJnZXQ9Il9ibGFuayI+WHlsZW0gQW5hbHl0aWNzPC9hPjwvbGk+PGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9jb21wYW55L25ld3MiIHRhcmdldD0iX2JsYW5rIj5OZXdzPC9hPjwvbGk+PGxpIGNsYXNzPSJsYXN0Ij48YSBocmVmPSJodHRwczovL3d3dy54eWxlbS5jb20vIiB0YXJnZXQ9Il9ibGFuayI+WHlsZW0gSW5jLjwvYT48L2xpPjwvdWw+ZAIFD2QWAmYPFgIfCgXHLTxuYXYgaWQ9Im5hdk1haW4iIHJ1bmF0PSJzZXJ2ZXIiIGNsYXNzPSJuYXZNYWluIj48dWw+DQogICAgPGxpIGNsYXNzPSJoYXNDaGlsZHJlbiAgaXMtbWVnYSBpcy1tZWdhLWNvbCI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzIj5Qcm9kdWN0czwvYT48dWw+DQogICAgICAgIDxkaXYgY2xhc3M9Im1lZ2EtY29udGFpbmVyIj48ZGl2PjxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvYW5hbHl6ZXJzIj5BbmFseXplcnM8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2xhbmRpbmdwYWdlcy9pcS1zZW5zb3ItbmV0Ij5JUSBTRU5TT1IgTkVUIE1lYXN1cmluZyBTeXN0ZW1zPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9veGl0b3AtcmVzcGlyb21ldGVycyI+T3hpVG9wwq4gLSBSZXNwaXJvbWV0ZXJzPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9waC1vcnAtY29uZC1kby1tZXRlcnMtYW5kLXByb2JlcyI+cEgvT1JQLCBDb25kLCBETyBNZXRlcnMgYW5kIFByb2JlczwvYT48L2xpPjwvZGl2PjxkaXY+PGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9waG90b21ldGVycy1hbmQtY29sb3JpbWV0ZXJzIj5QaG90b21ldGVycyBhbmQgQ29sb3JpbWV0ZXJzPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9wcm9jZXNzLWNvbnRyb2xsZXJzLWFuZC1zZW5zb3JzIj5Qcm9jZXNzIENvbnRyb2xsZXJzIGFuZCBTZW5zb3JzPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy90dXJiaWRpbWV0ZXJzL3R1cmJpZGltZXRlcnMtb3ZlcnZpZXciPlR1cmJpZGltZXRlcnM8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzL3dhdGVyLXF1YWxpdHktbW9uaXRvcmluZyI+V2F0ZXIgcXVhbGl0eSBtb25pdG9yaW5nPC9hPjwvbGk+PC9kaXY+PGRpdj48bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzIj5BbGwgUHJvZHVjdHMgKGluY2wuIFNJIEFuYWx5dGljcyBhbmQgQmVsbGluZ2hhbSArIFN0YW5sZXkpPC9hPjwvbGk+PC9kaXY+PC9kaXY+DQogICAgICA8L3VsPg0KICAgIDwvbGk+DQogICAgPGxpIGNsYXNzPSJoYXNDaGlsZHJlbiAgaXMtbWVnYSBpcy1tZWdhLWNvbCI+PGEgaHJlZj0iamF2YXNjcmlwdDp2b2lkKDApIj5BcHBsaWNhdGlvbnM8L2E+PHVsPg0KICAgICAgICA8ZGl2IGNsYXNzPSJtZWdhLWNvbnRhaW5lciI+PGRpdj48bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9hZ3JpY3VsdHVyZSI+QWdyaWN1bHR1cmU8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9hcXVhY3VsdHVyZSI+QXF1YWN1bHR1cmU8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9kcmlua2luZy13YXRlciI+RHJpbmtpbmcgV2F0ZXI8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9lbnZpcm9ubWVudGFsLW1vbml0b3Jpbmctc3VyZmFjZS13YXRlciI+RW52aXJvbm1lbnRhbCBNb25pdG9yaW5nIChTdXJmYWNlIFdhdGVyKTwvYT48L2xpPjwvZGl2PjxkaXY+PGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9hcHBsaWNhdGlvbnMvZm9vZC1hbmQtYmV2ZXJhZ2UiPkZvb2QgYW5kIEJldmVyYWdlcyBTb2x1dGlvbnM8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9pbmR1c3RyeSI+SW5kdXN0cnk8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2FwcGxpY2F0aW9ucy9saWZlLXNjaWVuY2UiPkxpZmUgU2NpZW5jZSAoQmlvdGVjaCBTb2x1dGlvbnMpPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9hcHBsaWNhdGlvbnMvd2FzdGV3YXRlciI+V2FzdGV3YXRlcjwvYT48L2xpPjwvZGl2PjwvZGl2Pg0KICAgICAgPC91bD4NCiAgICA8L2xpPg0KICAgIDxsaSBjbGFzcz0iaGFzQ2hpbGRyZW4gIGlzLW1lZ2EgaXMtbWVnYS1jb2wiPjxhIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKSI+UGFyYW1ldGVyczwvYT48dWw+DQogICAgICAgIDxkaXYgY2xhc3M9Im1lZ2EtY29udGFpbmVyIj48ZGl2PjxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy9hbW1vbml1bSI+QW1tb25pdW08L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3BhcmFtZXRlcnMvYmlvY2hlbWljYWwtb3h5Z2VuLWRlbWFuZC1ib2QiPkJpb2NoZW1pY2FsIE94eWdlbiBEZW1hbmQgLSBCT0Q8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3BhcmFtZXRlcnMvY2hlbWljYWwtb3h5Z2VuLWRlbWFuZC1jb2QiPkNoZW1pY2FsIE94eWdlbiBEZW1hbmQgLSBDT0Q8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3BhcmFtZXRlcnMvY2hsb3JpbmUiPkNobG9yaW5lPC9hPjwvbGk+PC9kaXY+PGRpdj48bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3BhcmFtZXRlcnMvY29uZHVjdGl2aXR5LWFuZC1zYWxpbml0eSI+Q29uZHVjdGl2aXR5IGFuZCBTYWxpbml0eTwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy9kaXNzb2x2ZWQtb3h5Z2VuLWRvIj5EaXNzb2x2ZWQgT3h5Z2VuIChELk8uKTwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy9uaXRyYXRlLW5pdHJpdGUtYW5kLW5veCI+Tml0cmF0ZSwgTml0cml0ZSBhbmQgTk94PC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wYXJhbWV0ZXJzL3BoLWFuZC1vcnAtcmVkb3giPnBoIGFuZCBPUlAtUmVkb3g8L2E+PC9saT48L2Rpdj48ZGl2PjxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy9waG9zcGhhdGUiPlBob3NwaGF0ZTwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy9zbHVkZ2UtbGV2ZWwiPlNsdWRnZSBMZXZlbDwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcGFyYW1ldGVycy90dXJiaWRpdHktYW5kLXRzcyI+VHVyYmlkaXR5IGFuZCBUU1M8L2E+PC9saT48L2Rpdj48L2Rpdj4NCiAgICAgIDwvdWw+DQogICAgPC9saT4NCiAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2N1c3RvbWVyLXN1cHBvcnQvY29udGFjdCI+Q29udGFjdDwvYT48L2xpPg0KICAgIDxsaSBjbGFzcz0iaGFzQ2hpbGRyZW4gIj48YSBocmVmPSJqYXZhc2NyaXB0OnZvaWQoMCkiPlNlcnZpY2U8L2E+PHVsPg0KICAgICAgICA8ZGl2IGNsYXNzPSJtZWdhLWNvbnRhaW5lciI+PGRpdj48bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3NlcnZpY2UvY29udGFjdCI+Q29udGFjdDwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vc2VydmljZS9kb3dubG9hZHMiPkRvd25sb2FkczwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vc2VydmljZS9zZXJ2aWNlLW9yZGVycyI+U2VydmljZSBPcmRlcnM8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cud3R3LmNvbS9lbi9zZXJ2aWNlL2Flby1jZXJ0aWZpY2F0aW9uIj5BRU8gQ2VydGlmaWNhdGlvbjwvYT48L2xpPjwvZGl2PjxkaXY+PGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9jdXN0b21lci1zdXBwb3J0L2NvbXBhbnktY2VydGlmaWNhdGVzIj5Db21wYW55IENlcnRpZmljYXRlczwvYT48L2xpPjwvZGl2PjwvZGl2Pg0KICAgICAgPC91bD4NCiAgICA8L2xpPg0KICAgIDxsaSBjbGFzcz0iaGFzQ2hpbGRyZW4gIj48YSBocmVmPSJqYXZhc2NyaXB0OnZvaWQoMCkiPkNvbXBhbnk8L2E+PHVsPg0KICAgICAgICA8ZGl2IGNsYXNzPSJtZWdhLWNvbnRhaW5lciI+PGRpdj48bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2NvbXBhbnkvbmV3cz9icmFuZD13dHciPk5ld3M8L2E+PC9saT4NCiAgICAgICAgICA8bGkgY2xhc3M9IiI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW0uY29tL2VuLXVzL2NhcmVlcnMvIj5DYXJlZXJzPC9hPjwvbGk+DQogICAgICAgICAgPGxpIGNsYXNzPSIiPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9jb21wYW55L2Fib3V0LXVzIj5BYm91dCB1czwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbS5jb20vc2l0ZWFzc2V0cy9hYm91dC14eWxlbS90cmFuc3BhcmVuY3ktaW4tc3VwcGx5LWNoYWlucy5wZGYiPlRyYW5zcGFyZW5jeSBpbiBTdXBwbHkgQ2hhaW48L2E+PC9saT48L2Rpdj48ZGl2PjxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vY29tcGFueS90cmFkZS1zaG93cy1hbmQtc2VtaW5hcnMiPlRyYWRlIFNob3dzIGFuZCBTZW1pbmFyczwvYT48L2xpPg0KICAgICAgICAgIDxsaSBjbGFzcz0iIj48YSBocmVmPSJodHRwOi8veHlsZW13YXRlcm1hcmsuY29tLyI+V2F0ZXJtYXJrPC9hPjwvbGk+PC9kaXY+PC9kaXY+DQogICAgICA8L3VsPg0KICAgIDwvbGk+DQogIDwvdWw+PC9uYXY+ZAIBD2QWDGYPDxYEHwgFEUNMQ29udGVudERhdGFWaWV3HwkCAmQWBAUFY3RsMDAPZBYCZg8WAh8KBeBYPGRpdiBjbGFzcz0ic2xpZGVyIHNsaWRlck1haW4iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sIiB4bWxuczptc3hzbD0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp4c2x0IiB4bWxuczp1c2VyPSJ1cm46bXktc2NyaXB0cyI+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tcmlnaHRCb3R0b20gIj4NCiAgICA8YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vbGFuZGluZ3BhZ2VzL3BsYW5uaW5nJTIwYWlkcyUyMGZvciUyMHBsYW50JTIwY29uc3RydWN0b3JzJTIwYW5kJTIwZW5naW5lZXJpbmclMjBvZmZpY2VzIj4NCiAgICAgIDxkaXYgY2xhc3M9InNsaWRlck1haW5JbWFnZSIgZGF0YS1sZz0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2ltYWdlJTIwbGlicmFyeS9ob21lL3d0dy1zbGlkZXJfcGxhbnVuZ3NoaWxmZW5fMTkyMHg3MDAuanBnIiBkYXRhLXNtPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vaW1hZ2UlMjBsaWJyYXJ5L2hvbWUvd3R3LXNsaWRlcl9wbGFudW5nc2hpbGZlbl83MDB4MjI1LmpwZyI+DQogICAgICDCoA0KICAgIDwvZGl2Pg0KICAgICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50LWlubmVyIj4NCiAgICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtY29weSI+DQogICAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPlBsYW5uaW5nIGFpZHMgZm9yIHBsYW50IGNvbnN0cnVjdG9ycyAmIGVuZ2luZWVyaW5nIG9mZmljZXM8L2gyPg0KICAgICAgICAgICAgPHA+PHVsPjxsaT5TZWxlY3Rpb24gYWlkcyBmb3IgdGhlIHNlbnNvcnMgYW5kIHN5c3RlbXM8L2xpPjxsaT5UZWNobmljYWwgZGF0YTwvbGk+PGxpPkluZm9ybWF0aW9uIG9uIGluc3RhbGxhdGlvbiBhbmQgZGlnaXRhbCBjb21tdW5pY2F0aW9uPC9saT48bGk+UGxhbm5pbmcgdG9vbHM8L2xpPjwvdWw+PC9wPg0KICAgICAgICAgIDwvc3Bhbj4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvYT4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tcmlnaHRCb3R0b20gIj4NCiAgICA8YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vZ2VuZXJhbC1wcm9kdWN0L2lkLTE4MzMvdHVyYmlkaXR5LW1ldGVyLXNlcmllcy10dXJiLXBsdXMtMjAwMC0tLXd0dyI+DQogICAgICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluSW1hZ2UiIGRhdGEtbGc9Imh0dHBzOi8vd3d3Lnd0dy5jb20vaW1hZ2UlMjBsaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi93dHclMjBzbGlkZXIvZGVmYXVsdC93dHctc2xpZGVyLXR1cmJfcGx1c18yMDAwLTE5MjB4NzAwLmpwZyIgZGF0YS1zbT0iaHR0cHM6Ly93d3cud3R3LmNvbS9pbWFnZSUyMGxpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL3d0dyUyMHNsaWRlci9tb2JpbGUvd3R3LXNsaWRlci10dXJiX3BsdXNfMjAwMC03MDB4MjU1LmpwZyI+DQogICAgICDCoA0KICAgIDwvZGl2Pg0KICAgICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50LWlubmVyIj4NCiAgICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtY29weSI+DQogICAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPkNvbnRpbnVvdXMgTW9uaXRvcmluZyAmIFByb2Nlc3MgQ29udHJvbDwvaDI+DQogICAgICAgICAgICA8cD48dWw+PGxpPkhpZ2ggYWNjdXJhY3kg4oCTIGVzcGVjaWFsbHkgYmVsb3cgNDAgTlRVPC9saT48bGk+U2FmZSAmIHN0YW5kYXJkLWNvbXBsaWFudCBtZWFzdXJlbWVudCA8L2xpPjxsaT5EYXRhIGJhY2t1cCBhbmQgdWx0cmFzb25pYyBjbGVhbmluZzwvbGk+PC91bD48L3A+DQogICAgICAgICAgPC9zcGFuPg0KICAgICAgICA8L3NwYW4+DQogICAgICA8L3NwYW4+DQogICAgPC9hPg0KICA8L2Rpdj4NCiAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbi1zbGlkZSBzbGlkZXJNYWluLXNsaWRlLS1sZWZ0VG9wICI+DQogICAgPGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2NvbXBhbnkvbmV3cy9uZXctY2hsb3JpbmUtYW5hbHl6ZXItZnJvbS13dHciPg0KICAgICAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbkltYWdlIiBkYXRhLWxnPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vaW1hZ2UlMjBsaWJyYXJ5L2hvbWUvd3R3LXNsaWRlci1jaGxvcmluZV8zMDE3bS0xOTIweDcwMC5qcGciIGRhdGEtc209Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9pbWFnZSUyMGxpYnJhcnkvaG9tZS93dHctc2xpZGVyLWNobG9yaW5lXzMwMTdtLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICAgIDxoMiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaGVhZGluZyI+Q2hsb3JpbmXCoDMwMTdNIERQRCBBbmFseXplcjwvaDI+DQogICAgICAgICAgICA8cD48dWw+PGxpPjwxNSBtaW51dGVzIHBlciBtb250aCB0byBleGNoYW5nZSByZWFnZW50czwvbGk+PGxpPj4zMCBkYXlzIHVuYXR0ZW5kZWQgcnVudGltZTwvbGk+PGxpPk5vIGNhbGlicmF0aW9uIHJlcXVpcmVkPC9saT48L3VsPjwvcD4NCiAgICAgICAgICA8L3NwYW4+DQogICAgICAgIDwvc3Bhbj4NCiAgICAgIDwvc3Bhbj4NCiAgICA8L2E+DQogIDwvZGl2Pg0KICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluLXNsaWRlIHNsaWRlck1haW4tc2xpZGUtLXJpZ2h0Qm90dG9tICI+DQogICAgPGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2NvbXBhbnkvbmV3cy9vcHRpbWl6ZS15b3VyLWFtbW9uaXVtLW1vbml0b3JpbmciPg0KICAgICAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbkltYWdlIiBkYXRhLWxnPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vaW1hZ2UlMjBsaWJyYXJ5L2hvbWUvd3R3LXNsaWRlci1hbHl6YV9pcV9uaDRfd3d0cF9lZmZsdWVudC0xOTIweDcwMC5qcGciIGRhdGEtc209Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9pbWFnZSUyMGxpYnJhcnkvaG9tZS93dHctc2xpZGVyLWFseXphX2lxX25oNF93d3RwX2VmZmx1ZW50LTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICAgIDxoMiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaGVhZGluZyI+T3B0aW1pemUgeW91ciBBbW1vbml1bSBNb25pdG9yaW5nPC9oMj4NCiAgICAgICAgICAgIDxwPkFseXphIElROiBUaGUgU2ltcGxlIGNob2ljZSBmb3IgTkg8c3ViPjQ8L3N1Yj4gQW5hbHl6ZXJzPC9wPg0KICAgICAgICAgIDwvc3Bhbj4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvYT4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tbGVmdFRvcCAiPg0KICAgIDxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9jb21wYW55L25ld3Mvb3B0aW1pemUteW91ci1waG9zcGhhdGUtbW9uaXRvcmluZy1hbmQtY29udHJvbCI+DQogICAgICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluSW1hZ2UiIGRhdGEtbGc9Imh0dHBzOi8vd3d3Lnd0dy5jb20vSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvZGVmYXVsdC9XVFctU2xpZGVyLUFseXphX0lRX1BPNF9FZmZsdWVudC0xOTIweDcwMC5qcGciIGRhdGEtc209Imh0dHBzOi8vd3d3Lnd0dy5jb20vSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvbW9iaWxlL1dUVy1TbGlkZXItQWx5emFfSVFfUE80X0VmZmx1ZW50LTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICAgIDxoMiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaGVhZGluZyI+T3B0aW1pemUgeW91ciBQaG9zcGhhdGUgTW9uaXRvcmluZyBhbmQgQ29udHJvbDwvaDI+DQogICAgICAgICAgICA8cD5BbHl6YSBJUTogVGhlIFNpbXBsZSBjaG9pY2UgZm9yIFBPPHN1Yj40PC9zdWI+IEFuYWx5emVyczwvcD4NCiAgICAgICAgICA8L3NwYW4+DQogICAgICAgIDwvc3Bhbj4NCiAgICAgIDwvc3Bhbj4NCiAgICA8L2E+DQogIDwvZGl2Pg0KICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluLXNsaWRlIHNsaWRlck1haW4tc2xpZGUtLWxlZnRUb3AgIj4NCiAgICA8YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvb3hpdG9wLXJlc3Bpcm9tZXRlcnMiPg0KICAgICAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbkltYWdlIiBkYXRhLWxnPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vSW1hZ2UlMjBMaWJyYXJ5L0hvbWUvV1RXLVNsaWRlci1PeGlUb3BfaS0xOTIweDcwMC5qcGciIGRhdGEtc209Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9JbWFnZSUyMExpYnJhcnkvSG9tZS9XVFctU2xpZGVyLU94aVRvcF9pLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICAgIDxoMiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaGVhZGluZyI+T3hpVG9wPHN1cD7Crjwvc3VwPi1pPC9oMj4NCiAgICAgICAgICAgIDxwPmlzIHNldHRpbmcgYSBuZXcgYmVuY2htYXJrIGluIEJPRCBtZWFzdXJlbWVudDogPHVsPjxsaT5FYXN5IG1lbnUgb3BlcmF0aW9uPC9saT48bGk+U2FmZXR5IHBlciBkaXJlY3QgbW9uaXRvcmluZzwvbGk+PGxpPkRpcmVjdCByZXN1bHRzIGFuZCBjdXJ2ZXMgYXQgdGhlIGRpc3BsYXk8L2xpPjwvdWw+PC9wPg0KICAgICAgICAgIDwvc3Bhbj4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvYT4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tcmlnaHRCb3R0b20gIj4NCiAgICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluSW1hZ2UiIGRhdGEtbGc9Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL1dUVyUyMHNsaWRlci9kZWZhdWx0L1dUVy1TbGlkZXItRmx1c3N3YXNzZXJfU3Bla3RyYWxzZW5zb3Jlbi0xOTIweDcwMC5qcGciIGRhdGEtc209Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL1dUVyUyMHNsaWRlci9tb2JpbGUvV1RXLVNsaWRlci1GbHVzc3dhc3Nlcl9TcGVrdHJhbHNlbnNvcmVuLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1pbm5lciI+DQogICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPlN1cmZhY2UgV2F0ZXIgTW9uaXRvcmluZzwvaDI+DQogICAgICAgICAgPHA+UmVhZ2VudC1mcmVlIG1lYXN1cmVtZW50IG9mIENPRCwgTml0cmF0ZSBhbmQgTml0cml0ZTwvcD4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvc3Bhbj4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tbGVmdFRvcCAiPg0KICAgIDxkaXYgY2xhc3M9InNsaWRlck1haW5JbWFnZSIgZGF0YS1sZz0iL0ltYWdlJTIwTGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvV1RXJTIwc2xpZGVyL2RlZmF1bHQvV1RXLVNsaWRlci1JRFNfVGllZmVubWVzc3VuZy0xOTIweDcwMC5qcGciIGRhdGEtc209Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL1dUVyUyMHNsaWRlci9tb2JpbGUvV1RXLVNsaWRlci1JRFNfVGllZmVubWVzc3VuZy03MDB4MjU1LmpwZyI+DQogICAgICDCoA0KICAgIDwvZGl2Pg0KICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudCI+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtY29weSI+DQogICAgICAgICAgPGgyIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1oZWFkaW5nIj5EZXB0aCBtZWFzdXJlbWVudHMgd2l0aCBJRFM8L2gyPg0KICAgICAgICAgIDxwPk11bHRpTGluZcKuIE11bHRpIDM0MzAgSURTICsgTVBQIElEUzogUHJvZmlsZSBtZWFzdXJlbWVudCB3aXRob3V0IHRhbmdsZWQgY2FibGVzLiBJbnRlZ3JhdGVkIGFpciBwcmVzc3VyZSBjb21wZW5zYXRlZCBkZXB0aCBtZWFzdXJlbWVudHMuIEFsbCBwYXJhbWV0ZXJzIHNpbXVsdGFuZW91c2x5LjwvcD4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvc3Bhbj4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tbGVmdFRvcCAiPg0KICAgIDxkaXYgY2xhc3M9InNsaWRlck1haW5JbWFnZSIgZGF0YS1sZz0iL0ltYWdlJTIwTGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvV1RXJTIwc2xpZGVyL2RlZmF1bHQvV1RXLVNsaWRlci1JRFNfZmllbGQtMTkyMHg3MDAuanBnIiBkYXRhLXNtPSIvSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvbW9iaWxlL1dUVy1TbGlkZXItSURTX2ZpZWxkLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1pbm5lciI+DQogICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPkZpZWxkIG1lYXN1cmVtZW50cyB3aXRoIElEUzwvaDI+DQogICAgICAgICAgPHA+TXVsdGlMaW5lwq4gSURTICsgSURTIHNlbnNvcnM6IFVwIHRvIDMgY2hhbm5lbHMuIEFsbCBwYXJhbWV0ZXJzIHNpbXVsdGFuZW91c2x5LjwvcD4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvc3Bhbj4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tcmlnaHRCb3R0b20gIj4NCiAgICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluSW1hZ2UiIGRhdGEtbGc9Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL1dUVyUyMHNsaWRlci9kZWZhdWx0L1dUVy1TbGlkZXItSURTX2xhYi0xOTIweDcwMC5qcGciIGRhdGEtc209Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL1dUVyUyMHNsaWRlci9tb2JpbGUvV1RXLVNsaWRlci1JRFNfbGFiLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1pbm5lciI+DQogICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPkxhYiBtZWFzdXJlbWVudHMgd2l0aCBJRFM8L2gyPg0KICAgICAgICAgIDxwPmlub0xhYsKuIE11bHRpIElEUyArIElEUyBzZW5zb3JzOiBVcCB0byAzIGNoYW5uZWxzLiBBbGwgcGFyYW1ldGVycyBzaW11bHRhbmVvdXNseSw8L3A+DQogICAgICAgIDwvc3Bhbj4NCiAgICAgIDwvc3Bhbj4NCiAgICA8L3NwYW4+DQogIDwvZGl2Pg0KICA8ZGl2IGNsYXNzPSJzbGlkZXJNYWluLXNsaWRlIHNsaWRlck1haW4tc2xpZGUtLXJpZ2h0Qm90dG9tICI+DQogICAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbkltYWdlIiBkYXRhLWxnPSIvSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvZGVmYXVsdC9XVFctU2xpZGVyLU5PeF9OaXRyYXRzZW5zb3ItMTkyMHg3MDAuanBnIiBkYXRhLXNtPSIvSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvbW9iaWxlL1dUVy1TbGlkZXItTk94X05pdHJhdHNlbnNvci03MDB4MjU1LmpwZyI+DQogICAgICDCoA0KICAgIDwvZGl2Pg0KICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudCI+DQogICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtaW5uZXIiPg0KICAgICAgICA8c3BhbiBjbGFzcz0ic2xpZGVyTWFpbkNvbnRlbnQtY29weSI+DQogICAgICAgICAgPGgyIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1oZWFkaW5nIj5UaGUgbmV3IG5pdHJhdGUgbWVhc3VyZW1lbnQ8L2gyPg0KICAgICAgICAgIDxwPldpcGluZyBhbmQgbWFpbnRlbmFuY2UtZnJlZTogU2ltcGxlIG1lYXN1cmVtZW50IGRpcmVjdGx5IGluIHRoZSBwcm9jZXNzLiBObyByZWd1bGFyIHNlcnZpY2UgcmVxdWlyZWQuIEV4dHJlbWVseSBkdXJhYmxlLjwvcD4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvc3Bhbj4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tbGVmdFRvcCAiPg0KICAgIDxkaXYgY2xhc3M9InNsaWRlck1haW5JbWFnZSIgZGF0YS1sZz0iL0ltYWdlJTIwTGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvV1RXJTIwc2xpZGVyL2RlZmF1bHQvV1RXLVNsaWRlci1JRFNfd2lyZWxlc3MtMTkyMHg3MDAuanBnIiBkYXRhLXNtPSIvSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi9XVFclMjBzbGlkZXIvbW9iaWxlL1dUVy1TbGlkZXItSURTX3dpcmVsZXNzLTcwMHgyNTUuanBnIj4NCiAgICAgIMKgDQogICAgPC9kaXY+DQogICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50Ij4NCiAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1pbm5lciI+DQogICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1jb3B5Ij4NCiAgICAgICAgICA8aDIgY2xhc3M9InNsaWRlck1haW5Db250ZW50LWhlYWRpbmciPklEUyBnb2VzIFdpcmVsZXNzITwvaDI+DQogICAgICAgICAgPHA+QmVuZWZpdCBmcm9tIGFsbCBhZHZhbnRhZ2VzIG9mIHRoZSBkaWdpdGFsIElEUyBzeXN0ZW0g4oCTIG5vdyBhbHNvIHdpcmVsZXNzOiBObyBjYWJsZXMuIFNlY3VyZWx5IGNvbm5lY3RlZC4gU2FtZSBtb2R1bGUgZm9yIGFsbCBwYXJhbWV0ZXJzLjwvcD4NCiAgICAgICAgPC9zcGFuPg0KICAgICAgPC9zcGFuPg0KICAgIDwvc3Bhbj4NCiAgPC9kaXY+DQogIDxkaXYgY2xhc3M9InNsaWRlck1haW4tc2xpZGUgc2xpZGVyTWFpbi1zbGlkZS0tcmlnaHRCb3R0b20gIj4NCiAgICA8YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vRmlsZSUyMExpYnJhcnkvUmVzb3VyY2UlMjBMaWJyYXJ5L1dUVy8wNCUyMEZseWVycyUyMEJyb2NodXJlcy9FTkcvV1RXX1VwZ3JhZGVmbHllcl9waG90b0xhYi02MDAwX1VwZ3JhZGVfRU5HTElTSF8yMDIxMDUyNi5wZGYiPg0KICAgICAgPGRpdiBjbGFzcz0ic2xpZGVyTWFpbkltYWdlIiBkYXRhLWxnPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vaW1hZ2UlMjBsaWJyYXJ5L2hvbWUvcGhvdG9sYWI3NjAwXzE5MjB4NzAwcHguanBnIiBkYXRhLXNtPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vaW1hZ2UlMjBsaWJyYXJ5L2hvbWUvcGhvdG9sYWI3NjAwXzcwMHgyNTVweC5qcGciPg0KICAgICAgwqANCiAgICA8L2Rpdj4NCiAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudCI+DQogICAgICAgIDxzcGFuIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1pbm5lciI+DQogICAgICAgICAgPHNwYW4gY2xhc3M9InNsaWRlck1haW5Db250ZW50LWNvcHkiPg0KICAgICAgICAgICAgPGgyIGNsYXNzPSJzbGlkZXJNYWluQ29udGVudC1oZWFkaW5nIj5VcGdyYWRlIGZvciBwaG90b0xhYsKuIDcwMDAgU2VyaWVzPC9oMj4NCiAgICAgICAgICAgIDxwPkJlbmVmaXQgZnJvbSBtYW55IGFkdmFudGFnZXMgLSBGcm9tIDYwMDAgdG8gNzAwMCE8L3A+DQogICAgICAgICAgPC9zcGFuPg0KICAgICAgICA8L3NwYW4+DQogICAgICA8L3NwYW4+DQogICAgPC9hPg0KICA8L2Rpdj4NCjwvZGl2Pg0KPHNjcmlwdCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbCIgeG1sbnM6bXN4c2w9InVybjpzY2hlbWFzLW1pY3Jvc29mdC1jb206eHNsdCIgeG1sbnM6dXNlcj0idXJuOm15LXNjcmlwdHMiPg0KICAgICAgJCgnLnNsaWRlcicpLnNsaWNrKHsNCiAgICAgIGFycm93czogZmFsc2UsDQogICAgICBkb3RzOiB0cnVlLA0KICAgICAgZmFkZTogdHJ1ZSwNCiAgICAgIGluZmluaXRlOiB0cnVlLA0KICAgICAgYXV0b3BsYXk6IHRydWUsDQogICAgICBhdXRvcGxheVNwZWVkOiA0MDAwLA0KICAgICAgc3BlZWQ6IDMwMCwNCiAgICAgIHNsaWRlc1RvU2hvdzogMSwNCiAgICAgIHNsaWRlc1RvU2Nyb2xsOiAxDQogICAgICB9KTsNCiAgICA8L3NjcmlwdD5kBUhjdGwwMV9md3B6Y01haW5Db250ZW50X2Z3cHpjTWFpbkNvbnRlbnRfNTdGaW5OYkhKa2VDYWxsQmFja19DbGllbnRWYWx1ZXMPFgIeBXZhbHVlBRQwXkNvbnRlbnRUaXRsZSBERVNDXmQCAQ9kFgIFBWN0bDAwDw8WAh8KBYgHPGRpdiBjbGFzcz0ic2VjdGlvbiI+CjxkaXYgY2xhc3M9ImNvbnRhaW5lZCI+CjxwPlNpbmNlIDIwMTEsIDxzdHJvbmc+V1RXPC9zdHJvbmc+IGlzIGEgYnJhbmQgb2YgdGhlIDxzdHJvbmc+WHlsZW08L3N0cm9uZz4gR3JvdXAsIHdoaWNoIG9wZXJhdGVzIHdvcmxkd2lkZSBpbiBpdHMgY29yZSBidXNpbmVzcyBvZiB3YXRlci4gV1RXIGlzIGEgcGFydCBvZiB0aGUgY29tcGFueSBkaXZpc2lvbiA8c3Ryb25nPlh5bGVtIEFuYWx5dGljczwvc3Ryb25nPi4mbmJzcDtXaXRoIG91ciBuZXcgd2Vic2l0ZSwgd2UgY2FuIHByZXNlbnQgeW91IGEgYnJvYWRlciBwcm9kdWN0IHJhbmdlIHdpdGggYWRkaXRpb25hbCBicmFuZHMgYXMgd2VsbCBhcyBzZXJ2aWNlIGFuZCBpbmZvcm1hdGlvbiBhYm91dCB0aGUgYXBwbGljYXRpb24gb2Ygb3VyIHByb2R1Y3RzLiZuYnNwOzwvcD4KPHA+VGhlIGZvbGxvd2luZyB3ZWJzaXRlcyBhcmUgdGhlcmVmb3JlIGRlc2lnbmVkIGluIHRoZSB4eWxlbSBjb2xvcnMgYW5kIHN1bW1hcml6ZWQgdW5kZXIgdGhlIHdlYiBhZGRyZXNzIDxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi8iIHRpdGxlIHRhcmdldCByZWw+d3d3Lnh5bGVtYW5hbHl0aWNzLmNvbTwvYT4uPC9wPgo8aDE+TW9yZSB0aGFuIDcwIHllYXJzIFdUVzwvaDE+CjxwPldlIG9mZmVyIHRoZSBtb3N0IGNvbXByZWhlbnNpdmUgcHJvZ3JhbSBvZiBoaWdoLXF1YWxpdHkgbWVhc3VyaW5nIGRldmljZXMgZm9yIHdhdGVyIGFuYWx5c2lzIGluIHRoZSB3b3JsZC4gVGhlaXIgcmVsaWFiaWxpdHksIG9wZXJhdGlvbmFsIHNhZmV0eSBhbmQgdmVyc2F0aWxpdHkgaGF2ZSBtYWRlIFdUVydzIHByb2R1Y3RzIGEgd29ybGR3aWRlIGluZHVzdHJ5IHN0YW5kYXJkOjwvcD4KPC9kaXY+CjwvZGl2PmRkAgIPZBYCBQVjdGwwMA8PFgIfCgW7DzxkaXYgY2xhc3M9InNlY3Rpb24gZmVhdHVyZUJsb2NrIGZlYXR1cmVCbG9jay0tdHdvIj4NCiAgPGRpdiBjbGFzcz0iY29udGFpbmVkIj4NCiAgICA8ZGl2IGNsYXNzPSJyb3ciPg0KICAgICAgPGRpdiBjbGFzcz0iY29sdW1uIG1lZC0xMiI+DQogICAgICAgIDxmaWd1cmUgY2xhc3M9ImZlYXR1cmVCbG9jay1maWd1cmUiPg0KICAgICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1sYWItYWxsIj4NCiAgICAgICAgICAgIDxpbWcgc3JjPSIvSW1hZ2UlMjBMaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi93dHclMjBob21lL1dUVy1UZWFzZXItTGFiX2FuZF9GaWVsZF9JbnN0cnVtZW50YXRpb24tNjAweDMzOC5qcGciIGFsdD0iTGFib3JhdG9yeSBhbmQgRmllbGQgSW5zdHJ1bWVudGF0aW9uIiAvPg0KICAgICAgICAgIDwvYT4NCiAgICAgICAgICA8ZmlnY2FwdGlvbiBjbGFzcz0iZmVhdHVyZUJsb2NrLWZpZ2NhcHRpb24iPg0KICAgICAgICAgICAgPGgzIGNsYXNzPSJmZWF0dXJlQmxvY2stc3ViSGVhZGluZyI+TGFib3JhdG9yeSBhbmQgRmllbGQgSW5zdHJ1bWVudGF0aW9uPC9oMz4NCiAgICAgICAgICAgIDxwPk1ldGVycyBhbmQgbWVhc3VyaW5nIHN5c3RlbXMgZm9yIGVsZWN0cm8tY2hlbWljYWwsIHBob3RvbWV0cmljLCB0dXJiaWRpdHkgbWVhc3VyZW1lbnRzIGFzIHdlbGwgYXMgZm9yIHRoZSBkZXRlcm1pbmF0aW9uIG9mIGJpb2xvZ2ljYWwgZGVncmFkYWJpbGl0eS7CoA0KICAgICAgICAgICAgPC9wPg0KICAgICAgICAgICAgPHA+DQogICAgICAgICAgICAgIDxhIGNsYXNzPSJidG4iIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1sYWItYWxsIj5WaWV3IFdUVyBMYWIgUHJvZHVjdHM8L2E+DQogICAgICAgICAgICA8L3A+DQogICAgICAgICAgPC9maWdjYXB0aW9uPg0KICAgICAgICA8L2ZpZ3VyZT4NCiAgICAgIDwvZGl2Pg0KICAgICAgPGRpdiBjbGFzcz0iY29sdW1uIG1lZC0xMiI+DQogICAgICAgIDxmaWd1cmUgY2xhc3M9ImZlYXR1cmVCbG9jay1maWd1cmUiPg0KICAgICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1wcm9jZXNzLWFsbCI+DQogICAgICAgICAgICA8aW1nIHNyYz0iL0ltYWdlJTIwTGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvd3R3JTIwaG9tZS9XVFctVGVhc2VyLU9ubGluZV9JbnN0cnVtZW50YXRpb24tNjAweDMzOC5qcGciIGFsdD0iUHJvY2VzcyBJbnN0cnVtZW50YXRpb24gKE9ubGluZSkiIC8+DQogICAgICAgICAgPC9hPg0KICAgICAgICAgIDxmaWdjYXB0aW9uIGNsYXNzPSJmZWF0dXJlQmxvY2stZmlnY2FwdGlvbiI+DQogICAgICAgICAgICA8aDMgY2xhc3M9ImZlYXR1cmVCbG9jay1zdWJIZWFkaW5nIj5Qcm9jZXNzIEluc3RydW1lbnRhdGlvbiAoT25saW5lKTwvaDM+DQogICAgICAgICAgICA8cD5XVFcgb2ZmZXJzIHRoZSBtb3N0IGNvbXBsZXRlIHNlcmllcyBvZiBtZWFzdXJpbmcgaW5zdHJ1bWVudGF0aW9uIGFzIHdlbGwgYXMgYWNjZXNzb3JpZXMgZm9yIHRoZSBtZWFzdXJlbWVudCBhbmQgbW9uaXRvcmluZyBvZiB3YXRlciBhbmQgd2FzdGV3YXRlci7CoA0KICAgICAgICAgICAgPC9wPg0KICAgICAgICAgICAgPHA+DQogICAgICAgICAgICAgIDxhIGNsYXNzPSJidG4iIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1wcm9jZXNzLWFsbCI+VmlldyBXVFcncyBQcm9jZXNzIEluc3RydW1lbnRhdGlvbjwvYT4NCiAgICAgICAgICAgIDwvcD4NCiAgICAgICAgICA8L2ZpZ2NhcHRpb24+DQogICAgICAgIDwvZmlndXJlPg0KICAgICAgPC9kaXY+DQogICAgPC9kaXY+DQogIDwvZGl2Pg0KPC9kaXY+ZGQCAw9kFgIFBWN0bDAwDw8WAh8KBbgRPGRpdiBjbGFzcz0ic2VjdGlvbiBmZWF0dXJlQmxvY2sgZmVhdHVyZUJsb2NrLS1mb3VyIHNlY3Rpb24tLWNvbnRyYXN0TGlnaHQiPg0KICA8ZGl2IGNsYXNzPSJjb250YWluZWQiPg0KICAgIDxoMiBjbGFzcz0iZmVhdHVyZUJsb2NrLWhlYWRpbmciPkRpcmVjdCBDb250YWN0PC9oMj4NCiAgICA8ZGl2IGNsYXNzPSJyb3ciPg0KICAgICAgPGRpdiBjbGFzcz0iY29sdW1uIHNtLTEyIGxnLTYiPg0KICAgICAgICA8ZmlndXJlIGNsYXNzPSJmZWF0dXJlQmxvY2stZmlndXJlIj4NCiAgICAgICAgICA8aW1nIHNyYz0iL0ltYWdlJTIwTGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvd3R3JTIwaG9tZS9XVFctVGVhc2VyLVRlbC1IUS01MDB4MjgxLmpwZyIgYWx0PSJIZWFkIE9mZmljZSIgLz4NCiAgICAgICAgICA8ZmlnY2FwdGlvbiBjbGFzcz0iZmVhdHVyZUJsb2NrLWZpZ2NhcHRpb24iPg0KICAgICAgICAgICAgPGgzIGNsYXNzPSJmZWF0dXJlQmxvY2stc3ViSGVhZGluZyI+SGVhZCBPZmZpY2U8L2gzPg0KICAgICAgICAgICAgPHA+KzQ5IDg4MSAxODMtMCAgwqANCiAgICAgICAgICAgIDwvcD4NCiAgICAgICAgICA8L2ZpZ2NhcHRpb24+DQogICAgICAgIDwvZmlndXJlPg0KICAgICAgPC9kaXY+DQogICAgICA8ZGl2IGNsYXNzPSJjb2x1bW4gc20tMTIgbGctNiI+DQogICAgICAgIDxmaWd1cmUgY2xhc3M9ImZlYXR1cmVCbG9jay1maWd1cmUiPg0KICAgICAgICAgIDxhIGhyZWY9Im1haWx0bzpJbmZvLldUV0B4eWxlbS5jb20iPg0KICAgICAgICAgICAgPGltZyBzcmM9Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL3d0dyUyMGhvbWUvV1RXLVRlYXNlci1NYWlsLUhRLTUwMHgyODEuanBnIiBhbHQ9IkUtTWFpbCIgLz4NCiAgICAgICAgICA8L2E+DQogICAgICAgICAgPGZpZ2NhcHRpb24gY2xhc3M9ImZlYXR1cmVCbG9jay1maWdjYXB0aW9uIj4NCiAgICAgICAgICAgIDxoMyBjbGFzcz0iZmVhdHVyZUJsb2NrLXN1YkhlYWRpbmciPkUtTWFpbDwvaDM+DQogICAgICAgICAgICA8cD4NCiAgICAgICAgICAgICAgPGEgY2xhc3M9ImJ0biIgaHJlZj0ibWFpbHRvOkluZm8uV1RXQHh5bGVtLmNvbSI+V3JpdGUgZS1tYWlsPC9hPg0KICAgICAgICAgICAgPC9wPg0KICAgICAgICAgIDwvZmlnY2FwdGlvbj4NCiAgICAgICAgPC9maWd1cmU+DQogICAgICA8L2Rpdj4NCiAgICAgIDxkaXYgY2xhc3M9ImNvbHVtbiBzbS0xMiBsZy02Ij4NCiAgICAgICAgPGZpZ3VyZSBjbGFzcz0iZmVhdHVyZUJsb2NrLWZpZ3VyZSI+DQogICAgICAgICAgPGltZyBzcmM9Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL3d0dyUyMGhvbWUvV1RXLVRlYXNlci1MYWItVGVjaFN1cHAtNTAweDI4MS5qcGciIGFsdD0iTGFib3JhdG9yeTogVGVjaG5pY2FsIFN1cHBvcnQiIC8+DQogICAgICAgICAgPGZpZ2NhcHRpb24gY2xhc3M9ImZlYXR1cmVCbG9jay1maWdjYXB0aW9uIj4NCiAgICAgICAgICAgIDxoMyBjbGFzcz0iZmVhdHVyZUJsb2NrLXN1YkhlYWRpbmciPkxhYm9yYXRvcnk6IFRlY2huaWNhbCBTdXBwb3J0PC9oMz4NCiAgICAgICAgICAgIDxwPis0OSA4ODEgMTgzLTMyMSDCoA0KICAgICAgICAgICAgPC9wPg0KICAgICAgICAgIDwvZmlnY2FwdGlvbj4NCiAgICAgICAgPC9maWd1cmU+DQogICAgICA8L2Rpdj4NCiAgICAgIDxkaXYgY2xhc3M9ImNvbHVtbiBzbS0xMiBsZy02Ij4NCiAgICAgICAgPGZpZ3VyZSBjbGFzcz0iZmVhdHVyZUJsb2NrLWZpZ3VyZSI+DQogICAgICAgICAgPGltZyBzcmM9Ii9JbWFnZSUyMExpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL3d0dyUyMGhvbWUvV1RXLVRlYXNlci1PbmwtVGVjaFN1cHAtNTAweDI4MS5qcGciIGFsdD0iT25saW5lOiBUZWNobmljYWwgU3VwcG9ydCIgLz4NCiAgICAgICAgICA8ZmlnY2FwdGlvbiBjbGFzcz0iZmVhdHVyZUJsb2NrLWZpZ2NhcHRpb24iPg0KICAgICAgICAgICAgPGgzIGNsYXNzPSJmZWF0dXJlQmxvY2stc3ViSGVhZGluZyI+T25saW5lOiBUZWNobmljYWwgU3VwcG9ydDwvaDM+DQogICAgICAgICAgICA8cD4rNDkgODgxIDE4My0zMjIgwqANCiAgICAgICAgICAgIDwvcD4NCiAgICAgICAgICA8L2ZpZ2NhcHRpb24+DQogICAgICAgIDwvZmlndXJlPg0KICAgICAgPC9kaXY+DQogICAgPC9kaXY+DQogIDwvZGl2Pg0KPC9kaXY+ZGQCBA9kFgIFBWN0bDAwDw8WAh8KZWRkAgUPZBYCBQVjdGwwMA8PFgIfCgWSETxkaXYgY2xhc3M9InNlY3Rpb24iPgo8ZGl2IGNsYXNzPSJjb250YWluZWQiPgo8aDI+WHlsZW0gQW5hbHl0aWNzIHByb3ZpZGVzIHdpdGggaXRzIGJyYW5kIFdUVyBzb2x1dGlvbnMgZm9yIG1hbnkgY2hhbGxlbmdlcyBpbiB3YXRlciBhbmFseXNpczo8L2gyPgo8cD48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctbXVsdGlsaW5lLWlkcyIgdGl0bGU9IldUVydzIE11bHRpTGluZcKuIElEUyAiIHRhcmdldD0iX2JsYW5rIiByZWw+PGltZyBzcmM9Imh0dHBzOi8vd3d3Lnd0dy5jb20vaW1hZ2UlMjBsaWJyYXJ5LzNhNGQxYjBiLWI5MmMtNGE4Yy1iZjg3LTc5NTdjYTdjYmRkYi93dHclMjBob21lL3d0dy1sb2dvLW11bHRpbGluZV9pZHMtMjUyeDUwLmpwZyIgYWx0IGRhdGEtYW1wLWhlaWdodD0iMjgiIGRhdGEtYW1wLXdpZHRoPSIxNzUiPjwvYT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctaW5vbGFiLWlkcyIgdGl0bGU9IldUVydzIGlub0xhYsKuIElEUyIgdGFyZ2V0PSJfYmxhbmsiIHJlbD48aW1nIHNyYz0iaHR0cHM6Ly93d3cud3R3LmNvbS9pbWFnZSUyMGxpYnJhcnkvM2E0ZDFiMGItYjkyYy00YThjLWJmODctNzk1N2NhN2NiZGRiL3d0dyUyMGhvbWUvd3R3LWxvZ28taW5vbGFiX2lkcy0yMzd4NTAuanBnIiBhbHQ9IldUVyBpbm9MYWLCriBJRFMiIGRhdGEtYW1wLWhlaWdodD0iMjgiIGRhdGEtYW1wLXdpZHRoPSIxNTAiPjwvYT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvcmVzcGlyb21ldGVycyIgdGl0bGU9IldUVydzIE94aVRvcMKuIiB0YXJnZXQ9Il9ibGFuayIgcmVsPjxpbWcgc3JjPSJodHRwczovL3d3dy53dHcuY29tL2ltYWdlJTIwbGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvd3R3JTIwaG9tZS93dHctbG9nby1veGl0b3AtMTQ4eDUwLmpwZyIgYWx0PSJXVFcgT3hpVG9wwq4iIGRhdGEtYW1wLWhlaWdodD0iMjgiIGRhdGEtYW1wLXdpZHRoPSIxMDAiPjwvYT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctcGhvdG9sYWIiIHRpdGxlPSJXVFcncyBwaG90b0xhYsKuIiB0YXJnZXQ9Il9ibGFuayIgcmVsPjxpbWcgc3JjPSJodHRwczovL3d3dy53dHcuY29tL2ltYWdlJTIwbGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvd3R3JTIwaG9tZS93dHctbG9nby1waG90b2xhYi0xODh4NTAuanBnIiBhbHQ9IldUVyBwaG90b0xhYsKuIiBkYXRhLWFtcC1oZWlnaHQ9IjI4IiBkYXRhLWFtcC13aWR0aD0iMTIwIj48L2E+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2xhbmRpbmdwYWdlcy9pcS1zZW5zb3ItbmV0IiB0aXRsZT0iV1RXJ3MgSVEgU0VOU09SIE5FVCIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgc3JjPSJodHRwczovL3d3dy53dHcuY29tL2ltYWdlJTIwbGlicmFyeS8zYTRkMWIwYi1iOTJjLTRhOGMtYmY4Ny03OTU3Y2E3Y2JkZGIvd3R3JTIwaG9tZS93dHctbG9nby1pcXNuLTI3NHg1MC5qcGciIGFsdD0iV1RXIElRIFNFTlNPUiBORVQiIGRhdGEtYW1wLWhlaWdodD0iMjgiIGRhdGEtYW1wLXdpZHRoPSIxODQiPjwvYT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctcGhvdG9sYWIiIHRpdGxlPSJXVFcncyBwaG90b0xhYsKuIiB0YXJnZXQ9Il9ibGFuayIgcmVsPjwvYT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctcGhvdG9sYWIiIHRpdGxlPSJXVFcncyBwaG90b0xhYsKuIiB0YXJnZXQ9Il9ibGFuayIgcmVsPjwvYT48L3A+CjxwPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1hbGwiIHRpdGxlPSJXVFcgUHJvZHVjdHMiIHRhcmdldCByZWw+VmlldyBhbGwgV1RXIFByb2R1Y3RzPC9hPjxicj48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMiIHRpdGxlPSJQcm9kdWN0cyIgdGFyZ2V0IHJlbD5WaWV3IGFsbCBQcm9kdWN0czwvYT48L3A+CjwvZGl2Pgo8L2Rpdj5kZAICD2QWCmYPFgIfCgUiCjwhLS0gYmVfaXhmLCBib2R5c3RyLCBib2R5XzEgLS0+CmQCAQ9kFgJmDxYCHwoF8hU8ZGl2IGNsYXNzPSJjb2x1bW4gbWVkLTYiPjxzcGFuIGNsYXNzPSJmb290ZXJNYWluLWhlYWRpbmciPkFib3V0IHVzPC9zcGFuPjxuYXYgY2xhc3M9ImZvb3Rlck1haW4tdG9wTmF2Ij48dWw+DQogICAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2NvbXBhbnkvYWJvdXQtdXMiPmFib3V0IFh5bGVtIEFuYWx5dGljczwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHBzOi8vc3VzdGFpbmFiaWxpdHkueHlsZW0uY29tIj5YeWxlbSBTdXN0YWluYWJpbGl0eTwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHA6Ly94eWxlbXdhdGVybWFyay5jb20vIj5YeWxlbSBXYXRlcm1hcms8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbS5jb20vc2l0ZWFzc2V0cy9hYm91dC14eWxlbS90cmFuc3BhcmVuY3ktaW4tc3VwcGx5LWNoYWlucy5wZGYiPlRyYW5zcGFyZW5jeSBpbiBTdXBwbHkgQ2hhaW48L2E+PC9saT4NCiAgICA8L3VsPjwvbmF2PjwvZGl2Pg0KPGRpdiBjbGFzcz0iY29sdW1uIG1lZC02Ij48c3BhbiBjbGFzcz0iZm9vdGVyTWFpbi1oZWFkaW5nIj5Qcm9kdWN0cyAmYW1wOyBTZXJ2aWNlPC9zcGFuPjxuYXYgY2xhc3M9ImZvb3Rlck1haW4tdG9wTmF2Ij48dWw+DQogICAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3NlcnZpY2UvZG93bmxvYWRzIj5Eb3dubG9hZHM8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vbGFuZGluZ3BhZ2VzL2lxLXNlbnNvci1uZXQiPklRIFNFTlNPUiBORVQgbWVhc3VyaW5nIHN5c3RlbTwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHBzOi8veHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzL2FuYWx5emVycyI+VHJlc0NvbsKuIG9ubGluZSBhbmFseXplcjwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy1pbm9sYWItaWRzIj5pbm9MYWLCriBJRFMgYmVuY2h0b3AgbWV0ZXI8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctbXVsdGlsaW5lLWlkcyI+TXVsdGlMaW5lwq4gSURTIHBvcnRhYmxlIG1ldGVyPC9hPjwvbGk+DQogICAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzL2xpc3Rpbmctd3R3LWlkcy1zZW5zb3JlbiI+SURTIHNlbnNvcnM8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctZmRvIj5GRE/CriBvcHRpY2FsIGRpc3NvbHZlZCBveHlnZW4gc2Vuc29yPC9hPjwvbGk+DQogICAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzL2xpc3Rpbmctd3R3LWlub2xhYiI+aW5vTGFiwq4gYmVuY2h0b3AgbWV0ZXI8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctcHJvZmlsaW5lIj5Qcm9maUxpbmUgcG9ydGFibGUgbWV0ZXI8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvbGlzdGluZy13dHctcGhvdG9sYWIiPnBob3RvTGFiwq4gc3BlY3RyYWwgYW5kIGZpbHRlciBwaG90b21ldGVyPC9hPjwvbGk+DQogICAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL3Byb2R1Y3RzL3Bob3RvbWV0ZXJzLWFuZC1jb2xvcmltZXRlcnMvcGhvdG9mbGV4LXNlcmllcyI+cEhvdG9GbGV4wq4gcG9ydGFibGUgY29sb3JpbWV0ZXI8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy54eWxlbWFuYWx5dGljcy5jb20vZW4vcHJvZHVjdHMvcmVzcGlyb21ldGVycyI+T3hpVG9wwq4gbWVhc3VyaW5nIHN5c3RlbTwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9wcm9kdWN0cy9saXN0aW5nLXd0dy10cmlveG1hdGljIj5UcmlPeG1hdGljwq4gZWxlY3Ryb2NoZW1pY2FsIEQuTy4gc2Vuc29yczwvYT48L2xpPg0KICAgIDwvdWw+PC9uYXY+PC9kaXY+DQo8ZGl2IGNsYXNzPSJjb2x1bW4gbWVkLTYiPjxzcGFuIGNsYXNzPSJmb290ZXJNYWluLWhlYWRpbmciPkltcG9ydGFudDwvc3Bhbj48bmF2IGNsYXNzPSJmb290ZXJNYWluLXRvcE5hdiI+PHVsPg0KICAgICAgPGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9jdXN0b21lci1zdXBwb3J0L2NvbXBhbnktY2VydGlmaWNhdGVzIj5JU08gOTAwMTwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKSI+QUVPLUY8L2E+PC9saT4NCiAgICAgIDxsaT48YSBocmVmPSJqYXZhc2NyaXB0OnZvaWQoMCkiPkRBa2tTIGNlcnRpZmllZCB0ZXN0IGxhYjwvYT48L2xpPg0KICAgICAgPGxpPjxhIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKSI+RFdBPC9hPjwvbGk+DQogICAgICA8bGk+PGEgaHJlZj0iamF2YXNjcmlwdDp2b2lkKDApIj5ERUNIRU1BPC9hPjwvbGk+DQogICAgICA8bGk+PGEgaHJlZj0iamF2YXNjcmlwdDp2b2lkKDApIj5EVkdXPC9hPjwvbGk+DQogICAgPC91bD48L25hdj48L2Rpdj5kAgMPZBYCZg8WAh8KBfwCPG5hdiBjbGFzcz0iZm9vdGVyTWFpbi10b3BOYXYgZm9vdGVyTWFpbi10b3BOYXYtLXNvY2lhbE5hdiI+PHVsPg0KICAgIDxsaT48YSBocmVmPSJodHRwczovL3d3dy5mYWNlYm9vay5jb20vV1RXLldNIiBjbGFzcz0iZm9vdGVyTWFpblNvY2lhbExpbmsgZm9vdGVyTWFpblNvY2lhbExpbmstLWZhY2Vib29rIiBhcmlhLWxhYmVsPSJmYWNlYm9vayI+wqA8L2E+PC9saT4NCiAgICA8bGk+PGEgaHJlZj0iaHR0cHM6Ly93d3cueW91dHViZS5jb20vV1RXR21iSEludGVybmF0aW9uYWwiIGNsYXNzPSJmb290ZXJNYWluU29jaWFsTGluayBmb290ZXJNYWluU29jaWFsTGluay0teW91VHViZSIgYXJpYS1sYWJlbD0ieW91VHViZSI+wqA8L2E+PC9saT4NCiAgPC91bD48L25hdj5kAgQPFgIfBmhkAgUPDxYEHwgFEUNMSGllcmFyY2hpY2FsTmF2HwkCAmQWAgUFY3RsMDAPZBYCZg8WAh8KBc0DPHVsIGNsYXNzPSJDTEhpZXJhcmNoaWNhbE5hdiI+PGxpIGNsYXNzPSJmaXJzdCI+PGEgaHJlZj0iaHR0cDovL3d3dy54eWxlbS5jb20vZW4tdXMvc3VwcG9ydC9wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiPlByaXZhY3kgUG9saWN5PC9hPjwvbGk+PGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi90ZXJtcy1hbmQtY29uZGl0aW9ucyIgdGFyZ2V0PSJfYmxhbmsiPlRlcm1zIGFuZCBDb25kaXRpb25zPC9hPjwvbGk+PGxpPjxhIGhyZWY9Imh0dHBzOi8vd3d3Lnh5bGVtYW5hbHl0aWNzLmNvbS9lbi9lbGVrdHJvZy13ZWVlIiB0YXJnZXQ9Il9ibGFuayI+RWxla3Ryb0cvV0VFRTwvYT48L2xpPjxsaSBjbGFzcz0ibGFzdCI+PGEgaHJlZj0iaHR0cHM6Ly93d3cueHlsZW1hbmFseXRpY3MuY29tL2VuL2ltcHJpbnQiIHRhcmdldD0iX2JsYW5rIj5JbXByaW50PC9hPjwvbGk+PC91bD5kAgsPFgIfBmhkAg8PZBYCAgEPFCsAAmRkZBgIBTNjdGwwMSRmd3B6Y01haW5Db250ZW50JGZ3cHpjTWFpbkNvbnRlbnRfNTdGaW5OYkhKa2UPMuwBAAEAAAD/////AQAAAAAAAAAEAQAAAH9TeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5MaXN0YDFbW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24GAAAICAkCAAAAAwAAAAMAAAARAgAAAAQAAAAGAwAAAAEwBgQAAAARQ29udGVudFRpdGxlIERFU0MNAgtkBQtsdkRlYnVnSW5mbw9nZAUdc2l0ZUVkaXRvclRvb2xiYXIkbHZQYWdlTW9kZXMPZ2QFH3NpdGVFZGl0b3JUb29sYmFyJGx2VXNlck9wdGlvbnMPZ2QFH3NpdGVFZGl0b3JUb29sYmFyJGx2UGFnZUJ1aWxkZXIPZ2QFHnNpdGVFZGl0b3JUb29sYmFyJGx2U2hhcmVkUGFnZQ9nZAUeX19Db250cm9sc1JlcXVpcmVQb3N0QmFja0tleV9fFg8FH2N0bDAxJEhlYWRlciRmd3R4dENvb2tpZU5vdGllY2UFH2N0bDAxJEhlYWRlciRmd3R4dENvb2tpZU5vdGllY2UFHWN0bDAxJEZvb3RlciRuYXZGb290ZXJVdGlsaXR5BStjdGwwMSRIZWFkZXIkY3RsMDAkY3RsVXRpbGl0eU5hdiRuYXZVdGlsaXR5BTNjdGwwMSRmd3B6Y01haW5Db250ZW50JGZ3cHpjTWFpbkNvbnRlbnRfNTdGaW5OYkhKa2UFM2N0bDAxJGZ3cHpjTWFpbkNvbnRlbnQkZndwemNNYWluQ29udGVudF81WklmVGtvdXVkMgUzY3RsMDEkZndwemNNYWluQ29udGVudCRmd3B6Y01haW5Db250ZW50XzVaSWZUa291dWQyBTNjdGwwMSRmd3B6Y01haW5Db250ZW50JGZ3cHpjTWFpbkNvbnRlbnRfOFhuS0FOSTZXUzgFM2N0bDAxJGZ3cHpjTWFpbkNvbnRlbnQkZndwemNNYWluQ29udGVudF84WG5LQU5JNldTOAUzY3RsMDEkZndwemNNYWluQ29udGVudCRmd3B6Y01haW5Db250ZW50XzVmbWw5N1B4TjNNBTNjdGwwMSRmd3B6Y01haW5Db250ZW50JGZ3cHpjTWFpbkNvbnRlbnRfNWZtbDk3UHhOM00FM2N0bDAxJGZ3cHpjTWFpbkNvbnRlbnQkZndwemNNYWluQ29udGVudF8zZ29tS0k4TGViNgUzY3RsMDEkZndwemNNYWluQ29udGVudCRmd3B6Y01haW5Db250ZW50XzNnb21LSThMZWI2BTNjdGwwMSRmd3B6Y01haW5Db250ZW50JGZ3cHpjTWFpbkNvbnRlbnRfOWVMSE1KRHRVMTUFM2N0bDAxJGZ3cHpjTWFpbkNvbnRlbnQkZndwemNNYWluQ29udGVudF85ZUxITUpEdFUxNQUlc2l0ZUVkaXRvclRvb2xiYXIkbHZQcm9kdWN0TmF2aWdhdGlvbg9nZInlLcP0TxCMyKY3NnLbAndoqyK3">
</form>
Text Content
* Xylem Analytics * News * Xylem Inc. Search Submit English * German * Products Analyzers IQ SENSOR NET Measuring Systems OxiTop® - Respirometers pH/ORP, Cond, DO Meters and Probes Photometers and Colorimeters Process Controllers and Sensors Turbidimeters Water quality monitoring All Products (incl. SI Analytics and Bellingham + Stanley) * Applications Agriculture Aquaculture Drinking Water Environmental Monitoring (Surface Water) Food and Beverages Solutions Industry Life Science (Biotech Solutions) Wastewater * Parameters Ammonium Biochemical Oxygen Demand - BOD Chemical Oxygen Demand - COD Chlorine Conductivity and Salinity Dissolved Oxygen (D.O.) Nitrate, Nitrite and NOx ph and ORP-Redox Phosphate Sludge Level Turbidity and TSS * Contact * Service Contact Downloads Service Orders AEO Certification Company Certificates * Company News Careers About us Transparency in Supply Chain Trade Shows and Seminars Watermark WTW EN PLANNING AIDS FOR PLANT CONSTRUCTORS & ENGINEERING OFFICES * Selection aids for the sensors and systems * Technical data * Information on installation and digital communication * Planning tools CONTINUOUS MONITORING & PROCESS CONTROL * High accuracy – especially below 40 NTU * Safe & standard-compliant measurement * Data backup and ultrasonic cleaning CHLORINE 3017M DPD ANALYZER * <15 minutes per month to exchange reagents * >30 days unattended runtime * No calibration required OPTIMIZE YOUR AMMONIUM MONITORING Alyza IQ: The Simple choice for NH4 Analyzers OPTIMIZE YOUR PHOSPHATE MONITORING AND CONTROL Alyza IQ: The Simple choice for PO4 Analyzers OXITOP®-I is setting a new benchmark in BOD measurement: * Easy menu operation * Safety per direct monitoring * Direct results and curves at the display SURFACE WATER MONITORING Reagent-free measurement of COD, Nitrate and Nitrite DEPTH MEASUREMENTS WITH IDS MultiLine® Multi 3430 IDS + MPP IDS: Profile measurement without tangled cables. Integrated air pressure compensated depth measurements. All parameters simultaneously. FIELD MEASUREMENTS WITH IDS MultiLine® IDS + IDS sensors: Up to 3 channels. All parameters simultaneously. LAB MEASUREMENTS WITH IDS inoLab® Multi IDS + IDS sensors: Up to 3 channels. All parameters simultaneously, THE NEW NITRATE MEASUREMENT Wiping and maintenance-free: Simple measurement directly in the process. No regular service required. Extremely durable. IDS GOES WIRELESS! Benefit from all advantages of the digital IDS system – now also wireless: No cables. Securely connected. Same module for all parameters. UPGRADE FOR PHOTOLAB® 7000 SERIES Benefit from many advantages - From 6000 to 7000! * 1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 Since 2011, WTW is a brand of the Xylem Group, which operates worldwide in its core business of water. WTW is a part of the company division Xylem Analytics. With our new website, we can present you a broader product range with additional brands as well as service and information about the application of our products. The following websites are therefore designed in the xylem colors and summarized under the web address www.xylemanalytics.com. MORE THAN 70 YEARS WTW We offer the most comprehensive program of high-quality measuring devices for water analysis in the world. Their reliability, operational safety and versatility have made WTW's products a worldwide industry standard: LABORATORY AND FIELD INSTRUMENTATION Meters and measuring systems for electro-chemical, photometric, turbidity measurements as well as for the determination of biological degradability. View WTW Lab Products PROCESS INSTRUMENTATION (ONLINE) WTW offers the most complete series of measuring instrumentation as well as accessories for the measurement and monitoring of water and wastewater. View WTW's Process Instrumentation DIRECT CONTACT HEAD OFFICE +49 881 183-0 E-MAIL Write e-mail LABORATORY: TECHNICAL SUPPORT +49 881 183-321 ONLINE: TECHNICAL SUPPORT +49 881 183-322 XYLEM ANALYTICS PROVIDES WITH ITS BRAND WTW SOLUTIONS FOR MANY CHALLENGES IN WATER ANALYSIS: View all WTW Products View all Products About us * about Xylem Analytics * Xylem Sustainability * Xylem Watermark * Transparency in Supply Chain Products & Service * Downloads * IQ SENSOR NET measuring system * TresCon® online analyzer * inoLab® IDS benchtop meter * MultiLine® IDS portable meter * IDS sensors * FDO® optical dissolved oxygen sensor * inoLab® benchtop meter * ProfiLine portable meter * photoLab® spectral and filter photometer * pHotoFlex® portable colorimeter * OxiTop® measuring system * TriOxmatic® electrochemical D.O. sensors Important * ISO 9001 * AEO-F * DAkkS certified test lab * DWA * DECHEMA * DVGW CONNECT WITH US * * © 2021 Xylem Analytics Germany Sales GmbH & Co. KG. All names are registered tradenames or trademarks of Xylem Inc. or one of its subsidiaries. (build: 6.0.58.0) * Privacy Policy * Terms and Conditions * ElektroG/WEEE * Imprint Close STEP 1 OF 2 Privacy By providing personal data to Xylem, you acknowledge that you have read and understand the terms of our Website Privacy Statement Accept Why am I seeing this? Why am I seeing this? We are committed to ensuring that the individuals whose details we hold understand our privacy practices. In particular, we want to make sure that we are respectful of your data protection preferences, and that you understand your data privacy rights. This communication provides access to our Privacy Notice. It explains in clear language what information we collect about individuals, how we use it, and the choices and controls you have. We have also recently updated our Privacy Notice to ensure that it meets high transparency requirements for data privacy in compliance with the EU data protection law known as the General Data Protection Regulation (GDPR), which goes into effect on May 25, 2018. Go Back Privacy Policy Thank you for visiting the Xylem website. Xylem and its operating divisions and subsidiaries (collectively “Xylem”, "We", "Us", or "The Company") maintain and operate this and other websites (collectively, the “Xylem Sites” or "Sites") and are committed to safeguarding your privacy. This Privacy Statement is meant to help you understand what data we collect, how we use it, and what safeguards are in place to protect your data on the Sites. This Privacy Statement also applies to information collected offline through trade shows, seminars, conferences, or through other activities. SUMMARY OF KEY POINTS WHAT INFORMATION DOES XYLEM COLLECT? Xylem collects the following types of information about you when you visit our Sites (collectively, "Personal Data") or through the offline means described above: * If you visit our sites, we automatically collect your domain name and/or IP address; * If you communicate with us by email, we collect your email address; * If you seek employment with us and provide us with information through offline means, we collect information in connection with employment opportunities, through our online recruiting tool. * Otherwise, Personal Data is only collected on Xylem Sites or via offline means if you voluntarily choose to provide it. Such Personal Data includes your name and/or that of your employer, title, address, telephone number and email address as well as account or transaction information collected as part of our business relationship with you. HOW THE COMPANY USES YOUR PERSONAL DATA We collect your Personal Data in order to: * Conduct our business, including providing you the products or services you requested * Send you marketing communications about new or updates to our existing products and services * Comply with our legal obligations * Maintain and improve our Sites and tailor the user experience * Protect the security of you and the Sites * Provide customer service and otherwise administer our business relationship with you As required by applicable law, we rely on several different legal bases to collect, use, and share your Personal Data: * Necessity to Perform Contract with You - we need to process your Personal Data to provide our products and services, ensure products and services are working as they should, answer questions and requests from you, manage our business relationship with you and provide customer support; * Compliance with Legal Obligations - we need to process your Personal Data to comply with relevant laws, regulatory requirements and to respond to lawful requests, court orders, and legal process; * Consent for Direct Marketing Communications - we rely on your consent to send you direct marketing, which you can unsubscribe from at any time by clicking the unsubscribe link in the relevant communications or contact us as detailed below; and * Based on Legitimate Interests - we process your Personal Data to protect your security and the security of the Sites; to detect and prevent fraud; to protect and defend the rights or property of others, or our own rights and interests; and to maintain and improve the user experience. We do not use automated decision-making, including profiling, that is, in a way that produces legal effects concerning you or significantly affects you. You are not required to provide all Personal Data identified in this Privacy Statement to use our Sites or to interact with us offline, but certain functionality will not be available if you do not provide certain Personal Data. If you do not provide certain Personal Data, we may not be able to respond to your requests, perform a transaction with you, or provide you with marketing that we believe you would find valuable. ARE COOKIES USED ON XYLEM SITES? In addition to a domain name and/or IP address, Xylem collects information about you automatically when you visit our Sites. The information that is automatically collected does not include your name, address, telephone number, or email address. This information tells us such things as how many users visited our site and the pages they have accessed. By collecting this information, we learn how to best tailor our Sites for our current and future visitors. To collect this information, we use a number of different analytics, media optimization tools, analytics tags and pixel tracking activity through 'cookie' technology or with 'web beacons,' as explained below: * Cookies A cookie is a small text file that is placed on your computer's hard drive by your web browser when you first visit the Site. Xylem uses cookies to both ensure functioning of the site as well as record user-specific information on what pages you visited as well as record past activities on our site in order to provide better service when visitors return to our site. There are two kinds of cookies that Xylem uses: Session Cookies - also called a transient cookie, a session cookie stores information about a user on its temporary memory so that it can remember something about you when you are visiting that site. Session cookies do not collect information from your computer and are erased when you close your Web browser. Persistent Cookies - Also called a permanent cookie, or a stored cookie, a persistent cookie collects identifying information about the user including web-surfing behavior and user preferences for a specific website. Persistent cookies are set with an expiration date and stored on your hard drive until it expires or until you delete from your computer. In some instances, cookies may enhance your online experience by saving your preferences while you are visiting a particular site. Most Internet browsers accept cookies automatically, but usually you can change the settings of your browser to erase cookies or prevent automatic acceptance altogether if you prefer. Please be advised that if you choose to not allow browser cookies, you may not be able to take full advantage of all the website features offered by Xylem. * Web Beacons Certain pages on our website(s) contain 'web beacons' also known as internet tags, pixel tags and clear GIFs. A web beacon is a small graphic image placed on the web page designed to allow Xylem to monitor incoming traffic and obtain information such as the IP address of the computer that downloaded the page on which the beacon appears as well as the URL of the page, the time the page was viewed, the type of browser used to view the page, and the information in cookies set by the third party. We also use web beacons to recognize a unique cookie on your web browser, which enables us to learn which advertisements brought you to our website(s). In order to help gather more information about site usage, all Xylem Sites use advertising, analytics, media cookies and tags powered by tools such as Yahoo, Google, Adobe, Omniture, Rubicon and others. Additionally, the Sites also use Google Analytics, a web analytics service provided by Google, Inc. ("Google"), which also uses cookies. The information generated by the cookie about your use of the website (including your IP address) is transmitted to and stored by Google on servers in the United States. Google uses this information for the purpose of evaluation activity, compiling website reports and providing other services relating to website activity usage. Google may also transfer this information to third parties where required to do so by law, or where such third parties process the information on Google's behalf. The information collected by all cookies and web beacons includes general information about your computer settings, your connection to the Internet, the operating system and platform, IP address, your browsing patterns and timings of browsing on the site and geographical location. It does not contain your name, address, telephone number, or email address. In order to help gather more information about site usage, xyleminc.com and its affiliated sites use advertising, analytics, media cookies and tags, including: Collection of data through Internet Service provider (ip address, time, location, browser, etc) Cookies contact form transfer of personal data Google Analytics Facebook Twitter Google +1 LinkedIn Xing YouTube Google Adsense Comments in a blog Google AdWords and conversion tracking Additional implementations in the website (please complete) WebTraxs LinkedIn Insights Marketo Tracking Mouseflow To learn more about certain cookies used for interest based advertising by third parties, including through cross-device tracking, and to exercise certain choices regarding such cookies, please visit the Digital Advertising Alliance, Network Advertising Initiative, Digital Advertising Alliance-Canada, European Interactive Digital Advertising Alliance or your device settings for if you have the DAA or other mobile app. Do-Not Track: At this time, our Site is not configured to honor browsers' “Do Not Track” signals. HOW THE COMPANY SHARES YOUR PERSONAL DATA WITH THIRD PARTIES * If we are requested to disclose Personal Data by law, court of law, or as requested by a governmental or law enforcement authority, we may do so. * We may pass your Personal Data or details of your use of the web site to other companies within the Xylem group of companies. * We may share information as necessary to prevent fraud or other illegal activities, such as willful attacks on Xylem’s information technology systems, and as necessary to establish or preserve a legal claim or defense. * Xylem does not sell to third parties any Personal Data derived from a visitor's visit to or use of a Xylem Site except as part of the sale of a subsidiary or of all or substantially all of the assets of an operating division, which subsidiary or division collected or uses such information in the ordinary course of business. * Xylem takes appropriate steps to keep Personal Data confidential and only discloses this information to personnel in a Xylem firm or a third party that needs to have access to the information for legitimate business purposes. We may make your information available to our distributors, sales representatives or other business affiliates so that they may respond to a visitor’s inquiry or provide information about our own or related goods or services that we believe support your business needs. LINKS TO THIRD-PARTY WEBSITES Occasionally, Xylem Sites may provide links to the web sites of our distributors, sales representatives or other business affiliates. In these situations, we are not responsible for the content or privacy practices they employ and encourage you to read their own privacy disclosures. HOW THE COMPANY STORES, TRANSFERS, OR PROCESSES YOUR PERSONAL DATA ACROSS BORDER Xylem may transmit the Personal Data we collect on Xylem Sites to representatives, global affiliates, and service providers in the United States or other countries where we do business that are outside your home country, and have different standards of data protection than your home country. We provide appropriate protections for cross-border transfers as required by law, including information transferred to third parties. With respect to such transfers from the European Economic Area (“EEA”) to the United States and other non-EEA jurisdictions, we may rely on European Union (“EU”) Model Clauses and Binding Corporate Rules and/or the need to process your information in order to provide the requested services (e.g., performance of a contract) to transfer your Personal Data. As permitted by applicable law, you may request details about the suitable safeguards we have in place by contacting us as described below. YOUR RIGHTS As permitted by applicable law, you may have the right to obtain confirmation of the existence of certain Personal Data relating to you, to verify its content, origin, and accuracy, as well as the right to access, review, port, delete, or to block or withdraw consent to the processing of certain Personal Data (without affecting the lawfulness of processing based on consent before its withdrawal), by contacting us at datasubject.requests@xyleminc.com Please note that we may need to retain certain Personal Data as required or permitted by applicable law. YOUR CHOICES You have the following choices regarding our use and disclosure of your Personal Data: * Marketing Communications. If you no longer wish to receive any marketing communications, remain on a mailing list to which you previously subscribed or receive any other communication from Xylem, please follow the unsubscribe link in the relevant communications or contact us using the link below. * Cookies and Similar Technologies. Please review your browser or computer settings for certain cookies and see above to exercise certain choices regarding cookies. HOW THE COMPANY RETAINS YOUR PERSONAL DATA * Xylem only retains your Personal Data for the minimum amount of time necessary to accomplish the purpose for which it was collected. HOW THE COMPANY PROTECTS THE SECURITY OF YOUR INFORMATION Xylem uses industry-standard encryption technologies when transferring and receiving data exchanged with our site. We have appropriate security measures in place in our physical facilities to protect against loss, misuse or alteration of information that we have collected from you at our site. We also employ reasonable technologies to keep the Personal Data you provide on Xylem Sites secure. CHANGES TO OUR PRIVACY STATEMENT Xylem may update this Privacy Statement from time to time as our business (e.g. merger/acquisition) and services change, or as required by law. The effective date of our Privacy Statement is posted above, and we encourage you to visit our Sites periodically to stay informed about Xylem's privacy practices. We will post the updated version of the Privacy Statement on our Site, and ask for your consent to the changes if legally required to do so. HOW YOU CAN CONTACT US * If you have any questions regarding this Privacy Statement or our privacy practices in general, please contact our Director of Global Trade and Data Privacy Compliance with any concerns or inquiries via phone at +1-914-323-5700 or via email at data.privacy@xyleminc.com * You may also have a right to lodge a complaint with a supervisory authority. Go Back STEP 2 OF 2 Cookies We use cookies and related tracking technologies to personalize and enhance your experience on our site. Visit our Cookie Policy to learn more about cookies and how to manage your personal preferences. By clicking 'Accept' you agree to the use of cookies and related tracking technologies Accept Why am I seeing this? Why am I seeing this? We are committed to ensuring that the individuals whose details we hold understand our privacy practices. In particular, we want to make sure that we are respectful of your data protection preferences, and that you understand your data privacy rights. This communication provides access to our Privacy Notice. It explains in clear language what information we collect about individuals, how we use it, and the choices and controls you have. We have also recently updated our Privacy Notice to ensure that it meets high transparency requirements for data privacy in compliance with the EU data protection law known as the General Data Protection Regulation (GDPR), which goes into effect on May 25, 2018. Go Back Cookie Policy Thank you for visiting the Xylem website. Xylem and its operating divisions and subsidiaries (collectively “Xylem”, "We", "Us", or "The Company") maintain and operate this and other websites (collectively, the “Xylem Sites” or "Sites") and are committed to safeguarding your privacy. This Privacy Statement is meant to help you understand what data we collect, how we use it, and what safeguards are in place to protect your data on the Sites. This Privacy Statement also applies to information collected offline through trade shows, seminars, conferences, or through other activities. SUMMARY OF KEY POINTS WHAT INFORMATION DOES XYLEM COLLECT? Xylem collects the following types of information about you when you visit our Sites (collectively, "Personal Data") or through the offline means described above: * If you visit our sites, we automatically collect your domain name and/or IP address; * If you communicate with us by email, we collect your email address; * If you seek employment with us and provide us with information through offline means, we collect information in connection with employment opportunities, through our online recruiting tool. * Otherwise, Personal Data is only collected on Xylem Sites or via offline means if you voluntarily choose to provide it. Such Personal Data includes your name and/or that of your employer, title, address, telephone number and email address as well as account or transaction information collected as part of our business relationship with you. HOW THE COMPANY USES YOUR PERSONAL DATA We collect your Personal Data in order to: * Conduct our business, including providing you the products or services you requested * Send you marketing communications about new or updates to our existing products and services * Comply with our legal obligations * Maintain and improve our Sites and tailor the user experience * Protect the security of you and the Sites * Provide customer service and otherwise administer our business relationship with you As required by applicable law, we rely on several different legal bases to collect, use, and share your Personal Data: * Necessity to Perform Contract with You - we need to process your Personal Data to provide our products and services, ensure products and services are working as they should, answer questions and requests from you, manage our business relationship with you and provide customer support; * Compliance with Legal Obligations - we need to process your Personal Data to comply with relevant laws, regulatory requirements and to respond to lawful requests, court orders, and legal process; * Consent for Direct Marketing Communications - we rely on your consent to send you direct marketing, which you can unsubscribe from at any time by clicking the unsubscribe link in the relevant communications or contact us as detailed below; and * Based on Legitimate Interests - we process your Personal Data to protect your security and the security of the Sites; to detect and prevent fraud; to protect and defend the rights or property of others, or our own rights and interests; and to maintain and improve the user experience. We do not use automated decision-making, including profiling, that is, in a way that produces legal effects concerning you or significantly affects you. You are not required to provide all Personal Data identified in this Privacy Statement to use our Sites or to interact with us offline, but certain functionality will not be available if you do not provide certain Personal Data. If you do not provide certain Personal Data, we may not be able to respond to your requests, perform a transaction with you, or provide you with marketing that we believe you would find valuable. ARE COOKIES USED ON XYLEM SITES? In addition to a domain name and/or IP address, Xylem collects information about you automatically when you visit our Sites. The information that is automatically collected does not include your name, address, telephone number, or email address. This information tells us such things as how many users visited our site and the pages they have accessed. By collecting this information, we learn how to best tailor our Sites for our current and future visitors. To collect this information, we use a number of different analytics, media optimization tools, analytics tags and pixel tracking activity through 'cookie' technology or with 'web beacons,' as explained below: * Cookies A cookie is a small text file that is placed on your computer's hard drive by your web browser when you first visit the Site. Xylem uses cookies to both ensure functioning of the site as well as record user-specific information on what pages you visited as well as record past activities on our site in order to provide better service when visitors return to our site. There are two kinds of cookies that Xylem uses: Session Cookies - also called a transient cookie, a session cookie stores information about a user on its temporary memory so that it can remember something about you when you are visiting that site. Session cookies do not collect information from your computer and are erased when you close your Web browser. Persistent Cookies - Also called a permanent cookie, or a stored cookie, a persistent cookie collects identifying information about the user including web-surfing behavior and user preferences for a specific website. Persistent cookies are set with an expiration date and stored on your hard drive until it expires or until you delete from your computer. In some instances, cookies may enhance your online experience by saving your preferences while you are visiting a particular site. Most Internet browsers accept cookies automatically, but usually you can change the settings of your browser to erase cookies or prevent automatic acceptance altogether if you prefer. Please be advised that if you choose to not allow browser cookies, you may not be able to take full advantage of all the website features offered by Xylem. * Web Beacons Certain pages on our website(s) contain 'web beacons' also known as internet tags, pixel tags and clear GIFs. A web beacon is a small graphic image placed on the web page designed to allow Xylem to monitor incoming traffic and obtain information such as the IP address of the computer that downloaded the page on which the beacon appears as well as the URL of the page, the time the page was viewed, the type of browser used to view the page, and the information in cookies set by the third party. We also use web beacons to recognize a unique cookie on your web browser, which enables us to learn which advertisements brought you to our website(s). In order to help gather more information about site usage, all Xylem Sites use advertising, analytics, media cookies and tags powered by tools such as Yahoo, Google, Adobe, Omniture, Rubicon and others. Additionally, the Sites also use Google Analytics, a web analytics service provided by Google, Inc. ("Google"), which also uses cookies. The information generated by the cookie about your use of the website (including your IP address) is transmitted to and stored by Google on servers in the United States. Google uses this information for the purpose of evaluation activity, compiling website reports and providing other services relating to website activity usage. Google may also transfer this information to third parties where required to do so by law, or where such third parties process the information on Google's behalf. The information collected by all cookies and web beacons includes general information about your computer settings, your connection to the Internet, the operating system and platform, IP address, your browsing patterns and timings of browsing on the site and geographical location. It does not contain your name, address, telephone number, or email address. In order to help gather more information about site usage, xyleminc.com and its affiliated sites use advertising, analytics, media cookies and tags, including: Collection of data through Internet Service provider (ip address, time, location, browser, etc) Cookies contact form transfer of personal data Google Analytics Facebook Twitter Google +1 LinkedIn Xing YouTube Google Adsense Comments in a blog Google AdWords and conversion tracking Additional implementations in the website (please complete) WebTraxs LinkedIn Insights Marketo Tracking Mouseflow To learn more about certain cookies used for interest based advertising by third parties, including through cross-device tracking, and to exercise certain choices regarding such cookies, please visit the Digital Advertising Alliance, Network Advertising Initiative, Digital Advertising Alliance-Canada, European Interactive Digital Advertising Alliance or your device settings for if you have the DAA or other mobile app. Do-Not Track: At this time, our Site is not configured to honor browsers' “Do Not Track” signals. HOW THE COMPANY SHARES YOUR PERSONAL DATA WITH THIRD PARTIES * If we are requested to disclose Personal Data by law, court of law, or as requested by a governmental or law enforcement authority, we may do so. * We may pass your Personal Data or details of your use of the web site to other companies within the Xylem group of companies. * We may share information as necessary to prevent fraud or other illegal activities, such as willful attacks on Xylem’s information technology systems, and as necessary to establish or preserve a legal claim or defense. * Xylem does not sell to third parties any Personal Data derived from a visitor's visit to or use of a Xylem Site except as part of the sale of a subsidiary or of all or substantially all of the assets of an operating division, which subsidiary or division collected or uses such information in the ordinary course of business. * Xylem takes appropriate steps to keep Personal Data confidential and only discloses this information to personnel in a Xylem firm or a third party that needs to have access to the information for legitimate business purposes. We may make your information available to our distributors, sales representatives or other business affiliates so that they may respond to a visitor’s inquiry or provide information about our own or related goods or services that we believe support your business needs. LINKS TO THIRD-PARTY WEBSITES Occasionally, Xylem Sites may provide links to the web sites of our distributors, sales representatives or other business affiliates. In these situations, we are not responsible for the content or privacy practices they employ and encourage you to read their own privacy disclosures. HOW THE COMPANY STORES, TRANSFERS, OR PROCESSES YOUR PERSONAL DATA ACROSS BORDER Xylem may transmit the Personal Data we collect on Xylem Sites to representatives, global affiliates, and service providers in the United States or other countries where we do business that are outside your home country, and have different standards of data protection than your home country. We provide appropriate protections for cross-border transfers as required by law, including information transferred to third parties. With respect to such transfers from the European Economic Area (“EEA”) to the United States and other non-EEA jurisdictions, we may rely on European Union (“EU”) Model Clauses and Binding Corporate Rules and/or the need to process your information in order to provide the requested services (e.g., performance of a contract) to transfer your Personal Data. As permitted by applicable law, you may request details about the suitable safeguards we have in place by contacting us as described below. YOUR RIGHTS As permitted by applicable law, you may have the right to obtain confirmation of the existence of certain Personal Data relating to you, to verify its content, origin, and accuracy, as well as the right to access, review, port, delete, or to block or withdraw consent to the processing of certain Personal Data (without affecting the lawfulness of processing based on consent before its withdrawal), by contacting us at datasubject.requests@xyleminc.com Please note that we may need to retain certain Personal Data as required or permitted by applicable law. YOUR CHOICES You have the following choices regarding our use and disclosure of your Personal Data: * Marketing Communications. If you no longer wish to receive any marketing communications, remain on a mailing list to which you previously subscribed or receive any other communication from Xylem, please follow the unsubscribe link in the relevant communications or contact us using the link below. * Cookies and Similar Technologies. Please review your browser or computer settings for certain cookies and see above to exercise certain choices regarding cookies. HOW THE COMPANY RETAINS YOUR PERSONAL DATA * Xylem only retains your Personal Data for the minimum amount of time necessary to accomplish the purpose for which it was collected. HOW THE COMPANY PROTECTS THE SECURITY OF YOUR INFORMATION Xylem uses industry-standard encryption technologies when transferring and receiving data exchanged with our site. We have appropriate security measures in place in our physical facilities to protect against loss, misuse or alteration of information that we have collected from you at our site. We also employ reasonable technologies to keep the Personal Data you provide on Xylem Sites secure. CHANGES TO OUR PRIVACY STATEMENT Xylem may update this Privacy Statement from time to time as our business (e.g. merger/acquisition) and services change, or as required by law. The effective date of our Privacy Statement is posted above, and we encourage you to visit our Sites periodically to stay informed about Xylem's privacy practices. We will post the updated version of the Privacy Statement on our Site, and ask for your consent to the changes if legally required to do so. HOW YOU CAN CONTACT US * If you have any questions regarding this Privacy Statement or our privacy practices in general, please contact our Director of Global Trade and Data Privacy Compliance with any concerns or inquiries via phone at +1-914-323-5700 or via email at data.privacy@xyleminc.com * You may also have a right to lodge a complaint with a supervisory authority. Go Back English Dansk Magyarország Россия Nederland Français Polski Svenska Español Italiano Deutsch Norsk Suomi Português slovenčina 中文 日本語 ShareThis Copy and Paste